blob: 327f37c9fdfaaf4ca9ea475129fa8b28cb75fe6a [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
Tejun Heo0a268db2016-12-27 14:49:06 -050031#include "cgroup-internal.h"
32
eparis@redhat2ce97382011-06-02 21:20:51 +100033#include <linux/cred.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>
Jianyu Zhanc9482a52014-04-26 15:40:28 +080037#include <linux/magic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070038#include <linux/mutex.h>
39#include <linux/mount.h>
40#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070041#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070042#include <linux/rcupdate.h>
43#include <linux/sched.h>
Ingo Molnar29930022017-02-08 18:51:36 +010044#include <linux/sched/task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070045#include <linux/slab.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070046#include <linux/spinlock.h>
Tejun Heo1ed13282015-09-16 12:53:17 -040047#include <linux/percpu-rwsem.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070048#include <linux/string.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080049#include <linux/hashtable.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070050#include <linux/idr.h>
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020051#include <linux/kthread.h>
Arun Sharma600634972011-07-26 16:09:06 -070052#include <linux/atomic.h>
Tejun Heoe93ad192016-01-19 12:18:41 -050053#include <linux/cpuset.h>
Aditya Kalia79a9082016-01-29 02:54:06 -060054#include <linux/proc_ns.h>
55#include <linux/nsproxy.h>
Martin KaFai Lau1f3fe7e2016-06-30 10:28:42 -070056#include <linux/file.h>
Al Viroe34a98d2019-01-17 00:22:58 -050057#include <linux/fs_parser.h>
Tejun Heod4ff7492018-04-26 14:29:04 -070058#include <linux/sched/cputime.h>
Johannes Weiner2ce71352018-10-26 15:06:31 -070059#include <linux/psi.h>
Tejun Heobd1060a2015-12-07 17:38:53 -050060#include <net/sock.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070061
Tejun Heoed1777d2016-08-10 11:23:44 -040062#define CREATE_TRACE_POINTS
63#include <trace/events/cgroup.h>
64
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050065#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
66 MAX_CFTYPE_NAME + 2)
Tejun Heob12e3582018-04-26 14:29:04 -070067/* let's not notify more than 100 times per second */
68#define CGROUP_FILE_NOTIFY_MIN_INTV DIV_ROUND_UP(HZ, 100)
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050069
Tejun Heob1a21362013-11-29 10:42:58 -050070/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080071 * cgroup_mutex is the master lock. Any modification to cgroup or its
72 * hierarchy must be performed while holding it.
73 *
Tejun Heof0d9a5f2015-10-15 16:41:53 -040074 * css_set_lock protects task->cgroups pointer, the list of css_set
Tejun Heo0e1d7682014-02-25 10:04:03 -050075 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080076 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050077 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
78 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080079 */
Tejun Heo22194492013-04-07 09:29:51 -070080DEFINE_MUTEX(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040081DEFINE_SPINLOCK(css_set_lock);
Tejun Heo0a268db2016-12-27 14:49:06 -050082
83#ifdef CONFIG_PROVE_RCU
Tejun Heo0e1d7682014-02-25 10:04:03 -050084EXPORT_SYMBOL_GPL(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040085EXPORT_SYMBOL_GPL(css_set_lock);
Tejun Heo22194492013-04-07 09:29:51 -070086#endif
87
Steven Rostedt (VMware)e4f8d812018-07-09 17:48:54 -040088DEFINE_SPINLOCK(trace_cgroup_path_lock);
89char trace_cgroup_path[TRACE_CGROUP_PATH_LEN];
Waiman Long5cf81142018-11-08 10:08:46 -050090bool cgroup_debug __read_mostly;
Steven Rostedt (VMware)e4f8d812018-07-09 17:48:54 -040091
Tejun Heo69e943b2014-02-08 10:36:58 -050092/*
Tejun Heo15a4c832014-05-04 15:09:14 -040093 * Protects cgroup_idr and css_idr so that IDs can be released without
94 * grabbing cgroup_mutex.
Tejun Heo6fa49182014-05-04 15:09:13 -040095 */
96static DEFINE_SPINLOCK(cgroup_idr_lock);
97
98/*
Tejun Heo34c06252015-11-05 00:12:24 -050099 * Protects cgroup_file->kn for !self csses. It synchronizes notifications
100 * against file removal/re-creation across css hiding.
101 */
102static DEFINE_SPINLOCK(cgroup_file_kn_lock);
103
Tejun Heo1ed13282015-09-16 12:53:17 -0400104struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
105
Tejun Heo8353da12014-05-13 12:19:23 -0400106#define cgroup_assert_mutex_or_rcu_locked() \
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700107 RCU_LOCKDEP_WARN(!rcu_read_lock_held() && \
108 !lockdep_is_held(&cgroup_mutex), \
Tejun Heo8353da12014-05-13 12:19:23 -0400109 "cgroup_mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500110
Ben Blumaae8aab2010-03-10 15:22:07 -0800111/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500112 * cgroup destruction makes heavy use of work items and there can be a lot
113 * of concurrent destructions. Use a separate workqueue so that cgroup
114 * destruction work items don't end up filling up max_active of system_wq
115 * which may lead to deadlock.
116 */
117static struct workqueue_struct *cgroup_destroy_wq;
118
Tejun Heo3ed80a62014-02-08 10:36:58 -0500119/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500120#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo0a268db2016-12-27 14:49:06 -0500121struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700122#include <linux/cgroup_subsys.h>
123};
Tejun Heo073219e2014-02-08 10:36:58 -0500124#undef SUBSYS
125
126/* array of cgroup subsystem names */
127#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
128static const char *cgroup_subsys_name[] = {
129#include <linux/cgroup_subsys.h>
130};
131#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700132
Tejun Heo49d1dc42015-09-18 11:56:28 -0400133/* array of static_keys for cgroup_subsys_enabled() and cgroup_subsys_on_dfl() */
134#define SUBSYS(_x) \
135 DEFINE_STATIC_KEY_TRUE(_x ## _cgrp_subsys_enabled_key); \
136 DEFINE_STATIC_KEY_TRUE(_x ## _cgrp_subsys_on_dfl_key); \
137 EXPORT_SYMBOL_GPL(_x ## _cgrp_subsys_enabled_key); \
138 EXPORT_SYMBOL_GPL(_x ## _cgrp_subsys_on_dfl_key);
139#include <linux/cgroup_subsys.h>
140#undef SUBSYS
141
142#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys_enabled_key,
143static struct static_key_true *cgroup_subsys_enabled_key[] = {
144#include <linux/cgroup_subsys.h>
145};
146#undef SUBSYS
147
148#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys_on_dfl_key,
149static struct static_key_true *cgroup_subsys_on_dfl_key[] = {
150#include <linux/cgroup_subsys.h>
151};
152#undef SUBSYS
153
Tejun Heoc58632b2018-04-26 14:29:04 -0700154static DEFINE_PER_CPU(struct cgroup_rstat_cpu, cgrp_dfl_root_rstat_cpu);
Tejun Heo041cd642017-09-25 08:12:05 -0700155
Paul Menageddbcc7e2007-10-18 23:39:30 -0700156/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400157 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700158 * unattached - it never has more than a single cgroup, and all tasks are
159 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700160 */
Tejun Heoc58632b2018-04-26 14:29:04 -0700161struct cgroup_root cgrp_dfl_root = { .cgrp.rstat_cpu = &cgrp_dfl_root_rstat_cpu };
Tejun Heod0ec4232015-08-05 16:03:19 -0400162EXPORT_SYMBOL_GPL(cgrp_dfl_root);
Tejun Heo9871bf92013-06-24 15:21:47 -0700163
Tejun Heoa2dd4242014-03-19 10:23:55 -0400164/*
165 * The default hierarchy always exists but is hidden until mounted for the
166 * first time. This is for backward compatibility.
167 */
Tejun Heoa7165262016-02-23 10:00:50 -0500168static bool cgrp_dfl_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700169
Tejun Heo5533e012014-05-14 19:33:07 -0400170/* some controllers are not supported in the default hierarchy */
Tejun Heoa7165262016-02-23 10:00:50 -0500171static u16 cgrp_dfl_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -0400172
Tejun Heof6d635ad2016-03-08 11:51:26 -0500173/* some controllers are implicitly enabled on the default hierarchy */
Tejun Heob8074212017-01-20 12:06:08 -0500174static u16 cgrp_dfl_implicit_ss_mask;
Tejun Heof6d635ad2016-03-08 11:51:26 -0500175
Tejun Heo8cfd8142017-07-21 11:14:51 -0400176/* some controllers can be threaded on the default hierarchy */
177static u16 cgrp_dfl_threaded_ss_mask;
178
Paul Menageddbcc7e2007-10-18 23:39:30 -0700179/* The list of hierarchy roots */
Tejun Heo0a268db2016-12-27 14:49:06 -0500180LIST_HEAD(cgroup_roots);
Tejun Heo9871bf92013-06-24 15:21:47 -0700181static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700182
Tejun Heo3417ae12014-02-08 10:37:01 -0500183/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700184static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700185
Li Zefan794611a2013-06-18 18:53:53 +0800186/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400187 * Assign a monotonically increasing serial number to csses. It guarantees
188 * cgroups with bigger numbers are newer than those with smaller numbers.
189 * Also, as csses are always appended to the parent's ->children list, it
190 * guarantees that sibling csses are always sorted in the ascending serial
191 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800192 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400193static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800194
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000195/*
Tejun Heob8074212017-01-20 12:06:08 -0500196 * These bitmasks identify subsystems with specific features to avoid
197 * having to do iterative checks repeatedly.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700198 */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500199static u16 have_fork_callback __read_mostly;
200static u16 have_exit_callback __read_mostly;
Oleg Nesterov51bee5a2019-01-28 17:00:13 +0100201static u16 have_release_callback __read_mostly;
Tejun Heob8074212017-01-20 12:06:08 -0500202static u16 have_canfork_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700203
Aditya Kalia79a9082016-01-29 02:54:06 -0600204/* cgroup namespace for init task */
205struct cgroup_namespace init_cgroup_ns = {
Elena Reshetova387ad962017-02-20 12:19:00 +0200206 .count = REFCOUNT_INIT(2),
Aditya Kalia79a9082016-01-29 02:54:06 -0600207 .user_ns = &init_user_ns,
208 .ns.ops = &cgroupns_operations,
209 .ns.inum = PROC_CGROUP_INIT_INO,
210 .root_cset = &init_css_set,
211};
212
Tejun Heo67e9c742015-11-16 11:13:34 -0500213static struct file_system_type cgroup2_fs_type;
Tejun Heod62beb72016-12-27 14:49:08 -0500214static struct cftype cgroup_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700215
Tejun Heo334c3672016-03-03 09:58:01 -0500216static int cgroup_apply_control(struct cgroup *cgrp);
217static void cgroup_finalize_control(struct cgroup *cgrp, int ret);
Tejun Heoed27b9f2015-10-15 16:41:52 -0400218static void css_task_iter_advance(struct css_task_iter *it);
Tejun Heo42809dd2012-11-19 08:13:37 -0800219static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo6cd0f5b2016-03-03 09:57:58 -0500220static struct cgroup_subsys_state *css_create(struct cgroup *cgrp,
221 struct cgroup_subsys *ss);
Tejun Heo9d755d32014-05-14 09:15:02 -0400222static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400223static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo4df8dc92015-09-18 17:54:23 -0400224static int cgroup_addrm_files(struct cgroup_subsys_state *css,
225 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -0400226 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800227
Tejun Heofc5ed1e2015-09-18 11:56:28 -0400228/**
229 * cgroup_ssid_enabled - cgroup subsys enabled test by subsys ID
230 * @ssid: subsys ID of interest
231 *
232 * cgroup_subsys_enabled() can only be used with literal subsys names which
233 * is fine for individual subsystems but unsuitable for cgroup core. This
234 * is slower static_key_enabled() based test indexed by @ssid.
235 */
Tejun Heo0a268db2016-12-27 14:49:06 -0500236bool cgroup_ssid_enabled(int ssid)
Tejun Heofc5ed1e2015-09-18 11:56:28 -0400237{
Arnd Bergmanncfe02a82016-03-15 00:21:06 +0100238 if (CGROUP_SUBSYS_COUNT == 0)
239 return false;
240
Tejun Heofc5ed1e2015-09-18 11:56:28 -0400241 return static_key_enabled(cgroup_subsys_enabled_key[ssid]);
242}
243
Tejun Heo9e10a132015-09-18 11:56:28 -0400244/**
245 * cgroup_on_dfl - test whether a cgroup is on the default hierarchy
246 * @cgrp: the cgroup of interest
247 *
248 * The default hierarchy is the v2 interface of cgroup and this function
249 * can be used to test whether a cgroup is on the default hierarchy for
250 * cases where a subsystem should behave differnetly depending on the
251 * interface version.
252 *
253 * The set of behaviors which change on the default hierarchy are still
254 * being determined and the mount option is prefixed with __DEVEL__.
255 *
256 * List of changed behaviors:
257 *
258 * - Mount options "noprefix", "xattr", "clone_children", "release_agent"
259 * and "name" are disallowed.
260 *
261 * - When mounting an existing superblock, mount options should match.
262 *
263 * - Remount is disallowed.
264 *
265 * - rename(2) is disallowed.
266 *
267 * - "tasks" is removed. Everything should be at process granularity. Use
268 * "cgroup.procs" instead.
269 *
270 * - "cgroup.procs" is not sorted. pids will be unique unless they got
271 * recycled inbetween reads.
272 *
273 * - "release_agent" and "notify_on_release" are removed. Replacement
274 * notification mechanism will be implemented.
275 *
276 * - "cgroup.clone_children" is removed.
277 *
278 * - "cgroup.subtree_populated" is available. Its value is 0 if the cgroup
279 * and its descendants contain no task; otherwise, 1. The file also
280 * generates kernfs notification which can be monitored through poll and
281 * [di]notify when the value of the file changes.
282 *
283 * - cpuset: tasks will be kept in empty cpusets when hotplug happens and
284 * take masks of ancestors with non-empty cpus/mems, instead of being
285 * moved to an ancestor.
286 *
287 * - cpuset: a task can be moved into an empty cpuset, and again it takes
288 * masks of ancestors.
289 *
290 * - memcg: use_hierarchy is on by default and the cgroup file for the flag
291 * is not created.
292 *
293 * - blkcg: blk-throttle becomes properly hierarchical.
294 *
295 * - debug: disallowed on the default hierarchy.
296 */
Tejun Heo0a268db2016-12-27 14:49:06 -0500297bool cgroup_on_dfl(const struct cgroup *cgrp)
Tejun Heo9e10a132015-09-18 11:56:28 -0400298{
299 return cgrp->root == &cgrp_dfl_root;
300}
301
Tejun Heo6fa49182014-05-04 15:09:13 -0400302/* IDR wrappers which synchronize using cgroup_idr_lock */
303static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
304 gfp_t gfp_mask)
305{
306 int ret;
307
308 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400309 spin_lock_bh(&cgroup_idr_lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800310 ret = idr_alloc(idr, ptr, start, end, gfp_mask & ~__GFP_DIRECT_RECLAIM);
Tejun Heo54504e92014-05-13 12:10:59 -0400311 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400312 idr_preload_end();
313 return ret;
314}
315
316static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
317{
318 void *ret;
319
Tejun Heo54504e92014-05-13 12:10:59 -0400320 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400321 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400322 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400323 return ret;
324}
325
326static void cgroup_idr_remove(struct idr *idr, int id)
327{
Tejun Heo54504e92014-05-13 12:10:59 -0400328 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400329 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400330 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400331}
332
Tejun Heo27f26752017-07-16 21:44:18 -0400333static bool cgroup_has_tasks(struct cgroup *cgrp)
Tejun Heod51f39b2014-05-16 13:22:48 -0400334{
Tejun Heo27f26752017-07-16 21:44:18 -0400335 return cgrp->nr_populated_csets;
336}
Tejun Heod51f39b2014-05-16 13:22:48 -0400337
Waiman Long7a0cf0e2017-07-21 11:14:51 -0400338bool cgroup_is_threaded(struct cgroup *cgrp)
Tejun Heo454000a2017-05-15 09:34:02 -0400339{
340 return cgrp->dom_cgrp != cgrp;
341}
342
Tejun Heo8cfd8142017-07-21 11:14:51 -0400343/* can @cgrp host both domain and threaded children? */
344static bool cgroup_is_mixable(struct cgroup *cgrp)
345{
346 /*
347 * Root isn't under domain level resource control exempting it from
348 * the no-internal-process constraint, so it can serve as a thread
349 * root and a parent of resource domains at the same time.
350 */
351 return !cgroup_parent(cgrp);
352}
353
354/* can @cgrp become a thread root? should always be true for a thread root */
355static bool cgroup_can_be_thread_root(struct cgroup *cgrp)
356{
357 /* mixables don't care */
358 if (cgroup_is_mixable(cgrp))
359 return true;
360
361 /* domain roots can't be nested under threaded */
362 if (cgroup_is_threaded(cgrp))
363 return false;
364
365 /* can only have either domain or threaded children */
366 if (cgrp->nr_populated_domain_children)
367 return false;
368
369 /* and no domain controllers can be enabled */
370 if (cgrp->subtree_control & ~cgrp_dfl_threaded_ss_mask)
371 return false;
372
373 return true;
374}
375
376/* is @cgrp root of a threaded subtree? */
Waiman Long7a0cf0e2017-07-21 11:14:51 -0400377bool cgroup_is_thread_root(struct cgroup *cgrp)
Tejun Heo8cfd8142017-07-21 11:14:51 -0400378{
379 /* thread root should be a domain */
380 if (cgroup_is_threaded(cgrp))
381 return false;
382
383 /* a domain w/ threaded children is a thread root */
384 if (cgrp->nr_threaded_children)
385 return true;
386
387 /*
388 * A domain which has tasks and explicit threaded controllers
389 * enabled is a thread root.
390 */
391 if (cgroup_has_tasks(cgrp) &&
392 (cgrp->subtree_control & cgrp_dfl_threaded_ss_mask))
393 return true;
394
395 return false;
396}
397
398/* a domain which isn't connected to the root w/o brekage can't be used */
399static bool cgroup_is_valid_domain(struct cgroup *cgrp)
400{
401 /* the cgroup itself can be a thread root */
402 if (cgroup_is_threaded(cgrp))
403 return false;
404
405 /* but the ancestors can't be unless mixable */
406 while ((cgrp = cgroup_parent(cgrp))) {
407 if (!cgroup_is_mixable(cgrp) && cgroup_is_thread_root(cgrp))
408 return false;
409 if (cgroup_is_threaded(cgrp))
410 return false;
411 }
412
413 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400414}
415
Tejun Heo5531dc92016-03-03 09:57:58 -0500416/* subsystems visibly enabled on a cgroup */
417static u16 cgroup_control(struct cgroup *cgrp)
418{
419 struct cgroup *parent = cgroup_parent(cgrp);
420 u16 root_ss_mask = cgrp->root->subsys_mask;
421
Tejun Heo8cfd8142017-07-21 11:14:51 -0400422 if (parent) {
423 u16 ss_mask = parent->subtree_control;
424
425 /* threaded cgroups can only have threaded controllers */
426 if (cgroup_is_threaded(cgrp))
427 ss_mask &= cgrp_dfl_threaded_ss_mask;
428 return ss_mask;
429 }
Tejun Heo5531dc92016-03-03 09:57:58 -0500430
431 if (cgroup_on_dfl(cgrp))
Tejun Heof6d635ad2016-03-08 11:51:26 -0500432 root_ss_mask &= ~(cgrp_dfl_inhibit_ss_mask |
433 cgrp_dfl_implicit_ss_mask);
Tejun Heo5531dc92016-03-03 09:57:58 -0500434 return root_ss_mask;
435}
436
437/* subsystems enabled on a cgroup */
438static u16 cgroup_ss_mask(struct cgroup *cgrp)
439{
440 struct cgroup *parent = cgroup_parent(cgrp);
441
Tejun Heo8cfd8142017-07-21 11:14:51 -0400442 if (parent) {
443 u16 ss_mask = parent->subtree_ss_mask;
444
445 /* threaded cgroups can only have threaded controllers */
446 if (cgroup_is_threaded(cgrp))
447 ss_mask &= cgrp_dfl_threaded_ss_mask;
448 return ss_mask;
449 }
Tejun Heo5531dc92016-03-03 09:57:58 -0500450
451 return cgrp->root->subsys_mask;
452}
453
Tejun Heo95109b62013-08-08 20:11:27 -0400454/**
455 * cgroup_css - obtain a cgroup's css for the specified subsystem
456 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400457 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400458 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400459 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
460 * function must be called either under cgroup_mutex or rcu_read_lock() and
461 * the caller is responsible for pinning the returned css if it wants to
462 * keep accessing it outside the said locks. This function may return
463 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400464 */
465static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400466 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400467{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400468 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500469 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500470 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400471 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400472 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400473}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700474
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400475/**
Tejun Heod41bf8c2017-10-23 16:18:27 -0700476 * cgroup_tryget_css - try to get a cgroup's css for the specified subsystem
477 * @cgrp: the cgroup of interest
478 * @ss: the subsystem of interest
479 *
480 * Find and get @cgrp's css assocaited with @ss. If the css doesn't exist
481 * or is offline, %NULL is returned.
482 */
483static struct cgroup_subsys_state *cgroup_tryget_css(struct cgroup *cgrp,
484 struct cgroup_subsys *ss)
485{
486 struct cgroup_subsys_state *css;
487
488 rcu_read_lock();
489 css = cgroup_css(cgrp, ss);
490 if (!css || !css_tryget_online(css))
491 css = NULL;
492 rcu_read_unlock();
493
494 return css;
495}
496
497/**
Dennis Zhoufc5a8282018-12-05 12:10:36 -0500498 * cgroup_e_css_by_mask - obtain a cgroup's effective css for the specified ss
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400499 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400500 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400501 *
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400502 * Similar to cgroup_css() but returns the effective css, which is defined
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400503 * as the matching css of the nearest ancestor including self which has @ss
504 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
505 * function is guaranteed to return non-NULL css.
506 */
Dennis Zhoufc5a8282018-12-05 12:10:36 -0500507static struct cgroup_subsys_state *cgroup_e_css_by_mask(struct cgroup *cgrp,
508 struct cgroup_subsys *ss)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400509{
510 lockdep_assert_held(&cgroup_mutex);
511
512 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400513 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400514
Tejun Heoeeecbd12014-11-18 02:49:52 -0500515 /*
516 * This function is used while updating css associations and thus
Tejun Heo5531dc92016-03-03 09:57:58 -0500517 * can't test the csses directly. Test ss_mask.
Tejun Heoeeecbd12014-11-18 02:49:52 -0500518 */
Tejun Heo5531dc92016-03-03 09:57:58 -0500519 while (!(cgroup_ss_mask(cgrp) & (1 << ss->id))) {
Tejun Heod51f39b2014-05-16 13:22:48 -0400520 cgrp = cgroup_parent(cgrp);
Tejun Heo5531dc92016-03-03 09:57:58 -0500521 if (!cgrp)
522 return NULL;
523 }
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400524
525 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700526}
527
Tejun Heoeeecbd12014-11-18 02:49:52 -0500528/**
Dennis Zhoufc5a8282018-12-05 12:10:36 -0500529 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
530 * @cgrp: the cgroup of interest
531 * @ss: the subsystem of interest
532 *
533 * Find and get the effective css of @cgrp for @ss. The effective css is
534 * defined as the matching css of the nearest ancestor including self which
535 * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on,
536 * the root css is returned, so this function always returns a valid css.
537 *
538 * The returned css is not guaranteed to be online, and therefore it is the
539 * callers responsiblity to tryget a reference for it.
540 */
541struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
542 struct cgroup_subsys *ss)
543{
544 struct cgroup_subsys_state *css;
545
546 do {
547 css = cgroup_css(cgrp, ss);
548
549 if (css)
550 return css;
551 cgrp = cgroup_parent(cgrp);
552 } while (cgrp);
553
554 return init_css_set.subsys[ss->id];
555}
556
557/**
Tejun Heoeeecbd12014-11-18 02:49:52 -0500558 * cgroup_get_e_css - get a cgroup's effective css for the specified subsystem
559 * @cgrp: the cgroup of interest
560 * @ss: the subsystem of interest
561 *
562 * Find and get the effective css of @cgrp for @ss. The effective css is
563 * defined as the matching css of the nearest ancestor including self which
564 * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on,
565 * the root css is returned, so this function always returns a valid css.
566 * The returned css must be put using css_put().
567 */
568struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgrp,
569 struct cgroup_subsys *ss)
570{
571 struct cgroup_subsys_state *css;
572
573 rcu_read_lock();
574
575 do {
576 css = cgroup_css(cgrp, ss);
577
578 if (css && css_tryget_online(css))
579 goto out_unlock;
580 cgrp = cgroup_parent(cgrp);
581 } while (cgrp);
582
583 css = init_css_set.subsys[ss->id];
584 css_get(css);
585out_unlock:
586 rcu_read_unlock();
587 return css;
588}
589
Tejun Heoa590b902017-04-28 15:14:55 -0400590static void cgroup_get_live(struct cgroup *cgrp)
Tejun Heo052c3f32015-10-15 16:41:50 -0400591{
592 WARN_ON_ONCE(cgroup_is_dead(cgrp));
593 css_get(&cgrp->self);
594}
595
Roman Gushchinaade7f92019-04-19 10:03:02 -0700596/**
597 * __cgroup_task_count - count the number of tasks in a cgroup. The caller
598 * is responsible for taking the css_set_lock.
599 * @cgrp: the cgroup in question
600 */
601int __cgroup_task_count(const struct cgroup *cgrp)
602{
603 int count = 0;
604 struct cgrp_cset_link *link;
605
606 lockdep_assert_held(&css_set_lock);
607
608 list_for_each_entry(link, &cgrp->cset_links, cset_link)
609 count += link->cset->nr_tasks;
610
611 return count;
612}
613
614/**
615 * cgroup_task_count - count the number of tasks in a cgroup.
616 * @cgrp: the cgroup in question
617 */
618int cgroup_task_count(const struct cgroup *cgrp)
619{
620 int count;
621
622 spin_lock_irq(&css_set_lock);
623 count = __cgroup_task_count(cgrp);
624 spin_unlock_irq(&css_set_lock);
625
626 return count;
627}
628
Tejun Heob4168642014-05-13 12:16:21 -0400629struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500630{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500631 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400632 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500633
634 /*
635 * This is open and unprotected implementation of cgroup_css().
636 * seq_css() is only called from a kernfs file operation which has
637 * an active reference on the file. Because all the subsystem
638 * files are drained before a css is disassociated with a cgroup,
639 * the matching css from the cgroup's subsys table is guaranteed to
640 * be and stay valid until the enclosing operation is complete.
641 */
642 if (cft->ss)
643 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
644 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400645 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500646}
Tejun Heob4168642014-05-13 12:16:21 -0400647EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500648
Tejun Heo30159ec2013-06-25 11:53:37 -0700649/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500650 * for_each_css - iterate all css's of a cgroup
651 * @css: the iteration cursor
652 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
653 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700654 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400655 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700656 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500657#define for_each_css(css, ssid, cgrp) \
658 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
659 if (!((css) = rcu_dereference_check( \
660 (cgrp)->subsys[(ssid)], \
661 lockdep_is_held(&cgroup_mutex)))) { } \
662 else
663
664/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400665 * for_each_e_css - iterate all effective css's of a cgroup
666 * @css: the iteration cursor
667 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
668 * @cgrp: the target cgroup to iterate css's of
669 *
670 * Should be called under cgroup_[tree_]mutex.
671 */
Dennis Zhoufc5a8282018-12-05 12:10:36 -0500672#define for_each_e_css(css, ssid, cgrp) \
673 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
674 if (!((css) = cgroup_e_css_by_mask(cgrp, \
675 cgroup_subsys[(ssid)]))) \
676 ; \
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400677 else
678
679/**
Tejun Heob4e0eea2016-02-22 22:25:46 -0500680 * do_each_subsys_mask - filter for_each_subsys with a bitmask
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000681 * @ss: the iteration cursor
682 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heob4e0eea2016-02-22 22:25:46 -0500683 * @ss_mask: the bitmask
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000684 *
685 * The block will only run for cases where the ssid-th bit (1 << ssid) of
Tejun Heob4e0eea2016-02-22 22:25:46 -0500686 * @ss_mask is set.
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000687 */
Tejun Heob4e0eea2016-02-22 22:25:46 -0500688#define do_each_subsys_mask(ss, ssid, ss_mask) do { \
689 unsigned long __ss_mask = (ss_mask); \
690 if (!CGROUP_SUBSYS_COUNT) { /* to avoid spurious gcc warning */ \
Aleksa Sarai4a705c52015-06-09 21:32:07 +1000691 (ssid) = 0; \
Tejun Heob4e0eea2016-02-22 22:25:46 -0500692 break; \
693 } \
694 for_each_set_bit(ssid, &__ss_mask, CGROUP_SUBSYS_COUNT) { \
695 (ss) = cgroup_subsys[ssid]; \
696 {
697
698#define while_each_subsys_mask() \
699 } \
700 } \
701} while (false)
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000702
Tejun Heof8f22e52014-04-23 11:13:16 -0400703/* iterate over child cgrps, lock should be held throughout iteration */
704#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400705 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400706 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400707 cgroup_is_dead(child); })) \
708 ; \
709 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700710
Tejun Heoce3f1d92016-03-03 09:57:59 -0500711/* walk live descendants in preorder */
712#define cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) \
713 css_for_each_descendant_pre((d_css), cgroup_css((cgrp), NULL)) \
714 if (({ lockdep_assert_held(&cgroup_mutex); \
715 (dsct) = (d_css)->cgroup; \
716 cgroup_is_dead(dsct); })) \
717 ; \
718 else
719
720/* walk live descendants in postorder */
721#define cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) \
722 css_for_each_descendant_post((d_css), cgroup_css((cgrp), NULL)) \
723 if (({ lockdep_assert_held(&cgroup_mutex); \
724 (dsct) = (d_css)->cgroup; \
725 cgroup_is_dead(dsct); })) \
726 ; \
727 else
728
Tejun Heo172a2c062014-03-19 10:23:53 -0400729/*
730 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700731 * hierarchies being mounted. It contains a pointer to the root state
732 * for each subsystem. Also used to anchor the list of css_sets. Not
733 * reference-counted, to improve performance when child cgroups
734 * haven't been created.
735 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400736struct css_set init_css_set = {
Elena Reshetova4b9502e62017-03-08 10:00:40 +0200737 .refcount = REFCOUNT_INIT(1),
Tejun Heo454000a2017-05-15 09:34:02 -0400738 .dom_cset = &init_css_set,
Tejun Heo172a2c062014-03-19 10:23:53 -0400739 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
740 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500741 .task_iters = LIST_HEAD_INIT(init_css_set.task_iters),
Tejun Heo454000a2017-05-15 09:34:02 -0400742 .threaded_csets = LIST_HEAD_INIT(init_css_set.threaded_csets),
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500743 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
Tejun Heo172a2c062014-03-19 10:23:53 -0400744 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
745 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
Tejun Heo38683142017-09-25 13:50:20 -0700746
747 /*
748 * The following field is re-initialized when this cset gets linked
749 * in cgroup_init(). However, let's initialize the field
750 * statically too so that the default cgroup can be accessed safely
751 * early during boot.
752 */
753 .dfl_cgrp = &cgrp_dfl_root.cgrp,
Tejun Heo172a2c062014-03-19 10:23:53 -0400754};
Paul Menage817929e2007-10-18 23:39:36 -0700755
Tejun Heo172a2c062014-03-19 10:23:53 -0400756static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700757
Tejun Heo454000a2017-05-15 09:34:02 -0400758static bool css_set_threaded(struct css_set *cset)
759{
760 return cset->dom_cset != cset;
761}
762
Tejun Heo842b5972014-04-25 18:28:02 -0400763/**
Tejun Heo0de09422015-10-15 16:41:49 -0400764 * css_set_populated - does a css_set contain any tasks?
765 * @cset: target css_set
Waiman Long73a72422017-06-13 17:18:01 -0400766 *
767 * css_set_populated() should be the same as !!cset->nr_tasks at steady
768 * state. However, css_set_populated() can be called while a task is being
769 * added to or removed from the linked list before the nr_tasks is
770 * properly updated. Hence, we can't just look at ->nr_tasks here.
Tejun Heo0de09422015-10-15 16:41:49 -0400771 */
772static bool css_set_populated(struct css_set *cset)
773{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400774 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400775
776 return !list_empty(&cset->tasks) || !list_empty(&cset->mg_tasks);
777}
778
779/**
Tejun Heo788b9502017-07-16 21:43:33 -0400780 * cgroup_update_populated - update the populated count of a cgroup
Tejun Heo842b5972014-04-25 18:28:02 -0400781 * @cgrp: the target cgroup
782 * @populated: inc or dec populated count
783 *
Tejun Heo0de09422015-10-15 16:41:49 -0400784 * One of the css_sets associated with @cgrp is either getting its first
Tejun Heo788b9502017-07-16 21:43:33 -0400785 * task or losing the last. Update @cgrp->nr_populated_* accordingly. The
786 * count is propagated towards root so that a given cgroup's
787 * nr_populated_children is zero iff none of its descendants contain any
788 * tasks.
Tejun Heo842b5972014-04-25 18:28:02 -0400789 *
Tejun Heo788b9502017-07-16 21:43:33 -0400790 * @cgrp's interface file "cgroup.populated" is zero if both
791 * @cgrp->nr_populated_csets and @cgrp->nr_populated_children are zero and
792 * 1 otherwise. When the sum changes from or to zero, userland is notified
793 * that the content of the interface file has changed. This can be used to
794 * detect when @cgrp and its descendants become populated or empty.
Tejun Heo842b5972014-04-25 18:28:02 -0400795 */
796static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
797{
Tejun Heo788b9502017-07-16 21:43:33 -0400798 struct cgroup *child = NULL;
799 int adj = populated ? 1 : -1;
800
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400801 lockdep_assert_held(&css_set_lock);
Tejun Heo842b5972014-04-25 18:28:02 -0400802
803 do {
Tejun Heo788b9502017-07-16 21:43:33 -0400804 bool was_populated = cgroup_is_populated(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400805
Tejun Heo454000a2017-05-15 09:34:02 -0400806 if (!child) {
Tejun Heo788b9502017-07-16 21:43:33 -0400807 cgrp->nr_populated_csets += adj;
Tejun Heo454000a2017-05-15 09:34:02 -0400808 } else {
809 if (cgroup_is_threaded(child))
810 cgrp->nr_populated_threaded_children += adj;
811 else
812 cgrp->nr_populated_domain_children += adj;
813 }
Tejun Heo842b5972014-04-25 18:28:02 -0400814
Tejun Heo788b9502017-07-16 21:43:33 -0400815 if (was_populated == cgroup_is_populated(cgrp))
Tejun Heo842b5972014-04-25 18:28:02 -0400816 break;
817
Tejun Heod62beb72016-12-27 14:49:08 -0500818 cgroup1_check_for_release(cgrp);
Roman Gushchin4c476d82019-04-19 10:03:08 -0700819 TRACE_CGROUP_PATH(notify_populated, cgrp,
820 cgroup_is_populated(cgrp));
Tejun Heo6f60ead2015-09-18 17:54:23 -0400821 cgroup_file_notify(&cgrp->events_file);
822
Tejun Heo788b9502017-07-16 21:43:33 -0400823 child = cgrp;
Tejun Heod51f39b2014-05-16 13:22:48 -0400824 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400825 } while (cgrp);
826}
827
Tejun Heo0de09422015-10-15 16:41:49 -0400828/**
829 * css_set_update_populated - update populated state of a css_set
830 * @cset: target css_set
831 * @populated: whether @cset is populated or depopulated
832 *
833 * @cset is either getting the first task or losing the last. Update the
Tejun Heo788b9502017-07-16 21:43:33 -0400834 * populated counters of all associated cgroups accordingly.
Tejun Heo0de09422015-10-15 16:41:49 -0400835 */
836static void css_set_update_populated(struct css_set *cset, bool populated)
837{
838 struct cgrp_cset_link *link;
839
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400840 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400841
842 list_for_each_entry(link, &cset->cgrp_links, cgrp_link)
843 cgroup_update_populated(link->cgrp, populated);
844}
845
Tejun Heof6d7d042015-10-15 16:41:52 -0400846/**
847 * css_set_move_task - move a task from one css_set to another
848 * @task: task being moved
849 * @from_cset: css_set @task currently belongs to (may be NULL)
850 * @to_cset: new css_set @task is being moved to (may be NULL)
851 * @use_mg_tasks: move to @to_cset->mg_tasks instead of ->tasks
852 *
853 * Move @task from @from_cset to @to_cset. If @task didn't belong to any
854 * css_set, @from_cset can be NULL. If @task is being disassociated
855 * instead of moved, @to_cset can be NULL.
856 *
Tejun Heo788b9502017-07-16 21:43:33 -0400857 * This function automatically handles populated counter updates and
Tejun Heoed27b9f2015-10-15 16:41:52 -0400858 * css_task_iter adjustments but the caller is responsible for managing
859 * @from_cset and @to_cset's reference counts.
Tejun Heof6d7d042015-10-15 16:41:52 -0400860 */
861static void css_set_move_task(struct task_struct *task,
862 struct css_set *from_cset, struct css_set *to_cset,
863 bool use_mg_tasks)
864{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400865 lockdep_assert_held(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -0400866
Tejun Heo20b454a2016-03-03 09:57:57 -0500867 if (to_cset && !css_set_populated(to_cset))
868 css_set_update_populated(to_cset, true);
869
Tejun Heof6d7d042015-10-15 16:41:52 -0400870 if (from_cset) {
Tejun Heoed27b9f2015-10-15 16:41:52 -0400871 struct css_task_iter *it, *pos;
872
Tejun Heof6d7d042015-10-15 16:41:52 -0400873 WARN_ON_ONCE(list_empty(&task->cg_list));
Tejun Heoed27b9f2015-10-15 16:41:52 -0400874
875 /*
876 * @task is leaving, advance task iterators which are
877 * pointing to it so that they can resume at the next
878 * position. Advancing an iterator might remove it from
879 * the list, use safe walk. See css_task_iter_advance*()
880 * for details.
881 */
882 list_for_each_entry_safe(it, pos, &from_cset->task_iters,
883 iters_node)
884 if (it->task_pos == &task->cg_list)
885 css_task_iter_advance(it);
886
Tejun Heof6d7d042015-10-15 16:41:52 -0400887 list_del_init(&task->cg_list);
888 if (!css_set_populated(from_cset))
889 css_set_update_populated(from_cset, false);
890 } else {
891 WARN_ON_ONCE(!list_empty(&task->cg_list));
892 }
893
894 if (to_cset) {
895 /*
896 * We are synchronized through cgroup_threadgroup_rwsem
897 * against PF_EXITING setting such that we can't race
898 * against cgroup_exit() changing the css_set to
899 * init_css_set and dropping the old one.
900 */
901 WARN_ON_ONCE(task->flags & PF_EXITING);
902
Johannes Weiner2ce71352018-10-26 15:06:31 -0700903 cgroup_move_task(task, to_cset);
Tejun Heof6d7d042015-10-15 16:41:52 -0400904 list_add_tail(&task->cg_list, use_mg_tasks ? &to_cset->mg_tasks :
905 &to_cset->tasks);
906 }
907}
908
Paul Menage7717f7b2009-09-23 15:56:22 -0700909/*
910 * hash table for cgroup groups. This improves the performance to find
911 * an existing css_set. This hash doesn't (currently) take into
912 * account cgroups in empty hierarchies.
913 */
Li Zefan472b1052008-04-29 01:00:11 -0700914#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800915static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700916
Li Zefan0ac801f2013-01-10 11:49:27 +0800917static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700918{
Li Zefan0ac801f2013-01-10 11:49:27 +0800919 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700920 struct cgroup_subsys *ss;
921 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700922
Tejun Heo30159ec2013-06-25 11:53:37 -0700923 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800924 key += (unsigned long)css[i];
925 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700926
Li Zefan0ac801f2013-01-10 11:49:27 +0800927 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700928}
929
Tejun Heodcfe1492016-12-27 14:49:09 -0500930void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700931{
Tejun Heo69d02062013-06-12 21:04:50 -0700932 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400933 struct cgroup_subsys *ss;
934 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700935
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400936 lockdep_assert_held(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500937
Elena Reshetova4b9502e62017-03-08 10:00:40 +0200938 if (!refcount_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700939 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700940
Tejun Heo454000a2017-05-15 09:34:02 -0400941 WARN_ON_ONCE(!list_empty(&cset->threaded_csets));
942
Tejun Heo53254f92015-11-23 14:55:41 -0500943 /* This css_set is dead. unlink it and release cgroup and css refs */
944 for_each_subsys(ss, ssid) {
Tejun Heo2d8f2432014-04-23 11:13:15 -0400945 list_del(&cset->e_cset_node[ssid]);
Tejun Heo53254f92015-11-23 14:55:41 -0500946 css_put(cset->subsys[ssid]);
947 }
Tejun Heo5abb8852013-06-12 21:04:49 -0700948 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700949 css_set_count--;
950
Tejun Heo69d02062013-06-12 21:04:50 -0700951 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700952 list_del(&link->cset_link);
953 list_del(&link->cgrp_link);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400954 if (cgroup_parent(link->cgrp))
955 cgroup_put(link->cgrp);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700956 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700957 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700958
Tejun Heo454000a2017-05-15 09:34:02 -0400959 if (css_set_threaded(cset)) {
960 list_del(&cset->threaded_csets_node);
961 put_css_set_locked(cset->dom_cset);
962 }
963
Tejun Heo5abb8852013-06-12 21:04:49 -0700964 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700965}
966
Tejun Heob326f9d2013-06-24 15:21:48 -0700967/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700968 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700969 * @cset: candidate css_set being tested
970 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700971 * @new_cgrp: cgroup that's being entered by the task
972 * @template: desired set of css pointers in css_set (pre-calculated)
973 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800974 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700975 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
976 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700977static bool compare_css_sets(struct css_set *cset,
978 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700979 struct cgroup *new_cgrp,
980 struct cgroup_subsys_state *template[])
981{
Tejun Heo454000a2017-05-15 09:34:02 -0400982 struct cgroup *new_dfl_cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700983 struct list_head *l1, *l2;
984
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400985 /*
986 * On the default hierarchy, there can be csets which are
987 * associated with the same set of cgroups but different csses.
988 * Let's first ensure that csses match.
989 */
990 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700991 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700992
Tejun Heo454000a2017-05-15 09:34:02 -0400993
994 /* @cset's domain should match the default cgroup's */
995 if (cgroup_on_dfl(new_cgrp))
996 new_dfl_cgrp = new_cgrp;
997 else
998 new_dfl_cgrp = old_cset->dfl_cgrp;
999
1000 if (new_dfl_cgrp->dom_cgrp != cset->dom_cset->dfl_cgrp)
1001 return false;
1002
Paul Menage7717f7b2009-09-23 15:56:22 -07001003 /*
1004 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -04001005 * different cgroups in hierarchies. As different cgroups may
1006 * share the same effective css, this comparison is always
1007 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -07001008 */
Tejun Heo69d02062013-06-12 21:04:50 -07001009 l1 = &cset->cgrp_links;
1010 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -07001011 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -07001012 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -07001013 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -07001014
1015 l1 = l1->next;
1016 l2 = l2->next;
1017 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -07001018 if (l1 == &cset->cgrp_links) {
1019 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -07001020 break;
1021 } else {
Tejun Heo69d02062013-06-12 21:04:50 -07001022 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -07001023 }
1024 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -07001025 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
1026 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
1027 cgrp1 = link1->cgrp;
1028 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07001029 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -07001030 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -07001031
1032 /*
1033 * If this hierarchy is the hierarchy of the cgroup
1034 * that's changing, then we need to check that this
1035 * css_set points to the new cgroup; if it's any other
1036 * hierarchy, then this css_set should point to the
1037 * same cgroup as the old css_set.
1038 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001039 if (cgrp1->root == new_cgrp->root) {
1040 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -07001041 return false;
1042 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -07001043 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -07001044 return false;
1045 }
1046 }
1047 return true;
1048}
1049
Tejun Heob326f9d2013-06-24 15:21:48 -07001050/**
1051 * find_existing_css_set - init css array and find the matching css_set
1052 * @old_cset: the css_set that we're using before the cgroup transition
1053 * @cgrp: the cgroup that we're moving into
1054 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -07001055 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001056static struct css_set *find_existing_css_set(struct css_set *old_cset,
1057 struct cgroup *cgrp,
1058 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -07001059{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001060 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -07001061 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07001062 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +08001063 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -07001064 int i;
Paul Menage817929e2007-10-18 23:39:36 -07001065
Ben Blumaae8aab2010-03-10 15:22:07 -08001066 /*
1067 * Build the set of subsystem state objects that we want to see in the
1068 * new css_set. while subsystems can change globally, the entries here
1069 * won't change, so no need for locking.
1070 */
Tejun Heo30159ec2013-06-25 11:53:37 -07001071 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -04001072 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -04001073 /*
1074 * @ss is in this hierarchy, so we want the
1075 * effective css from @cgrp.
1076 */
Dennis Zhoufc5a8282018-12-05 12:10:36 -05001077 template[i] = cgroup_e_css_by_mask(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -07001078 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -04001079 /*
1080 * @ss is not in this hierarchy, so we don't want
1081 * to change the css.
1082 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001083 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -07001084 }
1085 }
1086
Li Zefan0ac801f2013-01-10 11:49:27 +08001087 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -07001088 hash_for_each_possible(css_set_table, cset, hlist, key) {
1089 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -07001090 continue;
1091
1092 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -07001093 return cset;
Li Zefan472b1052008-04-29 01:00:11 -07001094 }
Paul Menage817929e2007-10-18 23:39:36 -07001095
1096 /* No existing cgroup group matched */
1097 return NULL;
1098}
1099
Tejun Heo69d02062013-06-12 21:04:50 -07001100static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -07001101{
Tejun Heo69d02062013-06-12 21:04:50 -07001102 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001103
Tejun Heo69d02062013-06-12 21:04:50 -07001104 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
1105 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -07001106 kfree(link);
1107 }
1108}
1109
Tejun Heo69d02062013-06-12 21:04:50 -07001110/**
1111 * allocate_cgrp_cset_links - allocate cgrp_cset_links
1112 * @count: the number of links to allocate
1113 * @tmp_links: list_head the allocated links are put on
1114 *
1115 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
1116 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -07001117 */
Tejun Heo69d02062013-06-12 21:04:50 -07001118static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -07001119{
Tejun Heo69d02062013-06-12 21:04:50 -07001120 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -07001121 int i;
Tejun Heo69d02062013-06-12 21:04:50 -07001122
1123 INIT_LIST_HEAD(tmp_links);
1124
Li Zefan36553432008-07-29 22:33:19 -07001125 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -07001126 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -07001127 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -07001128 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -07001129 return -ENOMEM;
1130 }
Tejun Heo69d02062013-06-12 21:04:50 -07001131 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -07001132 }
1133 return 0;
1134}
1135
Li Zefanc12f65d2009-01-07 18:07:42 -08001136/**
1137 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -07001138 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -07001139 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -08001140 * @cgrp: the destination cgroup
1141 */
Tejun Heo69d02062013-06-12 21:04:50 -07001142static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
1143 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -08001144{
Tejun Heo69d02062013-06-12 21:04:50 -07001145 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -08001146
Tejun Heo69d02062013-06-12 21:04:50 -07001147 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -04001148
1149 if (cgroup_on_dfl(cgrp))
1150 cset->dfl_cgrp = cgrp;
1151
Tejun Heo69d02062013-06-12 21:04:50 -07001152 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
1153 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07001154 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -04001155
Paul Menage7717f7b2009-09-23 15:56:22 -07001156 /*
Tejun Heo389b9c12015-10-15 16:41:51 -04001157 * Always add links to the tail of the lists so that the lists are
1158 * in choronological order.
Paul Menage7717f7b2009-09-23 15:56:22 -07001159 */
Tejun Heo389b9c12015-10-15 16:41:51 -04001160 list_move_tail(&link->cset_link, &cgrp->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -07001161 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Tejun Heo2ceb2312015-10-15 16:41:51 -04001162
1163 if (cgroup_parent(cgrp))
Tejun Heoa590b902017-04-28 15:14:55 -04001164 cgroup_get_live(cgrp);
Li Zefanc12f65d2009-01-07 18:07:42 -08001165}
1166
Tejun Heob326f9d2013-06-24 15:21:48 -07001167/**
1168 * find_css_set - return a new css_set with one cgroup updated
1169 * @old_cset: the baseline css_set
1170 * @cgrp: the cgroup to be updated
1171 *
1172 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
1173 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -07001174 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001175static struct css_set *find_css_set(struct css_set *old_cset,
1176 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -07001177{
Tejun Heob326f9d2013-06-24 15:21:48 -07001178 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -07001179 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -07001180 struct list_head tmp_links;
1181 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001182 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08001183 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001184 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -07001185
Tejun Heob326f9d2013-06-24 15:21:48 -07001186 lockdep_assert_held(&cgroup_mutex);
1187
Paul Menage817929e2007-10-18 23:39:36 -07001188 /* First see if we already have a cgroup group that matches
1189 * the desired set */
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001190 spin_lock_irq(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -07001191 cset = find_existing_css_set(old_cset, cgrp, template);
1192 if (cset)
1193 get_css_set(cset);
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001194 spin_unlock_irq(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001195
Tejun Heo5abb8852013-06-12 21:04:49 -07001196 if (cset)
1197 return cset;
Paul Menage817929e2007-10-18 23:39:36 -07001198
Tejun Heof4f4be22013-06-12 21:04:51 -07001199 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -07001200 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -07001201 return NULL;
1202
Tejun Heo69d02062013-06-12 21:04:50 -07001203 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -07001204 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -07001205 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -07001206 return NULL;
1207 }
1208
Elena Reshetova4b9502e62017-03-08 10:00:40 +02001209 refcount_set(&cset->refcount, 1);
Tejun Heo454000a2017-05-15 09:34:02 -04001210 cset->dom_cset = cset;
Tejun Heo5abb8852013-06-12 21:04:49 -07001211 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -05001212 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heoed27b9f2015-10-15 16:41:52 -04001213 INIT_LIST_HEAD(&cset->task_iters);
Tejun Heo454000a2017-05-15 09:34:02 -04001214 INIT_LIST_HEAD(&cset->threaded_csets);
Tejun Heo5abb8852013-06-12 21:04:49 -07001215 INIT_HLIST_NODE(&cset->hlist);
Tejun Heo5f617ebb2016-12-27 14:49:05 -05001216 INIT_LIST_HEAD(&cset->cgrp_links);
1217 INIT_LIST_HEAD(&cset->mg_preload_node);
1218 INIT_LIST_HEAD(&cset->mg_node);
Paul Menage817929e2007-10-18 23:39:36 -07001219
1220 /* Copy the set of subsystem state objects generated in
1221 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -07001222 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -07001223
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001224 spin_lock_irq(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001225 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -07001226 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001227 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001228
Paul Menage7717f7b2009-09-23 15:56:22 -07001229 if (c->root == cgrp->root)
1230 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001231 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -07001232 }
Paul Menage817929e2007-10-18 23:39:36 -07001233
Tejun Heo69d02062013-06-12 21:04:50 -07001234 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -07001235
Paul Menage817929e2007-10-18 23:39:36 -07001236 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -07001237
Tejun Heo2d8f2432014-04-23 11:13:15 -04001238 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -07001239 key = css_set_hash(cset->subsys);
1240 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -07001241
Tejun Heo53254f92015-11-23 14:55:41 -05001242 for_each_subsys(ss, ssid) {
1243 struct cgroup_subsys_state *css = cset->subsys[ssid];
1244
Tejun Heo2d8f2432014-04-23 11:13:15 -04001245 list_add_tail(&cset->e_cset_node[ssid],
Tejun Heo53254f92015-11-23 14:55:41 -05001246 &css->cgroup->e_csets[ssid]);
1247 css_get(css);
1248 }
Tejun Heo2d8f2432014-04-23 11:13:15 -04001249
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001250 spin_unlock_irq(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001251
Tejun Heo454000a2017-05-15 09:34:02 -04001252 /*
1253 * If @cset should be threaded, look up the matching dom_cset and
1254 * link them up. We first fully initialize @cset then look for the
1255 * dom_cset. It's simpler this way and safe as @cset is guaranteed
1256 * to stay empty until we return.
1257 */
1258 if (cgroup_is_threaded(cset->dfl_cgrp)) {
1259 struct css_set *dcset;
1260
1261 dcset = find_css_set(cset, cset->dfl_cgrp->dom_cgrp);
1262 if (!dcset) {
1263 put_css_set(cset);
1264 return NULL;
1265 }
1266
1267 spin_lock_irq(&css_set_lock);
1268 cset->dom_cset = dcset;
1269 list_add_tail(&cset->threaded_csets_node,
1270 &dcset->threaded_csets);
1271 spin_unlock_irq(&css_set_lock);
1272 }
1273
Tejun Heo5abb8852013-06-12 21:04:49 -07001274 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -07001275}
1276
Tejun Heo0a268db2016-12-27 14:49:06 -05001277struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001278{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001279 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001280
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001281 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001282}
1283
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001284static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001285{
1286 int id;
1287
1288 lockdep_assert_held(&cgroup_mutex);
1289
Tejun Heo985ed672014-03-19 10:23:53 -04001290 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -05001291 if (id < 0)
1292 return id;
1293
1294 root->hierarchy_id = id;
1295 return 0;
1296}
1297
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001298static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001299{
1300 lockdep_assert_held(&cgroup_mutex);
1301
Johannes Weiner8c8a5502016-06-17 12:23:59 -04001302 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
Tejun Heof2e85d52014-02-11 11:52:49 -05001303}
1304
Tejun Heo1592c9b2016-12-27 14:49:08 -05001305void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001306{
1307 if (root) {
Tejun Heof2e85d52014-02-11 11:52:49 -05001308 idr_destroy(&root->cgroup_idr);
1309 kfree(root);
1310 }
1311}
1312
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001313static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -05001314{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001315 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -05001316 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -05001317
Tejun Heoed1777d2016-08-10 11:23:44 -04001318 trace_cgroup_destroy_root(root);
1319
Tejun Heo334c3672016-03-03 09:58:01 -05001320 cgroup_lock_and_drain_offline(&cgrp_dfl_root.cgrp);
Tejun Heof2e85d52014-02-11 11:52:49 -05001321
Tejun Heo776f02f2014-02-12 09:29:50 -05001322 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -04001323 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -05001324
Tejun Heof2e85d52014-02-11 11:52:49 -05001325 /* Rebind all subsystems back to the default hierarchy */
Tejun Heo334c3672016-03-03 09:58:01 -05001326 WARN_ON(rebind_subsystems(&cgrp_dfl_root, root->subsys_mask));
Tejun Heof2e85d52014-02-11 11:52:49 -05001327
1328 /*
1329 * Release all the links from cset_links to this hierarchy's
1330 * root cgroup
1331 */
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001332 spin_lock_irq(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001333
1334 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
1335 list_del(&link->cset_link);
1336 list_del(&link->cgrp_link);
1337 kfree(link);
1338 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001339
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001340 spin_unlock_irq(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001341
1342 if (!list_empty(&root->root_list)) {
1343 list_del(&root->root_list);
1344 cgroup_root_count--;
1345 }
1346
1347 cgroup_exit_root_id(root);
1348
1349 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001350
Tejun Heo2bd59d42014-02-11 11:52:49 -05001351 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -05001352 cgroup_free_root(root);
1353}
1354
Serge E. Hallyn4f41fc52016-05-09 09:59:55 -05001355/*
1356 * look up cgroup associated with current task's cgroup namespace on the
1357 * specified hierarchy
1358 */
1359static struct cgroup *
1360current_cgns_cgroup_from_root(struct cgroup_root *root)
1361{
1362 struct cgroup *res = NULL;
1363 struct css_set *cset;
1364
1365 lockdep_assert_held(&css_set_lock);
1366
1367 rcu_read_lock();
1368
1369 cset = current->nsproxy->cgroup_ns->root_cset;
1370 if (cset == &init_css_set) {
1371 res = &root->cgrp;
1372 } else {
1373 struct cgrp_cset_link *link;
1374
1375 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
1376 struct cgroup *c = link->cgrp;
1377
1378 if (c->root == root) {
1379 res = c;
1380 break;
1381 }
1382 }
1383 }
1384 rcu_read_unlock();
1385
1386 BUG_ON(!res);
1387 return res;
1388}
1389
Tejun Heoceb6a082014-02-25 10:04:02 -05001390/* look up cgroup associated with given css_set on the specified hierarchy */
1391static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001392 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001393{
Paul Menage7717f7b2009-09-23 15:56:22 -07001394 struct cgroup *res = NULL;
1395
Tejun Heo96d365e2014-02-13 06:58:40 -05001396 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001397 lockdep_assert_held(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05001398
Tejun Heo5abb8852013-06-12 21:04:49 -07001399 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001400 res = &root->cgrp;
Tejun Heo13d82fb2017-08-02 15:39:38 -07001401 } else if (root == &cgrp_dfl_root) {
1402 res = cset->dfl_cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07001403 } else {
Tejun Heo69d02062013-06-12 21:04:50 -07001404 struct cgrp_cset_link *link;
1405
1406 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001407 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001408
Paul Menage7717f7b2009-09-23 15:56:22 -07001409 if (c->root == root) {
1410 res = c;
1411 break;
1412 }
1413 }
1414 }
Tejun Heo96d365e2014-02-13 06:58:40 -05001415
Paul Menage7717f7b2009-09-23 15:56:22 -07001416 BUG_ON(!res);
1417 return res;
1418}
1419
1420/*
Tejun Heoceb6a082014-02-25 10:04:02 -05001421 * Return the cgroup for "task" from the given hierarchy. Must be
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001422 * called with cgroup_mutex and css_set_lock held.
Tejun Heoceb6a082014-02-25 10:04:02 -05001423 */
Tejun Heo0a268db2016-12-27 14:49:06 -05001424struct cgroup *task_cgroup_from_root(struct task_struct *task,
1425 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -05001426{
1427 /*
1428 * No need to lock the task - since we hold cgroup_mutex the
1429 * task can't change groups, so the only thing that can happen
1430 * is that it exits and its css is set back to init_css_set.
1431 */
1432 return cset_cgroup_from_root(task_css_set(task), root);
1433}
1434
1435/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07001436 * A task must hold cgroup_mutex to modify cgroups.
1437 *
1438 * Any task can increment and decrement the count field without lock.
1439 * So in general, code holding cgroup_mutex can't rely on the count
1440 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -08001441 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -07001442 * means that no tasks are currently attached, therefore there is no
1443 * way a task attached to that cgroup can fork (the other way to
1444 * increment the count). So code holding cgroup_mutex can safely
1445 * assume that if the count is zero, it will stay zero. Similarly, if
1446 * a task holds cgroup_mutex on a cgroup with zero count, it
1447 * knows that the cgroup won't be removed, as cgroup_rmdir()
1448 * needs that mutex.
1449 *
Paul Menageddbcc7e2007-10-18 23:39:30 -07001450 * A cgroup can only be deleted if both its 'count' of using tasks
1451 * is zero, and its list of 'children' cgroups is empty. Since all
1452 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001453 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001454 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001455 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001456 *
1457 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001458 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -07001459 */
1460
Tejun Heo2bd59d42014-02-11 11:52:49 -05001461static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Paul Menagea4243162007-10-18 23:39:35 -07001462
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001463static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1464 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001465{
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001466 struct cgroup_subsys *ss = cft->ss;
1467
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001468 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
Tejun Heoc1bbd932018-11-13 12:06:41 -08001469 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX)) {
1470 const char *dbg = (cft->flags & CFTYPE_DEBUG) ? ".__DEBUG__." : "";
1471
1472 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s%s.%s",
1473 dbg, cgroup_on_dfl(cgrp) ? ss->name : ss->legacy_name,
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001474 cft->name);
Tejun Heoc1bbd932018-11-13 12:06:41 -08001475 } else {
Tejun Heo08a77672018-01-09 07:21:15 -08001476 strscpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
Tejun Heoc1bbd932018-11-13 12:06:41 -08001477 }
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001478 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001479}
1480
Tejun Heof2e85d52014-02-11 11:52:49 -05001481/**
1482 * cgroup_file_mode - deduce file mode of a control file
1483 * @cft: the control file in question
1484 *
Tejun Heo7dbdb192015-09-18 17:54:23 -04001485 * S_IRUGO for read, S_IWUSR for write.
Tejun Heof2e85d52014-02-11 11:52:49 -05001486 */
1487static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001488{
Tejun Heof2e85d52014-02-11 11:52:49 -05001489 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001490
Tejun Heof2e85d52014-02-11 11:52:49 -05001491 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1492 mode |= S_IRUGO;
1493
Tejun Heo7dbdb192015-09-18 17:54:23 -04001494 if (cft->write_u64 || cft->write_s64 || cft->write) {
1495 if (cft->flags & CFTYPE_WORLD_WRITABLE)
1496 mode |= S_IWUGO;
1497 else
1498 mode |= S_IWUSR;
1499 }
Tejun Heof2e85d52014-02-11 11:52:49 -05001500
1501 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001502}
1503
Tejun Heoa9746d82014-05-13 12:19:22 -04001504/**
Tejun Heo8699b772016-02-22 22:25:46 -05001505 * cgroup_calc_subtree_ss_mask - calculate subtree_ss_mask
Tejun Heo0f060de2014-11-18 02:49:50 -05001506 * @subtree_control: the new subtree_control mask to consider
Tejun Heo5ced2512016-03-03 09:58:01 -05001507 * @this_ss_mask: available subsystems
Tejun Heoaf0ba672014-07-08 18:02:57 -04001508 *
1509 * On the default hierarchy, a subsystem may request other subsystems to be
1510 * enabled together through its ->depends_on mask. In such cases, more
1511 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1512 *
Tejun Heo0f060de2014-11-18 02:49:50 -05001513 * This function calculates which subsystems need to be enabled if
Tejun Heo5ced2512016-03-03 09:58:01 -05001514 * @subtree_control is to be applied while restricted to @this_ss_mask.
Tejun Heoaf0ba672014-07-08 18:02:57 -04001515 */
Tejun Heo5ced2512016-03-03 09:58:01 -05001516static u16 cgroup_calc_subtree_ss_mask(u16 subtree_control, u16 this_ss_mask)
Tejun Heo667c2492014-07-08 18:02:56 -04001517{
Tejun Heo6e5c8302016-02-22 22:25:47 -05001518 u16 cur_ss_mask = subtree_control;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001519 struct cgroup_subsys *ss;
1520 int ssid;
1521
1522 lockdep_assert_held(&cgroup_mutex);
1523
Tejun Heof6d635ad2016-03-08 11:51:26 -05001524 cur_ss_mask |= cgrp_dfl_implicit_ss_mask;
1525
Tejun Heoaf0ba672014-07-08 18:02:57 -04001526 while (true) {
Tejun Heo6e5c8302016-02-22 22:25:47 -05001527 u16 new_ss_mask = cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001528
Tejun Heob4e0eea2016-02-22 22:25:46 -05001529 do_each_subsys_mask(ss, ssid, cur_ss_mask) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001530 new_ss_mask |= ss->depends_on;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001531 } while_each_subsys_mask();
Tejun Heoaf0ba672014-07-08 18:02:57 -04001532
1533 /*
1534 * Mask out subsystems which aren't available. This can
1535 * happen only if some depended-upon subsystems were bound
1536 * to non-default hierarchies.
1537 */
Tejun Heo5ced2512016-03-03 09:58:01 -05001538 new_ss_mask &= this_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001539
1540 if (new_ss_mask == cur_ss_mask)
1541 break;
1542 cur_ss_mask = new_ss_mask;
1543 }
1544
Tejun Heo0f060de2014-11-18 02:49:50 -05001545 return cur_ss_mask;
1546}
1547
1548/**
Tejun Heoa9746d82014-05-13 12:19:22 -04001549 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1550 * @kn: the kernfs_node being serviced
1551 *
1552 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1553 * the method finishes if locking succeeded. Note that once this function
1554 * returns the cgroup returned by cgroup_kn_lock_live() may become
1555 * inaccessible any time. If the caller intends to continue to access the
1556 * cgroup, it should pin it before invoking this function.
1557 */
Tejun Heo0a268db2016-12-27 14:49:06 -05001558void cgroup_kn_unlock(struct kernfs_node *kn)
Tejun Heoa9746d82014-05-13 12:19:22 -04001559{
1560 struct cgroup *cgrp;
1561
1562 if (kernfs_type(kn) == KERNFS_DIR)
1563 cgrp = kn->priv;
1564 else
1565 cgrp = kn->parent->priv;
1566
1567 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001568
1569 kernfs_unbreak_active_protection(kn);
1570 cgroup_put(cgrp);
1571}
1572
1573/**
1574 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1575 * @kn: the kernfs_node being serviced
Tejun Heo945ba192016-03-03 09:58:00 -05001576 * @drain_offline: perform offline draining on the cgroup
Tejun Heoa9746d82014-05-13 12:19:22 -04001577 *
1578 * This helper is to be used by a cgroup kernfs method currently servicing
1579 * @kn. It breaks the active protection, performs cgroup locking and
1580 * verifies that the associated cgroup is alive. Returns the cgroup if
1581 * alive; otherwise, %NULL. A successful return should be undone by a
Tejun Heo945ba192016-03-03 09:58:00 -05001582 * matching cgroup_kn_unlock() invocation. If @drain_offline is %true, the
1583 * cgroup is drained of offlining csses before return.
Tejun Heoa9746d82014-05-13 12:19:22 -04001584 *
1585 * Any cgroup kernfs method implementation which requires locking the
1586 * associated cgroup should use this helper. It avoids nesting cgroup
1587 * locking under kernfs active protection and allows all kernfs operations
1588 * including self-removal.
1589 */
Tejun Heo0a268db2016-12-27 14:49:06 -05001590struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn, bool drain_offline)
Tejun Heoa9746d82014-05-13 12:19:22 -04001591{
1592 struct cgroup *cgrp;
1593
1594 if (kernfs_type(kn) == KERNFS_DIR)
1595 cgrp = kn->priv;
1596 else
1597 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001598
Tejun Heo2bd59d42014-02-11 11:52:49 -05001599 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001600 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001601 * active_ref. cgroup liveliness check alone provides enough
1602 * protection against removal. Ensure @cgrp stays accessible and
1603 * break the active_ref protection.
Tejun Heo2bd59d42014-02-11 11:52:49 -05001604 */
Li Zefanaa323622014-09-04 14:43:38 +08001605 if (!cgroup_tryget(cgrp))
1606 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001607 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001608
Tejun Heo945ba192016-03-03 09:58:00 -05001609 if (drain_offline)
1610 cgroup_lock_and_drain_offline(cgrp);
1611 else
1612 mutex_lock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001613
1614 if (!cgroup_is_dead(cgrp))
1615 return cgrp;
1616
1617 cgroup_kn_unlock(kn);
1618 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001619}
1620
Li Zefan2739d3c2013-01-21 18:18:33 +08001621static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001622{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001623 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001624
Tejun Heo01f64742014-05-13 12:19:23 -04001625 lockdep_assert_held(&cgroup_mutex);
Tejun Heo34c06252015-11-05 00:12:24 -05001626
1627 if (cft->file_offset) {
1628 struct cgroup_subsys_state *css = cgroup_css(cgrp, cft->ss);
1629 struct cgroup_file *cfile = (void *)css + cft->file_offset;
1630
1631 spin_lock_irq(&cgroup_file_kn_lock);
1632 cfile->kn = NULL;
1633 spin_unlock_irq(&cgroup_file_kn_lock);
Tejun Heob12e3582018-04-26 14:29:04 -07001634
1635 del_timer_sync(&cfile->notify_timer);
Tejun Heo34c06252015-11-05 00:12:24 -05001636 }
1637
Tejun Heo2bd59d42014-02-11 11:52:49 -05001638 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001639}
1640
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001641/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001642 * css_clear_dir - remove subsys files in a cgroup directory
1643 * @css: taget css
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001644 */
Tejun Heo334c3672016-03-03 09:58:01 -05001645static void css_clear_dir(struct cgroup_subsys_state *css)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001646{
Tejun Heo334c3672016-03-03 09:58:01 -05001647 struct cgroup *cgrp = css->cgroup;
Tejun Heo4df8dc92015-09-18 17:54:23 -04001648 struct cftype *cfts;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001649
Tejun Heo88cb04b2016-03-03 09:57:58 -05001650 if (!(css->flags & CSS_VISIBLE))
1651 return;
1652
1653 css->flags &= ~CSS_VISIBLE;
1654
Tejun Heo5faaf052018-04-26 14:29:04 -07001655 if (!css->ss) {
1656 if (cgroup_on_dfl(cgrp))
1657 cfts = cgroup_base_files;
1658 else
1659 cfts = cgroup1_base_files;
1660
Tejun Heo4df8dc92015-09-18 17:54:23 -04001661 cgroup_addrm_files(css, cgrp, cfts, false);
Tejun Heo5faaf052018-04-26 14:29:04 -07001662 } else {
1663 list_for_each_entry(cfts, &css->ss->cfts, node)
1664 cgroup_addrm_files(css, cgrp, cfts, false);
1665 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001666}
1667
Tejun Heoccdca212015-09-18 17:54:23 -04001668/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001669 * css_populate_dir - create subsys files in a cgroup directory
1670 * @css: target css
Tejun Heoccdca212015-09-18 17:54:23 -04001671 *
1672 * On failure, no file is added.
1673 */
Tejun Heo334c3672016-03-03 09:58:01 -05001674static int css_populate_dir(struct cgroup_subsys_state *css)
Tejun Heoccdca212015-09-18 17:54:23 -04001675{
Tejun Heo334c3672016-03-03 09:58:01 -05001676 struct cgroup *cgrp = css->cgroup;
Tejun Heo4df8dc92015-09-18 17:54:23 -04001677 struct cftype *cfts, *failed_cfts;
1678 int ret;
Tejun Heoccdca212015-09-18 17:54:23 -04001679
Tejun Heo03970d32016-03-03 09:58:00 -05001680 if ((css->flags & CSS_VISIBLE) || !cgrp->kn)
Tejun Heo88cb04b2016-03-03 09:57:58 -05001681 return 0;
1682
Tejun Heo4df8dc92015-09-18 17:54:23 -04001683 if (!css->ss) {
1684 if (cgroup_on_dfl(cgrp))
Tejun Heod62beb72016-12-27 14:49:08 -05001685 cfts = cgroup_base_files;
Tejun Heo4df8dc92015-09-18 17:54:23 -04001686 else
Tejun Heod62beb72016-12-27 14:49:08 -05001687 cfts = cgroup1_base_files;
Tejun Heoccdca212015-09-18 17:54:23 -04001688
Tejun Heo5faaf052018-04-26 14:29:04 -07001689 ret = cgroup_addrm_files(&cgrp->self, cgrp, cfts, true);
1690 if (ret < 0)
1691 return ret;
1692 } else {
1693 list_for_each_entry(cfts, &css->ss->cfts, node) {
1694 ret = cgroup_addrm_files(css, cgrp, cfts, true);
1695 if (ret < 0) {
1696 failed_cfts = cfts;
1697 goto err;
1698 }
Tejun Heoccdca212015-09-18 17:54:23 -04001699 }
1700 }
Tejun Heo88cb04b2016-03-03 09:57:58 -05001701
1702 css->flags |= CSS_VISIBLE;
1703
Tejun Heoccdca212015-09-18 17:54:23 -04001704 return 0;
1705err:
Tejun Heo4df8dc92015-09-18 17:54:23 -04001706 list_for_each_entry(cfts, &css->ss->cfts, node) {
1707 if (cfts == failed_cfts)
1708 break;
1709 cgroup_addrm_files(css, cgrp, cfts, false);
1710 }
Tejun Heoccdca212015-09-18 17:54:23 -04001711 return ret;
1712}
1713
Tejun Heo0a268db2016-12-27 14:49:06 -05001714int rebind_subsystems(struct cgroup_root *dst_root, u16 ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001715{
Tejun Heo1ada4832015-09-18 17:54:23 -04001716 struct cgroup *dcgrp = &dst_root->cgrp;
Tejun Heo30159ec2013-06-25 11:53:37 -07001717 struct cgroup_subsys *ss;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001718 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001719
Tejun Heoace2bee2014-02-11 11:52:47 -05001720 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001721
Tejun Heob4e0eea2016-02-22 22:25:46 -05001722 do_each_subsys_mask(ss, ssid, ss_mask) {
Tejun Heof6d635ad2016-03-08 11:51:26 -05001723 /*
1724 * If @ss has non-root csses attached to it, can't move.
1725 * If @ss is an implicit controller, it is exempt from this
1726 * rule and can be stolen.
1727 */
1728 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)) &&
1729 !ss->implicit_on_dfl)
Tejun Heo3ed80a62014-02-08 10:36:58 -05001730 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001731
Tejun Heo5df36032014-03-19 10:23:54 -04001732 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001733 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001734 return -EBUSY;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001735 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07001736
Tejun Heob4e0eea2016-02-22 22:25:46 -05001737 do_each_subsys_mask(ss, ssid, ss_mask) {
Tejun Heo1ada4832015-09-18 17:54:23 -04001738 struct cgroup_root *src_root = ss->root;
1739 struct cgroup *scgrp = &src_root->cgrp;
1740 struct cgroup_subsys_state *css = cgroup_css(scgrp, ss);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001741 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001742
Tejun Heo1ada4832015-09-18 17:54:23 -04001743 WARN_ON(!css || cgroup_css(dcgrp, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001744
Tejun Heo334c3672016-03-03 09:58:01 -05001745 /* disable from the source */
1746 src_root->subsys_mask &= ~(1 << ssid);
1747 WARN_ON(cgroup_apply_control(scgrp));
1748 cgroup_finalize_control(scgrp, 0);
Tejun Heo4df8dc92015-09-18 17:54:23 -04001749
Tejun Heo334c3672016-03-03 09:58:01 -05001750 /* rebind */
Tejun Heo1ada4832015-09-18 17:54:23 -04001751 RCU_INIT_POINTER(scgrp->subsys[ssid], NULL);
1752 rcu_assign_pointer(dcgrp->subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001753 ss->root = dst_root;
Tejun Heo1ada4832015-09-18 17:54:23 -04001754 css->cgroup = dcgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001755
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001756 spin_lock_irq(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001757 hash_for_each(css_set_table, i, cset, hlist)
1758 list_move_tail(&cset->e_cset_node[ss->id],
Tejun Heo1ada4832015-09-18 17:54:23 -04001759 &dcgrp->e_csets[ss->id]);
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001760 spin_unlock_irq(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001761
Tejun Heobd53d612014-04-23 11:13:16 -04001762 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001763 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo49d1dc42015-09-18 11:56:28 -04001764 if (dst_root == &cgrp_dfl_root) {
1765 static_branch_enable(cgroup_subsys_on_dfl_key[ssid]);
1766 } else {
Tejun Heo1ada4832015-09-18 17:54:23 -04001767 dcgrp->subtree_control |= 1 << ssid;
Tejun Heo49d1dc42015-09-18 11:56:28 -04001768 static_branch_disable(cgroup_subsys_on_dfl_key[ssid]);
Tejun Heo667c2492014-07-08 18:02:56 -04001769 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001770
Tejun Heo334c3672016-03-03 09:58:01 -05001771 ret = cgroup_apply_control(dcgrp);
1772 if (ret)
1773 pr_warn("partial failure to rebind %s controller (err=%d)\n",
1774 ss->name, ret);
1775
Tejun Heo5df36032014-03-19 10:23:54 -04001776 if (ss->bind)
1777 ss->bind(css);
Tejun Heob4e0eea2016-02-22 22:25:46 -05001778 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07001779
Tejun Heo1ada4832015-09-18 17:54:23 -04001780 kernfs_activate(dcgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001781 return 0;
1782}
1783
Tejun Heo1592c9b2016-12-27 14:49:08 -05001784int cgroup_show_path(struct seq_file *sf, struct kernfs_node *kf_node,
1785 struct kernfs_root *kf_root)
Serge E. Hallyn4f41fc52016-05-09 09:59:55 -05001786{
Felipe Balbi09be4c82016-05-12 12:34:38 +03001787 int len = 0;
Serge E. Hallyn4f41fc52016-05-09 09:59:55 -05001788 char *buf = NULL;
1789 struct cgroup_root *kf_cgroot = cgroup_root_from_kf(kf_root);
1790 struct cgroup *ns_cgroup;
1791
1792 buf = kmalloc(PATH_MAX, GFP_KERNEL);
1793 if (!buf)
1794 return -ENOMEM;
1795
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001796 spin_lock_irq(&css_set_lock);
Serge E. Hallyn4f41fc52016-05-09 09:59:55 -05001797 ns_cgroup = current_cgns_cgroup_from_root(kf_cgroot);
1798 len = kernfs_path_from_node(kf_node, ns_cgroup->kn, buf, PATH_MAX);
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001799 spin_unlock_irq(&css_set_lock);
Serge E. Hallyn4f41fc52016-05-09 09:59:55 -05001800
1801 if (len >= PATH_MAX)
1802 len = -ERANGE;
1803 else if (len > 0) {
1804 seq_escape(sf, buf, " \t\n\\");
1805 len = 0;
1806 }
1807 kfree(buf);
1808 return len;
1809}
1810
Al Viroe34a98d2019-01-17 00:22:58 -05001811enum cgroup2_param {
1812 Opt_nsdelegate,
1813 nr__cgroup2_params
1814};
1815
1816static const struct fs_parameter_spec cgroup2_param_specs[] = {
1817 fsparam_flag ("nsdelegate", Opt_nsdelegate),
1818 {}
1819};
1820
1821static const struct fs_parameter_description cgroup2_fs_parameters = {
1822 .name = "cgroup2",
1823 .specs = cgroup2_param_specs,
1824};
1825
1826static int cgroup2_parse_param(struct fs_context *fc, struct fs_parameter *param)
Tejun Heo5136f632017-06-27 14:30:28 -04001827{
Al Viroe34a98d2019-01-17 00:22:58 -05001828 struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
1829 struct fs_parse_result result;
1830 int opt;
Tejun Heo5136f632017-06-27 14:30:28 -04001831
Al Viroe34a98d2019-01-17 00:22:58 -05001832 opt = fs_parse(fc, &cgroup2_fs_parameters, param, &result);
1833 if (opt < 0)
1834 return opt;
Tejun Heo5136f632017-06-27 14:30:28 -04001835
Al Viroe34a98d2019-01-17 00:22:58 -05001836 switch (opt) {
1837 case Opt_nsdelegate:
1838 ctx->flags |= CGRP_ROOT_NS_DELEGATE;
Tejun Heo5136f632017-06-27 14:30:28 -04001839 return 0;
Tejun Heo5136f632017-06-27 14:30:28 -04001840 }
Al Viroe34a98d2019-01-17 00:22:58 -05001841 return -EINVAL;
Tejun Heo5136f632017-06-27 14:30:28 -04001842}
1843
1844static void apply_cgroup_root_flags(unsigned int root_flags)
1845{
1846 if (current->nsproxy->cgroup_ns == &init_cgroup_ns) {
1847 if (root_flags & CGRP_ROOT_NS_DELEGATE)
1848 cgrp_dfl_root.flags |= CGRP_ROOT_NS_DELEGATE;
1849 else
1850 cgrp_dfl_root.flags &= ~CGRP_ROOT_NS_DELEGATE;
1851 }
1852}
1853
1854static int cgroup_show_options(struct seq_file *seq, struct kernfs_root *kf_root)
1855{
1856 if (cgrp_dfl_root.flags & CGRP_ROOT_NS_DELEGATE)
1857 seq_puts(seq, ",nsdelegate");
1858 return 0;
1859}
1860
Al Viro90129622019-01-05 00:38:03 -05001861static int cgroup_reconfigure(struct fs_context *fc)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001862{
Al Viro90129622019-01-05 00:38:03 -05001863 struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
Tejun Heo5136f632017-06-27 14:30:28 -04001864
Al Virof5dfb532019-01-16 23:42:38 -05001865 apply_cgroup_root_flags(ctx->flags);
Tejun Heo5136f632017-06-27 14:30:28 -04001866 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001867}
1868
Tejun Heoafeb0f92014-02-13 06:58:39 -05001869/*
1870 * To reduce the fork() overhead for systems that are not actually using
1871 * their cgroups capability, we don't maintain the lists running through
1872 * each css_set to its tasks until we see the list actually used - in other
1873 * words after the first mount.
1874 */
1875static bool use_task_css_set_links __read_mostly;
1876
1877static void cgroup_enable_task_cg_lists(void)
1878{
1879 struct task_struct *p, *g;
1880
Tejun Heoafeb0f92014-02-13 06:58:39 -05001881 /*
1882 * We need tasklist_lock because RCU is not safe against
1883 * while_each_thread(). Besides, a forking task that has passed
1884 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1885 * is not guaranteed to have its child immediately visible in the
1886 * tasklist if we walk through it with RCU.
1887 */
1888 read_lock(&tasklist_lock);
Tejun Heod8742e22018-05-23 11:04:54 -07001889 spin_lock_irq(&css_set_lock);
1890
1891 if (use_task_css_set_links)
1892 goto out_unlock;
1893
1894 use_task_css_set_links = true;
1895
Tejun Heoafeb0f92014-02-13 06:58:39 -05001896 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001897 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1898 task_css_set(p) != &init_css_set);
1899
1900 /*
1901 * We should check if the process is exiting, otherwise
1902 * it will race with cgroup_exit() in that the list
1903 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001904 * Do it while holding siglock so that we don't end up
1905 * racing against cgroup_exit().
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001906 *
1907 * Interrupts were already disabled while acquiring
1908 * the css_set_lock, so we do not need to disable it
1909 * again when acquiring the sighand->siglock here.
Tejun Heoafeb0f92014-02-13 06:58:39 -05001910 */
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001911 spin_lock(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001912 if (!(p->flags & PF_EXITING)) {
1913 struct css_set *cset = task_css_set(p);
1914
Tejun Heo0de09422015-10-15 16:41:49 -04001915 if (!css_set_populated(cset))
1916 css_set_update_populated(cset, true);
Tejun Heo389b9c12015-10-15 16:41:51 -04001917 list_add_tail(&p->cg_list, &cset->tasks);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001918 get_css_set(cset);
Waiman Long73a72422017-06-13 17:18:01 -04001919 cset->nr_tasks++;
Tejun Heoeaf797a2014-02-25 10:04:03 -05001920 }
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001921 spin_unlock(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001922 } while_each_thread(g, p);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001923out_unlock:
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03001924 spin_unlock_irq(&css_set_lock);
Tejun Heod8742e22018-05-23 11:04:54 -07001925 read_unlock(&tasklist_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001926}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001927
Paul Menagecc31edc2008-10-18 20:28:04 -07001928static void init_cgroup_housekeeping(struct cgroup *cgrp)
1929{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001930 struct cgroup_subsys *ss;
1931 int ssid;
1932
Tejun Heod5c419b2014-05-16 13:22:48 -04001933 INIT_LIST_HEAD(&cgrp->self.sibling);
1934 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001935 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001936 INIT_LIST_HEAD(&cgrp->pidlists);
1937 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001938 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001939 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo454000a2017-05-15 09:34:02 -04001940 cgrp->dom_cgrp = cgrp;
Roman Gushchin1a926e02017-07-28 18:28:44 +01001941 cgrp->max_descendants = INT_MAX;
1942 cgrp->max_depth = INT_MAX;
Tejun Heo8f534702018-04-26 14:29:05 -07001943 INIT_LIST_HEAD(&cgrp->rstat_css_list);
Tejun Heod4ff7492018-04-26 14:29:04 -07001944 prev_cputime_init(&cgrp->prev_cputime);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001945
1946 for_each_subsys(ss, ssid)
1947 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001948
1949 init_waitqueue_head(&cgrp->offline_waitq);
Tejun Heod62beb72016-12-27 14:49:08 -05001950 INIT_WORK(&cgrp->release_agent_work, cgroup1_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001951}
Paul Menagec6d57f32009-09-23 15:56:19 -07001952
Al Virocf6299b12019-01-17 02:25:51 -05001953void init_cgroup_root(struct cgroup_fs_context *ctx)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001954{
Al Virocf6299b12019-01-17 02:25:51 -05001955 struct cgroup_root *root = ctx->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001956 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001957
Paul Menageddbcc7e2007-10-18 23:39:30 -07001958 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001959 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001960 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001961 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001962 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001963
Al Virof5dfb532019-01-16 23:42:38 -05001964 root->flags = ctx->flags;
1965 if (ctx->release_agent)
1966 strscpy(root->release_agent_path, ctx->release_agent, PATH_MAX);
1967 if (ctx->name)
1968 strscpy(root->name, ctx->name, MAX_CGROUP_ROOT_NAMELEN);
1969 if (ctx->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001970 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001971}
1972
Al Viro35ac1182019-01-12 00:20:54 -05001973int cgroup_setup_root(struct cgroup_root *root, u16 ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001974{
Tejun Heod427dfe2014-02-11 11:52:48 -05001975 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001976 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heofa069902016-12-27 14:49:07 -05001977 struct kernfs_syscall_ops *kf_sops;
Tejun Heod427dfe2014-02-11 11:52:48 -05001978 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001979 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001980
Tejun Heod427dfe2014-02-11 11:52:48 -05001981 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001982
Vladimir Davydovcf780b72015-08-03 15:32:26 +03001983 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_KERNEL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001984 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001985 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001986 root_cgrp->id = ret;
Tejun Heob11cfb52015-11-20 15:55:52 -05001987 root_cgrp->ancestor_ids[0] = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001988
Zefan Li9732adc2017-04-19 10:15:59 +08001989 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release,
Al Viro35ac1182019-01-12 00:20:54 -05001990 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001991 if (ret)
1992 goto out;
1993
Tejun Heod427dfe2014-02-11 11:52:48 -05001994 /*
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001995 * We're accessing css_set_count without locking css_set_lock here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001996 * but that's OK - it can only be increased by someone holding
Tejun Heo04313592016-03-03 09:58:01 -05001997 * cgroup_lock, and that's us. Later rebinding may disable
1998 * controllers on the default hierarchy and thus create new csets,
1999 * which can't be more than the existing ones. Allocate 2x.
Tejun Heod427dfe2014-02-11 11:52:48 -05002000 */
Tejun Heo04313592016-03-03 09:58:01 -05002001 ret = allocate_cgrp_cset_links(2 * css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002002 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04002003 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002004
Tejun Heo985ed672014-03-19 10:23:53 -04002005 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05002006 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04002007 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002008
Tejun Heofa069902016-12-27 14:49:07 -05002009 kf_sops = root == &cgrp_dfl_root ?
2010 &cgroup_kf_syscall_ops : &cgroup1_kf_syscall_ops;
2011
2012 root->kf_root = kernfs_create_root(kf_sops,
Shaohua Liaa818822017-07-12 11:49:51 -07002013 KERNFS_ROOT_CREATE_DEACTIVATED |
2014 KERNFS_ROOT_SUPPORT_EXPORTOP,
Tejun Heo2bd59d42014-02-11 11:52:49 -05002015 root_cgrp);
2016 if (IS_ERR(root->kf_root)) {
2017 ret = PTR_ERR(root->kf_root);
2018 goto exit_root_id;
2019 }
2020 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002021
Tejun Heo334c3672016-03-03 09:58:01 -05002022 ret = css_populate_dir(&root_cgrp->self);
Tejun Heod427dfe2014-02-11 11:52:48 -05002023 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05002024 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002025
Tejun Heo5df36032014-03-19 10:23:54 -04002026 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05002027 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05002028 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05002029
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07002030 ret = cgroup_bpf_inherit(root_cgrp);
2031 WARN_ON_ONCE(ret);
2032
Tejun Heoed1777d2016-08-10 11:23:44 -04002033 trace_cgroup_setup_root(root);
2034
Tejun Heod427dfe2014-02-11 11:52:48 -05002035 /*
2036 * There must be no failure case after here, since rebinding takes
2037 * care of subsystems' refcounts, which are explicitly dropped in
2038 * the failure exit path.
2039 */
2040 list_add(&root->root_list, &cgroup_roots);
2041 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002042
Tejun Heod427dfe2014-02-11 11:52:48 -05002043 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002044 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05002045 * objects.
2046 */
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002047 spin_lock_irq(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -04002048 hash_for_each(css_set_table, i, cset, hlist) {
Tejun Heod427dfe2014-02-11 11:52:48 -05002049 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo0de09422015-10-15 16:41:49 -04002050 if (css_set_populated(cset))
2051 cgroup_update_populated(root_cgrp, true);
2052 }
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002053 spin_unlock_irq(&css_set_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002054
Tejun Heod5c419b2014-05-16 13:22:48 -04002055 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05002056 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05002057
Tejun Heo2bd59d42014-02-11 11:52:49 -05002058 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05002059 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002060 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05002061
Tejun Heo2bd59d42014-02-11 11:52:49 -05002062destroy_root:
2063 kernfs_destroy_root(root->kf_root);
2064 root->kf_root = NULL;
2065exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05002066 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04002067cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04002068 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002069out:
Tejun Heod427dfe2014-02-11 11:52:48 -05002070 free_cgrp_cset_links(&tmp_links);
2071 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002072}
2073
Al Virocca8f322019-01-17 10:14:26 -05002074int cgroup_do_get_tree(struct fs_context *fc)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002075{
Al Viro71d883c2019-01-17 02:44:07 -05002076 struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
David Howells23bf1b62018-11-01 23:07:26 +00002077 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07002078
David Howells23bf1b62018-11-01 23:07:26 +00002079 ctx->kfc.root = ctx->root->kf_root;
Al Virocca8f322019-01-17 10:14:26 -05002080 if (fc->fs_type == &cgroup2_fs_type)
David Howells23bf1b62018-11-01 23:07:26 +00002081 ctx->kfc.magic = CGROUP2_SUPER_MAGIC;
Al Virocca8f322019-01-17 10:14:26 -05002082 else
David Howells23bf1b62018-11-01 23:07:26 +00002083 ctx->kfc.magic = CGROUP_SUPER_MAGIC;
2084 ret = kernfs_get_tree(fc);
Serge Hallyned825712016-01-29 02:54:09 -06002085
Paul Menagec6d57f32009-09-23 15:56:19 -07002086 /*
Tejun Heo633feee32016-12-27 14:49:07 -05002087 * In non-init cgroup namespace, instead of root cgroup's dentry,
2088 * we return the dentry corresponding to the cgroupns->root_cgrp.
Serge Hallyned825712016-01-29 02:54:09 -06002089 */
Al Virocca8f322019-01-17 10:14:26 -05002090 if (!ret && ctx->ns != &init_cgroup_ns) {
Serge Hallyned825712016-01-29 02:54:09 -06002091 struct dentry *nsdentry;
Al Viro71d883c2019-01-17 02:44:07 -05002092 struct super_block *sb = fc->root->d_sb;
Serge Hallyned825712016-01-29 02:54:09 -06002093 struct cgroup *cgrp;
2094
2095 mutex_lock(&cgroup_mutex);
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002096 spin_lock_irq(&css_set_lock);
Serge Hallyned825712016-01-29 02:54:09 -06002097
Al Virocca8f322019-01-17 10:14:26 -05002098 cgrp = cset_cgroup_from_root(ctx->ns->root_cset, ctx->root);
Serge Hallyned825712016-01-29 02:54:09 -06002099
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002100 spin_unlock_irq(&css_set_lock);
Serge Hallyned825712016-01-29 02:54:09 -06002101 mutex_unlock(&cgroup_mutex);
2102
Al Viro399504e2019-01-06 11:41:29 -05002103 nsdentry = kernfs_node_dentry(cgrp->kn, sb);
Al Viro71d883c2019-01-17 02:44:07 -05002104 dput(fc->root);
2105 fc->root = nsdentry;
2106 if (IS_ERR(nsdentry)) {
2107 ret = PTR_ERR(nsdentry);
Al Viro399504e2019-01-06 11:41:29 -05002108 deactivate_locked_super(sb);
Al Viro71d883c2019-01-17 02:44:07 -05002109 }
Serge Hallyned825712016-01-29 02:54:09 -06002110 }
2111
David Howells23bf1b62018-11-01 23:07:26 +00002112 if (!ctx->kfc.new_sb_created)
Al Viro71d883c2019-01-17 02:44:07 -05002113 cgroup_put(&ctx->root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08002114
Al Viro71d883c2019-01-17 02:44:07 -05002115 return ret;
Tejun Heo633feee32016-12-27 14:49:07 -05002116}
2117
Al Viro90129622019-01-05 00:38:03 -05002118/*
2119 * Destroy a cgroup filesystem context.
2120 */
2121static void cgroup_fs_context_free(struct fs_context *fc)
Tejun Heo633feee32016-12-27 14:49:07 -05002122{
Al Viro90129622019-01-05 00:38:03 -05002123 struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
2124
Al Virof5dfb532019-01-16 23:42:38 -05002125 kfree(ctx->name);
2126 kfree(ctx->release_agent);
Al Virocca8f322019-01-17 10:14:26 -05002127 put_cgroup_ns(ctx->ns);
David Howells23bf1b62018-11-01 23:07:26 +00002128 kernfs_free_fs_context(fc);
Al Viro90129622019-01-05 00:38:03 -05002129 kfree(ctx);
2130}
2131
Al Viro90129622019-01-05 00:38:03 -05002132static int cgroup_get_tree(struct fs_context *fc)
Tejun Heo633feee32016-12-27 14:49:07 -05002133{
Al Viro90129622019-01-05 00:38:03 -05002134 struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
Tejun Heo5136f632017-06-27 14:30:28 -04002135 int ret;
Tejun Heo633feee32016-12-27 14:49:07 -05002136
Al Viro90129622019-01-05 00:38:03 -05002137 cgrp_dfl_visible = true;
2138 cgroup_get_live(&cgrp_dfl_root.cgrp);
Al Virocf6299b12019-01-17 02:25:51 -05002139 ctx->root = &cgrp_dfl_root;
Tejun Heo633feee32016-12-27 14:49:07 -05002140
Al Virocca8f322019-01-17 10:14:26 -05002141 ret = cgroup_do_get_tree(fc);
Al Viro71d883c2019-01-17 02:44:07 -05002142 if (!ret)
2143 apply_cgroup_root_flags(ctx->flags);
2144 return ret;
Al Viro90129622019-01-05 00:38:03 -05002145}
2146
Al Viro90129622019-01-05 00:38:03 -05002147static const struct fs_context_operations cgroup_fs_context_ops = {
2148 .free = cgroup_fs_context_free,
Al Viroe34a98d2019-01-17 00:22:58 -05002149 .parse_param = cgroup2_parse_param,
Al Viro90129622019-01-05 00:38:03 -05002150 .get_tree = cgroup_get_tree,
2151 .reconfigure = cgroup_reconfigure,
2152};
2153
2154static const struct fs_context_operations cgroup1_fs_context_ops = {
2155 .free = cgroup_fs_context_free,
Al Viro8d2451f2019-01-17 00:15:11 -05002156 .parse_param = cgroup1_parse_param,
Al Viro90129622019-01-05 00:38:03 -05002157 .get_tree = cgroup1_get_tree,
2158 .reconfigure = cgroup1_reconfigure,
2159};
2160
2161/*
David Howells23bf1b62018-11-01 23:07:26 +00002162 * Initialise the cgroup filesystem creation/reconfiguration context. Notably,
2163 * we select the namespace we're going to use.
Al Viro90129622019-01-05 00:38:03 -05002164 */
2165static int cgroup_init_fs_context(struct fs_context *fc)
2166{
2167 struct cgroup_fs_context *ctx;
2168
2169 ctx = kzalloc(sizeof(struct cgroup_fs_context), GFP_KERNEL);
2170 if (!ctx)
2171 return -ENOMEM;
Tejun Heo633feee32016-12-27 14:49:07 -05002172
Li Zefan3a32bd72014-06-30 11:50:59 +08002173 /*
Tejun Heo633feee32016-12-27 14:49:07 -05002174 * The first time anyone tries to mount a cgroup, enable the list
2175 * linking each css_set to its tasks and fix up all existing tasks.
Li Zefan3a32bd72014-06-30 11:50:59 +08002176 */
Tejun Heo633feee32016-12-27 14:49:07 -05002177 if (!use_task_css_set_links)
2178 cgroup_enable_task_cg_lists();
2179
Al Virocca8f322019-01-17 10:14:26 -05002180 ctx->ns = current->nsproxy->cgroup_ns;
2181 get_cgroup_ns(ctx->ns);
David Howells23bf1b62018-11-01 23:07:26 +00002182 fc->fs_private = &ctx->kfc;
Al Viro90129622019-01-05 00:38:03 -05002183 if (fc->fs_type == &cgroup2_fs_type)
2184 fc->ops = &cgroup_fs_context_ops;
2185 else
2186 fc->ops = &cgroup1_fs_context_ops;
David Howells23bf1b62018-11-01 23:07:26 +00002187 if (fc->user_ns)
2188 put_user_ns(fc->user_ns);
2189 fc->user_ns = get_user_ns(ctx->ns->user_ns);
2190 fc->global = true;
Al Viro90129622019-01-05 00:38:03 -05002191 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002192}
2193
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002194static void cgroup_kill_sb(struct super_block *sb)
2195{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002196 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002197 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002198
Tejun Heo9d755d32014-05-14 09:15:02 -04002199 /*
Al Viro35ac1182019-01-12 00:20:54 -05002200 * If @root doesn't have any children, start killing it.
Tejun Heo9d755d32014-05-14 09:15:02 -04002201 * This prevents new mounts by disabling percpu_ref_tryget_live().
2202 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08002203 *
2204 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04002205 */
Al Viro35ac1182019-01-12 00:20:54 -05002206 if (list_empty(&root->cgrp.self.children) && root != &cgrp_dfl_root &&
2207 !percpu_ref_is_dying(&root->cgrp.self.refcnt))
Tejun Heo9d755d32014-05-14 09:15:02 -04002208 percpu_ref_kill(&root->cgrp.self.refcnt);
Al Viro35ac1182019-01-12 00:20:54 -05002209 cgroup_put(&root->cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002210 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002211}
2212
Tejun Heo0a268db2016-12-27 14:49:06 -05002213struct file_system_type cgroup_fs_type = {
Al Viro8d2451f2019-01-17 00:15:11 -05002214 .name = "cgroup",
2215 .init_fs_context = cgroup_init_fs_context,
2216 .parameters = &cgroup1_fs_parameters,
2217 .kill_sb = cgroup_kill_sb,
2218 .fs_flags = FS_USERNS_MOUNT,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002219};
2220
Tejun Heo67e9c742015-11-16 11:13:34 -05002221static struct file_system_type cgroup2_fs_type = {
Al Viroe34a98d2019-01-17 00:22:58 -05002222 .name = "cgroup2",
2223 .init_fs_context = cgroup_init_fs_context,
2224 .parameters = &cgroup2_fs_parameters,
2225 .kill_sb = cgroup_kill_sb,
2226 .fs_flags = FS_USERNS_MOUNT,
Tejun Heo67e9c742015-11-16 11:13:34 -05002227};
2228
Tejun Heo0a268db2016-12-27 14:49:06 -05002229int cgroup_path_ns_locked(struct cgroup *cgrp, char *buf, size_t buflen,
2230 struct cgroup_namespace *ns)
Aditya Kalia79a9082016-01-29 02:54:06 -06002231{
2232 struct cgroup *root = cset_cgroup_from_root(ns->root_cset, cgrp->root);
Aditya Kalia79a9082016-01-29 02:54:06 -06002233
Tejun Heo4c737b42016-08-10 11:23:44 -04002234 return kernfs_path_from_node(cgrp->kn, root->kn, buf, buflen);
Aditya Kalia79a9082016-01-29 02:54:06 -06002235}
2236
Tejun Heo4c737b42016-08-10 11:23:44 -04002237int cgroup_path_ns(struct cgroup *cgrp, char *buf, size_t buflen,
2238 struct cgroup_namespace *ns)
Aditya Kalia79a9082016-01-29 02:54:06 -06002239{
Tejun Heo4c737b42016-08-10 11:23:44 -04002240 int ret;
Aditya Kalia79a9082016-01-29 02:54:06 -06002241
2242 mutex_lock(&cgroup_mutex);
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002243 spin_lock_irq(&css_set_lock);
Aditya Kalia79a9082016-01-29 02:54:06 -06002244
2245 ret = cgroup_path_ns_locked(cgrp, buf, buflen, ns);
2246
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002247 spin_unlock_irq(&css_set_lock);
Aditya Kalia79a9082016-01-29 02:54:06 -06002248 mutex_unlock(&cgroup_mutex);
2249
2250 return ret;
2251}
2252EXPORT_SYMBOL_GPL(cgroup_path_ns);
2253
Li Zefana043e3b2008-02-23 15:24:09 -08002254/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07002255 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07002256 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07002257 * @buf: the buffer to write the path into
2258 * @buflen: the length of the buffer
2259 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07002260 * Determine @task's cgroup on the first (the one with the lowest non-zero
2261 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
2262 * function grabs cgroup_mutex and shouldn't be used inside locks used by
2263 * cgroup controller callbacks.
2264 *
Tejun Heoe61734c2014-02-12 09:29:50 -05002265 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07002266 */
Tejun Heo4c737b42016-08-10 11:23:44 -04002267int task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07002268{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002269 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07002270 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05002271 int hierarchy_id = 1;
Tejun Heo4c737b42016-08-10 11:23:44 -04002272 int ret;
Tejun Heo857a2be2013-04-14 20:50:08 -07002273
2274 mutex_lock(&cgroup_mutex);
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002275 spin_lock_irq(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002276
Tejun Heo913ffdb2013-07-11 16:34:48 -07002277 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
2278
Tejun Heo857a2be2013-04-14 20:50:08 -07002279 if (root) {
2280 cgrp = task_cgroup_from_root(task, root);
Tejun Heo4c737b42016-08-10 11:23:44 -04002281 ret = cgroup_path_ns_locked(cgrp, buf, buflen, &init_cgroup_ns);
Tejun Heo913ffdb2013-07-11 16:34:48 -07002282 } else {
2283 /* if no hierarchy exists, everyone is in "/" */
Tejun Heo4c737b42016-08-10 11:23:44 -04002284 ret = strlcpy(buf, "/", buflen);
Tejun Heo857a2be2013-04-14 20:50:08 -07002285 }
2286
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002287 spin_unlock_irq(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002288 mutex_unlock(&cgroup_mutex);
Tejun Heo4c737b42016-08-10 11:23:44 -04002289 return ret;
Tejun Heo857a2be2013-04-14 20:50:08 -07002290}
Tejun Heo913ffdb2013-07-11 16:34:48 -07002291EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07002292
Tejun Heoadaae5d2015-09-11 15:00:21 -04002293/**
Tejun Heoe595cd72017-01-15 19:03:41 -05002294 * cgroup_migrate_add_task - add a migration target task to a migration context
Tejun Heoadaae5d2015-09-11 15:00:21 -04002295 * @task: target task
Tejun Heoe595cd72017-01-15 19:03:41 -05002296 * @mgctx: target migration context
Tejun Heoadaae5d2015-09-11 15:00:21 -04002297 *
Tejun Heoe595cd72017-01-15 19:03:41 -05002298 * Add @task, which is a migration target, to @mgctx->tset. This function
2299 * becomes noop if @task doesn't need to be migrated. @task's css_set
2300 * should have been added as a migration source and @task->cg_list will be
2301 * moved from the css_set's tasks list to mg_tasks one.
Tejun Heoadaae5d2015-09-11 15:00:21 -04002302 */
Tejun Heoe595cd72017-01-15 19:03:41 -05002303static void cgroup_migrate_add_task(struct task_struct *task,
2304 struct cgroup_mgctx *mgctx)
Tejun Heoadaae5d2015-09-11 15:00:21 -04002305{
2306 struct css_set *cset;
2307
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002308 lockdep_assert_held(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002309
2310 /* @task either already exited or can't exit until the end */
2311 if (task->flags & PF_EXITING)
2312 return;
2313
2314 /* leave @task alone if post_fork() hasn't linked it yet */
2315 if (list_empty(&task->cg_list))
2316 return;
2317
2318 cset = task_css_set(task);
2319 if (!cset->mg_src_cgrp)
2320 return;
2321
Tejun Heo61046722017-07-08 07:17:02 -04002322 mgctx->tset.nr_tasks++;
2323
Tejun Heoadaae5d2015-09-11 15:00:21 -04002324 list_move_tail(&task->cg_list, &cset->mg_tasks);
2325 if (list_empty(&cset->mg_node))
Tejun Heoe595cd72017-01-15 19:03:41 -05002326 list_add_tail(&cset->mg_node,
2327 &mgctx->tset.src_csets);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002328 if (list_empty(&cset->mg_dst_cset->mg_node))
Tejun Heod8ebf512017-01-15 19:03:40 -05002329 list_add_tail(&cset->mg_dst_cset->mg_node,
Tejun Heoe595cd72017-01-15 19:03:41 -05002330 &mgctx->tset.dst_csets);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002331}
2332
Tejun Heo2f7ee562011-12-12 18:12:21 -08002333/**
2334 * cgroup_taskset_first - reset taskset and return the first task
2335 * @tset: taskset of interest
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002336 * @dst_cssp: output variable for the destination css
Tejun Heo2f7ee562011-12-12 18:12:21 -08002337 *
2338 * @tset iteration is initialized and the first task is returned.
2339 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002340struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset,
2341 struct cgroup_subsys_state **dst_cssp)
Tejun Heo2f7ee562011-12-12 18:12:21 -08002342{
Tejun Heob3dc0942014-02-25 10:04:01 -05002343 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2344 tset->cur_task = NULL;
2345
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002346 return cgroup_taskset_next(tset, dst_cssp);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002347}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002348
2349/**
2350 * cgroup_taskset_next - iterate to the next task in taskset
2351 * @tset: taskset of interest
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002352 * @dst_cssp: output variable for the destination css
Tejun Heo2f7ee562011-12-12 18:12:21 -08002353 *
2354 * Return the next task in @tset. Iteration must have been initialized
2355 * with cgroup_taskset_first().
2356 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002357struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset,
2358 struct cgroup_subsys_state **dst_cssp)
Tejun Heo2f7ee562011-12-12 18:12:21 -08002359{
Tejun Heob3dc0942014-02-25 10:04:01 -05002360 struct css_set *cset = tset->cur_cset;
2361 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002362
Tejun Heob3dc0942014-02-25 10:04:01 -05002363 while (&cset->mg_node != tset->csets) {
2364 if (!task)
2365 task = list_first_entry(&cset->mg_tasks,
2366 struct task_struct, cg_list);
2367 else
2368 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002369
Tejun Heob3dc0942014-02-25 10:04:01 -05002370 if (&task->cg_list != &cset->mg_tasks) {
2371 tset->cur_cset = cset;
2372 tset->cur_task = task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002373
2374 /*
2375 * This function may be called both before and
2376 * after cgroup_taskset_migrate(). The two cases
2377 * can be distinguished by looking at whether @cset
2378 * has its ->mg_dst_cset set.
2379 */
2380 if (cset->mg_dst_cset)
2381 *dst_cssp = cset->mg_dst_cset->subsys[tset->ssid];
2382 else
2383 *dst_cssp = cset->subsys[tset->ssid];
2384
Tejun Heob3dc0942014-02-25 10:04:01 -05002385 return task;
2386 }
2387
2388 cset = list_next_entry(cset, mg_node);
2389 task = NULL;
2390 }
2391
2392 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002393}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002394
2395/**
Tejun Heo37ff9f82016-03-08 11:51:26 -05002396 * cgroup_taskset_migrate - migrate a taskset
Tejun Heoe595cd72017-01-15 19:03:41 -05002397 * @mgctx: migration context
Tejun Heoadaae5d2015-09-11 15:00:21 -04002398 *
Tejun Heoe595cd72017-01-15 19:03:41 -05002399 * Migrate tasks in @mgctx as setup by migration preparation functions.
Tejun Heo37ff9f82016-03-08 11:51:26 -05002400 * This function fails iff one of the ->can_attach callbacks fails and
Tejun Heoe595cd72017-01-15 19:03:41 -05002401 * guarantees that either all or none of the tasks in @mgctx are migrated.
2402 * @mgctx is consumed regardless of success.
Tejun Heoadaae5d2015-09-11 15:00:21 -04002403 */
Tejun Heobfc2cf62017-01-15 19:03:41 -05002404static int cgroup_migrate_execute(struct cgroup_mgctx *mgctx)
Tejun Heoadaae5d2015-09-11 15:00:21 -04002405{
Tejun Heoe595cd72017-01-15 19:03:41 -05002406 struct cgroup_taskset *tset = &mgctx->tset;
Tejun Heo37ff9f82016-03-08 11:51:26 -05002407 struct cgroup_subsys *ss;
Tejun Heoadaae5d2015-09-11 15:00:21 -04002408 struct task_struct *task, *tmp_task;
2409 struct css_set *cset, *tmp_cset;
Tejun Heo37ff9f82016-03-08 11:51:26 -05002410 int ssid, failed_ssid, ret;
Tejun Heoadaae5d2015-09-11 15:00:21 -04002411
Tejun Heoadaae5d2015-09-11 15:00:21 -04002412 /* check that we can legitimately attach to the cgroup */
Tejun Heo61046722017-07-08 07:17:02 -04002413 if (tset->nr_tasks) {
2414 do_each_subsys_mask(ss, ssid, mgctx->ss_mask) {
2415 if (ss->can_attach) {
2416 tset->ssid = ssid;
2417 ret = ss->can_attach(tset);
2418 if (ret) {
2419 failed_ssid = ssid;
2420 goto out_cancel_attach;
2421 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002422 }
Tejun Heo61046722017-07-08 07:17:02 -04002423 } while_each_subsys_mask();
2424 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002425
2426 /*
2427 * Now that we're guaranteed success, proceed to move all tasks to
2428 * the new cgroup. There are no failure cases after here, so this
2429 * is the commit point.
2430 */
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002431 spin_lock_irq(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002432 list_for_each_entry(cset, &tset->src_csets, mg_node) {
Tejun Heof6d7d042015-10-15 16:41:52 -04002433 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) {
2434 struct css_set *from_cset = task_css_set(task);
2435 struct css_set *to_cset = cset->mg_dst_cset;
2436
2437 get_css_set(to_cset);
Waiman Long73a72422017-06-13 17:18:01 -04002438 to_cset->nr_tasks++;
Tejun Heof6d7d042015-10-15 16:41:52 -04002439 css_set_move_task(task, from_cset, to_cset, true);
Waiman Long73a72422017-06-13 17:18:01 -04002440 from_cset->nr_tasks--;
Roman Gushchin76f969e2019-04-19 10:03:04 -07002441 /*
2442 * If the source or destination cgroup is frozen,
2443 * the task might require to change its state.
2444 */
2445 cgroup_freezer_migrate_task(task, from_cset->dfl_cgrp,
2446 to_cset->dfl_cgrp);
2447 put_css_set_locked(from_cset);
2448
Tejun Heof6d7d042015-10-15 16:41:52 -04002449 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002450 }
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002451 spin_unlock_irq(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002452
2453 /*
2454 * Migration is committed, all target tasks are now on dst_csets.
2455 * Nothing is sensitive to fork() after this point. Notify
2456 * controllers that migration is complete.
2457 */
2458 tset->csets = &tset->dst_csets;
2459
Tejun Heo61046722017-07-08 07:17:02 -04002460 if (tset->nr_tasks) {
2461 do_each_subsys_mask(ss, ssid, mgctx->ss_mask) {
2462 if (ss->attach) {
2463 tset->ssid = ssid;
2464 ss->attach(tset);
2465 }
2466 } while_each_subsys_mask();
2467 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002468
2469 ret = 0;
2470 goto out_release_tset;
2471
2472out_cancel_attach:
Tejun Heo61046722017-07-08 07:17:02 -04002473 if (tset->nr_tasks) {
2474 do_each_subsys_mask(ss, ssid, mgctx->ss_mask) {
2475 if (ssid == failed_ssid)
2476 break;
2477 if (ss->cancel_attach) {
2478 tset->ssid = ssid;
2479 ss->cancel_attach(tset);
2480 }
2481 } while_each_subsys_mask();
2482 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002483out_release_tset:
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002484 spin_lock_irq(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002485 list_splice_init(&tset->dst_csets, &tset->src_csets);
2486 list_for_each_entry_safe(cset, tmp_cset, &tset->src_csets, mg_node) {
2487 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
2488 list_del_init(&cset->mg_node);
2489 }
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002490 spin_unlock_irq(&css_set_lock);
Waiman Longc4fa6c42017-09-21 09:54:13 -04002491
2492 /*
2493 * Re-initialize the cgroup_taskset structure in case it is reused
2494 * again in another cgroup_migrate_add_task()/cgroup_migrate_execute()
2495 * iteration.
2496 */
2497 tset->nr_tasks = 0;
2498 tset->csets = &tset->src_csets;
Tejun Heoadaae5d2015-09-11 15:00:21 -04002499 return ret;
2500}
2501
2502/**
Tejun Heo8cfd8142017-07-21 11:14:51 -04002503 * cgroup_migrate_vet_dst - verify whether a cgroup can be migration destination
Tejun Heo6c694c82016-03-08 11:51:25 -05002504 * @dst_cgrp: destination cgroup to test
2505 *
Tejun Heo8cfd8142017-07-21 11:14:51 -04002506 * On the default hierarchy, except for the mixable, (possible) thread root
2507 * and threaded cgroups, subtree_control must be zero for migration
2508 * destination cgroups with tasks so that child cgroups don't compete
2509 * against tasks.
Tejun Heo6c694c82016-03-08 11:51:25 -05002510 */
Tejun Heo8cfd8142017-07-21 11:14:51 -04002511int cgroup_migrate_vet_dst(struct cgroup *dst_cgrp)
Tejun Heo6c694c82016-03-08 11:51:25 -05002512{
Tejun Heo8cfd8142017-07-21 11:14:51 -04002513 /* v1 doesn't have any restriction */
2514 if (!cgroup_on_dfl(dst_cgrp))
2515 return 0;
2516
2517 /* verify @dst_cgrp can host resources */
2518 if (!cgroup_is_valid_domain(dst_cgrp->dom_cgrp))
2519 return -EOPNOTSUPP;
2520
2521 /* mixables don't care */
2522 if (cgroup_is_mixable(dst_cgrp))
2523 return 0;
2524
2525 /*
2526 * If @dst_cgrp is already or can become a thread root or is
2527 * threaded, it doesn't matter.
2528 */
2529 if (cgroup_can_be_thread_root(dst_cgrp) || cgroup_is_threaded(dst_cgrp))
2530 return 0;
2531
2532 /* apply no-internal-process constraint */
2533 if (dst_cgrp->subtree_control)
2534 return -EBUSY;
2535
2536 return 0;
Tejun Heo6c694c82016-03-08 11:51:25 -05002537}
2538
2539/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002540 * cgroup_migrate_finish - cleanup after attach
Tejun Heoe595cd72017-01-15 19:03:41 -05002541 * @mgctx: migration context
Ben Blum74a11662011-05-26 16:25:20 -07002542 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002543 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2544 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002545 */
Tejun Heoe595cd72017-01-15 19:03:41 -05002546void cgroup_migrate_finish(struct cgroup_mgctx *mgctx)
Ben Blum74a11662011-05-26 16:25:20 -07002547{
Tejun Heoe595cd72017-01-15 19:03:41 -05002548 LIST_HEAD(preloaded);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002549 struct css_set *cset, *tmp_cset;
2550
2551 lockdep_assert_held(&cgroup_mutex);
2552
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002553 spin_lock_irq(&css_set_lock);
Tejun Heoe595cd72017-01-15 19:03:41 -05002554
2555 list_splice_tail_init(&mgctx->preloaded_src_csets, &preloaded);
2556 list_splice_tail_init(&mgctx->preloaded_dst_csets, &preloaded);
2557
2558 list_for_each_entry_safe(cset, tmp_cset, &preloaded, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002559 cset->mg_src_cgrp = NULL;
Tejun Heoe4857982016-03-08 11:51:26 -05002560 cset->mg_dst_cgrp = NULL;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002561 cset->mg_dst_cset = NULL;
2562 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002563 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002564 }
Tejun Heoe595cd72017-01-15 19:03:41 -05002565
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002566 spin_unlock_irq(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002567}
2568
2569/**
2570 * cgroup_migrate_add_src - add a migration source css_set
2571 * @src_cset: the source css_set to add
2572 * @dst_cgrp: the destination cgroup
Tejun Heoe595cd72017-01-15 19:03:41 -05002573 * @mgctx: migration context
Tejun Heo1958d2d2014-02-25 10:04:03 -05002574 *
2575 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
Tejun Heoe595cd72017-01-15 19:03:41 -05002576 * @src_cset and add it to @mgctx->src_csets, which should later be cleaned
Tejun Heo1958d2d2014-02-25 10:04:03 -05002577 * up by cgroup_migrate_finish().
2578 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002579 * This function may be called without holding cgroup_threadgroup_rwsem
2580 * even if the target is a process. Threads may be created and destroyed
2581 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2582 * into play and the preloaded css_sets are guaranteed to cover all
2583 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002584 */
Tejun Heo0a268db2016-12-27 14:49:06 -05002585void cgroup_migrate_add_src(struct css_set *src_cset,
2586 struct cgroup *dst_cgrp,
Tejun Heoe595cd72017-01-15 19:03:41 -05002587 struct cgroup_mgctx *mgctx)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002588{
2589 struct cgroup *src_cgrp;
2590
2591 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002592 lockdep_assert_held(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002593
Tejun Heo2b021cb2016-03-15 20:43:04 -04002594 /*
2595 * If ->dead, @src_set is associated with one or more dead cgroups
2596 * and doesn't contain any migratable tasks. Ignore it early so
2597 * that the rest of migration path doesn't get confused by it.
2598 */
2599 if (src_cset->dead)
2600 return;
2601
Tejun Heo1958d2d2014-02-25 10:04:03 -05002602 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2603
Tejun Heo1958d2d2014-02-25 10:04:03 -05002604 if (!list_empty(&src_cset->mg_preload_node))
2605 return;
2606
2607 WARN_ON(src_cset->mg_src_cgrp);
Tejun Heoe4857982016-03-08 11:51:26 -05002608 WARN_ON(src_cset->mg_dst_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002609 WARN_ON(!list_empty(&src_cset->mg_tasks));
2610 WARN_ON(!list_empty(&src_cset->mg_node));
2611
2612 src_cset->mg_src_cgrp = src_cgrp;
Tejun Heoe4857982016-03-08 11:51:26 -05002613 src_cset->mg_dst_cgrp = dst_cgrp;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002614 get_css_set(src_cset);
Tejun Heoe595cd72017-01-15 19:03:41 -05002615 list_add_tail(&src_cset->mg_preload_node, &mgctx->preloaded_src_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002616}
2617
2618/**
2619 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heoe595cd72017-01-15 19:03:41 -05002620 * @mgctx: migration context
Tejun Heo1958d2d2014-02-25 10:04:03 -05002621 *
Tejun Heoe4857982016-03-08 11:51:26 -05002622 * Tasks are about to be moved and all the source css_sets have been
Tejun Heoe595cd72017-01-15 19:03:41 -05002623 * preloaded to @mgctx->preloaded_src_csets. This function looks up and
2624 * pins all destination css_sets, links each to its source, and append them
2625 * to @mgctx->preloaded_dst_csets.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002626 *
2627 * This function must be called after cgroup_migrate_add_src() has been
2628 * called on each migration source css_set. After migration is performed
2629 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
Tejun Heoe595cd72017-01-15 19:03:41 -05002630 * @mgctx.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002631 */
Tejun Heoe595cd72017-01-15 19:03:41 -05002632int cgroup_migrate_prepare_dst(struct cgroup_mgctx *mgctx)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002633{
Tejun Heof817de92014-04-23 11:13:16 -04002634 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002635
2636 lockdep_assert_held(&cgroup_mutex);
2637
2638 /* look up the dst cset for each src cset and link it to src */
Tejun Heoe595cd72017-01-15 19:03:41 -05002639 list_for_each_entry_safe(src_cset, tmp_cset, &mgctx->preloaded_src_csets,
2640 mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002641 struct css_set *dst_cset;
Tejun Heobfc2cf62017-01-15 19:03:41 -05002642 struct cgroup_subsys *ss;
2643 int ssid;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002644
Tejun Heoe4857982016-03-08 11:51:26 -05002645 dst_cset = find_css_set(src_cset, src_cset->mg_dst_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002646 if (!dst_cset)
Shakeel Buttd6e486e2019-04-03 16:03:54 -07002647 return -ENOMEM;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002648
2649 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002650
2651 /*
2652 * If src cset equals dst, it's noop. Drop the src.
2653 * cgroup_migrate() will skip the cset too. Note that we
2654 * can't handle src == dst as some nodes are used by both.
2655 */
2656 if (src_cset == dst_cset) {
2657 src_cset->mg_src_cgrp = NULL;
Tejun Heoe4857982016-03-08 11:51:26 -05002658 src_cset->mg_dst_cgrp = NULL;
Tejun Heof817de92014-04-23 11:13:16 -04002659 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002660 put_css_set(src_cset);
2661 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002662 continue;
2663 }
2664
Tejun Heo1958d2d2014-02-25 10:04:03 -05002665 src_cset->mg_dst_cset = dst_cset;
2666
2667 if (list_empty(&dst_cset->mg_preload_node))
Tejun Heoe595cd72017-01-15 19:03:41 -05002668 list_add_tail(&dst_cset->mg_preload_node,
2669 &mgctx->preloaded_dst_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002670 else
Zefan Lia25eb522014-09-19 16:51:00 +08002671 put_css_set(dst_cset);
Tejun Heobfc2cf62017-01-15 19:03:41 -05002672
2673 for_each_subsys(ss, ssid)
2674 if (src_cset->subsys[ssid] != dst_cset->subsys[ssid])
2675 mgctx->ss_mask |= 1 << ssid;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002676 }
2677
Tejun Heo1958d2d2014-02-25 10:04:03 -05002678 return 0;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002679}
2680
2681/**
2682 * cgroup_migrate - migrate a process or task to a cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002683 * @leader: the leader of the process or the task to migrate
2684 * @threadgroup: whether @leader points to the whole process or a single task
Tejun Heoe595cd72017-01-15 19:03:41 -05002685 * @mgctx: migration context
Tejun Heo1958d2d2014-02-25 10:04:03 -05002686 *
Tejun Heo37ff9f82016-03-08 11:51:26 -05002687 * Migrate a process or task denoted by @leader. If migrating a process,
2688 * the caller must be holding cgroup_threadgroup_rwsem. The caller is also
2689 * responsible for invoking cgroup_migrate_add_src() and
Tejun Heo1958d2d2014-02-25 10:04:03 -05002690 * cgroup_migrate_prepare_dst() on the targets before invoking this
2691 * function and following up with cgroup_migrate_finish().
2692 *
2693 * As long as a controller's ->can_attach() doesn't fail, this function is
2694 * guaranteed to succeed. This means that, excluding ->can_attach()
2695 * failure, when migrating multiple targets, the success or failure can be
2696 * decided for all targets by invoking group_migrate_prepare_dst() before
2697 * actually starting migrating.
2698 */
Tejun Heo0a268db2016-12-27 14:49:06 -05002699int cgroup_migrate(struct task_struct *leader, bool threadgroup,
Tejun Heobfc2cf62017-01-15 19:03:41 -05002700 struct cgroup_mgctx *mgctx)
Ben Blum74a11662011-05-26 16:25:20 -07002701{
Tejun Heoadaae5d2015-09-11 15:00:21 -04002702 struct task_struct *task;
Ben Blum74a11662011-05-26 16:25:20 -07002703
2704 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002705 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2706 * already PF_EXITING could be freed from underneath us unless we
2707 * take an rcu_read_lock.
2708 */
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002709 spin_lock_irq(&css_set_lock);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002710 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002711 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002712 do {
Tejun Heoe595cd72017-01-15 19:03:41 -05002713 cgroup_migrate_add_task(task, mgctx);
Li Zefan081aa452013-03-13 09:17:09 +08002714 if (!threadgroup)
2715 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002716 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002717 rcu_read_unlock();
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002718 spin_unlock_irq(&css_set_lock);
Ben Blum74a11662011-05-26 16:25:20 -07002719
Tejun Heobfc2cf62017-01-15 19:03:41 -05002720 return cgroup_migrate_execute(mgctx);
Ben Blum74a11662011-05-26 16:25:20 -07002721}
2722
Tejun Heo1958d2d2014-02-25 10:04:03 -05002723/**
2724 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2725 * @dst_cgrp: the cgroup to attach to
2726 * @leader: the task or the leader of the threadgroup to be attached
2727 * @threadgroup: attach the whole threadgroup?
2728 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002729 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002730 */
Tejun Heo0a268db2016-12-27 14:49:06 -05002731int cgroup_attach_task(struct cgroup *dst_cgrp, struct task_struct *leader,
2732 bool threadgroup)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002733{
Tejun Heoe595cd72017-01-15 19:03:41 -05002734 DEFINE_CGROUP_MGCTX(mgctx);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002735 struct task_struct *task;
2736 int ret;
2737
Tejun Heo8cfd8142017-07-21 11:14:51 -04002738 ret = cgroup_migrate_vet_dst(dst_cgrp);
2739 if (ret)
2740 return ret;
Tejun Heo6c694c82016-03-08 11:51:25 -05002741
Tejun Heo1958d2d2014-02-25 10:04:03 -05002742 /* look up all src csets */
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002743 spin_lock_irq(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002744 rcu_read_lock();
2745 task = leader;
2746 do {
Tejun Heoe595cd72017-01-15 19:03:41 -05002747 cgroup_migrate_add_src(task_css_set(task), dst_cgrp, &mgctx);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002748 if (!threadgroup)
2749 break;
2750 } while_each_thread(leader, task);
2751 rcu_read_unlock();
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002752 spin_unlock_irq(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002753
2754 /* prepare dst csets and commit */
Tejun Heoe595cd72017-01-15 19:03:41 -05002755 ret = cgroup_migrate_prepare_dst(&mgctx);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002756 if (!ret)
Tejun Heobfc2cf62017-01-15 19:03:41 -05002757 ret = cgroup_migrate(leader, threadgroup, &mgctx);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002758
Tejun Heoe595cd72017-01-15 19:03:41 -05002759 cgroup_migrate_finish(&mgctx);
Tejun Heoed1777d2016-08-10 11:23:44 -04002760
2761 if (!ret)
Steven Rostedt (VMware)e4f8d812018-07-09 17:48:54 -04002762 TRACE_CGROUP_PATH(attach_task, dst_cgrp, leader, threadgroup);
Tejun Heoed1777d2016-08-10 11:23:44 -04002763
Tejun Heo1958d2d2014-02-25 10:04:03 -05002764 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002765}
2766
Tejun Heo715c8092017-05-15 09:34:00 -04002767struct task_struct *cgroup_procs_write_start(char *buf, bool threadgroup)
2768 __acquires(&cgroup_threadgroup_rwsem)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002769{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002770 struct task_struct *tsk;
Tejun Heoacbef752014-05-13 12:16:22 -04002771 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002772
Tejun Heoacbef752014-05-13 12:16:22 -04002773 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
Tejun Heo715c8092017-05-15 09:34:00 -04002774 return ERR_PTR(-EINVAL);
Ben Blum74a11662011-05-26 16:25:20 -07002775
Tejun Heo3014dde2015-09-16 13:03:02 -04002776 percpu_down_write(&cgroup_threadgroup_rwsem);
Tejun Heo715c8092017-05-15 09:34:00 -04002777
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002778 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002779 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002780 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002781 if (!tsk) {
Tejun Heo715c8092017-05-15 09:34:00 -04002782 tsk = ERR_PTR(-ESRCH);
2783 goto out_unlock_threadgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002784 }
Tejun Heodedf22e2015-06-18 16:54:28 -04002785 } else {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002786 tsk = current;
Tejun Heodedf22e2015-06-18 16:54:28 -04002787 }
Tejun Heocd3d0952011-12-12 18:12:21 -08002788
2789 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002790 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002791
2792 /*
Tejun Heo77f88792017-03-16 16:54:24 -04002793 * kthreads may acquire PF_NO_SETAFFINITY during initialization.
2794 * If userland migrates such a kthread to a non-root cgroup, it can
2795 * become trapped in a cpuset, or RT kthread may be born in a
2796 * cgroup with no rt_runtime allocated. Just say no.
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002797 */
Tejun Heo77f88792017-03-16 16:54:24 -04002798 if (tsk->no_cgroup_migration || (tsk->flags & PF_NO_SETAFFINITY)) {
Tejun Heo715c8092017-05-15 09:34:00 -04002799 tsk = ERR_PTR(-EINVAL);
2800 goto out_unlock_threadgroup;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002801 }
2802
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002803 get_task_struct(tsk);
Tejun Heo715c8092017-05-15 09:34:00 -04002804 goto out_unlock_rcu;
Tejun Heocd3d0952011-12-12 18:12:21 -08002805
Tejun Heo715c8092017-05-15 09:34:00 -04002806out_unlock_threadgroup:
2807 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heo3014dde2015-09-16 13:03:02 -04002808out_unlock_rcu:
2809 rcu_read_unlock();
Tejun Heo715c8092017-05-15 09:34:00 -04002810 return tsk;
2811}
2812
2813void cgroup_procs_write_finish(struct task_struct *task)
2814 __releases(&cgroup_threadgroup_rwsem)
2815{
2816 struct cgroup_subsys *ss;
2817 int ssid;
2818
2819 /* release reference from cgroup_procs_write_start() */
2820 put_task_struct(task);
2821
Tejun Heo3014dde2015-09-16 13:03:02 -04002822 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heo5cf1cac2016-04-21 19:06:48 -04002823 for_each_subsys(ss, ssid)
2824 if (ss->post_attach)
2825 ss->post_attach();
Paul Menageaf351022008-07-25 01:47:01 -07002826}
2827
Tejun Heo6e5c8302016-02-22 22:25:47 -05002828static void cgroup_print_ss_mask(struct seq_file *seq, u16 ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002829{
2830 struct cgroup_subsys *ss;
2831 bool printed = false;
2832 int ssid;
2833
Tejun Heob4e0eea2016-02-22 22:25:46 -05002834 do_each_subsys_mask(ss, ssid, ss_mask) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002835 if (printed)
2836 seq_putc(seq, ' ');
2837 seq_printf(seq, "%s", ss->name);
2838 printed = true;
Tejun Heob4e0eea2016-02-22 22:25:46 -05002839 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04002840 if (printed)
2841 seq_putc(seq, '\n');
2842}
2843
Tejun Heof8f22e52014-04-23 11:13:16 -04002844/* show controllers which are enabled from the parent */
2845static int cgroup_controllers_show(struct seq_file *seq, void *v)
2846{
2847 struct cgroup *cgrp = seq_css(seq)->cgroup;
2848
Tejun Heo5531dc92016-03-03 09:57:58 -05002849 cgroup_print_ss_mask(seq, cgroup_control(cgrp));
Tejun Heof8f22e52014-04-23 11:13:16 -04002850 return 0;
2851}
2852
2853/* show controllers which are enabled for a given cgroup's children */
2854static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2855{
2856 struct cgroup *cgrp = seq_css(seq)->cgroup;
2857
Tejun Heo667c2492014-07-08 18:02:56 -04002858 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002859 return 0;
2860}
2861
2862/**
2863 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2864 * @cgrp: root of the subtree to update csses for
2865 *
Tejun Heo54962602016-03-03 09:58:01 -05002866 * @cgrp's control masks have changed and its subtree's css associations
2867 * need to be updated accordingly. This function looks up all css_sets
2868 * which are attached to the subtree, creates the matching updated css_sets
2869 * and migrates the tasks to the new ones.
Tejun Heof8f22e52014-04-23 11:13:16 -04002870 */
2871static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2872{
Tejun Heoe595cd72017-01-15 19:03:41 -05002873 DEFINE_CGROUP_MGCTX(mgctx);
Tejun Heo54962602016-03-03 09:58:01 -05002874 struct cgroup_subsys_state *d_css;
2875 struct cgroup *dsct;
Tejun Heof8f22e52014-04-23 11:13:16 -04002876 struct css_set *src_cset;
2877 int ret;
2878
Tejun Heof8f22e52014-04-23 11:13:16 -04002879 lockdep_assert_held(&cgroup_mutex);
2880
Tejun Heo3014dde2015-09-16 13:03:02 -04002881 percpu_down_write(&cgroup_threadgroup_rwsem);
2882
Tejun Heof8f22e52014-04-23 11:13:16 -04002883 /* look up all csses currently attached to @cgrp's subtree */
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002884 spin_lock_irq(&css_set_lock);
Tejun Heo54962602016-03-03 09:58:01 -05002885 cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002886 struct cgrp_cset_link *link;
2887
Tejun Heo54962602016-03-03 09:58:01 -05002888 list_for_each_entry(link, &dsct->cset_links, cset_link)
Tejun Heoe595cd72017-01-15 19:03:41 -05002889 cgroup_migrate_add_src(link->cset, dsct, &mgctx);
Tejun Heof8f22e52014-04-23 11:13:16 -04002890 }
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002891 spin_unlock_irq(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002892
2893 /* NULL dst indicates self on default hierarchy */
Tejun Heoe595cd72017-01-15 19:03:41 -05002894 ret = cgroup_migrate_prepare_dst(&mgctx);
Tejun Heof8f22e52014-04-23 11:13:16 -04002895 if (ret)
2896 goto out_finish;
2897
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002898 spin_lock_irq(&css_set_lock);
Tejun Heoe595cd72017-01-15 19:03:41 -05002899 list_for_each_entry(src_cset, &mgctx.preloaded_src_csets, mg_preload_node) {
Tejun Heo10265072015-09-11 15:00:22 -04002900 struct task_struct *task, *ntask;
Tejun Heof8f22e52014-04-23 11:13:16 -04002901
Tejun Heo10265072015-09-11 15:00:22 -04002902 /* all tasks in src_csets need to be migrated */
2903 list_for_each_entry_safe(task, ntask, &src_cset->tasks, cg_list)
Tejun Heoe595cd72017-01-15 19:03:41 -05002904 cgroup_migrate_add_task(task, &mgctx);
Tejun Heof8f22e52014-04-23 11:13:16 -04002905 }
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03002906 spin_unlock_irq(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002907
Tejun Heobfc2cf62017-01-15 19:03:41 -05002908 ret = cgroup_migrate_execute(&mgctx);
Tejun Heof8f22e52014-04-23 11:13:16 -04002909out_finish:
Tejun Heoe595cd72017-01-15 19:03:41 -05002910 cgroup_migrate_finish(&mgctx);
Tejun Heo3014dde2015-09-16 13:03:02 -04002911 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002912 return ret;
2913}
2914
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002915/**
Tejun Heo945ba192016-03-03 09:58:00 -05002916 * cgroup_lock_and_drain_offline - lock cgroup_mutex and drain offlined csses
Tejun Heoce3f1d92016-03-03 09:57:59 -05002917 * @cgrp: root of the target subtree
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002918 *
2919 * Because css offlining is asynchronous, userland may try to re-enable a
Tejun Heo945ba192016-03-03 09:58:00 -05002920 * controller while the previous css is still around. This function grabs
2921 * cgroup_mutex and drains the previous css instances of @cgrp's subtree.
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002922 */
Tejun Heo0a268db2016-12-27 14:49:06 -05002923void cgroup_lock_and_drain_offline(struct cgroup *cgrp)
Tejun Heo945ba192016-03-03 09:58:00 -05002924 __acquires(&cgroup_mutex)
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002925{
2926 struct cgroup *dsct;
Tejun Heoce3f1d92016-03-03 09:57:59 -05002927 struct cgroup_subsys_state *d_css;
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002928 struct cgroup_subsys *ss;
2929 int ssid;
2930
Tejun Heo945ba192016-03-03 09:58:00 -05002931restart:
2932 mutex_lock(&cgroup_mutex);
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002933
Tejun Heoce3f1d92016-03-03 09:57:59 -05002934 cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) {
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002935 for_each_subsys(ss, ssid) {
2936 struct cgroup_subsys_state *css = cgroup_css(dsct, ss);
2937 DEFINE_WAIT(wait);
2938
Tejun Heoce3f1d92016-03-03 09:57:59 -05002939 if (!css || !percpu_ref_is_dying(&css->refcnt))
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002940 continue;
2941
Tejun Heoa590b902017-04-28 15:14:55 -04002942 cgroup_get_live(dsct);
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002943 prepare_to_wait(&dsct->offline_waitq, &wait,
2944 TASK_UNINTERRUPTIBLE);
2945
2946 mutex_unlock(&cgroup_mutex);
2947 schedule();
2948 finish_wait(&dsct->offline_waitq, &wait);
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002949
2950 cgroup_put(dsct);
Tejun Heo945ba192016-03-03 09:58:00 -05002951 goto restart;
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002952 }
2953 }
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002954}
2955
Tejun Heo12b3bb62016-03-03 09:57:59 -05002956/**
Tejun Heo479adb82018-10-04 13:28:08 -07002957 * cgroup_save_control - save control masks and dom_cgrp of a subtree
Tejun Heo15a27c32016-03-03 09:57:59 -05002958 * @cgrp: root of the target subtree
2959 *
Tejun Heo479adb82018-10-04 13:28:08 -07002960 * Save ->subtree_control, ->subtree_ss_mask and ->dom_cgrp to the
2961 * respective old_ prefixed fields for @cgrp's subtree including @cgrp
2962 * itself.
Tejun Heo15a27c32016-03-03 09:57:59 -05002963 */
2964static void cgroup_save_control(struct cgroup *cgrp)
2965{
2966 struct cgroup *dsct;
2967 struct cgroup_subsys_state *d_css;
2968
2969 cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
2970 dsct->old_subtree_control = dsct->subtree_control;
2971 dsct->old_subtree_ss_mask = dsct->subtree_ss_mask;
Tejun Heo479adb82018-10-04 13:28:08 -07002972 dsct->old_dom_cgrp = dsct->dom_cgrp;
Tejun Heo15a27c32016-03-03 09:57:59 -05002973 }
2974}
2975
2976/**
2977 * cgroup_propagate_control - refresh control masks of a subtree
2978 * @cgrp: root of the target subtree
2979 *
2980 * For @cgrp and its subtree, ensure ->subtree_ss_mask matches
2981 * ->subtree_control and propagate controller availability through the
2982 * subtree so that descendants don't have unavailable controllers enabled.
2983 */
2984static void cgroup_propagate_control(struct cgroup *cgrp)
2985{
2986 struct cgroup *dsct;
2987 struct cgroup_subsys_state *d_css;
2988
2989 cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
2990 dsct->subtree_control &= cgroup_control(dsct);
Tejun Heo5ced2512016-03-03 09:58:01 -05002991 dsct->subtree_ss_mask =
2992 cgroup_calc_subtree_ss_mask(dsct->subtree_control,
2993 cgroup_ss_mask(dsct));
Tejun Heo15a27c32016-03-03 09:57:59 -05002994 }
2995}
2996
2997/**
Tejun Heo479adb82018-10-04 13:28:08 -07002998 * cgroup_restore_control - restore control masks and dom_cgrp of a subtree
Tejun Heo15a27c32016-03-03 09:57:59 -05002999 * @cgrp: root of the target subtree
3000 *
Tejun Heo479adb82018-10-04 13:28:08 -07003001 * Restore ->subtree_control, ->subtree_ss_mask and ->dom_cgrp from the
3002 * respective old_ prefixed fields for @cgrp's subtree including @cgrp
3003 * itself.
Tejun Heo15a27c32016-03-03 09:57:59 -05003004 */
3005static void cgroup_restore_control(struct cgroup *cgrp)
3006{
3007 struct cgroup *dsct;
3008 struct cgroup_subsys_state *d_css;
3009
3010 cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) {
3011 dsct->subtree_control = dsct->old_subtree_control;
3012 dsct->subtree_ss_mask = dsct->old_subtree_ss_mask;
Tejun Heo479adb82018-10-04 13:28:08 -07003013 dsct->dom_cgrp = dsct->old_dom_cgrp;
Tejun Heo15a27c32016-03-03 09:57:59 -05003014 }
3015}
3016
Tejun Heof6d635ad2016-03-08 11:51:26 -05003017static bool css_visible(struct cgroup_subsys_state *css)
3018{
3019 struct cgroup_subsys *ss = css->ss;
3020 struct cgroup *cgrp = css->cgroup;
3021
3022 if (cgroup_control(cgrp) & (1 << ss->id))
3023 return true;
3024 if (!(cgroup_ss_mask(cgrp) & (1 << ss->id)))
3025 return false;
3026 return cgroup_on_dfl(cgrp) && ss->implicit_on_dfl;
3027}
3028
Tejun Heo15a27c32016-03-03 09:57:59 -05003029/**
Tejun Heobdb53bd2016-03-03 09:57:59 -05003030 * cgroup_apply_control_enable - enable or show csses according to control
Tejun Heoce3f1d92016-03-03 09:57:59 -05003031 * @cgrp: root of the target subtree
Tejun Heobdb53bd2016-03-03 09:57:59 -05003032 *
Tejun Heoce3f1d92016-03-03 09:57:59 -05003033 * Walk @cgrp's subtree and create new csses or make the existing ones
Tejun Heobdb53bd2016-03-03 09:57:59 -05003034 * visible. A css is created invisible if it's being implicitly enabled
3035 * through dependency. An invisible css is made visible when the userland
3036 * explicitly enables it.
3037 *
3038 * Returns 0 on success, -errno on failure. On failure, csses which have
3039 * been processed already aren't cleaned up. The caller is responsible for
Masahiro Yamada8a1115f2017-03-09 16:16:31 -08003040 * cleaning up with cgroup_apply_control_disable().
Tejun Heobdb53bd2016-03-03 09:57:59 -05003041 */
3042static int cgroup_apply_control_enable(struct cgroup *cgrp)
3043{
3044 struct cgroup *dsct;
Tejun Heoce3f1d92016-03-03 09:57:59 -05003045 struct cgroup_subsys_state *d_css;
Tejun Heobdb53bd2016-03-03 09:57:59 -05003046 struct cgroup_subsys *ss;
3047 int ssid, ret;
3048
Tejun Heoce3f1d92016-03-03 09:57:59 -05003049 cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
Tejun Heobdb53bd2016-03-03 09:57:59 -05003050 for_each_subsys(ss, ssid) {
3051 struct cgroup_subsys_state *css = cgroup_css(dsct, ss);
3052
Tejun Heo945ba192016-03-03 09:58:00 -05003053 WARN_ON_ONCE(css && percpu_ref_is_dying(&css->refcnt));
3054
Tejun Heobdb53bd2016-03-03 09:57:59 -05003055 if (!(cgroup_ss_mask(dsct) & (1 << ss->id)))
3056 continue;
3057
3058 if (!css) {
3059 css = css_create(dsct, ss);
3060 if (IS_ERR(css))
3061 return PTR_ERR(css);
3062 }
3063
Tejun Heof6d635ad2016-03-08 11:51:26 -05003064 if (css_visible(css)) {
Tejun Heo334c3672016-03-03 09:58:01 -05003065 ret = css_populate_dir(css);
Tejun Heobdb53bd2016-03-03 09:57:59 -05003066 if (ret)
3067 return ret;
3068 }
3069 }
3070 }
3071
3072 return 0;
3073}
3074
3075/**
Tejun Heo12b3bb62016-03-03 09:57:59 -05003076 * cgroup_apply_control_disable - kill or hide csses according to control
Tejun Heoce3f1d92016-03-03 09:57:59 -05003077 * @cgrp: root of the target subtree
Tejun Heo12b3bb62016-03-03 09:57:59 -05003078 *
Tejun Heoce3f1d92016-03-03 09:57:59 -05003079 * Walk @cgrp's subtree and kill and hide csses so that they match
Tejun Heo12b3bb62016-03-03 09:57:59 -05003080 * cgroup_ss_mask() and cgroup_visible_mask().
3081 *
3082 * A css is hidden when the userland requests it to be disabled while other
3083 * subsystems are still depending on it. The css must not actively control
3084 * resources and be in the vanilla state if it's made visible again later.
3085 * Controllers which may be depended upon should provide ->css_reset() for
3086 * this purpose.
3087 */
3088static void cgroup_apply_control_disable(struct cgroup *cgrp)
3089{
3090 struct cgroup *dsct;
Tejun Heoce3f1d92016-03-03 09:57:59 -05003091 struct cgroup_subsys_state *d_css;
Tejun Heo12b3bb62016-03-03 09:57:59 -05003092 struct cgroup_subsys *ss;
3093 int ssid;
3094
Tejun Heoce3f1d92016-03-03 09:57:59 -05003095 cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) {
Tejun Heo12b3bb62016-03-03 09:57:59 -05003096 for_each_subsys(ss, ssid) {
3097 struct cgroup_subsys_state *css = cgroup_css(dsct, ss);
3098
Tejun Heo945ba192016-03-03 09:58:00 -05003099 WARN_ON_ONCE(css && percpu_ref_is_dying(&css->refcnt));
3100
Tejun Heo12b3bb62016-03-03 09:57:59 -05003101 if (!css)
3102 continue;
3103
Tejun Heo334c3672016-03-03 09:58:01 -05003104 if (css->parent &&
3105 !(cgroup_ss_mask(dsct) & (1 << ss->id))) {
Tejun Heo12b3bb62016-03-03 09:57:59 -05003106 kill_css(css);
Tejun Heof6d635ad2016-03-08 11:51:26 -05003107 } else if (!css_visible(css)) {
Tejun Heo334c3672016-03-03 09:58:01 -05003108 css_clear_dir(css);
Tejun Heo12b3bb62016-03-03 09:57:59 -05003109 if (ss->css_reset)
3110 ss->css_reset(css);
3111 }
3112 }
3113 }
3114}
3115
Tejun Heof7b28142016-03-03 09:58:00 -05003116/**
3117 * cgroup_apply_control - apply control mask updates to the subtree
3118 * @cgrp: root of the target subtree
3119 *
3120 * subsystems can be enabled and disabled in a subtree using the following
3121 * steps.
3122 *
3123 * 1. Call cgroup_save_control() to stash the current state.
3124 * 2. Update ->subtree_control masks in the subtree as desired.
3125 * 3. Call cgroup_apply_control() to apply the changes.
3126 * 4. Optionally perform other related operations.
3127 * 5. Call cgroup_finalize_control() to finish up.
3128 *
3129 * This function implements step 3 and propagates the mask changes
3130 * throughout @cgrp's subtree, updates csses accordingly and perform
3131 * process migrations.
3132 */
3133static int cgroup_apply_control(struct cgroup *cgrp)
3134{
3135 int ret;
3136
3137 cgroup_propagate_control(cgrp);
3138
3139 ret = cgroup_apply_control_enable(cgrp);
3140 if (ret)
3141 return ret;
3142
3143 /*
Dennis Zhoufc5a8282018-12-05 12:10:36 -05003144 * At this point, cgroup_e_css_by_mask() results reflect the new csses
Tejun Heof7b28142016-03-03 09:58:00 -05003145 * making the following cgroup_update_dfl_csses() properly update
3146 * css associations of all tasks in the subtree.
3147 */
3148 ret = cgroup_update_dfl_csses(cgrp);
3149 if (ret)
3150 return ret;
3151
3152 return 0;
3153}
3154
3155/**
3156 * cgroup_finalize_control - finalize control mask update
3157 * @cgrp: root of the target subtree
3158 * @ret: the result of the update
3159 *
3160 * Finalize control mask update. See cgroup_apply_control() for more info.
3161 */
3162static void cgroup_finalize_control(struct cgroup *cgrp, int ret)
3163{
3164 if (ret) {
3165 cgroup_restore_control(cgrp);
3166 cgroup_propagate_control(cgrp);
3167 }
3168
3169 cgroup_apply_control_disable(cgrp);
3170}
3171
Tejun Heo8cfd8142017-07-21 11:14:51 -04003172static int cgroup_vet_subtree_control_enable(struct cgroup *cgrp, u16 enable)
3173{
3174 u16 domain_enable = enable & ~cgrp_dfl_threaded_ss_mask;
3175
3176 /* if nothing is getting enabled, nothing to worry about */
3177 if (!enable)
3178 return 0;
3179
3180 /* can @cgrp host any resources? */
3181 if (!cgroup_is_valid_domain(cgrp->dom_cgrp))
3182 return -EOPNOTSUPP;
3183
3184 /* mixables don't care */
3185 if (cgroup_is_mixable(cgrp))
3186 return 0;
3187
3188 if (domain_enable) {
3189 /* can't enable domain controllers inside a thread subtree */
3190 if (cgroup_is_thread_root(cgrp) || cgroup_is_threaded(cgrp))
3191 return -EOPNOTSUPP;
3192 } else {
3193 /*
3194 * Threaded controllers can handle internal competitions
3195 * and are always allowed inside a (prospective) thread
3196 * subtree.
3197 */
3198 if (cgroup_can_be_thread_root(cgrp) || cgroup_is_threaded(cgrp))
3199 return 0;
3200 }
3201
3202 /*
3203 * Controllers can't be enabled for a cgroup with tasks to avoid
3204 * child cgroups competing against tasks.
3205 */
3206 if (cgroup_has_tasks(cgrp))
3207 return -EBUSY;
3208
3209 return 0;
3210}
3211
Tejun Heof8f22e52014-04-23 11:13:16 -04003212/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04003213static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
3214 char *buf, size_t nbytes,
3215 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04003216{
Tejun Heo6e5c8302016-02-22 22:25:47 -05003217 u16 enable = 0, disable = 0;
Tejun Heoa9746d82014-05-13 12:19:22 -04003218 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04003219 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04003220 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04003221 int ssid, ret;
3222
3223 /*
Tejun Heod37167a2014-05-13 12:10:59 -04003224 * Parse input - space separated list of subsystem names prefixed
3225 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04003226 */
Tejun Heo451af502014-05-13 12:16:21 -04003227 buf = strstrip(buf);
3228 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04003229 if (tok[0] == '\0')
3230 continue;
Tejun Heoa7165262016-02-23 10:00:50 -05003231 do_each_subsys_mask(ss, ssid, ~cgrp_dfl_inhibit_ss_mask) {
Tejun Heofc5ed1e2015-09-18 11:56:28 -04003232 if (!cgroup_ssid_enabled(ssid) ||
3233 strcmp(tok + 1, ss->name))
Tejun Heof8f22e52014-04-23 11:13:16 -04003234 continue;
3235
3236 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04003237 enable |= 1 << ssid;
3238 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04003239 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04003240 disable |= 1 << ssid;
3241 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04003242 } else {
3243 return -EINVAL;
3244 }
3245 break;
Tejun Heob4e0eea2016-02-22 22:25:46 -05003246 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04003247 if (ssid == CGROUP_SUBSYS_COUNT)
3248 return -EINVAL;
3249 }
3250
Tejun Heo945ba192016-03-03 09:58:00 -05003251 cgrp = cgroup_kn_lock_live(of->kn, true);
Tejun Heoa9746d82014-05-13 12:19:22 -04003252 if (!cgrp)
3253 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04003254
3255 for_each_subsys(ss, ssid) {
3256 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04003257 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003258 enable &= ~(1 << ssid);
3259 continue;
3260 }
3261
Tejun Heo5531dc92016-03-03 09:57:58 -05003262 if (!(cgroup_control(cgrp) & (1 << ssid))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04003263 ret = -ENOENT;
3264 goto out_unlock;
3265 }
Tejun Heof8f22e52014-04-23 11:13:16 -04003266 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04003267 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003268 disable &= ~(1 << ssid);
3269 continue;
3270 }
3271
3272 /* a child has it enabled? */
3273 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04003274 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003275 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04003276 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003277 }
3278 }
3279 }
3280 }
3281
3282 if (!enable && !disable) {
3283 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04003284 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003285 }
3286
Tejun Heo8cfd8142017-07-21 11:14:51 -04003287 ret = cgroup_vet_subtree_control_enable(cgrp, enable);
3288 if (ret)
Tejun Heo27f26752017-07-16 21:44:18 -04003289 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003290
Tejun Heo15a27c32016-03-03 09:57:59 -05003291 /* save and update control masks and prepare csses */
3292 cgroup_save_control(cgrp);
Tejun Heoc29adf22014-07-08 18:02:56 -04003293
Tejun Heo15a27c32016-03-03 09:57:59 -05003294 cgrp->subtree_control |= enable;
3295 cgrp->subtree_control &= ~disable;
Tejun Heof63070d2014-07-08 18:02:57 -04003296
Tejun Heof7b28142016-03-03 09:58:00 -05003297 ret = cgroup_apply_control(cgrp);
Tejun Heof7b28142016-03-03 09:58:00 -05003298 cgroup_finalize_control(cgrp, ret);
Tejun Heo3c745412017-07-23 08:14:15 -04003299 if (ret)
3300 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003301
3302 kernfs_activate(cgrp->kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003303out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04003304 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04003305 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04003306}
3307
Tejun Heoc705a002017-07-25 13:20:18 -04003308/**
3309 * cgroup_enable_threaded - make @cgrp threaded
3310 * @cgrp: the target cgroup
3311 *
3312 * Called when "threaded" is written to the cgroup.type interface file and
3313 * tries to make @cgrp threaded and join the parent's resource domain.
3314 * This function is never called on the root cgroup as cgroup.type doesn't
3315 * exist on it.
3316 */
Tejun Heo8cfd8142017-07-21 11:14:51 -04003317static int cgroup_enable_threaded(struct cgroup *cgrp)
3318{
3319 struct cgroup *parent = cgroup_parent(cgrp);
3320 struct cgroup *dom_cgrp = parent->dom_cgrp;
Tejun Heo479adb82018-10-04 13:28:08 -07003321 struct cgroup *dsct;
3322 struct cgroup_subsys_state *d_css;
Tejun Heo8cfd8142017-07-21 11:14:51 -04003323 int ret;
3324
3325 lockdep_assert_held(&cgroup_mutex);
3326
3327 /* noop if already threaded */
3328 if (cgroup_is_threaded(cgrp))
3329 return 0;
3330
Tejun Heod1897c92018-02-21 11:39:22 -08003331 /*
3332 * If @cgroup is populated or has domain controllers enabled, it
3333 * can't be switched. While the below cgroup_can_be_thread_root()
3334 * test can catch the same conditions, that's only when @parent is
3335 * not mixable, so let's check it explicitly.
3336 */
3337 if (cgroup_is_populated(cgrp) ||
3338 cgrp->subtree_control & ~cgrp_dfl_threaded_ss_mask)
3339 return -EOPNOTSUPP;
3340
Tejun Heo8cfd8142017-07-21 11:14:51 -04003341 /* we're joining the parent's domain, ensure its validity */
3342 if (!cgroup_is_valid_domain(dom_cgrp) ||
3343 !cgroup_can_be_thread_root(dom_cgrp))
3344 return -EOPNOTSUPP;
3345
3346 /*
Tejun Heo8cfd8142017-07-21 11:14:51 -04003347 * The following shouldn't cause actual migrations and should
3348 * always succeed.
3349 */
3350 cgroup_save_control(cgrp);
3351
Tejun Heo479adb82018-10-04 13:28:08 -07003352 cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp)
3353 if (dsct == cgrp || cgroup_is_threaded(dsct))
3354 dsct->dom_cgrp = dom_cgrp;
3355
Tejun Heo8cfd8142017-07-21 11:14:51 -04003356 ret = cgroup_apply_control(cgrp);
3357 if (!ret)
3358 parent->nr_threaded_children++;
Tejun Heo8cfd8142017-07-21 11:14:51 -04003359
3360 cgroup_finalize_control(cgrp, ret);
3361 return ret;
3362}
3363
3364static int cgroup_type_show(struct seq_file *seq, void *v)
3365{
3366 struct cgroup *cgrp = seq_css(seq)->cgroup;
3367
3368 if (cgroup_is_threaded(cgrp))
3369 seq_puts(seq, "threaded\n");
3370 else if (!cgroup_is_valid_domain(cgrp))
3371 seq_puts(seq, "domain invalid\n");
3372 else if (cgroup_is_thread_root(cgrp))
3373 seq_puts(seq, "domain threaded\n");
3374 else
3375 seq_puts(seq, "domain\n");
3376
3377 return 0;
3378}
3379
3380static ssize_t cgroup_type_write(struct kernfs_open_file *of, char *buf,
3381 size_t nbytes, loff_t off)
3382{
3383 struct cgroup *cgrp;
3384 int ret;
3385
3386 /* only switching to threaded mode is supported */
3387 if (strcmp(strstrip(buf), "threaded"))
3388 return -EINVAL;
3389
3390 cgrp = cgroup_kn_lock_live(of->kn, false);
3391 if (!cgrp)
3392 return -ENOENT;
3393
3394 /* threaded can only be enabled */
3395 ret = cgroup_enable_threaded(cgrp);
3396
3397 cgroup_kn_unlock(of->kn);
3398 return ret ?: nbytes;
3399}
3400
Roman Gushchin1a926e02017-07-28 18:28:44 +01003401static int cgroup_max_descendants_show(struct seq_file *seq, void *v)
3402{
3403 struct cgroup *cgrp = seq_css(seq)->cgroup;
3404 int descendants = READ_ONCE(cgrp->max_descendants);
3405
3406 if (descendants == INT_MAX)
3407 seq_puts(seq, "max\n");
3408 else
3409 seq_printf(seq, "%d\n", descendants);
3410
3411 return 0;
3412}
3413
3414static ssize_t cgroup_max_descendants_write(struct kernfs_open_file *of,
3415 char *buf, size_t nbytes, loff_t off)
3416{
3417 struct cgroup *cgrp;
3418 int descendants;
3419 ssize_t ret;
3420
3421 buf = strstrip(buf);
3422 if (!strcmp(buf, "max")) {
3423 descendants = INT_MAX;
3424 } else {
3425 ret = kstrtoint(buf, 0, &descendants);
3426 if (ret)
3427 return ret;
3428 }
3429
Dan Carpenter696b98f2017-08-09 13:25:21 +03003430 if (descendants < 0)
Roman Gushchin1a926e02017-07-28 18:28:44 +01003431 return -ERANGE;
3432
3433 cgrp = cgroup_kn_lock_live(of->kn, false);
3434 if (!cgrp)
3435 return -ENOENT;
3436
3437 cgrp->max_descendants = descendants;
3438
3439 cgroup_kn_unlock(of->kn);
3440
3441 return nbytes;
3442}
3443
3444static int cgroup_max_depth_show(struct seq_file *seq, void *v)
3445{
3446 struct cgroup *cgrp = seq_css(seq)->cgroup;
3447 int depth = READ_ONCE(cgrp->max_depth);
3448
3449 if (depth == INT_MAX)
3450 seq_puts(seq, "max\n");
3451 else
3452 seq_printf(seq, "%d\n", depth);
3453
3454 return 0;
3455}
3456
3457static ssize_t cgroup_max_depth_write(struct kernfs_open_file *of,
3458 char *buf, size_t nbytes, loff_t off)
3459{
3460 struct cgroup *cgrp;
3461 ssize_t ret;
3462 int depth;
3463
3464 buf = strstrip(buf);
3465 if (!strcmp(buf, "max")) {
3466 depth = INT_MAX;
3467 } else {
3468 ret = kstrtoint(buf, 0, &depth);
3469 if (ret)
3470 return ret;
3471 }
3472
Dan Carpenter696b98f2017-08-09 13:25:21 +03003473 if (depth < 0)
Roman Gushchin1a926e02017-07-28 18:28:44 +01003474 return -ERANGE;
3475
3476 cgrp = cgroup_kn_lock_live(of->kn, false);
3477 if (!cgrp)
3478 return -ENOENT;
3479
3480 cgrp->max_depth = depth;
3481
3482 cgroup_kn_unlock(of->kn);
3483
3484 return nbytes;
3485}
3486
Tejun Heo4a07c222015-09-18 17:54:22 -04003487static int cgroup_events_show(struct seq_file *seq, void *v)
Tejun Heo842b5972014-04-25 18:28:02 -04003488{
Roman Gushchin76f969e2019-04-19 10:03:04 -07003489 struct cgroup *cgrp = seq_css(seq)->cgroup;
3490
3491 seq_printf(seq, "populated %d\n", cgroup_is_populated(cgrp));
3492 seq_printf(seq, "frozen %d\n", test_bit(CGRP_FROZEN, &cgrp->flags));
3493
Tejun Heo842b5972014-04-25 18:28:02 -04003494 return 0;
3495}
3496
Tejun Heo3e489302017-08-11 05:49:01 -07003497static int cgroup_stat_show(struct seq_file *seq, void *v)
Roman Gushchinec392252017-08-02 17:55:31 +01003498{
3499 struct cgroup *cgroup = seq_css(seq)->cgroup;
3500
3501 seq_printf(seq, "nr_descendants %d\n",
3502 cgroup->nr_descendants);
3503 seq_printf(seq, "nr_dying_descendants %d\n",
3504 cgroup->nr_dying_descendants);
3505
3506 return 0;
3507}
3508
Tejun Heod41bf8c2017-10-23 16:18:27 -07003509static int __maybe_unused cgroup_extra_stat_show(struct seq_file *seq,
3510 struct cgroup *cgrp, int ssid)
3511{
3512 struct cgroup_subsys *ss = cgroup_subsys[ssid];
3513 struct cgroup_subsys_state *css;
3514 int ret;
3515
3516 if (!ss->css_extra_stat_show)
3517 return 0;
3518
3519 css = cgroup_tryget_css(cgrp, ss);
3520 if (!css)
3521 return 0;
3522
3523 ret = ss->css_extra_stat_show(seq, css);
3524 css_put(css);
3525 return ret;
3526}
3527
3528static int cpu_stat_show(struct seq_file *seq, void *v)
3529{
Tejun Heoc3ba1322017-10-30 08:13:14 -07003530 struct cgroup __maybe_unused *cgrp = seq_css(seq)->cgroup;
Tejun Heod41bf8c2017-10-23 16:18:27 -07003531 int ret = 0;
3532
Tejun Heod4ff7492018-04-26 14:29:04 -07003533 cgroup_base_stat_cputime_show(seq);
Tejun Heod41bf8c2017-10-23 16:18:27 -07003534#ifdef CONFIG_CGROUP_SCHED
3535 ret = cgroup_extra_stat_show(seq, cgrp, cpu_cgrp_id);
3536#endif
3537 return ret;
3538}
3539
Johannes Weiner2ce71352018-10-26 15:06:31 -07003540#ifdef CONFIG_PSI
3541static int cgroup_io_pressure_show(struct seq_file *seq, void *v)
3542{
3543 return psi_show(seq, &seq_css(seq)->cgroup->psi, PSI_IO);
3544}
3545static int cgroup_memory_pressure_show(struct seq_file *seq, void *v)
3546{
3547 return psi_show(seq, &seq_css(seq)->cgroup->psi, PSI_MEM);
3548}
3549static int cgroup_cpu_pressure_show(struct seq_file *seq, void *v)
3550{
3551 return psi_show(seq, &seq_css(seq)->cgroup->psi, PSI_CPU);
3552}
3553#endif
3554
Roman Gushchin76f969e2019-04-19 10:03:04 -07003555static int cgroup_freeze_show(struct seq_file *seq, void *v)
3556{
3557 struct cgroup *cgrp = seq_css(seq)->cgroup;
3558
3559 seq_printf(seq, "%d\n", cgrp->freezer.freeze);
3560
3561 return 0;
3562}
3563
3564static ssize_t cgroup_freeze_write(struct kernfs_open_file *of,
3565 char *buf, size_t nbytes, loff_t off)
3566{
3567 struct cgroup *cgrp;
3568 ssize_t ret;
3569 int freeze;
3570
3571 ret = kstrtoint(strstrip(buf), 0, &freeze);
3572 if (ret)
3573 return ret;
3574
3575 if (freeze < 0 || freeze > 1)
3576 return -ERANGE;
3577
3578 cgrp = cgroup_kn_lock_live(of->kn, false);
3579 if (!cgrp)
3580 return -ENOENT;
3581
3582 cgroup_freeze(cgrp, freeze);
3583
3584 cgroup_kn_unlock(of->kn);
3585
3586 return nbytes;
3587}
3588
Tejun Heoe90cbeb2016-12-27 14:49:03 -05003589static int cgroup_file_open(struct kernfs_open_file *of)
3590{
3591 struct cftype *cft = of->kn->priv;
3592
3593 if (cft->open)
3594 return cft->open(of);
3595 return 0;
3596}
3597
3598static void cgroup_file_release(struct kernfs_open_file *of)
3599{
3600 struct cftype *cft = of->kn->priv;
3601
3602 if (cft->release)
3603 cft->release(of);
3604}
3605
Tejun Heo2bd59d42014-02-11 11:52:49 -05003606static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
3607 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003608{
Tejun Heo5136f632017-06-27 14:30:28 -04003609 struct cgroup_namespace *ns = current->nsproxy->cgroup_ns;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003610 struct cgroup *cgrp = of->kn->parent->priv;
3611 struct cftype *cft = of->kn->priv;
3612 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05003613 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003614
Tejun Heo5136f632017-06-27 14:30:28 -04003615 /*
3616 * If namespaces are delegation boundaries, disallow writes to
3617 * files in an non-init namespace root from inside the namespace
3618 * except for the files explicitly marked delegatable -
3619 * cgroup.procs and cgroup.subtree_control.
3620 */
3621 if ((cgrp->root->flags & CGRP_ROOT_NS_DELEGATE) &&
3622 !(cft->flags & CFTYPE_NS_DELEGATABLE) &&
3623 ns != &init_cgroup_ns && ns->root_cset->dfl_cgrp == cgrp)
3624 return -EPERM;
3625
Tejun Heob4168642014-05-13 12:16:21 -04003626 if (cft->write)
3627 return cft->write(of, buf, nbytes, off);
3628
Tejun Heo2bd59d42014-02-11 11:52:49 -05003629 /*
3630 * kernfs guarantees that a file isn't deleted with operations in
3631 * flight, which means that the matching css is and stays alive and
3632 * doesn't need to be pinned. The RCU locking is not necessary
3633 * either. It's just for the convenience of using cgroup_css().
3634 */
3635 rcu_read_lock();
3636 css = cgroup_css(cgrp, cft->ss);
3637 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07003638
Tejun Heo451af502014-05-13 12:16:21 -04003639 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05003640 unsigned long long v;
3641 ret = kstrtoull(buf, 0, &v);
3642 if (!ret)
3643 ret = cft->write_u64(css, cft, v);
3644 } else if (cft->write_s64) {
3645 long long v;
3646 ret = kstrtoll(buf, 0, &v);
3647 if (!ret)
3648 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05003649 } else {
3650 ret = -EINVAL;
3651 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05003652
Tejun Heoa742c592013-12-05 12:28:03 -05003653 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003654}
3655
Johannes Weinerdc505372019-03-05 15:45:48 -08003656static __poll_t cgroup_file_poll(struct kernfs_open_file *of, poll_table *pt)
3657{
3658 struct cftype *cft = of->kn->priv;
3659
3660 if (cft->poll)
3661 return cft->poll(of, pt);
3662
3663 return kernfs_generic_poll(of, pt);
3664}
3665
Tejun Heo6612f052013-12-05 12:28:04 -05003666static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07003667{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003668 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003669}
3670
3671static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
3672{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003673 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003674}
3675
3676static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3677{
Tejun Heoe90cbeb2016-12-27 14:49:03 -05003678 if (seq_cft(seq)->seq_stop)
3679 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07003680}
3681
3682static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3683{
Tejun Heo7da11272013-12-05 12:28:04 -05003684 struct cftype *cft = seq_cft(m);
3685 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08003686
Tejun Heo2da8ca82013-12-05 12:28:04 -05003687 if (cft->seq_show)
3688 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07003689
Tejun Heo896f5192013-12-05 12:28:04 -05003690 if (cft->read_u64)
3691 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3692 else if (cft->read_s64)
3693 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3694 else
3695 return -EINVAL;
3696 return 0;
Paul Menage91796562008-04-29 01:00:01 -07003697}
3698
Tejun Heo2bd59d42014-02-11 11:52:49 -05003699static struct kernfs_ops cgroup_kf_single_ops = {
3700 .atomic_write_len = PAGE_SIZE,
Tejun Heoe90cbeb2016-12-27 14:49:03 -05003701 .open = cgroup_file_open,
3702 .release = cgroup_file_release,
Tejun Heo2bd59d42014-02-11 11:52:49 -05003703 .write = cgroup_file_write,
Johannes Weinerdc505372019-03-05 15:45:48 -08003704 .poll = cgroup_file_poll,
Tejun Heo2bd59d42014-02-11 11:52:49 -05003705 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07003706};
3707
Tejun Heo2bd59d42014-02-11 11:52:49 -05003708static struct kernfs_ops cgroup_kf_ops = {
3709 .atomic_write_len = PAGE_SIZE,
Tejun Heoe90cbeb2016-12-27 14:49:03 -05003710 .open = cgroup_file_open,
3711 .release = cgroup_file_release,
Tejun Heo2bd59d42014-02-11 11:52:49 -05003712 .write = cgroup_file_write,
Johannes Weinerdc505372019-03-05 15:45:48 -08003713 .poll = cgroup_file_poll,
Tejun Heo2bd59d42014-02-11 11:52:49 -05003714 .seq_start = cgroup_seqfile_start,
3715 .seq_next = cgroup_seqfile_next,
3716 .seq_stop = cgroup_seqfile_stop,
3717 .seq_show = cgroup_seqfile_show,
3718};
Paul Menageddbcc7e2007-10-18 23:39:30 -07003719
Tejun Heo49957f82014-04-07 16:44:47 -04003720/* set uid and gid of cgroup dirs and files to that of the creator */
3721static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3722{
3723 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3724 .ia_uid = current_fsuid(),
3725 .ia_gid = current_fsgid(), };
3726
3727 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3728 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3729 return 0;
3730
3731 return kernfs_setattr(kn, &iattr);
3732}
3733
Tejun Heob12e3582018-04-26 14:29:04 -07003734static void cgroup_file_notify_timer(struct timer_list *timer)
3735{
3736 cgroup_file_notify(container_of(timer, struct cgroup_file,
3737 notify_timer));
3738}
3739
Tejun Heo4df8dc92015-09-18 17:54:23 -04003740static int cgroup_add_file(struct cgroup_subsys_state *css, struct cgroup *cgrp,
3741 struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003742{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003743 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003744 struct kernfs_node *kn;
3745 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003746 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003747
Tejun Heo2bd59d42014-02-11 11:52:49 -05003748#ifdef CONFIG_DEBUG_LOCK_ALLOC
3749 key = &cft->lockdep_key;
3750#endif
3751 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
Dmitry Torokhov488dee92018-07-20 21:56:47 +00003752 cgroup_file_mode(cft),
3753 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
3754 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003755 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003756 if (IS_ERR(kn))
3757 return PTR_ERR(kn);
3758
3759 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003760 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003761 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003762 return ret;
3763 }
3764
Tejun Heo6f60ead2015-09-18 17:54:23 -04003765 if (cft->file_offset) {
3766 struct cgroup_file *cfile = (void *)css + cft->file_offset;
3767
Tejun Heob12e3582018-04-26 14:29:04 -07003768 timer_setup(&cfile->notify_timer, cgroup_file_notify_timer, 0);
3769
Tejun Heo34c06252015-11-05 00:12:24 -05003770 spin_lock_irq(&cgroup_file_kn_lock);
Tejun Heo6f60ead2015-09-18 17:54:23 -04003771 cfile->kn = kn;
Tejun Heo34c06252015-11-05 00:12:24 -05003772 spin_unlock_irq(&cgroup_file_kn_lock);
Tejun Heo6f60ead2015-09-18 17:54:23 -04003773 }
3774
Tejun Heof8f22e52014-04-23 11:13:16 -04003775 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003776}
3777
Tejun Heob1f28d32013-06-28 16:24:10 -07003778/**
3779 * cgroup_addrm_files - add or remove files to a cgroup directory
Tejun Heo4df8dc92015-09-18 17:54:23 -04003780 * @css: the target css
3781 * @cgrp: the target cgroup (usually css->cgroup)
Tejun Heob1f28d32013-06-28 16:24:10 -07003782 * @cfts: array of cftypes to be added
3783 * @is_add: whether to add or remove
3784 *
3785 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo6732ed82015-09-18 17:54:23 -04003786 * For removals, this function never fails.
Tejun Heob1f28d32013-06-28 16:24:10 -07003787 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04003788static int cgroup_addrm_files(struct cgroup_subsys_state *css,
3789 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -04003790 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003791{
Tejun Heo6732ed82015-09-18 17:54:23 -04003792 struct cftype *cft, *cft_end = NULL;
Tejun Heob598dde2016-02-22 22:25:45 -05003793 int ret = 0;
Tejun Heob1f28d32013-06-28 16:24:10 -07003794
Tejun Heo01f64742014-05-13 12:19:23 -04003795 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003796
Tejun Heo6732ed82015-09-18 17:54:23 -04003797restart:
3798 for (cft = cfts; cft != cft_end && cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003799 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003800 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003801 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003802 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003803 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003804 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003805 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003806 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003807 continue;
Waiman Long5cf81142018-11-08 10:08:46 -05003808 if ((cft->flags & CFTYPE_DEBUG) && !cgroup_debug)
3809 continue;
Li Zefan2739d3c2013-01-21 18:18:33 +08003810 if (is_add) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003811 ret = cgroup_add_file(css, cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003812 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003813 pr_warn("%s: failed to add %s, err=%d\n",
3814 __func__, cft->name, ret);
Tejun Heo6732ed82015-09-18 17:54:23 -04003815 cft_end = cft;
3816 is_add = false;
3817 goto restart;
Tejun Heob1f28d32013-06-28 16:24:10 -07003818 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003819 } else {
3820 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003821 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003822 }
Tejun Heob598dde2016-02-22 22:25:45 -05003823 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003824}
3825
Tejun Heo21a2d342014-02-12 09:29:49 -05003826static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003827{
Tejun Heo2bb566c2013-08-08 20:11:23 -04003828 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003829 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003830 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003831 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003832
Tejun Heo01f64742014-05-13 12:19:23 -04003833 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003834
Li Zefane8c82d22013-06-18 18:48:37 +08003835 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003836 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003837 struct cgroup *cgrp = css->cgroup;
3838
Tejun Heo88cb04b2016-03-03 09:57:58 -05003839 if (!(css->flags & CSS_VISIBLE))
Li Zefane8c82d22013-06-18 18:48:37 +08003840 continue;
3841
Tejun Heo4df8dc92015-09-18 17:54:23 -04003842 ret = cgroup_addrm_files(css, cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003843 if (ret)
3844 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003845 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003846
3847 if (is_add && !ret)
3848 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003849 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003850}
3851
Tejun Heo2da440a2014-02-11 11:52:48 -05003852static void cgroup_exit_cftypes(struct cftype *cfts)
3853{
3854 struct cftype *cft;
3855
Tejun Heo2bd59d42014-02-11 11:52:49 -05003856 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3857 /* free copy for custom atomic_write_len, see init_cftypes() */
3858 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3859 kfree(cft->kf_ops);
3860 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003861 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003862
3863 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003864 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003865 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003866}
3867
Tejun Heo2bd59d42014-02-11 11:52:49 -05003868static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003869{
3870 struct cftype *cft;
3871
Tejun Heo2bd59d42014-02-11 11:52:49 -05003872 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3873 struct kernfs_ops *kf_ops;
3874
Tejun Heo0adb0702014-02-12 09:29:48 -05003875 WARN_ON(cft->ss || cft->kf_ops);
3876
Tejun Heo2bd59d42014-02-11 11:52:49 -05003877 if (cft->seq_start)
3878 kf_ops = &cgroup_kf_ops;
3879 else
3880 kf_ops = &cgroup_kf_single_ops;
3881
3882 /*
3883 * Ugh... if @cft wants a custom max_write_len, we need to
3884 * make a copy of kf_ops to set its atomic_write_len.
3885 */
3886 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3887 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3888 if (!kf_ops) {
3889 cgroup_exit_cftypes(cfts);
3890 return -ENOMEM;
3891 }
3892 kf_ops->atomic_write_len = cft->max_write_len;
3893 }
3894
3895 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003896 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003897 }
3898
3899 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003900}
3901
Tejun Heo21a2d342014-02-12 09:29:49 -05003902static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3903{
Tejun Heo01f64742014-05-13 12:19:23 -04003904 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003905
3906 if (!cfts || !cfts[0].ss)
3907 return -ENOENT;
3908
3909 list_del(&cfts->node);
3910 cgroup_apply_cftypes(cfts, false);
3911 cgroup_exit_cftypes(cfts);
3912 return 0;
3913}
3914
Tejun Heo8e3f6542012-04-01 12:09:55 -07003915/**
Tejun Heo80b13582014-02-12 09:29:48 -05003916 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3917 * @cfts: zero-length name terminated array of cftypes
3918 *
3919 * Unregister @cfts. Files described by @cfts are removed from all
3920 * existing cgroups and all future cgroups won't have them either. This
3921 * function can be called anytime whether @cfts' subsys is attached or not.
3922 *
3923 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3924 * registered.
3925 */
3926int cgroup_rm_cftypes(struct cftype *cfts)
3927{
Tejun Heo21a2d342014-02-12 09:29:49 -05003928 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003929
Tejun Heo01f64742014-05-13 12:19:23 -04003930 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003931 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003932 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003933 return ret;
3934}
3935
3936/**
3937 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3938 * @ss: target cgroup subsystem
3939 * @cfts: zero-length name terminated array of cftypes
3940 *
3941 * Register @cfts to @ss. Files described by @cfts are created for all
3942 * existing cgroups to which @ss is attached and all future cgroups will
3943 * have them too. This function can be called anytime whether @ss is
3944 * attached or not.
3945 *
3946 * Returns 0 on successful registration, -errno on failure. Note that this
3947 * function currently returns 0 as long as @cfts registration is successful
3948 * even if some file creation attempts on existing cgroups fail.
3949 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003950static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003951{
Tejun Heo9ccece82013-06-28 16:24:11 -07003952 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003953
Tejun Heofc5ed1e2015-09-18 11:56:28 -04003954 if (!cgroup_ssid_enabled(ss->id))
Li Zefanc731ae12014-06-05 17:16:30 +08003955 return 0;
3956
Li Zefandc5736e2014-02-17 10:41:50 +08003957 if (!cfts || cfts[0].name[0] == '\0')
3958 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003959
Tejun Heo2bd59d42014-02-11 11:52:49 -05003960 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003961 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003962 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003963
Tejun Heo01f64742014-05-13 12:19:23 -04003964 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003965
Tejun Heo0adb0702014-02-12 09:29:48 -05003966 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003967 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003968 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003969 cgroup_rm_cftypes_locked(cfts);
3970
Tejun Heo01f64742014-05-13 12:19:23 -04003971 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003972 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003973}
Tejun Heo79578622012-04-01 12:09:56 -07003974
3975/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003976 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3977 * @ss: target cgroup subsystem
3978 * @cfts: zero-length name terminated array of cftypes
3979 *
3980 * Similar to cgroup_add_cftypes() but the added files are only used for
3981 * the default hierarchy.
3982 */
3983int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3984{
3985 struct cftype *cft;
3986
3987 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003988 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003989 return cgroup_add_cftypes(ss, cfts);
3990}
3991
3992/**
3993 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3994 * @ss: target cgroup subsystem
3995 * @cfts: zero-length name terminated array of cftypes
3996 *
3997 * Similar to cgroup_add_cftypes() but the added files are only used for
3998 * the legacy hierarchies.
3999 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04004000int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
4001{
Tejun Heoa8ddc822014-07-15 11:05:10 -04004002 struct cftype *cft;
4003
Tejun Heoe4b70372015-10-15 17:00:43 -04004004 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
4005 cft->flags |= __CFTYPE_NOT_ON_DFL;
Tejun Heo2cf669a2014-07-15 11:05:09 -04004006 return cgroup_add_cftypes(ss, cfts);
4007}
4008
Li Zefana043e3b2008-02-23 15:24:09 -08004009/**
Tejun Heo34c06252015-11-05 00:12:24 -05004010 * cgroup_file_notify - generate a file modified event for a cgroup_file
4011 * @cfile: target cgroup_file
4012 *
4013 * @cfile must have been obtained by setting cftype->file_offset.
4014 */
4015void cgroup_file_notify(struct cgroup_file *cfile)
4016{
4017 unsigned long flags;
4018
4019 spin_lock_irqsave(&cgroup_file_kn_lock, flags);
Tejun Heob12e3582018-04-26 14:29:04 -07004020 if (cfile->kn) {
4021 unsigned long last = cfile->notified_at;
4022 unsigned long next = last + CGROUP_FILE_NOTIFY_MIN_INTV;
4023
4024 if (time_in_range(jiffies, last, next)) {
4025 timer_reduce(&cfile->notify_timer, next);
4026 } else {
4027 kernfs_notify(cfile->kn);
4028 cfile->notified_at = jiffies;
4029 }
4030 }
Tejun Heo34c06252015-11-05 00:12:24 -05004031 spin_unlock_irqrestore(&cgroup_file_kn_lock, flags);
4032}
4033
4034/**
Tejun Heo492eb212013-08-08 20:11:25 -04004035 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04004036 * @pos: the current position (%NULL to initiate traversal)
4037 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09004038 *
Tejun Heoc2931b72014-05-16 13:22:51 -04004039 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05004040 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04004041 * that @parent and @pos are accessible. The next sibling is guaranteed to
4042 * be returned regardless of their states.
4043 *
4044 * If a subsystem synchronizes ->css_online() and the start of iteration, a
4045 * css which finished ->css_online() is guaranteed to be visible in the
4046 * future iterations and will stay visible until the last reference is put.
4047 * A css which hasn't finished ->css_online() or already finished
4048 * ->css_offline() may show up during traversal. It's each subsystem's
4049 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09004050 */
Tejun Heoc2931b72014-05-16 13:22:51 -04004051struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
4052 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09004053{
Tejun Heoc2931b72014-05-16 13:22:51 -04004054 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09004055
Tejun Heo8353da12014-05-13 12:19:23 -04004056 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09004057
4058 /*
Tejun Heode3f0342014-05-16 13:22:49 -04004059 * @pos could already have been unlinked from the sibling list.
4060 * Once a cgroup is removed, its ->sibling.next is no longer
4061 * updated when its next sibling changes. CSS_RELEASED is set when
4062 * @pos is taken off list, at which time its next pointer is valid,
4063 * and, as releases are serialized, the one pointed to by the next
4064 * pointer is guaranteed to not have started release yet. This
4065 * implies that if we observe !CSS_RELEASED on @pos in this RCU
4066 * critical section, the one pointed to by its next pointer is
4067 * guaranteed to not have finished its RCU grace period even if we
4068 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04004069 *
Tejun Heode3f0342014-05-16 13:22:49 -04004070 * If @pos has CSS_RELEASED set, its next pointer can't be
4071 * dereferenced; however, as each css is given a monotonically
4072 * increasing unique serial number and always appended to the
4073 * sibling list, the next one can be found by walking the parent's
4074 * children until the first css with higher serial number than
4075 * @pos's. While this path can be slower, it happens iff iteration
4076 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09004077 */
Tejun Heo3b287a52013-08-08 20:11:24 -04004078 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04004079 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
4080 } else if (likely(!(pos->flags & CSS_RELEASED))) {
4081 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04004082 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04004083 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04004084 if (next->serial_nr > pos->serial_nr)
4085 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09004086 }
4087
Tejun Heo3b281af2014-04-23 11:13:15 -04004088 /*
4089 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04004090 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04004091 */
Tejun Heoc2931b72014-05-16 13:22:51 -04004092 if (&next->sibling != &parent->children)
4093 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04004094 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09004095}
Tejun Heo53fa5262013-05-24 10:55:38 +09004096
4097/**
Tejun Heo492eb212013-08-08 20:11:25 -04004098 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08004099 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04004100 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08004101 *
Tejun Heo492eb212013-08-08 20:11:25 -04004102 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04004103 * to visit for pre-order traversal of @root's descendants. @root is
4104 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09004105 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05004106 * While this function requires cgroup_mutex or RCU read locking, it
4107 * doesn't require the whole traversal to be contained in a single critical
4108 * section. This function will return the correct next descendant as long
4109 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04004110 *
4111 * If a subsystem synchronizes ->css_online() and the start of iteration, a
4112 * css which finished ->css_online() is guaranteed to be visible in the
4113 * future iterations and will stay visible until the last reference is put.
4114 * A css which hasn't finished ->css_online() or already finished
4115 * ->css_offline() may show up during traversal. It's each subsystem's
4116 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08004117 */
Tejun Heo492eb212013-08-08 20:11:25 -04004118struct cgroup_subsys_state *
4119css_next_descendant_pre(struct cgroup_subsys_state *pos,
4120 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08004121{
Tejun Heo492eb212013-08-08 20:11:25 -04004122 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08004123
Tejun Heo8353da12014-05-13 12:19:23 -04004124 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08004125
Tejun Heobd8815a2013-08-08 20:11:27 -04004126 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09004127 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04004128 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08004129
4130 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04004131 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08004132 if (next)
4133 return next;
4134
4135 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04004136 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04004137 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09004138 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08004139 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04004140 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09004141 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08004142
4143 return NULL;
4144}
Tejun Heo574bd9f2012-11-09 09:12:29 -08004145
Tejun Heo12a9d2f2013-01-07 08:49:33 -08004146/**
Tejun Heo492eb212013-08-08 20:11:25 -04004147 * css_rightmost_descendant - return the rightmost descendant of a css
4148 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08004149 *
Tejun Heo492eb212013-08-08 20:11:25 -04004150 * Return the rightmost descendant of @pos. If there's no descendant, @pos
4151 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08004152 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09004153 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05004154 * While this function requires cgroup_mutex or RCU read locking, it
4155 * doesn't require the whole traversal to be contained in a single critical
4156 * section. This function will return the correct rightmost descendant as
4157 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08004158 */
Tejun Heo492eb212013-08-08 20:11:25 -04004159struct cgroup_subsys_state *
4160css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08004161{
Tejun Heo492eb212013-08-08 20:11:25 -04004162 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08004163
Tejun Heo8353da12014-05-13 12:19:23 -04004164 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08004165
4166 do {
4167 last = pos;
4168 /* ->prev isn't RCU safe, walk ->next till the end */
4169 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04004170 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08004171 pos = tmp;
4172 } while (pos);
4173
4174 return last;
4175}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08004176
Tejun Heo492eb212013-08-08 20:11:25 -04004177static struct cgroup_subsys_state *
4178css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08004179{
Tejun Heo492eb212013-08-08 20:11:25 -04004180 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08004181
4182 do {
4183 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04004184 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08004185 } while (pos);
4186
4187 return last;
4188}
4189
4190/**
Tejun Heo492eb212013-08-08 20:11:25 -04004191 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08004192 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04004193 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08004194 *
Tejun Heo492eb212013-08-08 20:11:25 -04004195 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04004196 * to visit for post-order traversal of @root's descendants. @root is
4197 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09004198 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05004199 * While this function requires cgroup_mutex or RCU read locking, it
4200 * doesn't require the whole traversal to be contained in a single critical
4201 * section. This function will return the correct next descendant as long
4202 * as both @pos and @cgroup are accessible and @pos is a descendant of
4203 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04004204 *
4205 * If a subsystem synchronizes ->css_online() and the start of iteration, a
4206 * css which finished ->css_online() is guaranteed to be visible in the
4207 * future iterations and will stay visible until the last reference is put.
4208 * A css which hasn't finished ->css_online() or already finished
4209 * ->css_offline() may show up during traversal. It's each subsystem's
4210 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08004211 */
Tejun Heo492eb212013-08-08 20:11:25 -04004212struct cgroup_subsys_state *
4213css_next_descendant_post(struct cgroup_subsys_state *pos,
4214 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08004215{
Tejun Heo492eb212013-08-08 20:11:25 -04004216 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08004217
Tejun Heo8353da12014-05-13 12:19:23 -04004218 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08004219
Tejun Heo58b79a92013-09-06 15:31:08 -04004220 /* if first iteration, visit leftmost descendant which may be @root */
4221 if (!pos)
4222 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08004223
Tejun Heobd8815a2013-08-08 20:11:27 -04004224 /* if we visited @root, we're done */
4225 if (pos == root)
4226 return NULL;
4227
Tejun Heo574bd9f2012-11-09 09:12:29 -08004228 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04004229 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09004230 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04004231 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08004232
4233 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04004234 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08004235}
Tejun Heo574bd9f2012-11-09 09:12:29 -08004236
Tejun Heof3d46502014-05-16 13:22:52 -04004237/**
4238 * css_has_online_children - does a css have online children
4239 * @css: the target css
4240 *
4241 * Returns %true if @css has any online children; otherwise, %false. This
4242 * function can be called from any context but the caller is responsible
4243 * for synchronizing against on/offlining as necessary.
4244 */
4245bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04004246{
Tejun Heof3d46502014-05-16 13:22:52 -04004247 struct cgroup_subsys_state *child;
4248 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04004249
4250 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04004251 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08004252 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04004253 ret = true;
4254 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04004255 }
4256 }
4257 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04004258 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08004259}
4260
Tejun Heo450ee0c2017-05-15 09:34:03 -04004261static struct css_set *css_task_iter_next_css_set(struct css_task_iter *it)
4262{
4263 struct list_head *l;
4264 struct cgrp_cset_link *link;
4265 struct css_set *cset;
4266
4267 lockdep_assert_held(&css_set_lock);
4268
4269 /* find the next threaded cset */
4270 if (it->tcset_pos) {
4271 l = it->tcset_pos->next;
4272
4273 if (l != it->tcset_head) {
4274 it->tcset_pos = l;
4275 return container_of(l, struct css_set,
4276 threaded_csets_node);
4277 }
4278
4279 it->tcset_pos = NULL;
4280 }
4281
4282 /* find the next cset */
4283 l = it->cset_pos;
4284 l = l->next;
4285 if (l == it->cset_head) {
4286 it->cset_pos = NULL;
4287 return NULL;
4288 }
4289
4290 if (it->ss) {
4291 cset = container_of(l, struct css_set, e_cset_node[it->ss->id]);
4292 } else {
4293 link = list_entry(l, struct cgrp_cset_link, cset_link);
4294 cset = link->cset;
4295 }
4296
4297 it->cset_pos = l;
4298
4299 /* initialize threaded css_set walking */
4300 if (it->flags & CSS_TASK_ITER_THREADED) {
4301 if (it->cur_dcset)
4302 put_css_set_locked(it->cur_dcset);
4303 it->cur_dcset = cset;
4304 get_css_set(cset);
4305
4306 it->tcset_head = &cset->threaded_csets;
4307 it->tcset_pos = &cset->threaded_csets;
4308 }
4309
4310 return cset;
4311}
4312
Tejun Heo0942eee2013-08-08 20:11:26 -04004313/**
Tejun Heoecb9d532015-10-15 16:41:52 -04004314 * css_task_iter_advance_css_set - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04004315 * @it: the iterator to advance
4316 *
4317 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04004318 */
Tejun Heoecb9d532015-10-15 16:41:52 -04004319static void css_task_iter_advance_css_set(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04004320{
Tejun Heod5158762013-08-08 20:11:26 -04004321 struct css_set *cset;
4322
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004323 lockdep_assert_held(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004324
Tejun Heod5158762013-08-08 20:11:26 -04004325 /* Advance to the next non-empty css_set */
4326 do {
Tejun Heo450ee0c2017-05-15 09:34:03 -04004327 cset = css_task_iter_next_css_set(it);
4328 if (!cset) {
Tejun Heoecb9d532015-10-15 16:41:52 -04004329 it->task_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04004330 return;
4331 }
Tejun Heo0de09422015-10-15 16:41:49 -04004332 } while (!css_set_populated(cset));
Tejun Heoc7561122014-02-25 10:04:01 -05004333
Tejun Heoc7561122014-02-25 10:04:01 -05004334 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04004335 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05004336 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04004337 it->task_pos = cset->mg_tasks.next;
4338
4339 it->tasks_head = &cset->tasks;
4340 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heoed27b9f2015-10-15 16:41:52 -04004341
4342 /*
4343 * We don't keep css_sets locked across iteration steps and thus
4344 * need to take steps to ensure that iteration can be resumed after
4345 * the lock is re-acquired. Iteration is performed at two levels -
4346 * css_sets and tasks in them.
4347 *
4348 * Once created, a css_set never leaves its cgroup lists, so a
4349 * pinned css_set is guaranteed to stay put and we can resume
4350 * iteration afterwards.
4351 *
4352 * Tasks may leave @cset across iteration steps. This is resolved
4353 * by registering each iterator with the css_set currently being
4354 * walked and making css_set_move_task() advance iterators whose
4355 * next task is leaving.
4356 */
4357 if (it->cur_cset) {
4358 list_del(&it->iters_node);
4359 put_css_set_locked(it->cur_cset);
4360 }
4361 get_css_set(cset);
4362 it->cur_cset = cset;
4363 list_add(&it->iters_node, &cset->task_iters);
Tejun Heod5158762013-08-08 20:11:26 -04004364}
4365
Tejun Heoecb9d532015-10-15 16:41:52 -04004366static void css_task_iter_advance(struct css_task_iter *it)
4367{
Tejun Heo74d08332017-12-20 07:09:19 -08004368 struct list_head *next;
Tejun Heoecb9d532015-10-15 16:41:52 -04004369
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004370 lockdep_assert_held(&css_set_lock);
Tejun Heobc2fb7e2017-05-15 09:34:01 -04004371repeat:
Tejun Heoe9d81a12018-11-08 12:15:15 -08004372 if (it->task_pos) {
4373 /*
4374 * Advance iterator to find next entry. cset->tasks is
4375 * consumed first and then ->mg_tasks. After ->mg_tasks,
4376 * we move onto the next cset.
4377 */
4378 next = it->task_pos->next;
Tejun Heoecb9d532015-10-15 16:41:52 -04004379
Tejun Heoe9d81a12018-11-08 12:15:15 -08004380 if (next == it->tasks_head)
4381 next = it->mg_tasks_head->next;
Tejun Heoecb9d532015-10-15 16:41:52 -04004382
Tejun Heoe9d81a12018-11-08 12:15:15 -08004383 if (next == it->mg_tasks_head)
4384 css_task_iter_advance_css_set(it);
4385 else
4386 it->task_pos = next;
4387 } else {
4388 /* called from start, proceed to the first cset */
Tejun Heoecb9d532015-10-15 16:41:52 -04004389 css_task_iter_advance_css_set(it);
Tejun Heoe9d81a12018-11-08 12:15:15 -08004390 }
Tejun Heobc2fb7e2017-05-15 09:34:01 -04004391
4392 /* if PROCS, skip over tasks which aren't group leaders */
4393 if ((it->flags & CSS_TASK_ITER_PROCS) && it->task_pos &&
4394 !thread_group_leader(list_entry(it->task_pos, struct task_struct,
4395 cg_list)))
4396 goto repeat;
Tejun Heoecb9d532015-10-15 16:41:52 -04004397}
4398
Tejun Heo0942eee2013-08-08 20:11:26 -04004399/**
Tejun Heo72ec7022013-08-08 20:11:26 -04004400 * css_task_iter_start - initiate task iteration
4401 * @css: the css to walk tasks of
Tejun Heobc2fb7e2017-05-15 09:34:01 -04004402 * @flags: CSS_TASK_ITER_* flags
Tejun Heo0942eee2013-08-08 20:11:26 -04004403 * @it: the task iterator to use
4404 *
Tejun Heo72ec7022013-08-08 20:11:26 -04004405 * Initiate iteration through the tasks of @css. The caller can call
4406 * css_task_iter_next() to walk through the tasks until the function
4407 * returns NULL. On completion of iteration, css_task_iter_end() must be
4408 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04004409 */
Tejun Heobc2fb7e2017-05-15 09:34:01 -04004410void css_task_iter_start(struct cgroup_subsys_state *css, unsigned int flags,
Tejun Heo72ec7022013-08-08 20:11:26 -04004411 struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07004412{
Tejun Heo56fde9e2014-02-13 06:58:38 -05004413 /* no one should try to iterate before mounting cgroups */
4414 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07004415
Tejun Heoed27b9f2015-10-15 16:41:52 -04004416 memset(it, 0, sizeof(*it));
4417
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03004418 spin_lock_irq(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04004419
Tejun Heo3ebb2b62014-04-23 11:13:15 -04004420 it->ss = css->ss;
Tejun Heobc2fb7e2017-05-15 09:34:01 -04004421 it->flags = flags;
Tejun Heo3ebb2b62014-04-23 11:13:15 -04004422
4423 if (it->ss)
4424 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
4425 else
4426 it->cset_pos = &css->cgroup->cset_links;
4427
Tejun Heo0f0a2b42014-04-23 11:13:15 -04004428 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04004429
Tejun Heoe9d81a12018-11-08 12:15:15 -08004430 css_task_iter_advance(it);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004431
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03004432 spin_unlock_irq(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004433}
Paul Menage817929e2007-10-18 23:39:36 -07004434
Tejun Heo0942eee2013-08-08 20:11:26 -04004435/**
Tejun Heo72ec7022013-08-08 20:11:26 -04004436 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04004437 * @it: the task iterator being iterated
4438 *
4439 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04004440 * initialized via css_task_iter_start(). Returns NULL when the iteration
4441 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04004442 */
Tejun Heo72ec7022013-08-08 20:11:26 -04004443struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07004444{
Tejun Heod5745672015-10-29 11:43:05 +09004445 if (it->cur_task) {
Tejun Heoed27b9f2015-10-15 16:41:52 -04004446 put_task_struct(it->cur_task);
Tejun Heod5745672015-10-29 11:43:05 +09004447 it->cur_task = NULL;
4448 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04004449
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03004450 spin_lock_irq(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004451
Tejun Heod5745672015-10-29 11:43:05 +09004452 if (it->task_pos) {
4453 it->cur_task = list_entry(it->task_pos, struct task_struct,
4454 cg_list);
4455 get_task_struct(it->cur_task);
4456 css_task_iter_advance(it);
4457 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04004458
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03004459 spin_unlock_irq(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004460
4461 return it->cur_task;
Paul Menage817929e2007-10-18 23:39:36 -07004462}
4463
Tejun Heo0942eee2013-08-08 20:11:26 -04004464/**
Tejun Heo72ec7022013-08-08 20:11:26 -04004465 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04004466 * @it: the task iterator to finish
4467 *
Tejun Heo72ec7022013-08-08 20:11:26 -04004468 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04004469 */
Tejun Heo72ec7022013-08-08 20:11:26 -04004470void css_task_iter_end(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07004471{
Tejun Heoed27b9f2015-10-15 16:41:52 -04004472 if (it->cur_cset) {
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03004473 spin_lock_irq(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004474 list_del(&it->iters_node);
4475 put_css_set_locked(it->cur_cset);
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03004476 spin_unlock_irq(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004477 }
4478
Tejun Heo450ee0c2017-05-15 09:34:03 -04004479 if (it->cur_dcset)
4480 put_css_set(it->cur_dcset);
4481
Tejun Heoed27b9f2015-10-15 16:41:52 -04004482 if (it->cur_task)
4483 put_task_struct(it->cur_task);
Tejun Heo8cc99342013-04-07 09:29:50 -07004484}
4485
Tejun Heob4b90a82016-12-27 14:49:04 -05004486static void cgroup_procs_release(struct kernfs_open_file *of)
Tejun Heo8cc99342013-04-07 09:29:50 -07004487{
Tejun Heob4b90a82016-12-27 14:49:04 -05004488 if (of->priv) {
4489 css_task_iter_end(of->priv);
4490 kfree(of->priv);
4491 }
4492}
4493
4494static void *cgroup_procs_next(struct seq_file *s, void *v, loff_t *pos)
4495{
4496 struct kernfs_open_file *of = s->private;
4497 struct css_task_iter *it = of->priv;
Tejun Heoe406d1c2014-02-13 06:58:39 -05004498
Tejun Heobc2fb7e2017-05-15 09:34:01 -04004499 return css_task_iter_next(it);
Tejun Heo8cc99342013-04-07 09:29:50 -07004500}
4501
Tejun Heo8cfd8142017-07-21 11:14:51 -04004502static void *__cgroup_procs_start(struct seq_file *s, loff_t *pos,
4503 unsigned int iter_flags)
Ben Blumd1d9fd32009-09-23 15:56:28 -07004504{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004505 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004506 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heob4b90a82016-12-27 14:49:04 -05004507 struct css_task_iter *it = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004508
4509 /*
Tejun Heob4b90a82016-12-27 14:49:04 -05004510 * When a seq_file is seeked, it's always traversed sequentially
4511 * from position 0, so we can simply keep iterating on !0 *pos.
Tejun Heo4bac00d2013-11-29 10:42:59 -05004512 */
Tejun Heob4b90a82016-12-27 14:49:04 -05004513 if (!it) {
4514 if (WARN_ON_ONCE((*pos)++))
4515 return ERR_PTR(-EINVAL);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004516
Tejun Heob4b90a82016-12-27 14:49:04 -05004517 it = kzalloc(sizeof(*it), GFP_KERNEL);
4518 if (!it)
4519 return ERR_PTR(-ENOMEM);
4520 of->priv = it;
Tejun Heo450ee0c2017-05-15 09:34:03 -04004521 css_task_iter_start(&cgrp->self, iter_flags, it);
Tejun Heob4b90a82016-12-27 14:49:04 -05004522 } else if (!(*pos)++) {
4523 css_task_iter_end(it);
Tejun Heo450ee0c2017-05-15 09:34:03 -04004524 css_task_iter_start(&cgrp->self, iter_flags, it);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004525 }
Tejun Heo4bac00d2013-11-29 10:42:59 -05004526
Tejun Heob4b90a82016-12-27 14:49:04 -05004527 return cgroup_procs_next(s, NULL, NULL);
Paul Menagebbcb81d2007-10-18 23:39:32 -07004528}
4529
Tejun Heo8cfd8142017-07-21 11:14:51 -04004530static void *cgroup_procs_start(struct seq_file *s, loff_t *pos)
4531{
4532 struct cgroup *cgrp = seq_css(s)->cgroup;
4533
4534 /*
4535 * All processes of a threaded subtree belong to the domain cgroup
4536 * of the subtree. Only threads can be distributed across the
4537 * subtree. Reject reads on cgroup.procs in the subtree proper.
4538 * They're always empty anyway.
4539 */
4540 if (cgroup_is_threaded(cgrp))
4541 return ERR_PTR(-EOPNOTSUPP);
4542
4543 return __cgroup_procs_start(s, pos, CSS_TASK_ITER_PROCS |
4544 CSS_TASK_ITER_THREADED);
4545}
4546
Tejun Heob4b90a82016-12-27 14:49:04 -05004547static int cgroup_procs_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004548{
Tejun Heobc2fb7e2017-05-15 09:34:01 -04004549 seq_printf(s, "%d\n", task_pid_vnr(v));
Daniel Lezcano97978e62010-10-27 15:33:35 -07004550 return 0;
4551}
4552
Tejun Heo715c8092017-05-15 09:34:00 -04004553static int cgroup_procs_write_permission(struct cgroup *src_cgrp,
4554 struct cgroup *dst_cgrp,
4555 struct super_block *sb)
4556{
4557 struct cgroup_namespace *ns = current->nsproxy->cgroup_ns;
4558 struct cgroup *com_cgrp = src_cgrp;
4559 struct inode *inode;
4560 int ret;
4561
4562 lockdep_assert_held(&cgroup_mutex);
4563
4564 /* find the common ancestor */
4565 while (!cgroup_is_descendant(dst_cgrp, com_cgrp))
4566 com_cgrp = cgroup_parent(com_cgrp);
4567
4568 /* %current should be authorized to migrate to the common ancestor */
4569 inode = kernfs_get_inode(sb, com_cgrp->procs_file.kn);
4570 if (!inode)
4571 return -ENOMEM;
4572
4573 ret = inode_permission(inode, MAY_WRITE);
4574 iput(inode);
4575 if (ret)
4576 return ret;
4577
4578 /*
4579 * If namespaces are delegation boundaries, %current must be able
4580 * to see both source and destination cgroups from its namespace.
4581 */
4582 if ((cgrp_dfl_root.flags & CGRP_ROOT_NS_DELEGATE) &&
4583 (!cgroup_is_descendant(src_cgrp, ns->root_cset->dfl_cgrp) ||
4584 !cgroup_is_descendant(dst_cgrp, ns->root_cset->dfl_cgrp)))
4585 return -ENOENT;
4586
4587 return 0;
4588}
4589
4590static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
4591 char *buf, size_t nbytes, loff_t off)
4592{
4593 struct cgroup *src_cgrp, *dst_cgrp;
4594 struct task_struct *task;
4595 ssize_t ret;
4596
4597 dst_cgrp = cgroup_kn_lock_live(of->kn, false);
4598 if (!dst_cgrp)
4599 return -ENODEV;
4600
4601 task = cgroup_procs_write_start(buf, true);
4602 ret = PTR_ERR_OR_ZERO(task);
4603 if (ret)
4604 goto out_unlock;
4605
4606 /* find the source cgroup */
4607 spin_lock_irq(&css_set_lock);
4608 src_cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
4609 spin_unlock_irq(&css_set_lock);
4610
4611 ret = cgroup_procs_write_permission(src_cgrp, dst_cgrp,
4612 of->file->f_path.dentry->d_sb);
4613 if (ret)
4614 goto out_finish;
4615
4616 ret = cgroup_attach_task(dst_cgrp, task, true);
4617
4618out_finish:
4619 cgroup_procs_write_finish(task);
4620out_unlock:
4621 cgroup_kn_unlock(of->kn);
4622
4623 return ret ?: nbytes;
4624}
4625
Tejun Heo8cfd8142017-07-21 11:14:51 -04004626static void *cgroup_threads_start(struct seq_file *s, loff_t *pos)
4627{
4628 return __cgroup_procs_start(s, pos, 0);
4629}
4630
4631static ssize_t cgroup_threads_write(struct kernfs_open_file *of,
4632 char *buf, size_t nbytes, loff_t off)
4633{
4634 struct cgroup *src_cgrp, *dst_cgrp;
4635 struct task_struct *task;
4636 ssize_t ret;
4637
4638 buf = strstrip(buf);
4639
4640 dst_cgrp = cgroup_kn_lock_live(of->kn, false);
4641 if (!dst_cgrp)
4642 return -ENODEV;
4643
4644 task = cgroup_procs_write_start(buf, false);
4645 ret = PTR_ERR_OR_ZERO(task);
4646 if (ret)
4647 goto out_unlock;
4648
4649 /* find the source cgroup */
4650 spin_lock_irq(&css_set_lock);
4651 src_cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
4652 spin_unlock_irq(&css_set_lock);
4653
4654 /* thread migrations follow the cgroup.procs delegation rule */
4655 ret = cgroup_procs_write_permission(src_cgrp, dst_cgrp,
4656 of->file->f_path.dentry->d_sb);
4657 if (ret)
4658 goto out_finish;
4659
4660 /* and must be contained in the same domain */
4661 ret = -EOPNOTSUPP;
4662 if (src_cgrp->dom_cgrp != dst_cgrp->dom_cgrp)
4663 goto out_finish;
4664
4665 ret = cgroup_attach_task(dst_cgrp, task, false);
4666
4667out_finish:
4668 cgroup_procs_write_finish(task);
4669out_unlock:
4670 cgroup_kn_unlock(of->kn);
4671
4672 return ret ?: nbytes;
4673}
4674
Tejun Heoa14c6872014-07-15 11:05:09 -04004675/* cgroup core interface files for the default hierarchy */
Tejun Heod62beb72016-12-27 14:49:08 -05004676static struct cftype cgroup_base_files[] = {
Tejun Heoa14c6872014-07-15 11:05:09 -04004677 {
Tejun Heo8cfd8142017-07-21 11:14:51 -04004678 .name = "cgroup.type",
4679 .flags = CFTYPE_NOT_ON_ROOT,
4680 .seq_show = cgroup_type_show,
4681 .write = cgroup_type_write,
4682 },
4683 {
Tejun Heoa14c6872014-07-15 11:05:09 -04004684 .name = "cgroup.procs",
Tejun Heo5136f632017-06-27 14:30:28 -04004685 .flags = CFTYPE_NS_DELEGATABLE,
Tejun Heo6f60ead2015-09-18 17:54:23 -04004686 .file_offset = offsetof(struct cgroup, procs_file),
Tejun Heob4b90a82016-12-27 14:49:04 -05004687 .release = cgroup_procs_release,
4688 .seq_start = cgroup_procs_start,
4689 .seq_next = cgroup_procs_next,
4690 .seq_show = cgroup_procs_show,
Tejun Heoa14c6872014-07-15 11:05:09 -04004691 .write = cgroup_procs_write,
Tejun Heoa14c6872014-07-15 11:05:09 -04004692 },
4693 {
Tejun Heo8cfd8142017-07-21 11:14:51 -04004694 .name = "cgroup.threads",
Roman Gushchin4f584242018-01-10 04:35:12 -08004695 .flags = CFTYPE_NS_DELEGATABLE,
Tejun Heo8cfd8142017-07-21 11:14:51 -04004696 .release = cgroup_procs_release,
4697 .seq_start = cgroup_threads_start,
4698 .seq_next = cgroup_procs_next,
4699 .seq_show = cgroup_procs_show,
4700 .write = cgroup_threads_write,
4701 },
4702 {
Tejun Heoa14c6872014-07-15 11:05:09 -04004703 .name = "cgroup.controllers",
Tejun Heoa14c6872014-07-15 11:05:09 -04004704 .seq_show = cgroup_controllers_show,
4705 },
4706 {
4707 .name = "cgroup.subtree_control",
Tejun Heo5136f632017-06-27 14:30:28 -04004708 .flags = CFTYPE_NS_DELEGATABLE,
Tejun Heoa14c6872014-07-15 11:05:09 -04004709 .seq_show = cgroup_subtree_control_show,
4710 .write = cgroup_subtree_control_write,
4711 },
4712 {
Tejun Heo4a07c222015-09-18 17:54:22 -04004713 .name = "cgroup.events",
Tejun Heoa14c6872014-07-15 11:05:09 -04004714 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo6f60ead2015-09-18 17:54:23 -04004715 .file_offset = offsetof(struct cgroup, events_file),
Tejun Heo4a07c222015-09-18 17:54:22 -04004716 .seq_show = cgroup_events_show,
Tejun Heoa14c6872014-07-15 11:05:09 -04004717 },
Roman Gushchin1a926e02017-07-28 18:28:44 +01004718 {
4719 .name = "cgroup.max.descendants",
4720 .seq_show = cgroup_max_descendants_show,
4721 .write = cgroup_max_descendants_write,
4722 },
4723 {
4724 .name = "cgroup.max.depth",
4725 .seq_show = cgroup_max_depth_show,
4726 .write = cgroup_max_depth_write,
4727 },
Roman Gushchinec392252017-08-02 17:55:31 +01004728 {
4729 .name = "cgroup.stat",
Tejun Heo3e489302017-08-11 05:49:01 -07004730 .seq_show = cgroup_stat_show,
Roman Gushchinec392252017-08-02 17:55:31 +01004731 },
Tejun Heod41bf8c2017-10-23 16:18:27 -07004732 {
Roman Gushchin76f969e2019-04-19 10:03:04 -07004733 .name = "cgroup.freeze",
4734 .flags = CFTYPE_NOT_ON_ROOT,
4735 .seq_show = cgroup_freeze_show,
4736 .write = cgroup_freeze_write,
4737 },
4738 {
Tejun Heod41bf8c2017-10-23 16:18:27 -07004739 .name = "cpu.stat",
4740 .flags = CFTYPE_NOT_ON_ROOT,
4741 .seq_show = cpu_stat_show,
4742 },
Johannes Weiner2ce71352018-10-26 15:06:31 -07004743#ifdef CONFIG_PSI
4744 {
4745 .name = "io.pressure",
4746 .flags = CFTYPE_NOT_ON_ROOT,
4747 .seq_show = cgroup_io_pressure_show,
4748 },
4749 {
4750 .name = "memory.pressure",
4751 .flags = CFTYPE_NOT_ON_ROOT,
4752 .seq_show = cgroup_memory_pressure_show,
4753 },
4754 {
4755 .name = "cpu.pressure",
4756 .flags = CFTYPE_NOT_ON_ROOT,
4757 .seq_show = cgroup_cpu_pressure_show,
4758 },
4759#endif
Tejun Heoa14c6872014-07-15 11:05:09 -04004760 { } /* terminate */
4761};
4762
Tejun Heo0c21ead2013-08-13 20:22:51 -04004763/*
4764 * css destruction is four-stage process.
4765 *
4766 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4767 * Implemented in kill_css().
4768 *
4769 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004770 * and thus css_tryget_online() is guaranteed to fail, the css can be
4771 * offlined by invoking offline_css(). After offlining, the base ref is
4772 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004773 *
4774 * 3. When the percpu_ref reaches zero, the only possible remaining
4775 * accessors are inside RCU read sections. css_release() schedules the
4776 * RCU callback.
4777 *
4778 * 4. After the grace period, the css can be freed. Implemented in
4779 * css_free_work_fn().
4780 *
4781 * It is actually hairier because both step 2 and 4 require process context
4782 * and thus involve punting to css->destroy_work adding two additional
4783 * steps to the already complex sequence.
4784 */
Tejun Heo8f36aae2018-03-14 12:45:14 -07004785static void css_free_rwork_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004786{
Tejun Heo8f36aae2018-03-14 12:45:14 -07004787 struct cgroup_subsys_state *css = container_of(to_rcu_work(work),
4788 struct cgroup_subsys_state, destroy_rwork);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004789 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004790 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004791
Tejun Heo9a1049d2014-06-28 08:10:14 -04004792 percpu_ref_exit(&css->refcnt);
4793
Vladimir Davydov01e58652015-02-12 14:59:26 -08004794 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004795 /* css free path */
Tejun Heo8bb5ef72016-01-21 15:32:15 -05004796 struct cgroup_subsys_state *parent = css->parent;
Vladimir Davydov01e58652015-02-12 14:59:26 -08004797 int id = css->id;
4798
Vladimir Davydov01e58652015-02-12 14:59:26 -08004799 ss->css_free(css);
4800 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004801 cgroup_put(cgrp);
Tejun Heo8bb5ef72016-01-21 15:32:15 -05004802
4803 if (parent)
4804 css_put(parent);
Tejun Heo9d755d32014-05-14 09:15:02 -04004805 } else {
4806 /* cgroup free path */
4807 atomic_dec(&cgrp->root->nr_cgrps);
Tejun Heod62beb72016-12-27 14:49:08 -05004808 cgroup1_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004809 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004810
Tejun Heod51f39b2014-05-16 13:22:48 -04004811 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004812 /*
4813 * We get a ref to the parent, and put the ref when
4814 * this cgroup is being freed, so it's guaranteed
4815 * that the parent won't be destroyed before its
4816 * children.
4817 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004818 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004819 kernfs_put(cgrp->kn);
Johannes Weiner2ce71352018-10-26 15:06:31 -07004820 psi_cgroup_free(cgrp);
Tejun Heo041cd642017-09-25 08:12:05 -07004821 if (cgroup_on_dfl(cgrp))
Tejun Heoc58632b2018-04-26 14:29:04 -07004822 cgroup_rstat_exit(cgrp);
Tejun Heo9d755d32014-05-14 09:15:02 -04004823 kfree(cgrp);
4824 } else {
4825 /*
4826 * This is root cgroup's refcnt reaching zero,
4827 * which indicates that the root should be
4828 * released.
4829 */
4830 cgroup_destroy_root(cgrp->root);
4831 }
4832 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004833}
4834
Tejun Heo25e15d82014-05-14 09:15:02 -04004835static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004836{
4837 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004838 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004839 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004840 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004841
Tejun Heo1fed1b22014-05-16 13:22:49 -04004842 mutex_lock(&cgroup_mutex);
4843
Tejun Heode3f0342014-05-16 13:22:49 -04004844 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004845 list_del_rcu(&css->sibling);
4846
Tejun Heo9d755d32014-05-14 09:15:02 -04004847 if (ss) {
4848 /* css release path */
Tejun Heo8f534702018-04-26 14:29:05 -07004849 if (!list_empty(&css->rstat_css_node)) {
4850 cgroup_rstat_flush(cgrp);
4851 list_del_rcu(&css->rstat_css_node);
4852 }
4853
Vladimir Davydov01e58652015-02-12 14:59:26 -08004854 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004855 if (ss->css_released)
4856 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004857 } else {
Roman Gushchin0679dee2017-08-02 17:55:29 +01004858 struct cgroup *tcgrp;
4859
Tejun Heo9d755d32014-05-14 09:15:02 -04004860 /* cgroup release path */
Steven Rostedt (VMware)e4f8d812018-07-09 17:48:54 -04004861 TRACE_CGROUP_PATH(release, cgrp);
Tejun Heoed1777d2016-08-10 11:23:44 -04004862
Tejun Heo041cd642017-09-25 08:12:05 -07004863 if (cgroup_on_dfl(cgrp))
Tejun Heoc58632b2018-04-26 14:29:04 -07004864 cgroup_rstat_flush(cgrp);
Tejun Heo041cd642017-09-25 08:12:05 -07004865
Roman Gushchin4dcabec2019-04-19 10:03:03 -07004866 spin_lock_irq(&css_set_lock);
Roman Gushchin0679dee2017-08-02 17:55:29 +01004867 for (tcgrp = cgroup_parent(cgrp); tcgrp;
4868 tcgrp = cgroup_parent(tcgrp))
4869 tcgrp->nr_dying_descendants--;
Roman Gushchin4dcabec2019-04-19 10:03:03 -07004870 spin_unlock_irq(&css_set_lock);
Roman Gushchin0679dee2017-08-02 17:55:29 +01004871
Tejun Heo9d755d32014-05-14 09:15:02 -04004872 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4873 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004874
4875 /*
4876 * There are two control paths which try to determine
4877 * cgroup from dentry without going through kernfs -
4878 * cgroupstats_build() and css_tryget_online_from_dir().
4879 * Those are supported by RCU protecting clearing of
4880 * cgrp->kn->priv backpointer.
4881 */
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004882 if (cgrp->kn)
4883 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv,
4884 NULL);
Daniel Mack30070982016-11-23 16:52:26 +01004885
4886 cgroup_bpf_put(cgrp);
Tejun Heo9d755d32014-05-14 09:15:02 -04004887 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004888
Tejun Heo1fed1b22014-05-16 13:22:49 -04004889 mutex_unlock(&cgroup_mutex);
4890
Tejun Heo8f36aae2018-03-14 12:45:14 -07004891 INIT_RCU_WORK(&css->destroy_rwork, css_free_rwork_fn);
4892 queue_rcu_work(cgroup_destroy_wq, &css->destroy_rwork);
Tejun Heod3daf282013-06-13 19:39:16 -07004893}
4894
Tejun Heo48ddbe12012-04-01 12:09:56 -07004895static void css_release(struct percpu_ref *ref)
4896{
4897 struct cgroup_subsys_state *css =
4898 container_of(ref, struct cgroup_subsys_state, refcnt);
Tejun Heo5db9a4d2012-07-07 16:08:18 -07004899
Tejun Heo25e15d82014-05-14 09:15:02 -04004900 INIT_WORK(&css->destroy_work, css_release_work_fn);
4901 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004902}
4903
Tejun Heoddfcada2014-05-04 15:09:14 -04004904static void init_and_link_css(struct cgroup_subsys_state *css,
4905 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004906{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004907 lockdep_assert_held(&cgroup_mutex);
4908
Tejun Heoa590b902017-04-28 15:14:55 -04004909 cgroup_get_live(cgrp);
Tejun Heoddfcada2014-05-04 15:09:14 -04004910
Tejun Heod5c419b2014-05-16 13:22:48 -04004911 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004912 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004913 css->ss = ss;
Tejun Heo8fa3b8d2016-05-26 15:42:13 -04004914 css->id = -1;
Tejun Heod5c419b2014-05-16 13:22:48 -04004915 INIT_LIST_HEAD(&css->sibling);
4916 INIT_LIST_HEAD(&css->children);
Tejun Heo8f534702018-04-26 14:29:05 -07004917 INIT_LIST_HEAD(&css->rstat_css_node);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004918 css->serial_nr = css_serial_nr_next++;
Tejun Heoaa226ff2016-01-21 15:31:11 -05004919 atomic_set(&css->online_cnt, 0);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004920
Tejun Heod51f39b2014-05-16 13:22:48 -04004921 if (cgroup_parent(cgrp)) {
4922 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004923 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004924 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004925
Tejun Heo8f534702018-04-26 14:29:05 -07004926 if (cgroup_on_dfl(cgrp) && ss->css_rstat_flush)
4927 list_add_rcu(&css->rstat_css_node, &cgrp->rstat_css_list);
4928
Tejun Heoca8bdca2013-08-26 18:40:56 -04004929 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004930}
4931
Li Zefan2a4ac632013-07-31 16:16:40 +08004932/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004933static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004934{
Tejun Heo623f9262013-08-13 11:01:55 -04004935 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004936 int ret = 0;
4937
Tejun Heoa31f2d32012-11-19 08:13:37 -08004938 lockdep_assert_held(&cgroup_mutex);
4939
Tejun Heo92fb9742012-11-19 08:13:38 -08004940 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004941 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004942 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004943 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004944 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoaa226ff2016-01-21 15:31:11 -05004945
4946 atomic_inc(&css->online_cnt);
4947 if (css->parent)
4948 atomic_inc(&css->parent->online_cnt);
Tejun Heoae7f1642013-08-13 20:22:50 -04004949 }
Tejun Heob1929db2012-11-19 08:13:38 -08004950 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004951}
4952
Li Zefan2a4ac632013-07-31 16:16:40 +08004953/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004954static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004955{
Tejun Heo623f9262013-08-13 11:01:55 -04004956 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004957
4958 lockdep_assert_held(&cgroup_mutex);
4959
4960 if (!(css->flags & CSS_ONLINE))
4961 return;
4962
Li Zefand7eeac12013-03-12 15:35:59 -07004963 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004964 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004965
Tejun Heoeb954192013-08-08 20:11:23 -04004966 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004967 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004968
4969 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004970}
4971
Tejun Heoc81c925a2013-12-06 15:11:56 -05004972/**
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004973 * css_create - create a cgroup_subsys_state
Tejun Heoc81c925a2013-12-06 15:11:56 -05004974 * @cgrp: the cgroup new css will be associated with
4975 * @ss: the subsys of new css
4976 *
4977 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004978 * css is online and installed in @cgrp. This function doesn't create the
4979 * interface files. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004980 */
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004981static struct cgroup_subsys_state *css_create(struct cgroup *cgrp,
4982 struct cgroup_subsys *ss)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004983{
Tejun Heod51f39b2014-05-16 13:22:48 -04004984 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004985 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004986 struct cgroup_subsys_state *css;
4987 int err;
4988
Tejun Heoc81c925a2013-12-06 15:11:56 -05004989 lockdep_assert_held(&cgroup_mutex);
4990
Tejun Heo1fed1b22014-05-16 13:22:49 -04004991 css = ss->css_alloc(parent_css);
Tejun Heoe7e15b82016-06-21 13:06:24 -04004992 if (!css)
4993 css = ERR_PTR(-ENOMEM);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004994 if (IS_ERR(css))
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004995 return css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004996
Tejun Heoddfcada2014-05-04 15:09:14 -04004997 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004998
Tejun Heo2aad2a82014-09-24 13:31:50 -04004999 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05005000 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08005001 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05005002
Vladimir Davydovcf780b72015-08-03 15:32:26 +03005003 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
Tejun Heo15a4c832014-05-04 15:09:14 -04005004 if (err < 0)
Wenwei Taob00c52d2016-05-13 22:59:20 +08005005 goto err_free_css;
Tejun Heo15a4c832014-05-04 15:09:14 -04005006 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05005007
Tejun Heo15a4c832014-05-04 15:09:14 -04005008 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04005009 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04005010 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05005011
5012 err = online_css(css);
5013 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04005014 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04005015
Tejun Heoc81c925a2013-12-06 15:11:56 -05005016 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04005017 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04005018 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 -04005019 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05005020 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04005021 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05005022 ss->warned_broken_hierarchy = true;
5023 }
5024
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05005025 return css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05005026
Tejun Heo1fed1b22014-05-16 13:22:49 -04005027err_list_del:
5028 list_del_rcu(&css->sibling);
Li Zefan3eb59ec2014-03-18 17:02:36 +08005029err_free_css:
Tejun Heo8f534702018-04-26 14:29:05 -07005030 list_del_rcu(&css->rstat_css_node);
Tejun Heo8f36aae2018-03-14 12:45:14 -07005031 INIT_RCU_WORK(&css->destroy_rwork, css_free_rwork_fn);
5032 queue_rcu_work(cgroup_destroy_wq, &css->destroy_rwork);
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05005033 return ERR_PTR(err);
Tejun Heoc81c925a2013-12-06 15:11:56 -05005034}
5035
Tejun Heo07cd1292017-01-26 16:47:28 -05005036/*
5037 * The returned cgroup is fully initialized including its control mask, but
5038 * it isn't associated with its kernfs_node and doesn't have the control
5039 * mask applied.
5040 */
Tejun Heoa5bca212016-03-03 09:57:58 -05005041static struct cgroup *cgroup_create(struct cgroup *parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005042{
Tejun Heoa5bca212016-03-03 09:57:58 -05005043 struct cgroup_root *root = parent->root;
Tejun Heoa5bca212016-03-03 09:57:58 -05005044 struct cgroup *cgrp, *tcgrp;
5045 int level = parent->level + 1;
Tejun Heo03970d32016-03-03 09:58:00 -05005046 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005047
Tejun Heo0a950f62012-11-19 09:02:12 -08005048 /* allocate the cgroup and its ID, 0 is reserved for the root */
Kees Cookacafe7e2018-05-08 13:45:50 -07005049 cgrp = kzalloc(struct_size(cgrp, ancestor_ids, (level + 1)),
5050 GFP_KERNEL);
Tejun Heoa5bca212016-03-03 09:57:58 -05005051 if (!cgrp)
5052 return ERR_PTR(-ENOMEM);
Li Zefan0ab02ca2014-02-11 16:05:46 +08005053
Tejun Heo2aad2a82014-09-24 13:31:50 -04005054 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04005055 if (ret)
5056 goto out_free_cgrp;
5057
Tejun Heo041cd642017-09-25 08:12:05 -07005058 if (cgroup_on_dfl(parent)) {
Tejun Heoc58632b2018-04-26 14:29:04 -07005059 ret = cgroup_rstat_init(cgrp);
Tejun Heo041cd642017-09-25 08:12:05 -07005060 if (ret)
5061 goto out_cancel_ref;
5062 }
5063
Li Zefan0ab02ca2014-02-11 16:05:46 +08005064 /*
5065 * Temporarily set the pointer to NULL, so idr_find() won't return
5066 * a half-baked cgroup.
5067 */
Vladimir Davydovcf780b72015-08-03 15:32:26 +03005068 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_KERNEL);
Li Zefan0ab02ca2014-02-11 16:05:46 +08005069 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04005070 ret = -ENOMEM;
Tejun Heo041cd642017-09-25 08:12:05 -07005071 goto out_stat_exit;
Tejun Heo976c06b2012-11-05 09:16:59 -08005072 }
5073
Paul Menagecc31edc2008-10-18 20:28:04 -07005074 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005075
Tejun Heo9d800df2014-05-14 09:15:00 -04005076 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04005077 cgrp->root = root;
Tejun Heob11cfb52015-11-20 15:55:52 -05005078 cgrp->level = level;
Johannes Weiner2ce71352018-10-26 15:06:31 -07005079
5080 ret = psi_cgroup_alloc(cgrp);
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07005081 if (ret)
5082 goto out_idr_free;
Tejun Heob11cfb52015-11-20 15:55:52 -05005083
Johannes Weiner2ce71352018-10-26 15:06:31 -07005084 ret = cgroup_bpf_inherit(cgrp);
5085 if (ret)
5086 goto out_psi_free;
5087
Roman Gushchin76f969e2019-04-19 10:03:04 -07005088 /*
5089 * New cgroup inherits effective freeze counter, and
5090 * if the parent has to be frozen, the child has too.
5091 */
5092 cgrp->freezer.e_freeze = parent->freezer.e_freeze;
5093 if (cgrp->freezer.e_freeze)
5094 set_bit(CGRP_FROZEN, &cgrp->flags);
5095
Roman Gushchin4dcabec2019-04-19 10:03:03 -07005096 spin_lock_irq(&css_set_lock);
Roman Gushchin0679dee2017-08-02 17:55:29 +01005097 for (tcgrp = cgrp; tcgrp; tcgrp = cgroup_parent(tcgrp)) {
Tejun Heob11cfb52015-11-20 15:55:52 -05005098 cgrp->ancestor_ids[tcgrp->level] = tcgrp->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005099
Roman Gushchin76f969e2019-04-19 10:03:04 -07005100 if (tcgrp != cgrp) {
Roman Gushchin0679dee2017-08-02 17:55:29 +01005101 tcgrp->nr_descendants++;
Roman Gushchin76f969e2019-04-19 10:03:04 -07005102
5103 /*
5104 * If the new cgroup is frozen, all ancestor cgroups
5105 * get a new frozen descendant, but their state can't
5106 * change because of this.
5107 */
5108 if (cgrp->freezer.e_freeze)
5109 tcgrp->freezer.nr_frozen_descendants++;
5110 }
Roman Gushchin0679dee2017-08-02 17:55:29 +01005111 }
Roman Gushchin4dcabec2019-04-19 10:03:03 -07005112 spin_unlock_irq(&css_set_lock);
Roman Gushchin0679dee2017-08-02 17:55:29 +01005113
Li Zefanb6abdb02008-03-04 14:28:19 -08005114 if (notify_on_release(parent))
5115 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
5116
Tejun Heo2260e7f2012-11-19 08:13:38 -08005117 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
5118 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07005119
Tejun Heo0cb51d72014-05-16 13:22:49 -04005120 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09005121
Tejun Heo4e139af2012-11-19 08:13:36 -08005122 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04005123 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05005124 atomic_inc(&root->nr_cgrps);
Tejun Heoa590b902017-04-28 15:14:55 -04005125 cgroup_get_live(parent);
Li Zefan415cf072013-04-08 14:35:02 +08005126
Tejun Heo0d802552013-12-06 15:11:56 -05005127 /*
5128 * @cgrp is now fully operational. If something fails after this
5129 * point, it'll be released via the normal destruction path.
5130 */
Tejun Heo6fa49182014-05-04 15:09:13 -04005131 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08005132
Tejun Heobd53d612014-04-23 11:13:16 -04005133 /*
5134 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04005135 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04005136 */
Tejun Heo03970d32016-03-03 09:58:00 -05005137 if (!cgroup_on_dfl(cgrp))
Tejun Heo5531dc92016-03-03 09:57:58 -05005138 cgrp->subtree_control = cgroup_control(cgrp);
Tejun Heo03970d32016-03-03 09:58:00 -05005139
5140 cgroup_propagate_control(cgrp);
5141
Tejun Heoa5bca212016-03-03 09:57:58 -05005142 return cgrp;
5143
Johannes Weiner2ce71352018-10-26 15:06:31 -07005144out_psi_free:
5145 psi_cgroup_free(cgrp);
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07005146out_idr_free:
5147 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo041cd642017-09-25 08:12:05 -07005148out_stat_exit:
5149 if (cgroup_on_dfl(parent))
Tejun Heoc58632b2018-04-26 14:29:04 -07005150 cgroup_rstat_exit(cgrp);
Tejun Heoa5bca212016-03-03 09:57:58 -05005151out_cancel_ref:
5152 percpu_ref_exit(&cgrp->self.refcnt);
5153out_free_cgrp:
5154 kfree(cgrp);
5155 return ERR_PTR(ret);
Tejun Heoa5bca212016-03-03 09:57:58 -05005156}
5157
Roman Gushchin1a926e02017-07-28 18:28:44 +01005158static bool cgroup_check_hierarchy_limits(struct cgroup *parent)
5159{
5160 struct cgroup *cgroup;
5161 int ret = false;
5162 int level = 1;
5163
5164 lockdep_assert_held(&cgroup_mutex);
5165
5166 for (cgroup = parent; cgroup; cgroup = cgroup_parent(cgroup)) {
5167 if (cgroup->nr_descendants >= cgroup->max_descendants)
5168 goto fail;
5169
5170 if (level > cgroup->max_depth)
5171 goto fail;
5172
5173 level++;
5174 }
5175
5176 ret = true;
5177fail:
5178 return ret;
5179}
5180
Tejun Heo1592c9b2016-12-27 14:49:08 -05005181int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name, umode_t mode)
Tejun Heoa5bca212016-03-03 09:57:58 -05005182{
5183 struct cgroup *parent, *cgrp;
Tejun Heoa5bca212016-03-03 09:57:58 -05005184 struct kernfs_node *kn;
Tejun Heo03970d32016-03-03 09:58:00 -05005185 int ret;
Tejun Heoa5bca212016-03-03 09:57:58 -05005186
5187 /* do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable */
5188 if (strchr(name, '\n'))
5189 return -EINVAL;
5190
Tejun Heo945ba192016-03-03 09:58:00 -05005191 parent = cgroup_kn_lock_live(parent_kn, false);
Tejun Heoa5bca212016-03-03 09:57:58 -05005192 if (!parent)
5193 return -ENODEV;
5194
Roman Gushchin1a926e02017-07-28 18:28:44 +01005195 if (!cgroup_check_hierarchy_limits(parent)) {
5196 ret = -EAGAIN;
5197 goto out_unlock;
5198 }
5199
Tejun Heoa5bca212016-03-03 09:57:58 -05005200 cgrp = cgroup_create(parent);
5201 if (IS_ERR(cgrp)) {
5202 ret = PTR_ERR(cgrp);
5203 goto out_unlock;
5204 }
5205
Tejun Heo195e9b6c2016-03-03 09:57:58 -05005206 /* create the directory */
5207 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
5208 if (IS_ERR(kn)) {
5209 ret = PTR_ERR(kn);
5210 goto out_destroy;
5211 }
5212 cgrp->kn = kn;
5213
5214 /*
5215 * This extra ref will be put in cgroup_free_fn() and guarantees
5216 * that @cgrp->kn is always accessible.
5217 */
5218 kernfs_get(kn);
5219
5220 ret = cgroup_kn_set_ugid(kn);
5221 if (ret)
5222 goto out_destroy;
5223
Tejun Heo334c3672016-03-03 09:58:01 -05005224 ret = css_populate_dir(&cgrp->self);
Tejun Heo195e9b6c2016-03-03 09:57:58 -05005225 if (ret)
5226 goto out_destroy;
5227
Tejun Heo03970d32016-03-03 09:58:00 -05005228 ret = cgroup_apply_control_enable(cgrp);
5229 if (ret)
5230 goto out_destroy;
Tejun Heo195e9b6c2016-03-03 09:57:58 -05005231
Steven Rostedt (VMware)e4f8d812018-07-09 17:48:54 -04005232 TRACE_CGROUP_PATH(mkdir, cgrp);
Tejun Heoed1777d2016-08-10 11:23:44 -04005233
Tejun Heo195e9b6c2016-03-03 09:57:58 -05005234 /* let's create and online css's */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005235 kernfs_activate(kn);
5236
Tejun Heoba0f4d72014-05-13 12:19:22 -04005237 ret = 0;
5238 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005239
Tejun Heoa5bca212016-03-03 09:57:58 -05005240out_destroy:
5241 cgroup_destroy_locked(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04005242out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04005243 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04005244 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005245}
5246
Tejun Heo223dbc32013-08-13 20:22:50 -04005247/*
5248 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04005249 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
5250 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04005251 */
5252static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07005253{
Tejun Heo223dbc32013-08-13 20:22:50 -04005254 struct cgroup_subsys_state *css =
5255 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07005256
Tejun Heof20104d2013-08-13 20:22:50 -04005257 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04005258
Tejun Heoaa226ff2016-01-21 15:31:11 -05005259 do {
5260 offline_css(css);
5261 css_put(css);
5262 /* @css can't go away while we're holding cgroup_mutex */
5263 css = css->parent;
5264 } while (css && atomic_dec_and_test(&css->online_cnt));
5265
5266 mutex_unlock(&cgroup_mutex);
Tejun Heod3daf282013-06-13 19:39:16 -07005267}
5268
Tejun Heo223dbc32013-08-13 20:22:50 -04005269/* css kill confirmation processing requires process context, bounce */
5270static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07005271{
5272 struct cgroup_subsys_state *css =
5273 container_of(ref, struct cgroup_subsys_state, refcnt);
5274
Tejun Heoaa226ff2016-01-21 15:31:11 -05005275 if (atomic_dec_and_test(&css->online_cnt)) {
5276 INIT_WORK(&css->destroy_work, css_killed_work_fn);
5277 queue_work(cgroup_destroy_wq, &css->destroy_work);
5278 }
Tejun Heod3daf282013-06-13 19:39:16 -07005279}
5280
Tejun Heof392e512014-04-23 11:13:14 -04005281/**
5282 * kill_css - destroy a css
5283 * @css: css to destroy
5284 *
5285 * This function initiates destruction of @css by removing cgroup interface
5286 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04005287 * asynchronously once css_tryget_online() is guaranteed to fail and when
5288 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04005289 */
5290static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04005291{
Tejun Heo01f64742014-05-13 12:19:23 -04005292 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04005293
Waiman Long33c35aa2017-05-15 09:34:06 -04005294 if (css->flags & CSS_DYING)
5295 return;
5296
5297 css->flags |= CSS_DYING;
5298
Tejun Heo2bd59d42014-02-11 11:52:49 -05005299 /*
5300 * This must happen before css is disassociated with its cgroup.
5301 * See seq_css() for details.
5302 */
Tejun Heo334c3672016-03-03 09:58:01 -05005303 css_clear_dir(css);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04005304
Tejun Heoedae0c32013-08-13 20:22:51 -04005305 /*
5306 * Killing would put the base ref, but we need to keep it alive
5307 * until after ->css_offline().
5308 */
5309 css_get(css);
5310
5311 /*
5312 * cgroup core guarantees that, by the time ->css_offline() is
5313 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04005314 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04005315 * proceed to offlining css's because percpu_ref_kill() doesn't
5316 * guarantee that the ref is seen as killed on all CPUs on return.
5317 *
5318 * Use percpu_ref_kill_and_confirm() to get notifications as each
5319 * css is confirmed to be seen as killed on all CPUs.
5320 */
5321 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07005322}
5323
5324/**
5325 * cgroup_destroy_locked - the first stage of cgroup destruction
5326 * @cgrp: cgroup to be destroyed
5327 *
5328 * css's make use of percpu refcnts whose killing latency shouldn't be
5329 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04005330 * guarantee that css_tryget_online() won't succeed by the time
5331 * ->css_offline() is invoked. To satisfy all the requirements,
5332 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07005333 *
5334 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
5335 * userland visible parts and start killing the percpu refcnts of
5336 * css's. Set up so that the next stage will be kicked off once all
5337 * the percpu refcnts are confirmed to be killed.
5338 *
5339 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
5340 * rest of destruction. Once all cgroup references are gone, the
5341 * cgroup is RCU-freed.
5342 *
5343 * This function implements s1. After this step, @cgrp is gone as far as
5344 * the userland is concerned and a new cgroup with the same name may be
5345 * created. As cgroup doesn't care about the names internally, this
5346 * doesn't cause any problem.
5347 */
Tejun Heo42809dd2012-11-19 08:13:37 -08005348static int cgroup_destroy_locked(struct cgroup *cgrp)
5349 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005350{
Roman Gushchin0679dee2017-08-02 17:55:29 +01005351 struct cgroup *tcgrp, *parent = cgroup_parent(cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05005352 struct cgroup_subsys_state *css;
Tejun Heo2b021cb2016-03-15 20:43:04 -04005353 struct cgrp_cset_link *link;
Tejun Heo1c6727a2013-12-06 15:11:56 -05005354 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005355
Tejun Heo42809dd2012-11-19 08:13:37 -08005356 lockdep_assert_held(&cgroup_mutex);
5357
Tejun Heo91486f62015-10-15 16:41:51 -04005358 /*
5359 * Only migration can raise populated from zero and we're already
5360 * holding cgroup_mutex.
5361 */
5362 if (cgroup_is_populated(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07005363 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08005364
Tejun Heo1a90dd52012-11-05 09:16:59 -08005365 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04005366 * Make sure there's no live children. We can't test emptiness of
5367 * ->self.children as dead children linger on it while being
5368 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005369 */
Tejun Heof3d46502014-05-16 13:22:52 -04005370 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005371 return -EBUSY;
5372
5373 /*
Tejun Heo2b021cb2016-03-15 20:43:04 -04005374 * Mark @cgrp and the associated csets dead. The former prevents
5375 * further task migration and child creation by disabling
5376 * cgroup_lock_live_group(). The latter makes the csets ignored by
5377 * the migration path.
Tejun Heo455050d2013-06-13 19:27:41 -07005378 */
Tejun Heo184faf32014-05-16 13:22:51 -04005379 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08005380
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03005381 spin_lock_irq(&css_set_lock);
Tejun Heo2b021cb2016-03-15 20:43:04 -04005382 list_for_each_entry(link, &cgrp->cset_links, cset_link)
5383 link->cset->dead = true;
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03005384 spin_unlock_irq(&css_set_lock);
Tejun Heo2b021cb2016-03-15 20:43:04 -04005385
Tejun Heo249f3462014-05-14 09:15:01 -04005386 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08005387 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07005388 kill_css(css);
5389
Tejun Heo5faaf052018-04-26 14:29:04 -07005390 /* clear and remove @cgrp dir, @cgrp has an extra ref on its kn */
5391 css_clear_dir(&cgrp->self);
Tejun Heo01f64742014-05-13 12:19:23 -04005392 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04005393
Tejun Heo454000a2017-05-15 09:34:02 -04005394 if (parent && cgroup_is_threaded(cgrp))
5395 parent->nr_threaded_children--;
5396
Roman Gushchin4dcabec2019-04-19 10:03:03 -07005397 spin_lock_irq(&css_set_lock);
Roman Gushchin0679dee2017-08-02 17:55:29 +01005398 for (tcgrp = cgroup_parent(cgrp); tcgrp; tcgrp = cgroup_parent(tcgrp)) {
5399 tcgrp->nr_descendants--;
5400 tcgrp->nr_dying_descendants++;
Roman Gushchin76f969e2019-04-19 10:03:04 -07005401 /*
5402 * If the dying cgroup is frozen, decrease frozen descendants
5403 * counters of ancestor cgroups.
5404 */
5405 if (test_bit(CGRP_FROZEN, &cgrp->flags))
5406 tcgrp->freezer.nr_frozen_descendants--;
Roman Gushchin0679dee2017-08-02 17:55:29 +01005407 }
Roman Gushchin4dcabec2019-04-19 10:03:03 -07005408 spin_unlock_irq(&css_set_lock);
Roman Gushchin0679dee2017-08-02 17:55:29 +01005409
Roman Gushchin5a621e62017-08-02 17:55:32 +01005410 cgroup1_check_for_release(parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05005411
Tejun Heo249f3462014-05-14 09:15:01 -04005412 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04005413 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07005414
Tejun Heoea15f8c2013-06-13 19:27:42 -07005415 return 0;
5416};
5417
Tejun Heo1592c9b2016-12-27 14:49:08 -05005418int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08005419{
Tejun Heoa9746d82014-05-13 12:19:22 -04005420 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05005421 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005422
Tejun Heo945ba192016-03-03 09:58:00 -05005423 cgrp = cgroup_kn_lock_live(kn, false);
Tejun Heoa9746d82014-05-13 12:19:22 -04005424 if (!cgrp)
5425 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005426
Tejun Heoa9746d82014-05-13 12:19:22 -04005427 ret = cgroup_destroy_locked(cgrp);
Tejun Heoed1777d2016-08-10 11:23:44 -04005428 if (!ret)
Steven Rostedt (VMware)e4f8d812018-07-09 17:48:54 -04005429 TRACE_CGROUP_PATH(rmdir, cgrp);
Tejun Heoed1777d2016-08-10 11:23:44 -04005430
Tejun Heoa9746d82014-05-13 12:19:22 -04005431 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08005432 return ret;
5433}
5434
Tejun Heo2bd59d42014-02-11 11:52:49 -05005435static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
Tejun Heo5136f632017-06-27 14:30:28 -04005436 .show_options = cgroup_show_options,
Tejun Heo2bd59d42014-02-11 11:52:49 -05005437 .mkdir = cgroup_mkdir,
5438 .rmdir = cgroup_rmdir,
Serge E. Hallyn4f41fc52016-05-09 09:59:55 -05005439 .show_path = cgroup_show_path,
Tejun Heo2bd59d42014-02-11 11:52:49 -05005440};
Tejun Heo8e3f6542012-04-01 12:09:55 -07005441
Tejun Heo15a4c832014-05-04 15:09:14 -04005442static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005443{
Paul Menageddbcc7e2007-10-18 23:39:30 -07005444 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08005445
Tejun Heoa5ae9892015-12-29 14:53:56 -05005446 pr_debug("Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005447
Tejun Heo648bb562012-11-19 08:13:36 -08005448 mutex_lock(&cgroup_mutex);
5449
Tejun Heo15a4c832014-05-04 15:09:14 -04005450 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05005451 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07005452
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005453 /* Create the root cgroup state for this subsystem */
5454 ss->root = &cgrp_dfl_root;
5455 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005456 /* We don't handle early failures gracefully */
5457 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04005458 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04005459
5460 /*
5461 * Root csses are never destroyed and we can't initialize
5462 * percpu_ref during early init. Disable refcnting.
5463 */
5464 css->flags |= CSS_NO_REF;
5465
Tejun Heo15a4c832014-05-04 15:09:14 -04005466 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04005467 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04005468 css->id = 1;
5469 } else {
5470 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
5471 BUG_ON(css->id < 0);
5472 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07005473
Li Zefane8d55fd2008-04-29 01:00:13 -07005474 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07005475 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07005476 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005477 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05005478 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005479
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005480 have_fork_callback |= (bool)ss->fork << ss->id;
5481 have_exit_callback |= (bool)ss->exit << ss->id;
Oleg Nesterov51bee5a2019-01-28 17:00:13 +01005482 have_release_callback |= (bool)ss->release << ss->id;
Aleksa Sarai7e476822015-06-09 21:32:09 +10005483 have_canfork_callback |= (bool)ss->can_fork << ss->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005484
Li Zefane8d55fd2008-04-29 01:00:13 -07005485 /* At system boot, before all subsystems have been
5486 * registered, no tasks have been forked, so we don't
5487 * need to invoke fork callbacks here. */
5488 BUG_ON(!list_empty(&init_task.tasks));
5489
Tejun Heoae7f1642013-08-13 20:22:50 -04005490 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08005491
Tejun Heo648bb562012-11-19 08:13:36 -08005492 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005493}
5494
5495/**
Li Zefana043e3b2008-02-23 15:24:09 -08005496 * cgroup_init_early - cgroup initialization at system boot
5497 *
5498 * Initialize cgroups at system boot, and initialize any
5499 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005500 */
5501int __init cgroup_init_early(void)
5502{
Al Virof5dfb532019-01-16 23:42:38 -05005503 static struct cgroup_fs_context __initdata ctx;
Tejun Heo30159ec2013-06-25 11:53:37 -07005504 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005505 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07005506
Al Virocf6299b12019-01-17 02:25:51 -05005507 ctx.root = &cgrp_dfl_root;
5508 init_cgroup_root(&ctx);
Tejun Heo3b514d22014-05-16 13:22:47 -04005509 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
5510
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005511 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005512
Tejun Heo3ed80a62014-02-08 10:36:58 -05005513 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05005514 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Xiubo Li63253ad2016-02-26 13:07:38 +08005515 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p id:name=%d:%s\n",
Tejun Heo073219e2014-02-08 10:36:58 -05005516 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05005517 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05005518 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
5519 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005520
Tejun Heoaec25022014-02-08 10:36:58 -05005521 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05005522 ss->name = cgroup_subsys_name[i];
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005523 if (!ss->legacy_name)
5524 ss->legacy_name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07005525
5526 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04005527 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005528 }
5529 return 0;
5530}
5531
Tejun Heo6e5c8302016-02-22 22:25:47 -05005532static u16 cgroup_disable_mask __initdata;
Tejun Heoa3e72732015-09-25 16:24:27 -04005533
Paul Menageddbcc7e2007-10-18 23:39:30 -07005534/**
Li Zefana043e3b2008-02-23 15:24:09 -08005535 * cgroup_init - cgroup initialization
5536 *
5537 * Register cgroup filesystem and /proc file, and initialize
5538 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005539 */
5540int __init cgroup_init(void)
5541{
Tejun Heo30159ec2013-06-25 11:53:37 -07005542 struct cgroup_subsys *ss;
Tejun Heo035f4f52015-10-15 17:00:43 -04005543 int ssid;
Paul Menagea4243162007-10-18 23:39:35 -07005544
Tejun Heo6e5c8302016-02-22 22:25:47 -05005545 BUILD_BUG_ON(CGROUP_SUBSYS_COUNT > 16);
Tejun Heo1ed13282015-09-16 12:53:17 -04005546 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heod62beb72016-12-27 14:49:08 -05005547 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
5548 BUG_ON(cgroup_init_cftypes(NULL, cgroup1_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005549
Tejun Heoc58632b2018-04-26 14:29:04 -07005550 cgroup_rstat_boot();
Tejun Heo041cd642017-09-25 08:12:05 -07005551
Peter Zijlstra3942a9b2016-08-11 18:54:13 +02005552 /*
Paul E. McKenney2af30242018-11-07 14:11:40 -08005553 * The latency of the synchronize_rcu() is too high for cgroups,
Peter Zijlstra3942a9b2016-08-11 18:54:13 +02005554 * avoid it at the cost of forcing all readers into the slow path.
5555 */
5556 rcu_sync_enter_start(&cgroup_threadgroup_rwsem.rss);
5557
Aditya Kalia79a9082016-01-29 02:54:06 -06005558 get_user_ns(init_cgroup_ns.user_ns);
5559
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005560 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005561
Tejun Heo2378d8b2016-03-03 09:57:57 -05005562 /*
5563 * Add init_css_set to the hash table so that dfl_root can link to
5564 * it during init.
5565 */
5566 hash_add(css_set_table, &init_css_set.hlist,
5567 css_set_hash(init_css_set.subsys));
Tejun Heo82fe9b02013-06-25 11:53:37 -07005568
Al Viro35ac1182019-01-12 00:20:54 -05005569 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07005570
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005571 mutex_unlock(&cgroup_mutex);
5572
Tejun Heo172a2c062014-03-19 10:23:53 -04005573 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04005574 if (ss->early_init) {
5575 struct cgroup_subsys_state *css =
5576 init_css_set.subsys[ss->id];
5577
5578 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5579 GFP_KERNEL);
5580 BUG_ON(css->id < 0);
5581 } else {
5582 cgroup_init_subsys(ss, false);
5583 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005584
Tejun Heo2d8f2432014-04-23 11:13:15 -04005585 list_add_tail(&init_css_set.e_cset_node[ssid],
5586 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005587
5588 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005589 * Setting dfl_root subsys_mask needs to consider the
5590 * disabled flag and cftype registration needs kmalloc,
5591 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005592 */
Tejun Heoa3e72732015-09-25 16:24:27 -04005593 if (cgroup_disable_mask & (1 << ssid)) {
5594 static_branch_disable(cgroup_subsys_enabled_key[ssid]);
5595 printk(KERN_INFO "Disabling %s control group subsystem\n",
5596 ss->name);
Tejun Heoa8ddc822014-07-15 11:05:10 -04005597 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005598 }
Tejun Heoa8ddc822014-07-15 11:05:10 -04005599
Tejun Heod62beb72016-12-27 14:49:08 -05005600 if (cgroup1_ssid_disabled(ssid))
Johannes Weiner223ffb22016-02-11 13:34:49 -05005601 printk(KERN_INFO "Disabling %s control group subsystem in v1 mounts\n",
5602 ss->name);
5603
Tejun Heoa8ddc822014-07-15 11:05:10 -04005604 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5605
Tejun Heo8cfd8142017-07-21 11:14:51 -04005606 /* implicit controllers must be threaded too */
5607 WARN_ON(ss->implicit_on_dfl && !ss->threaded);
5608
Tejun Heof6d635ad2016-03-08 11:51:26 -05005609 if (ss->implicit_on_dfl)
5610 cgrp_dfl_implicit_ss_mask |= 1 << ss->id;
5611 else if (!ss->dfl_cftypes)
Tejun Heoa7165262016-02-23 10:00:50 -05005612 cgrp_dfl_inhibit_ss_mask |= 1 << ss->id;
Tejun Heo5de4fa12014-07-15 11:05:10 -04005613
Tejun Heo8cfd8142017-07-21 11:14:51 -04005614 if (ss->threaded)
5615 cgrp_dfl_threaded_ss_mask |= 1 << ss->id;
5616
Tejun Heoa8ddc822014-07-15 11:05:10 -04005617 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5618 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5619 } else {
5620 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5621 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005622 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005623
5624 if (ss->bind)
5625 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo7af608e2017-07-18 17:57:46 -04005626
5627 mutex_lock(&cgroup_mutex);
5628 css_populate_dir(init_css_set.subsys[ssid]);
5629 mutex_unlock(&cgroup_mutex);
Tejun Heo172a2c062014-03-19 10:23:53 -04005630 }
Greg KH676db4a2010-08-05 13:53:35 -07005631
Tejun Heo2378d8b2016-03-03 09:57:57 -05005632 /* init_css_set.subsys[] has been updated, re-hash */
5633 hash_del(&init_css_set.hlist);
5634 hash_add(css_set_table, &init_css_set.hlist,
5635 css_set_hash(init_css_set.subsys));
5636
Tejun Heo035f4f52015-10-15 17:00:43 -04005637 WARN_ON(sysfs_create_mount_point(fs_kobj, "cgroup"));
5638 WARN_ON(register_filesystem(&cgroup_fs_type));
Tejun Heo67e9c742015-11-16 11:13:34 -05005639 WARN_ON(register_filesystem(&cgroup2_fs_type));
Christoph Hellwig3f3942a2018-05-15 15:57:23 +02005640 WARN_ON(!proc_create_single("cgroups", 0, NULL, proc_cgroupstats_show));
Paul Menagea4243162007-10-18 23:39:35 -07005641
Tejun Heo2bd59d42014-02-11 11:52:49 -05005642 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005643}
Paul Menageb4f48b62007-10-18 23:39:33 -07005644
Tejun Heoe5fca242013-11-22 17:14:39 -05005645static int __init cgroup_wq_init(void)
5646{
5647 /*
5648 * There isn't much point in executing destruction path in
5649 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005650 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005651 *
5652 * We would prefer to do this in cgroup_init() above, but that
5653 * is called before init_workqueues(): so leave this until after.
5654 */
Tejun Heo1a115332014-02-12 19:06:19 -05005655 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005656 BUG_ON(!cgroup_destroy_wq);
5657 return 0;
5658}
5659core_initcall(cgroup_wq_init);
5660
Shaohua Li69fd5c32017-07-12 11:49:55 -07005661void cgroup_path_from_kernfs_id(const union kernfs_node_id *id,
5662 char *buf, size_t buflen)
5663{
5664 struct kernfs_node *kn;
5665
5666 kn = kernfs_get_node_by_id(cgrp_dfl_root.kf_root, id);
5667 if (!kn)
5668 return;
5669 kernfs_path(kn, buf, buflen);
5670 kernfs_put(kn);
5671}
5672
Paul Menagea4243162007-10-18 23:39:35 -07005673/*
5674 * proc_cgroup_show()
5675 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5676 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005677 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005678int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5679 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005680{
Tejun Heo4c737b42016-08-10 11:23:44 -04005681 char *buf;
Paul Menagea4243162007-10-18 23:39:35 -07005682 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005683 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005684
5685 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005686 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005687 if (!buf)
5688 goto out;
5689
Paul Menagea4243162007-10-18 23:39:35 -07005690 mutex_lock(&cgroup_mutex);
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03005691 spin_lock_irq(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005692
Tejun Heo985ed672014-03-19 10:23:53 -04005693 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005694 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005695 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005696 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005697
Tejun Heoa7165262016-02-23 10:00:50 -05005698 if (root == &cgrp_dfl_root && !cgrp_dfl_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005699 continue;
5700
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005701 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heod98817d2015-08-18 13:58:16 -07005702 if (root != &cgrp_dfl_root)
5703 for_each_subsys(ss, ssid)
5704 if (root->subsys_mask & (1 << ssid))
5705 seq_printf(m, "%s%s", count++ ? "," : "",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005706 ss->legacy_name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005707 if (strlen(root->name))
5708 seq_printf(m, "%sname=%s", count ? "," : "",
5709 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005710 seq_putc(m, ':');
Tejun Heo2e91fa72015-10-15 16:41:53 -04005711
Paul Menage7717f7b2009-09-23 15:56:22 -07005712 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005713
5714 /*
5715 * On traditional hierarchies, all zombie tasks show up as
5716 * belonging to the root cgroup. On the default hierarchy,
5717 * while a zombie doesn't show up in "cgroup.procs" and
5718 * thus can't be migrated, its /proc/PID/cgroup keeps
5719 * reporting the cgroup it belonged to before exiting. If
5720 * the cgroup is removed before the zombie is reaped,
5721 * " (deleted)" is appended to the cgroup path.
5722 */
5723 if (cgroup_on_dfl(cgrp) || !(tsk->flags & PF_EXITING)) {
Tejun Heo4c737b42016-08-10 11:23:44 -04005724 retval = cgroup_path_ns_locked(cgrp, buf, PATH_MAX,
Aditya Kalia79a9082016-01-29 02:54:06 -06005725 current->nsproxy->cgroup_ns);
Tejun Heoe0223002016-09-29 15:49:40 +02005726 if (retval >= PATH_MAX)
Tejun Heo2e91fa72015-10-15 16:41:53 -04005727 retval = -ENAMETOOLONG;
Tejun Heoe0223002016-09-29 15:49:40 +02005728 if (retval < 0)
Tejun Heo2e91fa72015-10-15 16:41:53 -04005729 goto out_unlock;
Tejun Heo2e91fa72015-10-15 16:41:53 -04005730
Tejun Heo4c737b42016-08-10 11:23:44 -04005731 seq_puts(m, buf);
5732 } else {
5733 seq_puts(m, "/");
5734 }
Tejun Heo2e91fa72015-10-15 16:41:53 -04005735
5736 if (cgroup_on_dfl(cgrp) && cgroup_is_dead(cgrp))
5737 seq_puts(m, " (deleted)\n");
5738 else
5739 seq_putc(m, '\n');
Paul Menagea4243162007-10-18 23:39:35 -07005740 }
5741
Zefan Li006f4ac2014-09-18 16:03:15 +08005742 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005743out_unlock:
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03005744 spin_unlock_irq(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005745 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005746 kfree(buf);
5747out:
5748 return retval;
5749}
5750
Paul Menageb4f48b62007-10-18 23:39:33 -07005751/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005752 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005753 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005754 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005755 * A task is associated with the init_css_set until cgroup_post_fork()
5756 * attaches it to the parent's css_set. Empty cg_list indicates that
5757 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005758 */
5759void cgroup_fork(struct task_struct *child)
5760{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005761 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005762 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005763}
5764
5765/**
Aleksa Sarai7e476822015-06-09 21:32:09 +10005766 * cgroup_can_fork - called on a new task before the process is exposed
5767 * @child: the task in question.
5768 *
5769 * This calls the subsystem can_fork() callbacks. If the can_fork() callback
5770 * returns an error, the fork aborts with that error code. This allows for
5771 * a cgroup subsystem to conditionally allow or deny new forks.
5772 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005773int cgroup_can_fork(struct task_struct *child)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005774{
5775 struct cgroup_subsys *ss;
5776 int i, j, ret;
5777
Tejun Heob4e0eea2016-02-22 22:25:46 -05005778 do_each_subsys_mask(ss, i, have_canfork_callback) {
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005779 ret = ss->can_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005780 if (ret)
5781 goto out_revert;
Tejun Heob4e0eea2016-02-22 22:25:46 -05005782 } while_each_subsys_mask();
Aleksa Sarai7e476822015-06-09 21:32:09 +10005783
5784 return 0;
5785
5786out_revert:
5787 for_each_subsys(ss, j) {
5788 if (j >= i)
5789 break;
5790 if (ss->cancel_fork)
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005791 ss->cancel_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005792 }
5793
5794 return ret;
5795}
5796
5797/**
5798 * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
5799 * @child: the task in question
5800 *
5801 * This calls the cancel_fork() callbacks if a fork failed *after*
5802 * cgroup_can_fork() succeded.
5803 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005804void cgroup_cancel_fork(struct task_struct *child)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005805{
5806 struct cgroup_subsys *ss;
5807 int i;
5808
5809 for_each_subsys(ss, i)
5810 if (ss->cancel_fork)
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005811 ss->cancel_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005812}
5813
5814/**
Li Zefana043e3b2008-02-23 15:24:09 -08005815 * cgroup_post_fork - called on a new task after adding it to the task list
5816 * @child: the task in question
5817 *
Tejun Heo5edee612012-10-16 15:03:14 -07005818 * Adds the task to the list running through its css_set if necessary and
5819 * call the subsystem fork() callbacks. Has to be after the task is
5820 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005821 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005822 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005823 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005824void cgroup_post_fork(struct task_struct *child)
Paul Menage817929e2007-10-18 23:39:36 -07005825{
Tejun Heo30159ec2013-06-25 11:53:37 -07005826 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005827 int i;
5828
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005829 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005830 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005831 * function sets use_task_css_set_links before grabbing
5832 * tasklist_lock and we just went through tasklist_lock to add
5833 * @child, it's guaranteed that either we see the set
5834 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5835 * @child during its iteration.
5836 *
5837 * If we won the race, @child is associated with %current's
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005838 * css_set. Grabbing css_set_lock guarantees both that the
Tejun Heoeaf797a2014-02-25 10:04:03 -05005839 * association is stable, and, on completion of the parent's
5840 * migration, @child is visible in the source of migration or
5841 * already in the destination cgroup. This guarantee is necessary
5842 * when implementing operations which need to migrate all tasks of
5843 * a cgroup to another.
5844 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005845 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005846 * will remain in init_css_set. This is safe because all tasks are
5847 * in the init_css_set before cg_links is enabled and there's no
5848 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005849 */
Paul Menage817929e2007-10-18 23:39:36 -07005850 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005851 struct css_set *cset;
5852
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03005853 spin_lock_irq(&css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005854 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005855 if (list_empty(&child->cg_list)) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005856 get_css_set(cset);
Waiman Long73a72422017-06-13 17:18:01 -04005857 cset->nr_tasks++;
Tejun Heof6d7d042015-10-15 16:41:52 -04005858 css_set_move_task(child, NULL, cset, false);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005859 }
Roman Gushchin76f969e2019-04-19 10:03:04 -07005860
5861 /*
5862 * If the cgroup has to be frozen, the new task has too.
5863 * Let's set the JOBCTL_TRAP_FREEZE jobctl bit to get
5864 * the task into the frozen state.
5865 */
5866 if (unlikely(cgroup_task_freeze(child))) {
Roman Gushchin76f969e2019-04-19 10:03:04 -07005867 spin_lock(&child->sighand->siglock);
5868 WARN_ON_ONCE(child->frozen);
Roman Gushchin76f969e2019-04-19 10:03:04 -07005869 child->jobctl |= JOBCTL_TRAP_FREEZE;
5870 spin_unlock(&child->sighand->siglock);
5871
5872 /*
5873 * Calling cgroup_update_frozen() isn't required here,
5874 * because it will be called anyway a bit later
5875 * from do_freezer_trap(). So we avoid cgroup's
5876 * transient switch from the frozen state and back.
5877 */
5878 }
5879
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03005880 spin_unlock_irq(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07005881 }
Tejun Heo5edee612012-10-16 15:03:14 -07005882
5883 /*
5884 * Call ss->fork(). This must happen after @child is linked on
5885 * css_set; otherwise, @child might change state between ->fork()
5886 * and addition to css_set.
5887 */
Tejun Heob4e0eea2016-02-22 22:25:46 -05005888 do_each_subsys_mask(ss, i, have_fork_callback) {
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005889 ss->fork(child);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005890 } while_each_subsys_mask();
Paul Menage817929e2007-10-18 23:39:36 -07005891}
Tejun Heo5edee612012-10-16 15:03:14 -07005892
Paul Menage817929e2007-10-18 23:39:36 -07005893/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005894 * cgroup_exit - detach cgroup from exiting task
5895 * @tsk: pointer to task_struct of exiting process
5896 *
5897 * Description: Detach cgroup from @tsk and release it.
5898 *
5899 * Note that cgroups marked notify_on_release force every task in
5900 * them to take the global cgroup_mutex mutex when exiting.
5901 * This could impact scaling on very large systems. Be reluctant to
5902 * use notify_on_release cgroups where very high task exit scaling
5903 * is required on large systems.
5904 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005905 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5906 * call cgroup_exit() while the task is still competent to handle
5907 * notify_on_release(), then leave the task attached to the root cgroup in
5908 * each hierarchy for the remainder of its exit. No need to bother with
5909 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005910 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005911 */
Li Zefan1ec41832014-03-28 15:22:19 +08005912void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005913{
Tejun Heo30159ec2013-06-25 11:53:37 -07005914 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005915 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005916 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005917
5918 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005919 * Unlink from @tsk from its css_set. As migration path can't race
Tejun Heo0de09422015-10-15 16:41:49 -04005920 * with us, we can check css_set and cg_list without synchronization.
Paul Menage817929e2007-10-18 23:39:36 -07005921 */
Tejun Heo0de09422015-10-15 16:41:49 -04005922 cset = task_css_set(tsk);
5923
Paul Menage817929e2007-10-18 23:39:36 -07005924 if (!list_empty(&tsk->cg_list)) {
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03005925 spin_lock_irq(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -04005926 css_set_move_task(tsk, cset, NULL, false);
Waiman Long73a72422017-06-13 17:18:01 -04005927 cset->nr_tasks--;
Roman Gushchin76f969e2019-04-19 10:03:04 -07005928
Roman Gushchin96b9c592019-04-26 10:59:45 -07005929 WARN_ON_ONCE(cgroup_task_frozen(tsk));
5930 if (unlikely(cgroup_task_freeze(tsk)))
Roman Gushchin76f969e2019-04-19 10:03:04 -07005931 cgroup_update_frozen(task_dfl_cgroup(tsk));
5932
Daniel Bristot de Oliveira82d64892016-06-22 17:28:41 -03005933 spin_unlock_irq(&css_set_lock);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005934 } else {
5935 get_css_set(cset);
Paul Menage817929e2007-10-18 23:39:36 -07005936 }
5937
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005938 /* see cgroup_post_fork() for details */
Tejun Heob4e0eea2016-02-22 22:25:46 -05005939 do_each_subsys_mask(ss, i, have_exit_callback) {
Tejun Heo2e91fa72015-10-15 16:41:53 -04005940 ss->exit(tsk);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005941 } while_each_subsys_mask();
Tejun Heo2e91fa72015-10-15 16:41:53 -04005942}
Tejun Heo30159ec2013-06-25 11:53:37 -07005943
Oleg Nesterov51bee5a2019-01-28 17:00:13 +01005944void cgroup_release(struct task_struct *task)
Tejun Heo2e91fa72015-10-15 16:41:53 -04005945{
Tejun Heoafcf6c82015-10-15 16:41:53 -04005946 struct cgroup_subsys *ss;
5947 int ssid;
5948
Oleg Nesterov51bee5a2019-01-28 17:00:13 +01005949 do_each_subsys_mask(ss, ssid, have_release_callback) {
5950 ss->release(task);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005951 } while_each_subsys_mask();
Oleg Nesterov51bee5a2019-01-28 17:00:13 +01005952}
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005953
Oleg Nesterov51bee5a2019-01-28 17:00:13 +01005954void cgroup_free(struct task_struct *task)
5955{
5956 struct css_set *cset = task_css_set(task);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005957 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005958}
Paul Menage697f4162007-10-18 23:39:34 -07005959
Paul Menage8bab8dd2008-04-04 14:29:57 -07005960static int __init cgroup_disable(char *str)
5961{
Tejun Heo30159ec2013-06-25 11:53:37 -07005962 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005963 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005964 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005965
5966 while ((token = strsep(&str, ",")) != NULL) {
5967 if (!*token)
5968 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005969
Tejun Heo3ed80a62014-02-08 10:36:58 -05005970 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005971 if (strcmp(token, ss->name) &&
5972 strcmp(token, ss->legacy_name))
5973 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005974 cgroup_disable_mask |= 1 << i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005975 }
5976 }
5977 return 1;
5978}
5979__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005980
Waiman Long5cf81142018-11-08 10:08:46 -05005981void __init __weak enable_debug_cgroup(void) { }
5982
5983static int __init enable_cgroup_debug(char *str)
5984{
5985 cgroup_debug = true;
5986 enable_debug_cgroup();
5987 return 1;
5988}
5989__setup("cgroup_debug", enable_cgroup_debug);
5990
Tejun Heob77d7b62013-08-13 11:01:54 -04005991/**
Tejun Heoec903c02014-05-13 12:11:01 -04005992 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005993 * @dentry: directory dentry of interest
5994 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005995 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005996 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5997 * to get the corresponding css and return it. If such css doesn't exist
5998 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005999 */
Tejun Heoec903c02014-05-13 12:11:01 -04006000struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
6001 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02006002{
Tejun Heo2bd59d42014-02-11 11:52:49 -05006003 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Tejun Heof17fc252016-02-23 10:00:51 -05006004 struct file_system_type *s_type = dentry->d_sb->s_type;
Tejun Heo2bd59d42014-02-11 11:52:49 -05006005 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02006006 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02006007
Tejun Heo35cf0832013-08-26 18:40:56 -04006008 /* is @dentry a cgroup dir? */
Tejun Heof17fc252016-02-23 10:00:51 -05006009 if ((s_type != &cgroup_fs_type && s_type != &cgroup2_fs_type) ||
6010 !kn || kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02006011 return ERR_PTR(-EBADF);
6012
Tejun Heo5a17f542014-02-11 11:52:47 -05006013 rcu_read_lock();
6014
Tejun Heo2bd59d42014-02-11 11:52:49 -05006015 /*
6016 * This path doesn't originate from kernfs and @kn could already
6017 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08006018 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05006019 */
Tejun Heoe0aed7c2016-12-27 14:49:09 -05006020 cgrp = rcu_dereference(*(void __rcu __force **)&kn->priv);
Tejun Heo2bd59d42014-02-11 11:52:49 -05006021 if (cgrp)
6022 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05006023
Tejun Heoec903c02014-05-13 12:11:01 -04006024 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05006025 css = ERR_PTR(-ENOENT);
6026
6027 rcu_read_unlock();
6028 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02006029}
Stephane Eraniane5d13672011-02-14 11:20:01 +02006030
Li Zefan1cb650b2013-08-19 10:05:24 +08006031/**
6032 * css_from_id - lookup css by id
6033 * @id: the cgroup id
6034 * @ss: cgroup subsys to be looked into
6035 *
6036 * Returns the css if there's valid one with @id, otherwise returns NULL.
6037 * Should be called under rcu_read_lock().
6038 */
6039struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
6040{
Tejun Heo6fa49182014-05-04 15:09:13 -04006041 WARN_ON_ONCE(!rcu_read_lock_held());
Johannes Weinerd6ccc552016-06-17 12:24:27 -04006042 return idr_find(&ss->css_idr, id);
Stephane Eraniane5d13672011-02-14 11:20:01 +02006043}
6044
Tejun Heo16af4392015-11-20 15:55:52 -05006045/**
6046 * cgroup_get_from_path - lookup and get a cgroup from its default hierarchy path
6047 * @path: path on the default hierarchy
6048 *
6049 * Find the cgroup at @path on the default hierarchy, increment its
6050 * reference count and return it. Returns pointer to the found cgroup on
6051 * success, ERR_PTR(-ENOENT) if @path doens't exist and ERR_PTR(-ENOTDIR)
6052 * if @path points to a non-directory.
6053 */
6054struct cgroup *cgroup_get_from_path(const char *path)
6055{
6056 struct kernfs_node *kn;
6057 struct cgroup *cgrp;
6058
6059 mutex_lock(&cgroup_mutex);
6060
6061 kn = kernfs_walk_and_get(cgrp_dfl_root.cgrp.kn, path);
6062 if (kn) {
6063 if (kernfs_type(kn) == KERNFS_DIR) {
6064 cgrp = kn->priv;
Tejun Heoa590b902017-04-28 15:14:55 -04006065 cgroup_get_live(cgrp);
Tejun Heo16af4392015-11-20 15:55:52 -05006066 } else {
6067 cgrp = ERR_PTR(-ENOTDIR);
6068 }
6069 kernfs_put(kn);
6070 } else {
6071 cgrp = ERR_PTR(-ENOENT);
6072 }
6073
6074 mutex_unlock(&cgroup_mutex);
6075 return cgrp;
6076}
6077EXPORT_SYMBOL_GPL(cgroup_get_from_path);
6078
Martin KaFai Lau1f3fe7e2016-06-30 10:28:42 -07006079/**
6080 * cgroup_get_from_fd - get a cgroup pointer from a fd
6081 * @fd: fd obtained by open(cgroup2_dir)
6082 *
6083 * Find the cgroup from a fd which should be obtained
6084 * by opening a cgroup directory. Returns a pointer to the
6085 * cgroup on success. ERR_PTR is returned if the cgroup
6086 * cannot be found.
6087 */
6088struct cgroup *cgroup_get_from_fd(int fd)
6089{
6090 struct cgroup_subsys_state *css;
6091 struct cgroup *cgrp;
6092 struct file *f;
6093
6094 f = fget_raw(fd);
6095 if (!f)
6096 return ERR_PTR(-EBADF);
6097
6098 css = css_tryget_online_from_dir(f->f_path.dentry, NULL);
6099 fput(f);
6100 if (IS_ERR(css))
6101 return ERR_CAST(css);
6102
6103 cgrp = css->cgroup;
6104 if (!cgroup_on_dfl(cgrp)) {
6105 cgroup_put(cgrp);
6106 return ERR_PTR(-EBADF);
6107 }
6108
6109 return cgrp;
6110}
6111EXPORT_SYMBOL_GPL(cgroup_get_from_fd);
6112
Tejun Heobd1060a2015-12-07 17:38:53 -05006113/*
6114 * sock->sk_cgrp_data handling. For more info, see sock_cgroup_data
6115 * definition in cgroup-defs.h.
6116 */
6117#ifdef CONFIG_SOCK_CGROUP_DATA
6118
6119#if defined(CONFIG_CGROUP_NET_PRIO) || defined(CONFIG_CGROUP_NET_CLASSID)
6120
Tejun Heo3fa4cc92015-12-14 11:24:06 -05006121DEFINE_SPINLOCK(cgroup_sk_update_lock);
Tejun Heobd1060a2015-12-07 17:38:53 -05006122static bool cgroup_sk_alloc_disabled __read_mostly;
6123
6124void cgroup_sk_alloc_disable(void)
6125{
6126 if (cgroup_sk_alloc_disabled)
6127 return;
6128 pr_info("cgroup: disabling cgroup2 socket matching due to net_prio or net_cls activation\n");
6129 cgroup_sk_alloc_disabled = true;
6130}
6131
6132#else
6133
6134#define cgroup_sk_alloc_disabled false
6135
6136#endif
6137
6138void cgroup_sk_alloc(struct sock_cgroup_data *skcd)
6139{
6140 if (cgroup_sk_alloc_disabled)
6141 return;
6142
Johannes Weinerd979a392016-09-19 14:44:38 -07006143 /* Socket clone path */
6144 if (skcd->val) {
Tejun Heoa590b902017-04-28 15:14:55 -04006145 /*
6146 * We might be cloning a socket which is left in an empty
6147 * cgroup and the cgroup might have already been rmdir'd.
6148 * Don't use cgroup_get_live().
6149 */
Johannes Weinerd979a392016-09-19 14:44:38 -07006150 cgroup_get(sock_cgroup_ptr(skcd));
6151 return;
6152 }
6153
Tejun Heobd1060a2015-12-07 17:38:53 -05006154 rcu_read_lock();
6155
6156 while (true) {
6157 struct css_set *cset;
6158
6159 cset = task_css_set(current);
6160 if (likely(cgroup_tryget(cset->dfl_cgrp))) {
6161 skcd->val = (unsigned long)cset->dfl_cgrp;
6162 break;
6163 }
6164 cpu_relax();
6165 }
6166
6167 rcu_read_unlock();
6168}
6169
6170void cgroup_sk_free(struct sock_cgroup_data *skcd)
6171{
6172 cgroup_put(sock_cgroup_ptr(skcd));
6173}
6174
6175#endif /* CONFIG_SOCK_CGROUP_DATA */
6176
Daniel Mack30070982016-11-23 16:52:26 +01006177#ifdef CONFIG_CGROUP_BPF
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07006178int cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
6179 enum bpf_attach_type type, u32 flags)
Daniel Mack30070982016-11-23 16:52:26 +01006180{
Alexei Starovoitov7f677632017-02-10 20:28:24 -08006181 int ret;
Daniel Mack30070982016-11-23 16:52:26 +01006182
6183 mutex_lock(&cgroup_mutex);
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07006184 ret = __cgroup_bpf_attach(cgrp, prog, type, flags);
6185 mutex_unlock(&cgroup_mutex);
6186 return ret;
6187}
6188int cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
6189 enum bpf_attach_type type, u32 flags)
6190{
6191 int ret;
6192
6193 mutex_lock(&cgroup_mutex);
Valdis Kletnieks1832f4e2019-01-29 01:47:06 -05006194 ret = __cgroup_bpf_detach(cgrp, prog, type);
Daniel Mack30070982016-11-23 16:52:26 +01006195 mutex_unlock(&cgroup_mutex);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08006196 return ret;
Daniel Mack30070982016-11-23 16:52:26 +01006197}
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07006198int cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
6199 union bpf_attr __user *uattr)
6200{
6201 int ret;
6202
6203 mutex_lock(&cgroup_mutex);
6204 ret = __cgroup_bpf_query(cgrp, attr, uattr);
6205 mutex_unlock(&cgroup_mutex);
6206 return ret;
6207}
Daniel Mack30070982016-11-23 16:52:26 +01006208#endif /* CONFIG_CGROUP_BPF */
Roman Gushchin01ee6cf2017-11-06 13:30:28 -05006209
6210#ifdef CONFIG_SYSFS
6211static ssize_t show_delegatable_files(struct cftype *files, char *buf,
6212 ssize_t size, const char *prefix)
6213{
6214 struct cftype *cft;
6215 ssize_t ret = 0;
6216
6217 for (cft = files; cft && cft->name[0] != '\0'; cft++) {
6218 if (!(cft->flags & CFTYPE_NS_DELEGATABLE))
6219 continue;
6220
6221 if (prefix)
6222 ret += snprintf(buf + ret, size - ret, "%s.", prefix);
6223
6224 ret += snprintf(buf + ret, size - ret, "%s\n", cft->name);
6225
Yangtao Li4d9ebbe2018-11-03 22:27:41 -04006226 if (WARN_ON(ret >= size))
Roman Gushchin01ee6cf2017-11-06 13:30:28 -05006227 break;
Roman Gushchin01ee6cf2017-11-06 13:30:28 -05006228 }
6229
6230 return ret;
6231}
6232
6233static ssize_t delegate_show(struct kobject *kobj, struct kobj_attribute *attr,
6234 char *buf)
6235{
6236 struct cgroup_subsys *ss;
6237 int ssid;
6238 ssize_t ret = 0;
6239
6240 ret = show_delegatable_files(cgroup_base_files, buf, PAGE_SIZE - ret,
6241 NULL);
6242
6243 for_each_subsys(ss, ssid)
6244 ret += show_delegatable_files(ss->dfl_cftypes, buf + ret,
6245 PAGE_SIZE - ret,
6246 cgroup_subsys_name[ssid]);
6247
6248 return ret;
6249}
6250static struct kobj_attribute cgroup_delegate_attr = __ATTR_RO(delegate);
6251
Roman Gushchin5f2e6732017-11-06 13:30:29 -05006252static ssize_t features_show(struct kobject *kobj, struct kobj_attribute *attr,
6253 char *buf)
6254{
6255 return snprintf(buf, PAGE_SIZE, "nsdelegate\n");
6256}
6257static struct kobj_attribute cgroup_features_attr = __ATTR_RO(features);
6258
Roman Gushchin01ee6cf2017-11-06 13:30:28 -05006259static struct attribute *cgroup_sysfs_attrs[] = {
6260 &cgroup_delegate_attr.attr,
Roman Gushchin5f2e6732017-11-06 13:30:29 -05006261 &cgroup_features_attr.attr,
Roman Gushchin01ee6cf2017-11-06 13:30:28 -05006262 NULL,
6263};
6264
6265static const struct attribute_group cgroup_sysfs_attr_group = {
6266 .attrs = cgroup_sysfs_attrs,
6267 .name = "cgroup",
6268};
6269
6270static int __init cgroup_sysfs_init(void)
6271{
6272 return sysfs_create_group(kernel_kobj, &cgroup_sysfs_attr_group);
6273}
6274subsys_initcall(cgroup_sysfs_init);
6275#endif /* CONFIG_SYSFS */