blob: a8538e4437842d9cc85027acc516ed9a680d06cf [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08007 * Notifications support
8 * Copyright (C) 2009 Nokia Corporation
9 * Author: Kirill A. Shutemov
10 *
Paul Menageddbcc7e2007-10-18 23:39:30 -070011 * Copyright notices from the original cpuset code:
12 * --------------------------------------------------
13 * Copyright (C) 2003 BULL SA.
14 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
15 *
16 * Portions derived from Patrick Mochel's sysfs code.
17 * sysfs is Copyright (c) 2001-3 Patrick Mochel
18 *
19 * 2003-10-10 Written by Simon Derr.
20 * 2003-10-22 Updates by Stephen Hemminger.
21 * 2004 May-July Rework by Paul Jackson.
22 * ---------------------------------------------------
23 *
24 * This file is subject to the terms and conditions of the GNU General Public
25 * License. See the file COPYING in the main directory of the Linux
26 * distribution for more details.
27 */
28
Joe Perchesed3d2612014-04-25 18:28:03 -040029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Paul Menageddbcc7e2007-10-18 23:39:30 -070031#include <linux/cgroup.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100032#include <linux/cred.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070033#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070034#include <linux/errno.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100035#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070036#include <linux/kernel.h>
37#include <linux/list.h>
Jianyu Zhanc9482a52014-04-26 15:40:28 +080038#include <linux/magic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070039#include <linux/mm.h>
40#include <linux/mutex.h>
41#include <linux/mount.h>
42#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070043#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070044#include <linux/rcupdate.h>
45#include <linux/sched.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070046#include <linux/slab.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070047#include <linux/spinlock.h>
Tejun Heo96d365e2014-02-13 06:58:40 -050048#include <linux/rwsem.h>
Tejun Heod59cfc02015-05-13 16:35:17 -040049#include <linux/percpu-rwsem.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070050#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070051#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070052#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070053#include <linux/delayacct.h>
54#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080055#include <linux/hashtable.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070056#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070057#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070058#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020059#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050060#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070061
Arun Sharma600634972011-07-26 16:09:06 -070062#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070063
Tejun Heoe25e2cb2011-12-12 18:12:21 -080064/*
Tejun Heob1a21362013-11-29 10:42:58 -050065 * pidlists linger the following amount before being destroyed. The goal
66 * is avoiding frequent destruction in the middle of consecutive read calls
67 * Expiring in the middle is a performance problem not a correctness one.
68 * 1 sec should be enough.
69 */
70#define CGROUP_PIDLIST_DESTROY_DELAY HZ
71
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050072#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
73 MAX_CFTYPE_NAME + 2)
74
Tejun Heob1a21362013-11-29 10:42:58 -050075/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080076 * cgroup_mutex is the master lock. Any modification to cgroup or its
77 * hierarchy must be performed while holding it.
78 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050079 * css_set_rwsem protects task->cgroups pointer, the list of css_set
80 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080081 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050082 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
83 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080084 */
Tejun Heo22194492013-04-07 09:29:51 -070085#ifdef CONFIG_PROVE_RCU
86DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050087DECLARE_RWSEM(css_set_rwsem);
88EXPORT_SYMBOL_GPL(cgroup_mutex);
89EXPORT_SYMBOL_GPL(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070090#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070091static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050092static DECLARE_RWSEM(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070093#endif
94
Tejun Heo69e943b2014-02-08 10:36:58 -050095/*
Tejun Heo15a4c832014-05-04 15:09:14 -040096 * Protects cgroup_idr and css_idr so that IDs can be released without
97 * grabbing cgroup_mutex.
Tejun Heo6fa49182014-05-04 15:09:13 -040098 */
99static DEFINE_SPINLOCK(cgroup_idr_lock);
100
101/*
Tejun Heo69e943b2014-02-08 10:36:58 -0500102 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
103 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
104 */
105static DEFINE_SPINLOCK(release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700106
Tejun Heod59cfc02015-05-13 16:35:17 -0400107struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
108
Tejun Heo8353da12014-05-13 12:19:23 -0400109#define cgroup_assert_mutex_or_rcu_locked() \
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700110 RCU_LOCKDEP_WARN(!rcu_read_lock_held() && \
111 !lockdep_is_held(&cgroup_mutex), \
Tejun Heo8353da12014-05-13 12:19:23 -0400112 "cgroup_mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500113
Ben Blumaae8aab2010-03-10 15:22:07 -0800114/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500115 * cgroup destruction makes heavy use of work items and there can be a lot
116 * of concurrent destructions. Use a separate workqueue so that cgroup
117 * destruction work items don't end up filling up max_active of system_wq
118 * which may lead to deadlock.
119 */
120static struct workqueue_struct *cgroup_destroy_wq;
121
122/*
Tejun Heob1a21362013-11-29 10:42:58 -0500123 * pidlist destructions need to be flushed on cgroup destruction. Use a
124 * separate workqueue as flush domain.
125 */
126static struct workqueue_struct *cgroup_pidlist_destroy_wq;
127
Tejun Heo3ed80a62014-02-08 10:36:58 -0500128/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500129#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500130static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131#include <linux/cgroup_subsys.h>
132};
Tejun Heo073219e2014-02-08 10:36:58 -0500133#undef SUBSYS
134
135/* array of cgroup subsystem names */
136#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
137static const char *cgroup_subsys_name[] = {
138#include <linux/cgroup_subsys.h>
139};
140#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700141
Paul Menageddbcc7e2007-10-18 23:39:30 -0700142/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400143 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700144 * unattached - it never has more than a single cgroup, and all tasks are
145 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700146 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400147struct cgroup_root cgrp_dfl_root;
Tejun Heod0ec4232015-08-05 16:03:19 -0400148EXPORT_SYMBOL_GPL(cgrp_dfl_root);
Tejun Heo9871bf92013-06-24 15:21:47 -0700149
Tejun Heoa2dd4242014-03-19 10:23:55 -0400150/*
151 * The default hierarchy always exists but is hidden until mounted for the
152 * first time. This is for backward compatibility.
153 */
154static bool cgrp_dfl_root_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700155
Tejun Heoa8ddc822014-07-15 11:05:10 -0400156/*
157 * Set by the boot param of the same name and makes subsystems with NULL
158 * ->dfl_files to use ->legacy_files on the default hierarchy.
159 */
160static bool cgroup_legacy_files_on_dfl;
161
Tejun Heo5533e012014-05-14 19:33:07 -0400162/* some controllers are not supported in the default hierarchy */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000163static unsigned long cgrp_dfl_root_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -0400164
Paul Menageddbcc7e2007-10-18 23:39:30 -0700165/* The list of hierarchy roots */
166
Tejun Heo9871bf92013-06-24 15:21:47 -0700167static LIST_HEAD(cgroup_roots);
168static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700169
Tejun Heo3417ae12014-02-08 10:37:01 -0500170/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700171static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700172
Li Zefan794611a2013-06-18 18:53:53 +0800173/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400174 * Assign a monotonically increasing serial number to csses. It guarantees
175 * cgroups with bigger numbers are newer than those with smaller numbers.
176 * Also, as csses are always appended to the parent's ->children list, it
177 * guarantees that sibling csses are always sorted in the ascending serial
178 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800179 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400180static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800181
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000182/*
183 * These bitmask flags indicate whether tasks in the fork and exit paths have
184 * fork/exit handlers to call. This avoids us having to do extra work in the
185 * fork/exit path to check which subsystems have fork/exit callbacks.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700186 */
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000187static unsigned long have_fork_callback __read_mostly;
188static unsigned long have_exit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700189
Aleksa Sarai7e476822015-06-09 21:32:09 +1000190/* Ditto for the can_fork callback. */
191static unsigned long have_canfork_callback __read_mostly;
192
Tejun Heoa14c6872014-07-15 11:05:09 -0400193static struct cftype cgroup_dfl_base_files[];
194static struct cftype cgroup_legacy_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700195
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400196static int rebind_subsystems(struct cgroup_root *dst_root,
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000197 unsigned long ss_mask);
Tejun Heo42809dd2012-11-19 08:13:37 -0800198static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heof63070d2014-07-08 18:02:57 -0400199static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
200 bool visible);
Tejun Heo9d755d32014-05-14 09:15:02 -0400201static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400202static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400203static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
204 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800205
Tejun Heo6fa49182014-05-04 15:09:13 -0400206/* IDR wrappers which synchronize using cgroup_idr_lock */
207static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
208 gfp_t gfp_mask)
209{
210 int ret;
211
212 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400213 spin_lock_bh(&cgroup_idr_lock);
Vladimir Davydovcf780b72015-08-03 15:32:26 +0300214 ret = idr_alloc(idr, ptr, start, end, gfp_mask & ~__GFP_WAIT);
Tejun Heo54504e92014-05-13 12:10:59 -0400215 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400216 idr_preload_end();
217 return ret;
218}
219
220static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
221{
222 void *ret;
223
Tejun Heo54504e92014-05-13 12:10:59 -0400224 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400225 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400226 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400227 return ret;
228}
229
230static void cgroup_idr_remove(struct idr *idr, int id)
231{
Tejun Heo54504e92014-05-13 12:10:59 -0400232 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400233 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400234 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400235}
236
Tejun Heod51f39b2014-05-16 13:22:48 -0400237static struct cgroup *cgroup_parent(struct cgroup *cgrp)
238{
239 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
240
241 if (parent_css)
242 return container_of(parent_css, struct cgroup, self);
243 return NULL;
244}
245
Tejun Heo95109b62013-08-08 20:11:27 -0400246/**
247 * cgroup_css - obtain a cgroup's css for the specified subsystem
248 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400249 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400250 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400251 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
252 * function must be called either under cgroup_mutex or rcu_read_lock() and
253 * the caller is responsible for pinning the returned css if it wants to
254 * keep accessing it outside the said locks. This function may return
255 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400256 */
257static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400258 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400259{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400260 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500261 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500262 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400263 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400264 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400265}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700266
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400267/**
268 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
269 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400270 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400271 *
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400272 * Similar to cgroup_css() but returns the effective css, which is defined
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400273 * as the matching css of the nearest ancestor including self which has @ss
274 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
275 * function is guaranteed to return non-NULL css.
276 */
277static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
278 struct cgroup_subsys *ss)
279{
280 lockdep_assert_held(&cgroup_mutex);
281
282 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400283 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400284
285 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
286 return NULL;
287
Tejun Heoeeecbd12014-11-18 02:49:52 -0500288 /*
289 * This function is used while updating css associations and thus
290 * can't test the csses directly. Use ->child_subsys_mask.
291 */
Tejun Heod51f39b2014-05-16 13:22:48 -0400292 while (cgroup_parent(cgrp) &&
293 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
294 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400295
296 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700297}
298
Tejun Heoeeecbd12014-11-18 02:49:52 -0500299/**
300 * cgroup_get_e_css - get a cgroup's effective css for the specified subsystem
301 * @cgrp: the cgroup of interest
302 * @ss: the subsystem of interest
303 *
304 * Find and get the effective css of @cgrp for @ss. The effective css is
305 * defined as the matching css of the nearest ancestor including self which
306 * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on,
307 * the root css is returned, so this function always returns a valid css.
308 * The returned css must be put using css_put().
309 */
310struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgrp,
311 struct cgroup_subsys *ss)
312{
313 struct cgroup_subsys_state *css;
314
315 rcu_read_lock();
316
317 do {
318 css = cgroup_css(cgrp, ss);
319
320 if (css && css_tryget_online(css))
321 goto out_unlock;
322 cgrp = cgroup_parent(cgrp);
323 } while (cgrp);
324
325 css = init_css_set.subsys[ss->id];
326 css_get(css);
327out_unlock:
328 rcu_read_unlock();
329 return css;
330}
331
Paul Menageddbcc7e2007-10-18 23:39:30 -0700332/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700333static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700334{
Tejun Heo184faf32014-05-16 13:22:51 -0400335 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700336}
337
Tejun Heob4168642014-05-13 12:16:21 -0400338struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500339{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500340 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400341 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500342
343 /*
344 * This is open and unprotected implementation of cgroup_css().
345 * seq_css() is only called from a kernfs file operation which has
346 * an active reference on the file. Because all the subsystem
347 * files are drained before a css is disassociated with a cgroup,
348 * the matching css from the cgroup's subsys table is guaranteed to
349 * be and stay valid until the enclosing operation is complete.
350 */
351 if (cft->ss)
352 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
353 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400354 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500355}
Tejun Heob4168642014-05-13 12:16:21 -0400356EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500357
Li Zefan78574cf2013-04-08 19:00:38 -0700358/**
359 * cgroup_is_descendant - test ancestry
360 * @cgrp: the cgroup to be tested
361 * @ancestor: possible ancestor of @cgrp
362 *
363 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
364 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
365 * and @ancestor are accessible.
366 */
367bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
368{
369 while (cgrp) {
370 if (cgrp == ancestor)
371 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400372 cgrp = cgroup_parent(cgrp);
Li Zefan78574cf2013-04-08 19:00:38 -0700373 }
374 return false;
375}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700376
Adrian Bunke9685a02008-02-07 00:13:46 -0800377static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700378{
Paul Menagebd89aab2007-10-18 23:40:44 -0700379 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700380}
381
Tejun Heo30159ec2013-06-25 11:53:37 -0700382/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500383 * for_each_css - iterate all css's of a cgroup
384 * @css: the iteration cursor
385 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
386 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700387 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400388 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700389 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500390#define for_each_css(css, ssid, cgrp) \
391 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
392 if (!((css) = rcu_dereference_check( \
393 (cgrp)->subsys[(ssid)], \
394 lockdep_is_held(&cgroup_mutex)))) { } \
395 else
396
397/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400398 * for_each_e_css - iterate all effective css's of a cgroup
399 * @css: the iteration cursor
400 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
401 * @cgrp: the target cgroup to iterate css's of
402 *
403 * Should be called under cgroup_[tree_]mutex.
404 */
405#define for_each_e_css(css, ssid, cgrp) \
406 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
407 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
408 ; \
409 else
410
411/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500412 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700413 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500414 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700415 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500416#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500417 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
418 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700419
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000420/**
421 * for_each_subsys_which - filter for_each_subsys with a bitmask
422 * @ss: the iteration cursor
423 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
424 * @ss_maskp: a pointer to the bitmask
425 *
426 * The block will only run for cases where the ssid-th bit (1 << ssid) of
427 * mask is set to 1.
428 */
429#define for_each_subsys_which(ss, ssid, ss_maskp) \
430 if (!CGROUP_SUBSYS_COUNT) /* to avoid spurious gcc warning */ \
Aleksa Sarai4a705c52015-06-09 21:32:07 +1000431 (ssid) = 0; \
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000432 else \
433 for_each_set_bit(ssid, ss_maskp, CGROUP_SUBSYS_COUNT) \
434 if (((ss) = cgroup_subsys[ssid]) && false) \
435 break; \
436 else
437
Tejun Heo985ed672014-03-19 10:23:53 -0400438/* iterate across the hierarchies */
439#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700440 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700441
Tejun Heof8f22e52014-04-23 11:13:16 -0400442/* iterate over child cgrps, lock should be held throughout iteration */
443#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400444 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400445 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400446 cgroup_is_dead(child); })) \
447 ; \
448 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700449
Paul Menage81a6a5c2007-10-18 23:39:38 -0700450static void cgroup_release_agent(struct work_struct *work);
Paul Menagebd89aab2007-10-18 23:40:44 -0700451static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700452
Tejun Heo69d02062013-06-12 21:04:50 -0700453/*
454 * A cgroup can be associated with multiple css_sets as different tasks may
455 * belong to different cgroups on different hierarchies. In the other
456 * direction, a css_set is naturally associated with multiple cgroups.
457 * This M:N relationship is represented by the following link structure
458 * which exists for each association and allows traversing the associations
459 * from both sides.
460 */
461struct cgrp_cset_link {
462 /* the cgroup and css_set this link associates */
463 struct cgroup *cgrp;
464 struct css_set *cset;
465
466 /* list of cgrp_cset_links anchored at cgrp->cset_links */
467 struct list_head cset_link;
468
469 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
470 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700471};
472
Tejun Heo172a2c062014-03-19 10:23:53 -0400473/*
474 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700475 * hierarchies being mounted. It contains a pointer to the root state
476 * for each subsystem. Also used to anchor the list of css_sets. Not
477 * reference-counted, to improve performance when child cgroups
478 * haven't been created.
479 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400480struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400481 .refcount = ATOMIC_INIT(1),
482 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
483 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
484 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
485 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
486 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
487};
Paul Menage817929e2007-10-18 23:39:36 -0700488
Tejun Heo172a2c062014-03-19 10:23:53 -0400489static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700490
Tejun Heo842b5972014-04-25 18:28:02 -0400491/**
492 * cgroup_update_populated - updated populated count of a cgroup
493 * @cgrp: the target cgroup
494 * @populated: inc or dec populated count
495 *
496 * @cgrp is either getting the first task (css_set) or losing the last.
497 * Update @cgrp->populated_cnt accordingly. The count is propagated
498 * towards root so that a given cgroup's populated_cnt is zero iff the
499 * cgroup and all its descendants are empty.
500 *
501 * @cgrp's interface file "cgroup.populated" is zero if
502 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
503 * changes from or to zero, userland is notified that the content of the
504 * interface file has changed. This can be used to detect when @cgrp and
505 * its descendants become populated or empty.
506 */
507static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
508{
509 lockdep_assert_held(&css_set_rwsem);
510
511 do {
512 bool trigger;
513
514 if (populated)
515 trigger = !cgrp->populated_cnt++;
516 else
517 trigger = !--cgrp->populated_cnt;
518
519 if (!trigger)
520 break;
521
522 if (cgrp->populated_kn)
523 kernfs_notify(cgrp->populated_kn);
Tejun Heod51f39b2014-05-16 13:22:48 -0400524 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400525 } while (cgrp);
526}
527
Paul Menage7717f7b2009-09-23 15:56:22 -0700528/*
529 * hash table for cgroup groups. This improves the performance to find
530 * an existing css_set. This hash doesn't (currently) take into
531 * account cgroups in empty hierarchies.
532 */
Li Zefan472b1052008-04-29 01:00:11 -0700533#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800534static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700535
Li Zefan0ac801f2013-01-10 11:49:27 +0800536static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700537{
Li Zefan0ac801f2013-01-10 11:49:27 +0800538 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700539 struct cgroup_subsys *ss;
540 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700541
Tejun Heo30159ec2013-06-25 11:53:37 -0700542 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800543 key += (unsigned long)css[i];
544 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700545
Li Zefan0ac801f2013-01-10 11:49:27 +0800546 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700547}
548
Zefan Lia25eb522014-09-19 16:51:00 +0800549static void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700550{
Tejun Heo69d02062013-06-12 21:04:50 -0700551 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400552 struct cgroup_subsys *ss;
553 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700554
Tejun Heo89c55092014-02-13 06:58:40 -0500555 lockdep_assert_held(&css_set_rwsem);
556
557 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700558 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700559
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700560 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400561 for_each_subsys(ss, ssid)
562 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700563 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700564 css_set_count--;
565
Tejun Heo69d02062013-06-12 21:04:50 -0700566 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700567 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700568
Tejun Heo69d02062013-06-12 21:04:50 -0700569 list_del(&link->cset_link);
570 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800571
Tejun Heo96d365e2014-02-13 06:58:40 -0500572 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo842b5972014-04-25 18:28:02 -0400573 if (list_empty(&cgrp->cset_links)) {
574 cgroup_update_populated(cgrp, false);
Zefan Lia25eb522014-09-19 16:51:00 +0800575 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700576 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700577
578 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700579 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700580
Tejun Heo5abb8852013-06-12 21:04:49 -0700581 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700582}
583
Zefan Lia25eb522014-09-19 16:51:00 +0800584static void put_css_set(struct css_set *cset)
Tejun Heo89c55092014-02-13 06:58:40 -0500585{
586 /*
587 * Ensure that the refcount doesn't hit zero while any readers
588 * can see it. Similar to atomic_dec_and_lock(), but for an
589 * rwlock
590 */
591 if (atomic_add_unless(&cset->refcount, -1, 1))
592 return;
593
594 down_write(&css_set_rwsem);
Zefan Lia25eb522014-09-19 16:51:00 +0800595 put_css_set_locked(cset);
Tejun Heo89c55092014-02-13 06:58:40 -0500596 up_write(&css_set_rwsem);
597}
598
Paul Menage817929e2007-10-18 23:39:36 -0700599/*
600 * refcounted get/put for css_set objects
601 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700602static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700603{
Tejun Heo5abb8852013-06-12 21:04:49 -0700604 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700605}
606
Tejun Heob326f9d2013-06-24 15:21:48 -0700607/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700608 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700609 * @cset: candidate css_set being tested
610 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700611 * @new_cgrp: cgroup that's being entered by the task
612 * @template: desired set of css pointers in css_set (pre-calculated)
613 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800614 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700615 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
616 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700617static bool compare_css_sets(struct css_set *cset,
618 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700619 struct cgroup *new_cgrp,
620 struct cgroup_subsys_state *template[])
621{
622 struct list_head *l1, *l2;
623
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400624 /*
625 * On the default hierarchy, there can be csets which are
626 * associated with the same set of cgroups but different csses.
627 * Let's first ensure that csses match.
628 */
629 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700630 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700631
632 /*
633 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400634 * different cgroups in hierarchies. As different cgroups may
635 * share the same effective css, this comparison is always
636 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700637 */
Tejun Heo69d02062013-06-12 21:04:50 -0700638 l1 = &cset->cgrp_links;
639 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700640 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700641 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700642 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700643
644 l1 = l1->next;
645 l2 = l2->next;
646 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700647 if (l1 == &cset->cgrp_links) {
648 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700649 break;
650 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700651 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700652 }
653 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700654 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
655 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
656 cgrp1 = link1->cgrp;
657 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700658 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700659 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700660
661 /*
662 * If this hierarchy is the hierarchy of the cgroup
663 * that's changing, then we need to check that this
664 * css_set points to the new cgroup; if it's any other
665 * hierarchy, then this css_set should point to the
666 * same cgroup as the old css_set.
667 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700668 if (cgrp1->root == new_cgrp->root) {
669 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700670 return false;
671 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700672 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700673 return false;
674 }
675 }
676 return true;
677}
678
Tejun Heob326f9d2013-06-24 15:21:48 -0700679/**
680 * find_existing_css_set - init css array and find the matching css_set
681 * @old_cset: the css_set that we're using before the cgroup transition
682 * @cgrp: the cgroup that we're moving into
683 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700684 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700685static struct css_set *find_existing_css_set(struct css_set *old_cset,
686 struct cgroup *cgrp,
687 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700688{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400689 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700690 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700691 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800692 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700693 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700694
Ben Blumaae8aab2010-03-10 15:22:07 -0800695 /*
696 * Build the set of subsystem state objects that we want to see in the
697 * new css_set. while subsystems can change globally, the entries here
698 * won't change, so no need for locking.
699 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700700 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400701 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400702 /*
703 * @ss is in this hierarchy, so we want the
704 * effective css from @cgrp.
705 */
706 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700707 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400708 /*
709 * @ss is not in this hierarchy, so we don't want
710 * to change the css.
711 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700712 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700713 }
714 }
715
Li Zefan0ac801f2013-01-10 11:49:27 +0800716 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700717 hash_for_each_possible(css_set_table, cset, hlist, key) {
718 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700719 continue;
720
721 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700722 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700723 }
Paul Menage817929e2007-10-18 23:39:36 -0700724
725 /* No existing cgroup group matched */
726 return NULL;
727}
728
Tejun Heo69d02062013-06-12 21:04:50 -0700729static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700730{
Tejun Heo69d02062013-06-12 21:04:50 -0700731 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700732
Tejun Heo69d02062013-06-12 21:04:50 -0700733 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
734 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700735 kfree(link);
736 }
737}
738
Tejun Heo69d02062013-06-12 21:04:50 -0700739/**
740 * allocate_cgrp_cset_links - allocate cgrp_cset_links
741 * @count: the number of links to allocate
742 * @tmp_links: list_head the allocated links are put on
743 *
744 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
745 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700746 */
Tejun Heo69d02062013-06-12 21:04:50 -0700747static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700748{
Tejun Heo69d02062013-06-12 21:04:50 -0700749 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700750 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700751
752 INIT_LIST_HEAD(tmp_links);
753
Li Zefan36553432008-07-29 22:33:19 -0700754 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700755 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700756 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700757 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700758 return -ENOMEM;
759 }
Tejun Heo69d02062013-06-12 21:04:50 -0700760 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700761 }
762 return 0;
763}
764
Li Zefanc12f65d2009-01-07 18:07:42 -0800765/**
766 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700767 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700768 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800769 * @cgrp: the destination cgroup
770 */
Tejun Heo69d02062013-06-12 21:04:50 -0700771static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
772 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800773{
Tejun Heo69d02062013-06-12 21:04:50 -0700774 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800775
Tejun Heo69d02062013-06-12 21:04:50 -0700776 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400777
778 if (cgroup_on_dfl(cgrp))
779 cset->dfl_cgrp = cgrp;
780
Tejun Heo69d02062013-06-12 21:04:50 -0700781 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
782 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700783 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400784
785 if (list_empty(&cgrp->cset_links))
786 cgroup_update_populated(cgrp, true);
Tejun Heo69d02062013-06-12 21:04:50 -0700787 list_move(&link->cset_link, &cgrp->cset_links);
Tejun Heo842b5972014-04-25 18:28:02 -0400788
Paul Menage7717f7b2009-09-23 15:56:22 -0700789 /*
790 * Always add links to the tail of the list so that the list
791 * is sorted by order of hierarchy creation
792 */
Tejun Heo69d02062013-06-12 21:04:50 -0700793 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800794}
795
Tejun Heob326f9d2013-06-24 15:21:48 -0700796/**
797 * find_css_set - return a new css_set with one cgroup updated
798 * @old_cset: the baseline css_set
799 * @cgrp: the cgroup to be updated
800 *
801 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
802 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700803 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700804static struct css_set *find_css_set(struct css_set *old_cset,
805 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700806{
Tejun Heob326f9d2013-06-24 15:21:48 -0700807 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700808 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700809 struct list_head tmp_links;
810 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400811 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800812 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400813 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700814
Tejun Heob326f9d2013-06-24 15:21:48 -0700815 lockdep_assert_held(&cgroup_mutex);
816
Paul Menage817929e2007-10-18 23:39:36 -0700817 /* First see if we already have a cgroup group that matches
818 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500819 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700820 cset = find_existing_css_set(old_cset, cgrp, template);
821 if (cset)
822 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500823 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700824
Tejun Heo5abb8852013-06-12 21:04:49 -0700825 if (cset)
826 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700827
Tejun Heof4f4be22013-06-12 21:04:51 -0700828 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700829 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700830 return NULL;
831
Tejun Heo69d02062013-06-12 21:04:50 -0700832 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700833 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700834 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700835 return NULL;
836 }
837
Tejun Heo5abb8852013-06-12 21:04:49 -0700838 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700839 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700840 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500841 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -0500842 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -0500843 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700844 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700845
846 /* Copy the set of subsystem state objects generated in
847 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700848 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700849
Tejun Heo96d365e2014-02-13 06:58:40 -0500850 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700851 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700852 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700853 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700854
Paul Menage7717f7b2009-09-23 15:56:22 -0700855 if (c->root == cgrp->root)
856 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700857 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700858 }
Paul Menage817929e2007-10-18 23:39:36 -0700859
Tejun Heo69d02062013-06-12 21:04:50 -0700860 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700861
Paul Menage817929e2007-10-18 23:39:36 -0700862 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700863
Tejun Heo2d8f2432014-04-23 11:13:15 -0400864 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700865 key = css_set_hash(cset->subsys);
866 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700867
Tejun Heo2d8f2432014-04-23 11:13:15 -0400868 for_each_subsys(ss, ssid)
869 list_add_tail(&cset->e_cset_node[ssid],
870 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
871
Tejun Heo96d365e2014-02-13 06:58:40 -0500872 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700873
Tejun Heo5abb8852013-06-12 21:04:49 -0700874 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700875}
876
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400877static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700878{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400879 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500880
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400881 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500882}
883
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400884static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500885{
886 int id;
887
888 lockdep_assert_held(&cgroup_mutex);
889
Tejun Heo985ed672014-03-19 10:23:53 -0400890 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -0500891 if (id < 0)
892 return id;
893
894 root->hierarchy_id = id;
895 return 0;
896}
897
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400898static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500899{
900 lockdep_assert_held(&cgroup_mutex);
901
902 if (root->hierarchy_id) {
903 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
904 root->hierarchy_id = 0;
905 }
906}
907
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400908static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500909{
910 if (root) {
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400911 /* hierarchy ID should already have been released */
Tejun Heof2e85d52014-02-11 11:52:49 -0500912 WARN_ON_ONCE(root->hierarchy_id);
913
914 idr_destroy(&root->cgroup_idr);
915 kfree(root);
916 }
917}
918
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400919static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500920{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400921 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -0500922 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500923
Tejun Heo2bd59d42014-02-11 11:52:49 -0500924 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500925
Tejun Heo776f02f2014-02-12 09:29:50 -0500926 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -0400927 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -0500928
Tejun Heof2e85d52014-02-11 11:52:49 -0500929 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -0400930 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -0500931
932 /*
933 * Release all the links from cset_links to this hierarchy's
934 * root cgroup
935 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500936 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500937
938 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
939 list_del(&link->cset_link);
940 list_del(&link->cgrp_link);
941 kfree(link);
942 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500943 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500944
945 if (!list_empty(&root->root_list)) {
946 list_del(&root->root_list);
947 cgroup_root_count--;
948 }
949
950 cgroup_exit_root_id(root);
951
952 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500953
Tejun Heo2bd59d42014-02-11 11:52:49 -0500954 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500955 cgroup_free_root(root);
956}
957
Tejun Heoceb6a082014-02-25 10:04:02 -0500958/* look up cgroup associated with given css_set on the specified hierarchy */
959static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400960 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700961{
Paul Menage7717f7b2009-09-23 15:56:22 -0700962 struct cgroup *res = NULL;
963
Tejun Heo96d365e2014-02-13 06:58:40 -0500964 lockdep_assert_held(&cgroup_mutex);
965 lockdep_assert_held(&css_set_rwsem);
966
Tejun Heo5abb8852013-06-12 21:04:49 -0700967 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400968 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700969 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700970 struct cgrp_cset_link *link;
971
972 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700973 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700974
Paul Menage7717f7b2009-09-23 15:56:22 -0700975 if (c->root == root) {
976 res = c;
977 break;
978 }
979 }
980 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500981
Paul Menage7717f7b2009-09-23 15:56:22 -0700982 BUG_ON(!res);
983 return res;
984}
985
986/*
Tejun Heoceb6a082014-02-25 10:04:02 -0500987 * Return the cgroup for "task" from the given hierarchy. Must be
988 * called with cgroup_mutex and css_set_rwsem held.
989 */
990static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400991 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -0500992{
993 /*
994 * No need to lock the task - since we hold cgroup_mutex the
995 * task can't change groups, so the only thing that can happen
996 * is that it exits and its css is set back to init_css_set.
997 */
998 return cset_cgroup_from_root(task_css_set(task), root);
999}
1000
1001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07001002 * A task must hold cgroup_mutex to modify cgroups.
1003 *
1004 * Any task can increment and decrement the count field without lock.
1005 * So in general, code holding cgroup_mutex can't rely on the count
1006 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -08001007 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -07001008 * means that no tasks are currently attached, therefore there is no
1009 * way a task attached to that cgroup can fork (the other way to
1010 * increment the count). So code holding cgroup_mutex can safely
1011 * assume that if the count is zero, it will stay zero. Similarly, if
1012 * a task holds cgroup_mutex on a cgroup with zero count, it
1013 * knows that the cgroup won't be removed, as cgroup_rmdir()
1014 * needs that mutex.
1015 *
Paul Menageddbcc7e2007-10-18 23:39:30 -07001016 * A cgroup can only be deleted if both its 'count' of using tasks
1017 * is zero, and its list of 'children' cgroups is empty. Since all
1018 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001019 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001020 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001021 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001022 *
1023 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001024 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -07001025 */
1026
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001027static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001028static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001029static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -07001030
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001031static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1032 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001033{
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001034 struct cgroup_subsys *ss = cft->ss;
1035
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001036 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
1037 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
1038 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001039 cgroup_on_dfl(cgrp) ? ss->name : ss->legacy_name,
1040 cft->name);
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001041 else
1042 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1043 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001044}
1045
Tejun Heof2e85d52014-02-11 11:52:49 -05001046/**
1047 * cgroup_file_mode - deduce file mode of a control file
1048 * @cft: the control file in question
1049 *
1050 * returns cft->mode if ->mode is not 0
1051 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
1052 * returns S_IRUGO if it has only a read handler
1053 * returns S_IWUSR if it has only a write hander
1054 */
1055static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001056{
Tejun Heof2e85d52014-02-11 11:52:49 -05001057 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001058
Tejun Heof2e85d52014-02-11 11:52:49 -05001059 if (cft->mode)
1060 return cft->mode;
1061
1062 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1063 mode |= S_IRUGO;
1064
Tejun Heo6770c642014-05-13 12:16:21 -04001065 if (cft->write_u64 || cft->write_s64 || cft->write)
Tejun Heof2e85d52014-02-11 11:52:49 -05001066 mode |= S_IWUSR;
1067
1068 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001069}
1070
Tejun Heo59f52962014-02-11 11:52:49 -05001071static void cgroup_get(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001072{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001073 WARN_ON_ONCE(cgroup_is_dead(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04001074 css_get(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001075}
1076
Li Zefanaa323622014-09-04 14:43:38 +08001077static bool cgroup_tryget(struct cgroup *cgrp)
1078{
1079 return css_tryget(&cgrp->self);
1080}
1081
Tejun Heo59f52962014-02-11 11:52:49 -05001082static void cgroup_put(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001083{
Tejun Heo9d755d32014-05-14 09:15:02 -04001084 css_put(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001085}
1086
Tejun Heoa9746d82014-05-13 12:19:22 -04001087/**
Tejun Heo0f060de2014-11-18 02:49:50 -05001088 * cgroup_calc_child_subsys_mask - calculate child_subsys_mask
Tejun Heoaf0ba672014-07-08 18:02:57 -04001089 * @cgrp: the target cgroup
Tejun Heo0f060de2014-11-18 02:49:50 -05001090 * @subtree_control: the new subtree_control mask to consider
Tejun Heoaf0ba672014-07-08 18:02:57 -04001091 *
1092 * On the default hierarchy, a subsystem may request other subsystems to be
1093 * enabled together through its ->depends_on mask. In such cases, more
1094 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1095 *
Tejun Heo0f060de2014-11-18 02:49:50 -05001096 * This function calculates which subsystems need to be enabled if
1097 * @subtree_control is to be applied to @cgrp. The returned mask is always
1098 * a superset of @subtree_control and follows the usual hierarchy rules.
Tejun Heoaf0ba672014-07-08 18:02:57 -04001099 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001100static unsigned long cgroup_calc_child_subsys_mask(struct cgroup *cgrp,
1101 unsigned long subtree_control)
Tejun Heo667c2492014-07-08 18:02:56 -04001102{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001103 struct cgroup *parent = cgroup_parent(cgrp);
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001104 unsigned long cur_ss_mask = subtree_control;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001105 struct cgroup_subsys *ss;
1106 int ssid;
1107
1108 lockdep_assert_held(&cgroup_mutex);
1109
Tejun Heo0f060de2014-11-18 02:49:50 -05001110 if (!cgroup_on_dfl(cgrp))
1111 return cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001112
1113 while (true) {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001114 unsigned long new_ss_mask = cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001115
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001116 for_each_subsys_which(ss, ssid, &cur_ss_mask)
1117 new_ss_mask |= ss->depends_on;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001118
1119 /*
1120 * Mask out subsystems which aren't available. This can
1121 * happen only if some depended-upon subsystems were bound
1122 * to non-default hierarchies.
1123 */
1124 if (parent)
1125 new_ss_mask &= parent->child_subsys_mask;
1126 else
1127 new_ss_mask &= cgrp->root->subsys_mask;
1128
1129 if (new_ss_mask == cur_ss_mask)
1130 break;
1131 cur_ss_mask = new_ss_mask;
1132 }
1133
Tejun Heo0f060de2014-11-18 02:49:50 -05001134 return cur_ss_mask;
1135}
1136
1137/**
1138 * cgroup_refresh_child_subsys_mask - update child_subsys_mask
1139 * @cgrp: the target cgroup
1140 *
1141 * Update @cgrp->child_subsys_mask according to the current
1142 * @cgrp->subtree_control using cgroup_calc_child_subsys_mask().
1143 */
1144static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1145{
1146 cgrp->child_subsys_mask =
1147 cgroup_calc_child_subsys_mask(cgrp, cgrp->subtree_control);
Tejun Heo667c2492014-07-08 18:02:56 -04001148}
1149
Tejun Heoa9746d82014-05-13 12:19:22 -04001150/**
1151 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1152 * @kn: the kernfs_node being serviced
1153 *
1154 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1155 * the method finishes if locking succeeded. Note that once this function
1156 * returns the cgroup returned by cgroup_kn_lock_live() may become
1157 * inaccessible any time. If the caller intends to continue to access the
1158 * cgroup, it should pin it before invoking this function.
1159 */
1160static void cgroup_kn_unlock(struct kernfs_node *kn)
1161{
1162 struct cgroup *cgrp;
1163
1164 if (kernfs_type(kn) == KERNFS_DIR)
1165 cgrp = kn->priv;
1166 else
1167 cgrp = kn->parent->priv;
1168
1169 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001170
1171 kernfs_unbreak_active_protection(kn);
1172 cgroup_put(cgrp);
1173}
1174
1175/**
1176 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1177 * @kn: the kernfs_node being serviced
1178 *
1179 * This helper is to be used by a cgroup kernfs method currently servicing
1180 * @kn. It breaks the active protection, performs cgroup locking and
1181 * verifies that the associated cgroup is alive. Returns the cgroup if
1182 * alive; otherwise, %NULL. A successful return should be undone by a
1183 * matching cgroup_kn_unlock() invocation.
1184 *
1185 * Any cgroup kernfs method implementation which requires locking the
1186 * associated cgroup should use this helper. It avoids nesting cgroup
1187 * locking under kernfs active protection and allows all kernfs operations
1188 * including self-removal.
1189 */
1190static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1191{
1192 struct cgroup *cgrp;
1193
1194 if (kernfs_type(kn) == KERNFS_DIR)
1195 cgrp = kn->priv;
1196 else
1197 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001198
1199 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001200 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001201 * active_ref. cgroup liveliness check alone provides enough
1202 * protection against removal. Ensure @cgrp stays accessible and
1203 * break the active_ref protection.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001204 */
Li Zefanaa323622014-09-04 14:43:38 +08001205 if (!cgroup_tryget(cgrp))
1206 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001207 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001208
Tejun Heoa9746d82014-05-13 12:19:22 -04001209 mutex_lock(&cgroup_mutex);
1210
1211 if (!cgroup_is_dead(cgrp))
1212 return cgrp;
1213
1214 cgroup_kn_unlock(kn);
1215 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001216}
1217
Li Zefan2739d3c2013-01-21 18:18:33 +08001218static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001219{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001220 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001221
Tejun Heo01f64742014-05-13 12:19:23 -04001222 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001223 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001224}
1225
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001226/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001227 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001228 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001229 * @subsys_mask: mask of the subsystem ids whose files should be removed
1230 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001231static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001232{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001233 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001234 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001235
Tejun Heob420ba72013-07-12 12:34:02 -07001236 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001237 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001238
Tejun Heo69dfa002014-05-04 15:09:13 -04001239 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001240 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001241 list_for_each_entry(cfts, &ss->cfts, node)
1242 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001243 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001244}
1245
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001246static int rebind_subsystems(struct cgroup_root *dst_root,
1247 unsigned long ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001248{
Tejun Heo30159ec2013-06-25 11:53:37 -07001249 struct cgroup_subsys *ss;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001250 unsigned long tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001251 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001252
Tejun Heoace2bee2014-02-11 11:52:47 -05001253 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001254
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001255 for_each_subsys_which(ss, ssid, &ss_mask) {
Tejun Heo7fd8c562014-04-23 11:13:16 -04001256 /* if @ss has non-root csses attached to it, can't move */
1257 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001258 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001259
Tejun Heo5df36032014-03-19 10:23:54 -04001260 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001261 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001262 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001263 }
1264
Tejun Heo5533e012014-05-14 19:33:07 -04001265 /* skip creating root files on dfl_root for inhibited subsystems */
1266 tmp_ss_mask = ss_mask;
1267 if (dst_root == &cgrp_dfl_root)
1268 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1269
1270 ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask);
Tejun Heoa2dd4242014-03-19 10:23:55 -04001271 if (ret) {
1272 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001273 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001274
Tejun Heoa2dd4242014-03-19 10:23:55 -04001275 /*
1276 * Rebinding back to the default root is not allowed to
1277 * fail. Using both default and non-default roots should
1278 * be rare. Moving subsystems back and forth even more so.
1279 * Just warn about it and continue.
1280 */
1281 if (cgrp_dfl_root_visible) {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001282 pr_warn("failed to create files (%d) while rebinding 0x%lx to default root\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001283 ret, ss_mask);
Joe Perchesed3d2612014-04-25 18:28:03 -04001284 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
Tejun Heoa2dd4242014-03-19 10:23:55 -04001285 }
Tejun Heo5df36032014-03-19 10:23:54 -04001286 }
Tejun Heo31261212013-06-28 17:07:30 -07001287
1288 /*
1289 * Nothing can fail from this point on. Remove files for the
1290 * removed subsystems and rebind each subsystem.
1291 */
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001292 for_each_subsys_which(ss, ssid, &ss_mask)
1293 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo31261212013-06-28 17:07:30 -07001294
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001295 for_each_subsys_which(ss, ssid, &ss_mask) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001296 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001297 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001298 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001299
Tejun Heo5df36032014-03-19 10:23:54 -04001300 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001301 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001302
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001303 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001304
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001305 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1306 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001307 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001308 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001309
Tejun Heo2d8f2432014-04-23 11:13:15 -04001310 down_write(&css_set_rwsem);
1311 hash_for_each(css_set_table, i, cset, hlist)
1312 list_move_tail(&cset->e_cset_node[ss->id],
1313 &dst_root->cgrp.e_csets[ss->id]);
1314 up_write(&css_set_rwsem);
1315
Tejun Heof392e512014-04-23 11:13:14 -04001316 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo667c2492014-07-08 18:02:56 -04001317 src_root->cgrp.subtree_control &= ~(1 << ssid);
1318 cgroup_refresh_child_subsys_mask(&src_root->cgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001319
Tejun Heobd53d612014-04-23 11:13:16 -04001320 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001321 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo667c2492014-07-08 18:02:56 -04001322 if (dst_root != &cgrp_dfl_root) {
1323 dst_root->cgrp.subtree_control |= 1 << ssid;
1324 cgroup_refresh_child_subsys_mask(&dst_root->cgrp);
1325 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001326
Tejun Heo5df36032014-03-19 10:23:54 -04001327 if (ss->bind)
1328 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001329 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001330
Tejun Heoa2dd4242014-03-19 10:23:55 -04001331 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001332 return 0;
1333}
1334
Tejun Heo2bd59d42014-02-11 11:52:49 -05001335static int cgroup_show_options(struct seq_file *seq,
1336 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001337{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001338 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001339 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001340 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001341
Tejun Heod98817d2015-08-18 13:58:16 -07001342 if (root != &cgrp_dfl_root)
1343 for_each_subsys(ss, ssid)
1344 if (root->subsys_mask & (1 << ssid))
Kees Cooka068acf2015-09-04 15:44:57 -07001345 seq_show_option(seq, ss->name, NULL);
Tejun Heo93438622013-04-14 20:15:25 -07001346 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001347 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001348 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001349 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001350
1351 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001352 if (strlen(root->release_agent_path))
Kees Cooka068acf2015-09-04 15:44:57 -07001353 seq_show_option(seq, "release_agent",
1354 root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001355 spin_unlock(&release_agent_path_lock);
1356
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001357 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001358 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001359 if (strlen(root->name))
Kees Cooka068acf2015-09-04 15:44:57 -07001360 seq_show_option(seq, "name", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001361 return 0;
1362}
1363
1364struct cgroup_sb_opts {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001365 unsigned long subsys_mask;
Tejun Heo69dfa002014-05-04 15:09:13 -04001366 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001367 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001368 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001369 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001370 /* User explicitly requested empty subsystem */
1371 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001372};
1373
Ben Blumcf5d5942010-03-10 15:22:09 -08001374static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001375{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001376 char *token, *o = data;
1377 bool all_ss = false, one_ss = false;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001378 unsigned long mask = -1UL;
Tejun Heo30159ec2013-06-25 11:53:37 -07001379 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001380 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001381 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001382
1383#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001384 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001385#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001386
Paul Menagec6d57f32009-09-23 15:56:19 -07001387 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001388
1389 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001390 nr_opts++;
1391
Paul Menageddbcc7e2007-10-18 23:39:30 -07001392 if (!*token)
1393 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001394 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001395 /* Explicitly have no subsystems */
1396 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001397 continue;
1398 }
1399 if (!strcmp(token, "all")) {
1400 /* Mutually exclusive option 'all' + subsystem name */
1401 if (one_ss)
1402 return -EINVAL;
1403 all_ss = true;
1404 continue;
1405 }
Tejun Heo873fe092013-04-14 20:15:26 -07001406 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1407 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1408 continue;
1409 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001410 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001411 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001412 continue;
1413 }
1414 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001415 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001416 continue;
1417 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001418 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001419 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001420 continue;
1421 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001422 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001423 /* Specifying two release agents is forbidden */
1424 if (opts->release_agent)
1425 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001426 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001427 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001428 if (!opts->release_agent)
1429 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001430 continue;
1431 }
1432 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001433 const char *name = token + 5;
1434 /* Can't specify an empty name */
1435 if (!strlen(name))
1436 return -EINVAL;
1437 /* Must match [\w.-]+ */
1438 for (i = 0; i < strlen(name); i++) {
1439 char c = name[i];
1440 if (isalnum(c))
1441 continue;
1442 if ((c == '.') || (c == '-') || (c == '_'))
1443 continue;
1444 return -EINVAL;
1445 }
1446 /* Specifying two names is forbidden */
1447 if (opts->name)
1448 return -EINVAL;
1449 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001450 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001451 GFP_KERNEL);
1452 if (!opts->name)
1453 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001454
1455 continue;
1456 }
1457
Tejun Heo30159ec2013-06-25 11:53:37 -07001458 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001459 if (strcmp(token, ss->legacy_name))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001460 continue;
1461 if (ss->disabled)
1462 continue;
1463
1464 /* Mutually exclusive option 'all' + subsystem name */
1465 if (all_ss)
1466 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001467 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001468 one_ss = true;
1469
1470 break;
1471 }
1472 if (i == CGROUP_SUBSYS_COUNT)
1473 return -ENOENT;
1474 }
1475
Tejun Heo873fe092013-04-14 20:15:26 -07001476 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001477 pr_warn("sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001478 if (nr_opts != 1) {
1479 pr_err("sane_behavior: no other mount options allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001480 return -EINVAL;
1481 }
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001482 return 0;
Tejun Heo873fe092013-04-14 20:15:26 -07001483 }
1484
Li Zefanf9ab5b52009-06-17 16:26:33 -07001485 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001486 * If the 'all' option was specified select all the subsystems,
1487 * otherwise if 'none', 'name=' and a subsystem name options were
1488 * not specified, let's default to 'all'
1489 */
1490 if (all_ss || (!one_ss && !opts->none && !opts->name))
1491 for_each_subsys(ss, i)
1492 if (!ss->disabled)
1493 opts->subsys_mask |= (1 << i);
1494
1495 /*
1496 * We either have to specify by name or by subsystems. (So all
1497 * empty hierarchies must have a name).
1498 */
1499 if (!opts->subsys_mask && !opts->name)
1500 return -EINVAL;
1501
1502 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001503 * Option noprefix was introduced just for backward compatibility
1504 * with the old cpuset, so we allow noprefix only if mounting just
1505 * the cpuset subsystem.
1506 */
Tejun Heo93438622013-04-14 20:15:25 -07001507 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001508 return -EINVAL;
1509
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001510 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001511 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001512 return -EINVAL;
1513
Paul Menageddbcc7e2007-10-18 23:39:30 -07001514 return 0;
1515}
1516
Tejun Heo2bd59d42014-02-11 11:52:49 -05001517static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001518{
1519 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001520 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001521 struct cgroup_sb_opts opts;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001522 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001523
Tejun Heoaa6ec292014-07-09 10:08:08 -04001524 if (root == &cgrp_dfl_root) {
1525 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001526 return -EINVAL;
1527 }
1528
Paul Menageddbcc7e2007-10-18 23:39:30 -07001529 mutex_lock(&cgroup_mutex);
1530
1531 /* See what subsystems are wanted */
1532 ret = parse_cgroupfs_options(data, &opts);
1533 if (ret)
1534 goto out_unlock;
1535
Tejun Heof392e512014-04-23 11:13:14 -04001536 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001537 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001538 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001539
Tejun Heof392e512014-04-23 11:13:14 -04001540 added_mask = opts.subsys_mask & ~root->subsys_mask;
1541 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001542
Ben Blumcf5d5942010-03-10 15:22:09 -08001543 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001544 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001545 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001546 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001547 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001548 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001549 goto out_unlock;
1550 }
1551
Tejun Heof172e672013-06-28 17:07:30 -07001552 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001553 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001554 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001555 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001556 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001557
Tejun Heo5df36032014-03-19 10:23:54 -04001558 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001559 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001560 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001561
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001562 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001563
Tejun Heo69e943b2014-02-08 10:36:58 -05001564 if (opts.release_agent) {
1565 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001566 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001567 spin_unlock(&release_agent_path_lock);
1568 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001569 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001570 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001571 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001572 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001573 return ret;
1574}
1575
Tejun Heoafeb0f92014-02-13 06:58:39 -05001576/*
1577 * To reduce the fork() overhead for systems that are not actually using
1578 * their cgroups capability, we don't maintain the lists running through
1579 * each css_set to its tasks until we see the list actually used - in other
1580 * words after the first mount.
1581 */
1582static bool use_task_css_set_links __read_mostly;
1583
1584static void cgroup_enable_task_cg_lists(void)
1585{
1586 struct task_struct *p, *g;
1587
Tejun Heo96d365e2014-02-13 06:58:40 -05001588 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001589
1590 if (use_task_css_set_links)
1591 goto out_unlock;
1592
1593 use_task_css_set_links = true;
1594
1595 /*
1596 * We need tasklist_lock because RCU is not safe against
1597 * while_each_thread(). Besides, a forking task that has passed
1598 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1599 * is not guaranteed to have its child immediately visible in the
1600 * tasklist if we walk through it with RCU.
1601 */
1602 read_lock(&tasklist_lock);
1603 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001604 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1605 task_css_set(p) != &init_css_set);
1606
1607 /*
1608 * We should check if the process is exiting, otherwise
1609 * it will race with cgroup_exit() in that the list
1610 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001611 * Do it while holding siglock so that we don't end up
1612 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001613 */
Tejun Heof153ad12014-02-25 09:56:49 -05001614 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001615 if (!(p->flags & PF_EXITING)) {
1616 struct css_set *cset = task_css_set(p);
1617
1618 list_add(&p->cg_list, &cset->tasks);
1619 get_css_set(cset);
1620 }
Tejun Heof153ad12014-02-25 09:56:49 -05001621 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001622 } while_each_thread(g, p);
1623 read_unlock(&tasklist_lock);
1624out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001625 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001626}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001627
Paul Menagecc31edc2008-10-18 20:28:04 -07001628static void init_cgroup_housekeeping(struct cgroup *cgrp)
1629{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001630 struct cgroup_subsys *ss;
1631 int ssid;
1632
Tejun Heod5c419b2014-05-16 13:22:48 -04001633 INIT_LIST_HEAD(&cgrp->self.sibling);
1634 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001635 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001636 INIT_LIST_HEAD(&cgrp->pidlists);
1637 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001638 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001639 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001640
1641 for_each_subsys(ss, ssid)
1642 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001643
1644 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001645 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001646}
Paul Menagec6d57f32009-09-23 15:56:19 -07001647
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001648static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001649 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001650{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001651 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001652
Paul Menageddbcc7e2007-10-18 23:39:30 -07001653 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001654 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001655 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001656 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001657 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001658
Paul Menagec6d57f32009-09-23 15:56:19 -07001659 root->flags = opts->flags;
1660 if (opts->release_agent)
1661 strcpy(root->release_agent_path, opts->release_agent);
1662 if (opts->name)
1663 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001664 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001665 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001666}
1667
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001668static int cgroup_setup_root(struct cgroup_root *root, unsigned long ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001669{
Tejun Heod427dfe2014-02-11 11:52:48 -05001670 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001671 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heoa14c6872014-07-15 11:05:09 -04001672 struct cftype *base_files;
Tejun Heod427dfe2014-02-11 11:52:48 -05001673 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001674 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001675
Tejun Heod427dfe2014-02-11 11:52:48 -05001676 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001677
Vladimir Davydovcf780b72015-08-03 15:32:26 +03001678 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_KERNEL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001679 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001680 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001681 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001682
Tejun Heo2aad2a82014-09-24 13:31:50 -04001683 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1684 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001685 if (ret)
1686 goto out;
1687
Tejun Heod427dfe2014-02-11 11:52:48 -05001688 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001689 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001690 * but that's OK - it can only be increased by someone holding
1691 * cgroup_lock, and that's us. The worst that can happen is that we
1692 * have some link structures left over
1693 */
1694 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001695 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001696 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001697
Tejun Heo985ed672014-03-19 10:23:53 -04001698 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001699 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001700 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001701
Tejun Heo2bd59d42014-02-11 11:52:49 -05001702 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1703 KERNFS_ROOT_CREATE_DEACTIVATED,
1704 root_cgrp);
1705 if (IS_ERR(root->kf_root)) {
1706 ret = PTR_ERR(root->kf_root);
1707 goto exit_root_id;
1708 }
1709 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001710
Tejun Heoa14c6872014-07-15 11:05:09 -04001711 if (root == &cgrp_dfl_root)
1712 base_files = cgroup_dfl_base_files;
1713 else
1714 base_files = cgroup_legacy_base_files;
1715
1716 ret = cgroup_addrm_files(root_cgrp, base_files, true);
Tejun Heod427dfe2014-02-11 11:52:48 -05001717 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001718 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001719
Tejun Heo5df36032014-03-19 10:23:54 -04001720 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001721 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001722 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001723
Tejun Heod427dfe2014-02-11 11:52:48 -05001724 /*
1725 * There must be no failure case after here, since rebinding takes
1726 * care of subsystems' refcounts, which are explicitly dropped in
1727 * the failure exit path.
1728 */
1729 list_add(&root->root_list, &cgroup_roots);
1730 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001731
Tejun Heod427dfe2014-02-11 11:52:48 -05001732 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001733 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001734 * objects.
1735 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001736 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001737 hash_for_each(css_set_table, i, cset, hlist)
1738 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001739 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001740
Tejun Heod5c419b2014-05-16 13:22:48 -04001741 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001742 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001743
Tejun Heo2bd59d42014-02-11 11:52:49 -05001744 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001745 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001746 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001747
Tejun Heo2bd59d42014-02-11 11:52:49 -05001748destroy_root:
1749 kernfs_destroy_root(root->kf_root);
1750 root->kf_root = NULL;
1751exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001752 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001753cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001754 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001755out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001756 free_cgrp_cset_links(&tmp_links);
1757 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001758}
1759
Al Virof7e83572010-07-26 13:23:11 +04001760static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001761 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001762 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001763{
Li Zefan3a32bd72014-06-30 11:50:59 +08001764 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08001765 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001766 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001767 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001768 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001769 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08001770 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001771 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001772
1773 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001774 * The first time anyone tries to mount a cgroup, enable the list
1775 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001776 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001777 if (!use_task_css_set_links)
1778 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001779
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001780 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001781
Paul Menageddbcc7e2007-10-18 23:39:30 -07001782 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001783 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001784 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001785 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001786
Tejun Heo2bd59d42014-02-11 11:52:49 -05001787 /* look for a matching existing root */
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001788 if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) {
Tejun Heoa2dd4242014-03-19 10:23:55 -04001789 cgrp_dfl_root_visible = true;
1790 root = &cgrp_dfl_root;
1791 cgroup_get(&root->cgrp);
1792 ret = 0;
1793 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001794 }
1795
Li Zefan970317a2014-06-30 11:49:58 +08001796 /*
1797 * Destruction of cgroup root is asynchronous, so subsystems may
1798 * still be dying after the previous unmount. Let's drain the
1799 * dying subsystems. We just need to ensure that the ones
1800 * unmounted previously finish dying and don't care about new ones
1801 * starting. Testing ref liveliness is good enough.
1802 */
1803 for_each_subsys(ss, i) {
1804 if (!(opts.subsys_mask & (1 << i)) ||
1805 ss->root == &cgrp_dfl_root)
1806 continue;
1807
1808 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
1809 mutex_unlock(&cgroup_mutex);
1810 msleep(10);
1811 ret = restart_syscall();
1812 goto out_free;
1813 }
1814 cgroup_put(&ss->root->cgrp);
1815 }
1816
Tejun Heo985ed672014-03-19 10:23:53 -04001817 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001818 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001819
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001820 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001821 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001822
Paul Menage817929e2007-10-18 23:39:36 -07001823 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001824 * If we asked for a name then it must match. Also, if
1825 * name matches but sybsys_mask doesn't, we should fail.
1826 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001827 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001828 if (opts.name) {
1829 if (strcmp(opts.name, root->name))
1830 continue;
1831 name_match = true;
1832 }
Tejun Heo31261212013-06-28 17:07:30 -07001833
1834 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001835 * If we asked for subsystems (or explicitly for no
1836 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001837 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001838 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001839 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001840 if (!name_match)
1841 continue;
1842 ret = -EBUSY;
1843 goto out_unlock;
1844 }
Tejun Heo873fe092013-04-14 20:15:26 -07001845
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001846 if (root->flags ^ opts.flags)
1847 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05001848
Tejun Heo776f02f2014-02-12 09:29:50 -05001849 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08001850 * We want to reuse @root whose lifetime is governed by its
1851 * ->cgrp. Let's check whether @root is alive and keep it
1852 * that way. As cgroup_kill_sb() can happen anytime, we
1853 * want to block it by pinning the sb so that @root doesn't
1854 * get killed before mount is complete.
1855 *
1856 * With the sb pinned, tryget_live can reliably indicate
1857 * whether @root can be reused. If it's being killed,
1858 * drain it. We can use wait_queue for the wait but this
1859 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001860 */
Li Zefan3a32bd72014-06-30 11:50:59 +08001861 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
1862 if (IS_ERR(pinned_sb) ||
1863 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001864 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08001865 if (!IS_ERR_OR_NULL(pinned_sb))
1866 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05001867 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001868 ret = restart_syscall();
1869 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001870 }
1871
1872 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001873 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001874 }
1875
Tejun Heo172a2c062014-03-19 10:23:53 -04001876 /*
1877 * No such thing, create a new one. name= matching without subsys
1878 * specification is allowed for already existing hierarchies but we
1879 * can't create new one without subsys specification.
1880 */
1881 if (!opts.subsys_mask && !opts.none) {
1882 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001883 goto out_unlock;
1884 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001885
Tejun Heo172a2c062014-03-19 10:23:53 -04001886 root = kzalloc(sizeof(*root), GFP_KERNEL);
1887 if (!root) {
1888 ret = -ENOMEM;
1889 goto out_unlock;
1890 }
1891
1892 init_cgroup_root(root, &opts);
1893
Tejun Heo35585572014-02-13 06:58:38 -05001894 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001895 if (ret)
1896 cgroup_free_root(root);
1897
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001898out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001899 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001900out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001901 kfree(opts.release_agent);
1902 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001903
Tejun Heo2bd59d42014-02-11 11:52:49 -05001904 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001905 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001906
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001907 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1908 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001909 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001910 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08001911
1912 /*
1913 * If @pinned_sb, we're reusing an existing root and holding an
1914 * extra ref on its sb. Mount is complete. Put the extra ref.
1915 */
1916 if (pinned_sb) {
1917 WARN_ON(new_sb);
1918 deactivate_super(pinned_sb);
1919 }
1920
Tejun Heo2bd59d42014-02-11 11:52:49 -05001921 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001922}
1923
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001924static void cgroup_kill_sb(struct super_block *sb)
1925{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001926 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001927 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001928
Tejun Heo9d755d32014-05-14 09:15:02 -04001929 /*
1930 * If @root doesn't have any mounts or children, start killing it.
1931 * This prevents new mounts by disabling percpu_ref_tryget_live().
1932 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001933 *
1934 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001935 */
Johannes Weiner3c606d32015-01-22 10:19:43 -05001936 if (!list_empty(&root->cgrp.self.children) ||
Li Zefan1f779fb2014-06-04 16:48:15 +08001937 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001938 cgroup_put(&root->cgrp);
1939 else
1940 percpu_ref_kill(&root->cgrp.self.refcnt);
1941
Tejun Heo2bd59d42014-02-11 11:52:49 -05001942 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001943}
1944
1945static struct file_system_type cgroup_fs_type = {
1946 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001947 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001948 .kill_sb = cgroup_kill_sb,
1949};
1950
Li Zefana043e3b2008-02-23 15:24:09 -08001951/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001952 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001953 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001954 * @buf: the buffer to write the path into
1955 * @buflen: the length of the buffer
1956 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001957 * Determine @task's cgroup on the first (the one with the lowest non-zero
1958 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1959 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1960 * cgroup controller callbacks.
1961 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001962 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001963 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001964char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001965{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001966 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001967 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001968 int hierarchy_id = 1;
1969 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001970
1971 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001972 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001973
Tejun Heo913ffdb2013-07-11 16:34:48 -07001974 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1975
Tejun Heo857a2be2013-04-14 20:50:08 -07001976 if (root) {
1977 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001978 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001979 } else {
1980 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001981 if (strlcpy(buf, "/", buflen) < buflen)
1982 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001983 }
1984
Tejun Heo96d365e2014-02-13 06:58:40 -05001985 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001986 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001987 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001988}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001989EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001990
Tejun Heob3dc0942014-02-25 10:04:01 -05001991/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001992struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001993 /* the src and dst cset list running through cset->mg_node */
1994 struct list_head src_csets;
1995 struct list_head dst_csets;
1996
1997 /*
1998 * Fields for cgroup_taskset_*() iteration.
1999 *
2000 * Before migration is committed, the target migration tasks are on
2001 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
2002 * the csets on ->dst_csets. ->csets point to either ->src_csets
2003 * or ->dst_csets depending on whether migration is committed.
2004 *
2005 * ->cur_csets and ->cur_task point to the current task position
2006 * during iteration.
2007 */
2008 struct list_head *csets;
2009 struct css_set *cur_cset;
2010 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002011};
2012
2013/**
2014 * cgroup_taskset_first - reset taskset and return the first task
2015 * @tset: taskset of interest
2016 *
2017 * @tset iteration is initialized and the first task is returned.
2018 */
2019struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
2020{
Tejun Heob3dc0942014-02-25 10:04:01 -05002021 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2022 tset->cur_task = NULL;
2023
2024 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002025}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002026
2027/**
2028 * cgroup_taskset_next - iterate to the next task in taskset
2029 * @tset: taskset of interest
2030 *
2031 * Return the next task in @tset. Iteration must have been initialized
2032 * with cgroup_taskset_first().
2033 */
2034struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
2035{
Tejun Heob3dc0942014-02-25 10:04:01 -05002036 struct css_set *cset = tset->cur_cset;
2037 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002038
Tejun Heob3dc0942014-02-25 10:04:01 -05002039 while (&cset->mg_node != tset->csets) {
2040 if (!task)
2041 task = list_first_entry(&cset->mg_tasks,
2042 struct task_struct, cg_list);
2043 else
2044 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002045
Tejun Heob3dc0942014-02-25 10:04:01 -05002046 if (&task->cg_list != &cset->mg_tasks) {
2047 tset->cur_cset = cset;
2048 tset->cur_task = task;
2049 return task;
2050 }
2051
2052 cset = list_next_entry(cset, mg_node);
2053 task = NULL;
2054 }
2055
2056 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002057}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002058
2059/**
Ben Blum74a11662011-05-26 16:25:20 -07002060 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02002061 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002062 * @tsk: the task being migrated
2063 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07002064 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002065 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07002066 */
Tejun Heo5abb8852013-06-12 21:04:49 -07002067static void cgroup_task_migrate(struct cgroup *old_cgrp,
2068 struct task_struct *tsk,
2069 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07002070{
Tejun Heo5abb8852013-06-12 21:04:49 -07002071 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07002072
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002073 lockdep_assert_held(&cgroup_mutex);
2074 lockdep_assert_held(&css_set_rwsem);
2075
Ben Blum74a11662011-05-26 16:25:20 -07002076 /*
Tejun Heod59cfc02015-05-13 16:35:17 -04002077 * We are synchronized through cgroup_threadgroup_rwsem against
2078 * PF_EXITING setting such that we can't race against cgroup_exit()
2079 * changing the css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07002080 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01002081 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07002082 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07002083
Tejun Heob3dc0942014-02-25 10:04:01 -05002084 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07002085 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002086
Tejun Heo1b9aba42014-03-19 17:43:21 -04002087 /*
2088 * Use move_tail so that cgroup_taskset_first() still returns the
2089 * leader after migration. This works because cgroup_migrate()
2090 * ensures that the dst_cset of the leader is the first on the
2091 * tset's dst_csets list.
2092 */
2093 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07002094
2095 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07002096 * We just gained a reference on old_cset by taking it from the
2097 * task. As trading it for new_cset is protected by cgroup_mutex,
2098 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07002099 */
Zefan Lia25eb522014-09-19 16:51:00 +08002100 put_css_set_locked(old_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002101}
2102
Li Zefana043e3b2008-02-23 15:24:09 -08002103/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002104 * cgroup_migrate_finish - cleanup after attach
2105 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002106 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002107 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2108 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002109 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002110static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002111{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002112 struct css_set *cset, *tmp_cset;
2113
2114 lockdep_assert_held(&cgroup_mutex);
2115
2116 down_write(&css_set_rwsem);
2117 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2118 cset->mg_src_cgrp = NULL;
2119 cset->mg_dst_cset = NULL;
2120 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002121 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002122 }
2123 up_write(&css_set_rwsem);
2124}
2125
2126/**
2127 * cgroup_migrate_add_src - add a migration source css_set
2128 * @src_cset: the source css_set to add
2129 * @dst_cgrp: the destination cgroup
2130 * @preloaded_csets: list of preloaded css_sets
2131 *
2132 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2133 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2134 * up by cgroup_migrate_finish().
2135 *
Tejun Heod59cfc02015-05-13 16:35:17 -04002136 * This function may be called without holding cgroup_threadgroup_rwsem
2137 * even if the target is a process. Threads may be created and destroyed
2138 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2139 * into play and the preloaded css_sets are guaranteed to cover all
2140 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002141 */
2142static void cgroup_migrate_add_src(struct css_set *src_cset,
2143 struct cgroup *dst_cgrp,
2144 struct list_head *preloaded_csets)
2145{
2146 struct cgroup *src_cgrp;
2147
2148 lockdep_assert_held(&cgroup_mutex);
2149 lockdep_assert_held(&css_set_rwsem);
2150
2151 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2152
Tejun Heo1958d2d2014-02-25 10:04:03 -05002153 if (!list_empty(&src_cset->mg_preload_node))
2154 return;
2155
2156 WARN_ON(src_cset->mg_src_cgrp);
2157 WARN_ON(!list_empty(&src_cset->mg_tasks));
2158 WARN_ON(!list_empty(&src_cset->mg_node));
2159
2160 src_cset->mg_src_cgrp = src_cgrp;
2161 get_css_set(src_cset);
2162 list_add(&src_cset->mg_preload_node, preloaded_csets);
2163}
2164
2165/**
2166 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002167 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002168 * @preloaded_csets: list of preloaded source css_sets
2169 *
2170 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2171 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002172 * pins all destination css_sets, links each to its source, and append them
2173 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2174 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002175 *
2176 * This function must be called after cgroup_migrate_add_src() has been
2177 * called on each migration source css_set. After migration is performed
2178 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2179 * @preloaded_csets.
2180 */
2181static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2182 struct list_head *preloaded_csets)
2183{
2184 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002185 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002186
2187 lockdep_assert_held(&cgroup_mutex);
2188
Tejun Heof8f22e52014-04-23 11:13:16 -04002189 /*
2190 * Except for the root, child_subsys_mask must be zero for a cgroup
2191 * with tasks so that child cgroups don't compete against tasks.
2192 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002193 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002194 dst_cgrp->child_subsys_mask)
2195 return -EBUSY;
2196
Tejun Heo1958d2d2014-02-25 10:04:03 -05002197 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002198 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002199 struct css_set *dst_cset;
2200
Tejun Heof817de92014-04-23 11:13:16 -04002201 dst_cset = find_css_set(src_cset,
2202 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002203 if (!dst_cset)
2204 goto err;
2205
2206 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002207
2208 /*
2209 * If src cset equals dst, it's noop. Drop the src.
2210 * cgroup_migrate() will skip the cset too. Note that we
2211 * can't handle src == dst as some nodes are used by both.
2212 */
2213 if (src_cset == dst_cset) {
2214 src_cset->mg_src_cgrp = NULL;
2215 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002216 put_css_set(src_cset);
2217 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002218 continue;
2219 }
2220
Tejun Heo1958d2d2014-02-25 10:04:03 -05002221 src_cset->mg_dst_cset = dst_cset;
2222
2223 if (list_empty(&dst_cset->mg_preload_node))
2224 list_add(&dst_cset->mg_preload_node, &csets);
2225 else
Zefan Lia25eb522014-09-19 16:51:00 +08002226 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002227 }
2228
Tejun Heof817de92014-04-23 11:13:16 -04002229 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002230 return 0;
2231err:
2232 cgroup_migrate_finish(&csets);
2233 return -ENOMEM;
2234}
2235
2236/**
2237 * cgroup_migrate - migrate a process or task to a cgroup
2238 * @cgrp: the destination cgroup
2239 * @leader: the leader of the process or the task to migrate
2240 * @threadgroup: whether @leader points to the whole process or a single task
2241 *
2242 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
Tejun Heod59cfc02015-05-13 16:35:17 -04002243 * process, the caller must be holding cgroup_threadgroup_rwsem. The
Tejun Heo1958d2d2014-02-25 10:04:03 -05002244 * caller is also responsible for invoking cgroup_migrate_add_src() and
2245 * cgroup_migrate_prepare_dst() on the targets before invoking this
2246 * function and following up with cgroup_migrate_finish().
2247 *
2248 * As long as a controller's ->can_attach() doesn't fail, this function is
2249 * guaranteed to succeed. This means that, excluding ->can_attach()
2250 * failure, when migrating multiple targets, the success or failure can be
2251 * decided for all targets by invoking group_migrate_prepare_dst() before
2252 * actually starting migrating.
2253 */
2254static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2255 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002256{
Tejun Heob3dc0942014-02-25 10:04:01 -05002257 struct cgroup_taskset tset = {
2258 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2259 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2260 .csets = &tset.src_csets,
2261 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002262 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002263 struct css_set *cset, *tmp_cset;
2264 struct task_struct *task, *tmp_task;
2265 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002266
2267 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002268 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2269 * already PF_EXITING could be freed from underneath us unless we
2270 * take an rcu_read_lock.
2271 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002272 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002273 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002274 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002275 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002276 /* @task either already exited or can't exit until the end */
2277 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002278 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002279
Tejun Heoeaf797a2014-02-25 10:04:03 -05002280 /* leave @task alone if post_fork() hasn't linked it yet */
2281 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002282 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002283
Tejun Heob3dc0942014-02-25 10:04:01 -05002284 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002285 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002286 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002287
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002288 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002289 * cgroup_taskset_first() must always return the leader.
2290 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002291 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002292 list_move_tail(&task->cg_list, &cset->mg_tasks);
2293 if (list_empty(&cset->mg_node))
2294 list_add_tail(&cset->mg_node, &tset.src_csets);
2295 if (list_empty(&cset->mg_dst_cset->mg_node))
2296 list_move_tail(&cset->mg_dst_cset->mg_node,
2297 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002298 next:
Li Zefan081aa452013-03-13 09:17:09 +08002299 if (!threadgroup)
2300 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002301 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002302 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002303 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002304
Tejun Heo134d3372011-12-12 18:12:21 -08002305 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002306 if (list_empty(&tset.src_csets))
2307 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002308
Tejun Heo1958d2d2014-02-25 10:04:03 -05002309 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002310 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002311 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002312 ret = css->ss->can_attach(css, &tset);
2313 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002314 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002315 goto out_cancel_attach;
2316 }
2317 }
Ben Blum74a11662011-05-26 16:25:20 -07002318 }
2319
2320 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002321 * Now that we're guaranteed success, proceed to move all tasks to
2322 * the new cgroup. There are no failure cases after here, so this
2323 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002324 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002325 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002326 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2327 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2328 cgroup_task_migrate(cset->mg_src_cgrp, task,
2329 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002330 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002331 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002332
2333 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002334 * Migration is committed, all target tasks are now on dst_csets.
2335 * Nothing is sensitive to fork() after this point. Notify
2336 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002337 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002338 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002339
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002340 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002341 if (css->ss->attach)
2342 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002343
Tejun Heo9db8de32014-02-13 06:58:43 -05002344 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002345 goto out_release_tset;
2346
Ben Blum74a11662011-05-26 16:25:20 -07002347out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002348 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002349 if (css == failed_css)
2350 break;
2351 if (css->ss->cancel_attach)
2352 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002353 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002354out_release_tset:
2355 down_write(&css_set_rwsem);
2356 list_splice_init(&tset.dst_csets, &tset.src_csets);
2357 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002358 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002359 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002360 }
2361 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002362 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002363}
2364
Tejun Heo1958d2d2014-02-25 10:04:03 -05002365/**
2366 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2367 * @dst_cgrp: the cgroup to attach to
2368 * @leader: the task or the leader of the threadgroup to be attached
2369 * @threadgroup: attach the whole threadgroup?
2370 *
Tejun Heod59cfc02015-05-13 16:35:17 -04002371 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002372 */
2373static int cgroup_attach_task(struct cgroup *dst_cgrp,
2374 struct task_struct *leader, bool threadgroup)
2375{
2376 LIST_HEAD(preloaded_csets);
2377 struct task_struct *task;
2378 int ret;
2379
2380 /* look up all src csets */
2381 down_read(&css_set_rwsem);
2382 rcu_read_lock();
2383 task = leader;
2384 do {
2385 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2386 &preloaded_csets);
2387 if (!threadgroup)
2388 break;
2389 } while_each_thread(leader, task);
2390 rcu_read_unlock();
2391 up_read(&css_set_rwsem);
2392
2393 /* prepare dst csets and commit */
2394 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2395 if (!ret)
2396 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2397
2398 cgroup_migrate_finish(&preloaded_csets);
2399 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002400}
2401
Tejun Heo187fe842015-06-18 16:54:28 -04002402static int cgroup_procs_write_permission(struct task_struct *task,
2403 struct cgroup *dst_cgrp,
2404 struct kernfs_open_file *of)
Tejun Heodedf22e2015-06-18 16:54:28 -04002405{
2406 const struct cred *cred = current_cred();
2407 const struct cred *tcred = get_task_cred(task);
2408 int ret = 0;
2409
2410 /*
2411 * even if we're attaching all tasks in the thread group, we only
2412 * need to check permissions on one of them.
2413 */
2414 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2415 !uid_eq(cred->euid, tcred->uid) &&
2416 !uid_eq(cred->euid, tcred->suid))
2417 ret = -EACCES;
2418
Tejun Heo187fe842015-06-18 16:54:28 -04002419 if (!ret && cgroup_on_dfl(dst_cgrp)) {
2420 struct super_block *sb = of->file->f_path.dentry->d_sb;
2421 struct cgroup *cgrp;
2422 struct inode *inode;
2423
2424 down_read(&css_set_rwsem);
2425 cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
2426 up_read(&css_set_rwsem);
2427
2428 while (!cgroup_is_descendant(dst_cgrp, cgrp))
2429 cgrp = cgroup_parent(cgrp);
2430
2431 ret = -ENOMEM;
2432 inode = kernfs_get_inode(sb, cgrp->procs_kn);
2433 if (inode) {
2434 ret = inode_permission(inode, MAY_WRITE);
2435 iput(inode);
2436 }
2437 }
2438
Tejun Heodedf22e2015-06-18 16:54:28 -04002439 put_cred(tcred);
2440 return ret;
2441}
2442
Ben Blum74a11662011-05-26 16:25:20 -07002443/*
2444 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002445 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002446 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002447 */
Tejun Heoacbef752014-05-13 12:16:22 -04002448static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2449 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002450{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002451 struct task_struct *tsk;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002452 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002453 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002454 int ret;
2455
Tejun Heoacbef752014-05-13 12:16:22 -04002456 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2457 return -EINVAL;
2458
Tejun Heoe76ecae2014-05-13 12:19:23 -04002459 cgrp = cgroup_kn_lock_live(of->kn);
2460 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002461 return -ENODEV;
2462
Tejun Heob5ba75b2015-05-13 16:35:18 -04002463 percpu_down_write(&cgroup_threadgroup_rwsem);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002464 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002465 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002466 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002467 if (!tsk) {
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002468 ret = -ESRCH;
Tejun Heob5ba75b2015-05-13 16:35:18 -04002469 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002470 }
Tejun Heodedf22e2015-06-18 16:54:28 -04002471 } else {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002472 tsk = current;
Tejun Heodedf22e2015-06-18 16:54:28 -04002473 }
Tejun Heocd3d0952011-12-12 18:12:21 -08002474
2475 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002476 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002477
2478 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002479 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002480 * trapped in a cpuset, or RT worker may be born in a cgroup
2481 * with no rt_runtime allocated. Just say no.
2482 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002483 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002484 ret = -EINVAL;
Tejun Heob5ba75b2015-05-13 16:35:18 -04002485 goto out_unlock_rcu;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002486 }
2487
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002488 get_task_struct(tsk);
2489 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002490
Tejun Heo187fe842015-06-18 16:54:28 -04002491 ret = cgroup_procs_write_permission(tsk, cgrp, of);
Tejun Heodedf22e2015-06-18 16:54:28 -04002492 if (!ret)
2493 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
Li Zefan081aa452013-03-13 09:17:09 +08002494
Paul Menagebbcb81d2007-10-18 23:39:32 -07002495 put_task_struct(tsk);
Tejun Heob5ba75b2015-05-13 16:35:18 -04002496 goto out_unlock_threadgroup;
2497
2498out_unlock_rcu:
2499 rcu_read_unlock();
2500out_unlock_threadgroup:
2501 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002502 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002503 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002504}
2505
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002506/**
2507 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2508 * @from: attach to all cgroups of a given task
2509 * @tsk: the task to be attached
2510 */
2511int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2512{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002513 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002514 int retval = 0;
2515
Tejun Heo47cfcd02013-04-07 09:29:51 -07002516 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002517 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002518 struct cgroup *from_cgrp;
2519
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002520 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002521 continue;
2522
Tejun Heo96d365e2014-02-13 06:58:40 -05002523 down_read(&css_set_rwsem);
2524 from_cgrp = task_cgroup_from_root(from, root);
2525 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002526
Li Zefan6f4b7e62013-07-31 16:18:36 +08002527 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002528 if (retval)
2529 break;
2530 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002531 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002532
2533 return retval;
2534}
2535EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2536
Tejun Heoacbef752014-05-13 12:16:22 -04002537static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2538 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002539{
Tejun Heoacbef752014-05-13 12:16:22 -04002540 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002541}
2542
Tejun Heoacbef752014-05-13 12:16:22 -04002543static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2544 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002545{
Tejun Heoacbef752014-05-13 12:16:22 -04002546 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002547}
2548
Tejun Heo451af502014-05-13 12:16:21 -04002549static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2550 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002551{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002552 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002553
Tejun Heoe76ecae2014-05-13 12:19:23 -04002554 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2555
2556 cgrp = cgroup_kn_lock_live(of->kn);
2557 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002558 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002559 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002560 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2561 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002562 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002563 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002564 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002565}
2566
Tejun Heo2da8ca82013-12-05 12:28:04 -05002567static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002568{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002569 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002570
Tejun Heo46cfeb02014-05-13 12:11:00 -04002571 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002572 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002573 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002574 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002575 return 0;
2576}
2577
Tejun Heo2da8ca82013-12-05 12:28:04 -05002578static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002579{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002580 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002581 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002582}
2583
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002584static void cgroup_print_ss_mask(struct seq_file *seq, unsigned long ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002585{
2586 struct cgroup_subsys *ss;
2587 bool printed = false;
2588 int ssid;
2589
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002590 for_each_subsys_which(ss, ssid, &ss_mask) {
2591 if (printed)
2592 seq_putc(seq, ' ');
2593 seq_printf(seq, "%s", ss->name);
2594 printed = true;
Tejun Heof8f22e52014-04-23 11:13:16 -04002595 }
2596 if (printed)
2597 seq_putc(seq, '\n');
2598}
2599
2600/* show controllers which are currently attached to the default hierarchy */
2601static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2602{
2603 struct cgroup *cgrp = seq_css(seq)->cgroup;
2604
Tejun Heo5533e012014-05-14 19:33:07 -04002605 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2606 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002607 return 0;
2608}
2609
2610/* show controllers which are enabled from the parent */
2611static int cgroup_controllers_show(struct seq_file *seq, void *v)
2612{
2613 struct cgroup *cgrp = seq_css(seq)->cgroup;
2614
Tejun Heo667c2492014-07-08 18:02:56 -04002615 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002616 return 0;
2617}
2618
2619/* show controllers which are enabled for a given cgroup's children */
2620static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2621{
2622 struct cgroup *cgrp = seq_css(seq)->cgroup;
2623
Tejun Heo667c2492014-07-08 18:02:56 -04002624 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002625 return 0;
2626}
2627
2628/**
2629 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2630 * @cgrp: root of the subtree to update csses for
2631 *
2632 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2633 * css associations need to be updated accordingly. This function looks up
2634 * all css_sets which are attached to the subtree, creates the matching
2635 * updated css_sets and migrates the tasks to the new ones.
2636 */
2637static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2638{
2639 LIST_HEAD(preloaded_csets);
2640 struct cgroup_subsys_state *css;
2641 struct css_set *src_cset;
2642 int ret;
2643
Tejun Heof8f22e52014-04-23 11:13:16 -04002644 lockdep_assert_held(&cgroup_mutex);
2645
Tejun Heob5ba75b2015-05-13 16:35:18 -04002646 percpu_down_write(&cgroup_threadgroup_rwsem);
2647
Tejun Heof8f22e52014-04-23 11:13:16 -04002648 /* look up all csses currently attached to @cgrp's subtree */
2649 down_read(&css_set_rwsem);
2650 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2651 struct cgrp_cset_link *link;
2652
2653 /* self is not affected by child_subsys_mask change */
2654 if (css->cgroup == cgrp)
2655 continue;
2656
2657 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2658 cgroup_migrate_add_src(link->cset, cgrp,
2659 &preloaded_csets);
2660 }
2661 up_read(&css_set_rwsem);
2662
2663 /* NULL dst indicates self on default hierarchy */
2664 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2665 if (ret)
2666 goto out_finish;
2667
2668 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2669 struct task_struct *last_task = NULL, *task;
2670
2671 /* src_csets precede dst_csets, break on the first dst_cset */
2672 if (!src_cset->mg_src_cgrp)
2673 break;
2674
2675 /*
2676 * All tasks in src_cset need to be migrated to the
2677 * matching dst_cset. Empty it process by process. We
2678 * walk tasks but migrate processes. The leader might even
2679 * belong to a different cset but such src_cset would also
2680 * be among the target src_csets because the default
2681 * hierarchy enforces per-process membership.
2682 */
2683 while (true) {
2684 down_read(&css_set_rwsem);
2685 task = list_first_entry_or_null(&src_cset->tasks,
2686 struct task_struct, cg_list);
2687 if (task) {
2688 task = task->group_leader;
2689 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2690 get_task_struct(task);
2691 }
2692 up_read(&css_set_rwsem);
2693
2694 if (!task)
2695 break;
2696
2697 /* guard against possible infinite loop */
2698 if (WARN(last_task == task,
2699 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2700 goto out_finish;
2701 last_task = task;
2702
Tejun Heof8f22e52014-04-23 11:13:16 -04002703 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2704
Tejun Heof8f22e52014-04-23 11:13:16 -04002705 put_task_struct(task);
2706
2707 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2708 goto out_finish;
2709 }
2710 }
2711
2712out_finish:
2713 cgroup_migrate_finish(&preloaded_csets);
Tejun Heob5ba75b2015-05-13 16:35:18 -04002714 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002715 return ret;
2716}
2717
2718/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002719static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2720 char *buf, size_t nbytes,
2721 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002722{
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002723 unsigned long enable = 0, disable = 0;
2724 unsigned long css_enable, css_disable, old_sc, new_sc, old_ss, new_ss;
Tejun Heoa9746d82014-05-13 12:19:22 -04002725 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002726 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002727 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002728 int ssid, ret;
2729
2730 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002731 * Parse input - space separated list of subsystem names prefixed
2732 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002733 */
Tejun Heo451af502014-05-13 12:16:21 -04002734 buf = strstrip(buf);
2735 while ((tok = strsep(&buf, " "))) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002736 unsigned long tmp_ss_mask = ~cgrp_dfl_root_inhibit_ss_mask;
2737
Tejun Heod37167a2014-05-13 12:10:59 -04002738 if (tok[0] == '\0')
2739 continue;
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002740 for_each_subsys_which(ss, ssid, &tmp_ss_mask) {
2741 if (ss->disabled || strcmp(tok + 1, ss->name))
Tejun Heof8f22e52014-04-23 11:13:16 -04002742 continue;
2743
2744 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002745 enable |= 1 << ssid;
2746 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002747 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002748 disable |= 1 << ssid;
2749 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002750 } else {
2751 return -EINVAL;
2752 }
2753 break;
2754 }
2755 if (ssid == CGROUP_SUBSYS_COUNT)
2756 return -EINVAL;
2757 }
2758
Tejun Heoa9746d82014-05-13 12:19:22 -04002759 cgrp = cgroup_kn_lock_live(of->kn);
2760 if (!cgrp)
2761 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002762
2763 for_each_subsys(ss, ssid) {
2764 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002765 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002766 enable &= ~(1 << ssid);
2767 continue;
2768 }
2769
Tejun Heoc29adf22014-07-08 18:02:56 -04002770 /* unavailable or not enabled on the parent? */
2771 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2772 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002773 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002774 ret = -ENOENT;
2775 goto out_unlock;
2776 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002777 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002778 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002779 disable &= ~(1 << ssid);
2780 continue;
2781 }
2782
2783 /* a child has it enabled? */
2784 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002785 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002786 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002787 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002788 }
2789 }
2790 }
2791 }
2792
2793 if (!enable && !disable) {
2794 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002795 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002796 }
2797
2798 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002799 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002800 * with tasks so that child cgroups don't compete against tasks.
2801 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002802 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002803 ret = -EBUSY;
2804 goto out_unlock;
2805 }
2806
2807 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002808 * Update subsys masks and calculate what needs to be done. More
2809 * subsystems than specified may need to be enabled or disabled
2810 * depending on subsystem dependencies.
2811 */
Tejun Heo755bf5e2014-11-18 02:49:50 -05002812 old_sc = cgrp->subtree_control;
2813 old_ss = cgrp->child_subsys_mask;
2814 new_sc = (old_sc | enable) & ~disable;
2815 new_ss = cgroup_calc_child_subsys_mask(cgrp, new_sc);
Tejun Heoc29adf22014-07-08 18:02:56 -04002816
Tejun Heo755bf5e2014-11-18 02:49:50 -05002817 css_enable = ~old_ss & new_ss;
2818 css_disable = old_ss & ~new_ss;
Tejun Heof63070d2014-07-08 18:02:57 -04002819 enable |= css_enable;
2820 disable |= css_disable;
2821
Tejun Heodb6e3052014-11-18 02:49:51 -05002822 /*
2823 * Because css offlining is asynchronous, userland might try to
2824 * re-enable the same controller while the previous instance is
2825 * still around. In such cases, wait till it's gone using
2826 * offline_waitq.
2827 */
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002828 for_each_subsys_which(ss, ssid, &css_enable) {
Tejun Heodb6e3052014-11-18 02:49:51 -05002829 cgroup_for_each_live_child(child, cgrp) {
2830 DEFINE_WAIT(wait);
2831
2832 if (!cgroup_css(child, ss))
2833 continue;
2834
2835 cgroup_get(child);
2836 prepare_to_wait(&child->offline_waitq, &wait,
2837 TASK_UNINTERRUPTIBLE);
2838 cgroup_kn_unlock(of->kn);
2839 schedule();
2840 finish_wait(&child->offline_waitq, &wait);
2841 cgroup_put(child);
2842
2843 return restart_syscall();
2844 }
2845 }
2846
Tejun Heo755bf5e2014-11-18 02:49:50 -05002847 cgrp->subtree_control = new_sc;
2848 cgrp->child_subsys_mask = new_ss;
2849
Tejun Heof63070d2014-07-08 18:02:57 -04002850 /*
2851 * Create new csses or make the existing ones visible. A css is
2852 * created invisible if it's being implicitly enabled through
2853 * dependency. An invisible css is made visible when the userland
2854 * explicitly enables it.
Tejun Heof8f22e52014-04-23 11:13:16 -04002855 */
2856 for_each_subsys(ss, ssid) {
2857 if (!(enable & (1 << ssid)))
2858 continue;
2859
2860 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04002861 if (css_enable & (1 << ssid))
2862 ret = create_css(child, ss,
2863 cgrp->subtree_control & (1 << ssid));
2864 else
2865 ret = cgroup_populate_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002866 if (ret)
2867 goto err_undo_css;
2868 }
2869 }
2870
Tejun Heoc29adf22014-07-08 18:02:56 -04002871 /*
2872 * At this point, cgroup_e_css() results reflect the new csses
2873 * making the following cgroup_update_dfl_csses() properly update
2874 * css associations of all tasks in the subtree.
2875 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002876 ret = cgroup_update_dfl_csses(cgrp);
2877 if (ret)
2878 goto err_undo_css;
2879
Tejun Heof63070d2014-07-08 18:02:57 -04002880 /*
2881 * All tasks are migrated out of disabled csses. Kill or hide
2882 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002883 * disabled while other subsystems are still depending on it. The
2884 * css must not actively control resources and be in the vanilla
2885 * state if it's made visible again later. Controllers which may
2886 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04002887 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002888 for_each_subsys(ss, ssid) {
2889 if (!(disable & (1 << ssid)))
2890 continue;
2891
Tejun Heof63070d2014-07-08 18:02:57 -04002892 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002893 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2894
2895 if (css_disable & (1 << ssid)) {
2896 kill_css(css);
2897 } else {
Tejun Heof63070d2014-07-08 18:02:57 -04002898 cgroup_clear_dir(child, 1 << ssid);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002899 if (ss->css_reset)
2900 ss->css_reset(css);
2901 }
Tejun Heof63070d2014-07-08 18:02:57 -04002902 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002903 }
2904
Tejun Heo56c807b2014-11-18 02:49:51 -05002905 /*
2906 * The effective csses of all the descendants (excluding @cgrp) may
2907 * have changed. Subsystems can optionally subscribe to this event
2908 * by implementing ->css_e_css_changed() which is invoked if any of
2909 * the effective csses seen from the css's cgroup may have changed.
2910 */
2911 for_each_subsys(ss, ssid) {
2912 struct cgroup_subsys_state *this_css = cgroup_css(cgrp, ss);
2913 struct cgroup_subsys_state *css;
2914
2915 if (!ss->css_e_css_changed || !this_css)
2916 continue;
2917
2918 css_for_each_descendant_pre(css, this_css)
2919 if (css != this_css)
2920 ss->css_e_css_changed(css);
2921 }
2922
Tejun Heof8f22e52014-04-23 11:13:16 -04002923 kernfs_activate(cgrp->kn);
2924 ret = 0;
2925out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002926 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002927 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002928
2929err_undo_css:
Tejun Heo755bf5e2014-11-18 02:49:50 -05002930 cgrp->subtree_control = old_sc;
2931 cgrp->child_subsys_mask = old_ss;
Tejun Heof8f22e52014-04-23 11:13:16 -04002932
2933 for_each_subsys(ss, ssid) {
2934 if (!(enable & (1 << ssid)))
2935 continue;
2936
2937 cgroup_for_each_live_child(child, cgrp) {
2938 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04002939
2940 if (!css)
2941 continue;
2942
2943 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04002944 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04002945 else
2946 cgroup_clear_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002947 }
2948 }
2949 goto out_unlock;
2950}
2951
Tejun Heo842b5972014-04-25 18:28:02 -04002952static int cgroup_populated_show(struct seq_file *seq, void *v)
2953{
2954 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2955 return 0;
2956}
2957
Tejun Heo2bd59d42014-02-11 11:52:49 -05002958static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2959 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002960{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002961 struct cgroup *cgrp = of->kn->parent->priv;
2962 struct cftype *cft = of->kn->priv;
2963 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002964 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002965
Tejun Heob4168642014-05-13 12:16:21 -04002966 if (cft->write)
2967 return cft->write(of, buf, nbytes, off);
2968
Tejun Heo2bd59d42014-02-11 11:52:49 -05002969 /*
2970 * kernfs guarantees that a file isn't deleted with operations in
2971 * flight, which means that the matching css is and stays alive and
2972 * doesn't need to be pinned. The RCU locking is not necessary
2973 * either. It's just for the convenience of using cgroup_css().
2974 */
2975 rcu_read_lock();
2976 css = cgroup_css(cgrp, cft->ss);
2977 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002978
Tejun Heo451af502014-05-13 12:16:21 -04002979 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002980 unsigned long long v;
2981 ret = kstrtoull(buf, 0, &v);
2982 if (!ret)
2983 ret = cft->write_u64(css, cft, v);
2984 } else if (cft->write_s64) {
2985 long long v;
2986 ret = kstrtoll(buf, 0, &v);
2987 if (!ret)
2988 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002989 } else {
2990 ret = -EINVAL;
2991 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002992
Tejun Heoa742c592013-12-05 12:28:03 -05002993 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002994}
2995
Tejun Heo6612f052013-12-05 12:28:04 -05002996static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002997{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002998 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002999}
3000
3001static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
3002{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003003 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003004}
3005
3006static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3007{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003008 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07003009}
3010
3011static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3012{
Tejun Heo7da11272013-12-05 12:28:04 -05003013 struct cftype *cft = seq_cft(m);
3014 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08003015
Tejun Heo2da8ca82013-12-05 12:28:04 -05003016 if (cft->seq_show)
3017 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07003018
Tejun Heo896f5192013-12-05 12:28:04 -05003019 if (cft->read_u64)
3020 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3021 else if (cft->read_s64)
3022 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3023 else
3024 return -EINVAL;
3025 return 0;
Paul Menage91796562008-04-29 01:00:01 -07003026}
3027
Tejun Heo2bd59d42014-02-11 11:52:49 -05003028static struct kernfs_ops cgroup_kf_single_ops = {
3029 .atomic_write_len = PAGE_SIZE,
3030 .write = cgroup_file_write,
3031 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07003032};
3033
Tejun Heo2bd59d42014-02-11 11:52:49 -05003034static struct kernfs_ops cgroup_kf_ops = {
3035 .atomic_write_len = PAGE_SIZE,
3036 .write = cgroup_file_write,
3037 .seq_start = cgroup_seqfile_start,
3038 .seq_next = cgroup_seqfile_next,
3039 .seq_stop = cgroup_seqfile_stop,
3040 .seq_show = cgroup_seqfile_show,
3041};
Paul Menageddbcc7e2007-10-18 23:39:30 -07003042
3043/*
3044 * cgroup_rename - Only allow simple rename of directories in place.
3045 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003046static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
3047 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003048{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003049 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08003050 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08003051
Tejun Heo2bd59d42014-02-11 11:52:49 -05003052 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003053 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003054 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003055 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08003056
Tejun Heo6db8e852013-06-14 11:18:22 -07003057 /*
3058 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04003059 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07003060 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003061 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07003062 return -EPERM;
3063
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003064 /*
Tejun Heo8353da12014-05-13 12:19:23 -04003065 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003066 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04003067 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003068 */
3069 kernfs_break_active_protection(new_parent);
3070 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08003071
Tejun Heo2bd59d42014-02-11 11:52:49 -05003072 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003073
Tejun Heo2bd59d42014-02-11 11:52:49 -05003074 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08003075
Tejun Heo2bd59d42014-02-11 11:52:49 -05003076 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003077
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003078 kernfs_unbreak_active_protection(kn);
3079 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003080 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07003081}
3082
Tejun Heo49957f82014-04-07 16:44:47 -04003083/* set uid and gid of cgroup dirs and files to that of the creator */
3084static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3085{
3086 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3087 .ia_uid = current_fsuid(),
3088 .ia_gid = current_fsgid(), };
3089
3090 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3091 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3092 return 0;
3093
3094 return kernfs_setattr(kn, &iattr);
3095}
3096
Tejun Heo2bb566c2013-08-08 20:11:23 -04003097static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003098{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003099 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003100 struct kernfs_node *kn;
3101 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003102 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003103
Tejun Heo2bd59d42014-02-11 11:52:49 -05003104#ifdef CONFIG_DEBUG_LOCK_ALLOC
3105 key = &cft->lockdep_key;
3106#endif
3107 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3108 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003109 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003110 if (IS_ERR(kn))
3111 return PTR_ERR(kn);
3112
3113 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003114 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003115 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003116 return ret;
3117 }
3118
Tejun Heo187fe842015-06-18 16:54:28 -04003119 if (cft->write == cgroup_procs_write)
3120 cgrp->procs_kn = kn;
3121 else if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04003122 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04003123 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003124}
3125
Tejun Heob1f28d32013-06-28 16:24:10 -07003126/**
3127 * cgroup_addrm_files - add or remove files to a cgroup directory
3128 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07003129 * @cfts: array of cftypes to be added
3130 * @is_add: whether to add or remove
3131 *
3132 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04003133 * For removals, this function never fails. If addition fails, this
3134 * function doesn't remove files already added. The caller is responsible
3135 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07003136 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04003137static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
3138 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003139{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003140 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07003141 int ret;
3142
Tejun Heo01f64742014-05-13 12:19:23 -04003143 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003144
3145 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003146 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003147 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003148 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003149 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003150 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003151 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003152 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003153 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003154 continue;
3155
Li Zefan2739d3c2013-01-21 18:18:33 +08003156 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04003157 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003158 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003159 pr_warn("%s: failed to add %s, err=%d\n",
3160 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07003161 return ret;
3162 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003163 } else {
3164 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003165 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003166 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003167 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003168}
3169
Tejun Heo21a2d342014-02-12 09:29:49 -05003170static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003171{
3172 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003173 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003174 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003175 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003176 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003177
Tejun Heo01f64742014-05-13 12:19:23 -04003178 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003179
Li Zefane8c82d22013-06-18 18:48:37 +08003180 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003181 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003182 struct cgroup *cgrp = css->cgroup;
3183
Li Zefane8c82d22013-06-18 18:48:37 +08003184 if (cgroup_is_dead(cgrp))
3185 continue;
3186
Tejun Heo21a2d342014-02-12 09:29:49 -05003187 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003188 if (ret)
3189 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003190 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003191
3192 if (is_add && !ret)
3193 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003194 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003195}
3196
Tejun Heo2da440a2014-02-11 11:52:48 -05003197static void cgroup_exit_cftypes(struct cftype *cfts)
3198{
3199 struct cftype *cft;
3200
Tejun Heo2bd59d42014-02-11 11:52:49 -05003201 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3202 /* free copy for custom atomic_write_len, see init_cftypes() */
3203 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3204 kfree(cft->kf_ops);
3205 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003206 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003207
3208 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003209 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003210 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003211}
3212
Tejun Heo2bd59d42014-02-11 11:52:49 -05003213static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003214{
3215 struct cftype *cft;
3216
Tejun Heo2bd59d42014-02-11 11:52:49 -05003217 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3218 struct kernfs_ops *kf_ops;
3219
Tejun Heo0adb0702014-02-12 09:29:48 -05003220 WARN_ON(cft->ss || cft->kf_ops);
3221
Tejun Heo2bd59d42014-02-11 11:52:49 -05003222 if (cft->seq_start)
3223 kf_ops = &cgroup_kf_ops;
3224 else
3225 kf_ops = &cgroup_kf_single_ops;
3226
3227 /*
3228 * Ugh... if @cft wants a custom max_write_len, we need to
3229 * make a copy of kf_ops to set its atomic_write_len.
3230 */
3231 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3232 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3233 if (!kf_ops) {
3234 cgroup_exit_cftypes(cfts);
3235 return -ENOMEM;
3236 }
3237 kf_ops->atomic_write_len = cft->max_write_len;
3238 }
3239
3240 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003241 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003242 }
3243
3244 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003245}
3246
Tejun Heo21a2d342014-02-12 09:29:49 -05003247static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3248{
Tejun Heo01f64742014-05-13 12:19:23 -04003249 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003250
3251 if (!cfts || !cfts[0].ss)
3252 return -ENOENT;
3253
3254 list_del(&cfts->node);
3255 cgroup_apply_cftypes(cfts, false);
3256 cgroup_exit_cftypes(cfts);
3257 return 0;
3258}
3259
Tejun Heo8e3f6542012-04-01 12:09:55 -07003260/**
Tejun Heo80b13582014-02-12 09:29:48 -05003261 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3262 * @cfts: zero-length name terminated array of cftypes
3263 *
3264 * Unregister @cfts. Files described by @cfts are removed from all
3265 * existing cgroups and all future cgroups won't have them either. This
3266 * function can be called anytime whether @cfts' subsys is attached or not.
3267 *
3268 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3269 * registered.
3270 */
3271int cgroup_rm_cftypes(struct cftype *cfts)
3272{
Tejun Heo21a2d342014-02-12 09:29:49 -05003273 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003274
Tejun Heo01f64742014-05-13 12:19:23 -04003275 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003276 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003277 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003278 return ret;
3279}
3280
3281/**
3282 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3283 * @ss: target cgroup subsystem
3284 * @cfts: zero-length name terminated array of cftypes
3285 *
3286 * Register @cfts to @ss. Files described by @cfts are created for all
3287 * existing cgroups to which @ss is attached and all future cgroups will
3288 * have them too. This function can be called anytime whether @ss is
3289 * attached or not.
3290 *
3291 * Returns 0 on successful registration, -errno on failure. Note that this
3292 * function currently returns 0 as long as @cfts registration is successful
3293 * even if some file creation attempts on existing cgroups fail.
3294 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003295static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003296{
Tejun Heo9ccece82013-06-28 16:24:11 -07003297 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003298
Li Zefanc731ae12014-06-05 17:16:30 +08003299 if (ss->disabled)
3300 return 0;
3301
Li Zefandc5736e2014-02-17 10:41:50 +08003302 if (!cfts || cfts[0].name[0] == '\0')
3303 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003304
Tejun Heo2bd59d42014-02-11 11:52:49 -05003305 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003306 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003307 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003308
Tejun Heo01f64742014-05-13 12:19:23 -04003309 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003310
Tejun Heo0adb0702014-02-12 09:29:48 -05003311 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003312 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003313 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003314 cgroup_rm_cftypes_locked(cfts);
3315
Tejun Heo01f64742014-05-13 12:19:23 -04003316 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003317 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003318}
Tejun Heo79578622012-04-01 12:09:56 -07003319
3320/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003321 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3322 * @ss: target cgroup subsystem
3323 * @cfts: zero-length name terminated array of cftypes
3324 *
3325 * Similar to cgroup_add_cftypes() but the added files are only used for
3326 * the default hierarchy.
3327 */
3328int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3329{
3330 struct cftype *cft;
3331
3332 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003333 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003334 return cgroup_add_cftypes(ss, cfts);
3335}
3336
3337/**
3338 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3339 * @ss: target cgroup subsystem
3340 * @cfts: zero-length name terminated array of cftypes
3341 *
3342 * Similar to cgroup_add_cftypes() but the added files are only used for
3343 * the legacy hierarchies.
3344 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003345int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3346{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003347 struct cftype *cft;
3348
Vivek Goyalfa8137b2014-08-08 11:44:03 -04003349 /*
3350 * If legacy_flies_on_dfl, we want to show the legacy files on the
3351 * dfl hierarchy but iff the target subsystem hasn't been updated
3352 * for the dfl hierarchy yet.
3353 */
3354 if (!cgroup_legacy_files_on_dfl ||
3355 ss->dfl_cftypes != ss->legacy_cftypes) {
3356 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3357 cft->flags |= __CFTYPE_NOT_ON_DFL;
3358 }
3359
Tejun Heo2cf669a2014-07-15 11:05:09 -04003360 return cgroup_add_cftypes(ss, cfts);
3361}
3362
Li Zefana043e3b2008-02-23 15:24:09 -08003363/**
3364 * cgroup_task_count - count the number of tasks in a cgroup.
3365 * @cgrp: the cgroup in question
3366 *
3367 * Return the number of tasks in the cgroup.
3368 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003369static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003370{
3371 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003372 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003373
Tejun Heo96d365e2014-02-13 06:58:40 -05003374 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003375 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3376 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003377 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003378 return count;
3379}
3380
Tejun Heo574bd9f2012-11-09 09:12:29 -08003381/**
Tejun Heo492eb212013-08-08 20:11:25 -04003382 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003383 * @pos: the current position (%NULL to initiate traversal)
3384 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003385 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003386 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003387 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003388 * that @parent and @pos are accessible. The next sibling is guaranteed to
3389 * be returned regardless of their states.
3390 *
3391 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3392 * css which finished ->css_online() is guaranteed to be visible in the
3393 * future iterations and will stay visible until the last reference is put.
3394 * A css which hasn't finished ->css_online() or already finished
3395 * ->css_offline() may show up during traversal. It's each subsystem's
3396 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003397 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003398struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3399 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003400{
Tejun Heoc2931b72014-05-16 13:22:51 -04003401 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003402
Tejun Heo8353da12014-05-13 12:19:23 -04003403 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003404
3405 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003406 * @pos could already have been unlinked from the sibling list.
3407 * Once a cgroup is removed, its ->sibling.next is no longer
3408 * updated when its next sibling changes. CSS_RELEASED is set when
3409 * @pos is taken off list, at which time its next pointer is valid,
3410 * and, as releases are serialized, the one pointed to by the next
3411 * pointer is guaranteed to not have started release yet. This
3412 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3413 * critical section, the one pointed to by its next pointer is
3414 * guaranteed to not have finished its RCU grace period even if we
3415 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003416 *
Tejun Heode3f0342014-05-16 13:22:49 -04003417 * If @pos has CSS_RELEASED set, its next pointer can't be
3418 * dereferenced; however, as each css is given a monotonically
3419 * increasing unique serial number and always appended to the
3420 * sibling list, the next one can be found by walking the parent's
3421 * children until the first css with higher serial number than
3422 * @pos's. While this path can be slower, it happens iff iteration
3423 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003424 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003425 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003426 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3427 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3428 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003429 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003430 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003431 if (next->serial_nr > pos->serial_nr)
3432 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003433 }
3434
Tejun Heo3b281af2014-04-23 11:13:15 -04003435 /*
3436 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003437 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003438 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003439 if (&next->sibling != &parent->children)
3440 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003441 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003442}
Tejun Heo53fa5262013-05-24 10:55:38 +09003443
3444/**
Tejun Heo492eb212013-08-08 20:11:25 -04003445 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003446 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003447 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003448 *
Tejun Heo492eb212013-08-08 20:11:25 -04003449 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003450 * to visit for pre-order traversal of @root's descendants. @root is
3451 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003452 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003453 * While this function requires cgroup_mutex or RCU read locking, it
3454 * doesn't require the whole traversal to be contained in a single critical
3455 * section. This function will return the correct next descendant as long
3456 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003457 *
3458 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3459 * css which finished ->css_online() is guaranteed to be visible in the
3460 * future iterations and will stay visible until the last reference is put.
3461 * A css which hasn't finished ->css_online() or already finished
3462 * ->css_offline() may show up during traversal. It's each subsystem's
3463 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003464 */
Tejun Heo492eb212013-08-08 20:11:25 -04003465struct cgroup_subsys_state *
3466css_next_descendant_pre(struct cgroup_subsys_state *pos,
3467 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003468{
Tejun Heo492eb212013-08-08 20:11:25 -04003469 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003470
Tejun Heo8353da12014-05-13 12:19:23 -04003471 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003472
Tejun Heobd8815a2013-08-08 20:11:27 -04003473 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003474 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003475 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003476
3477 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003478 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003479 if (next)
3480 return next;
3481
3482 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003483 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003484 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003485 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003486 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003487 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003488 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003489
3490 return NULL;
3491}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003492
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003493/**
Tejun Heo492eb212013-08-08 20:11:25 -04003494 * css_rightmost_descendant - return the rightmost descendant of a css
3495 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003496 *
Tejun Heo492eb212013-08-08 20:11:25 -04003497 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3498 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003499 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003500 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003501 * While this function requires cgroup_mutex or RCU read locking, it
3502 * doesn't require the whole traversal to be contained in a single critical
3503 * section. This function will return the correct rightmost descendant as
3504 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003505 */
Tejun Heo492eb212013-08-08 20:11:25 -04003506struct cgroup_subsys_state *
3507css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003508{
Tejun Heo492eb212013-08-08 20:11:25 -04003509 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003510
Tejun Heo8353da12014-05-13 12:19:23 -04003511 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003512
3513 do {
3514 last = pos;
3515 /* ->prev isn't RCU safe, walk ->next till the end */
3516 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003517 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003518 pos = tmp;
3519 } while (pos);
3520
3521 return last;
3522}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003523
Tejun Heo492eb212013-08-08 20:11:25 -04003524static struct cgroup_subsys_state *
3525css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003526{
Tejun Heo492eb212013-08-08 20:11:25 -04003527 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003528
3529 do {
3530 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003531 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003532 } while (pos);
3533
3534 return last;
3535}
3536
3537/**
Tejun Heo492eb212013-08-08 20:11:25 -04003538 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003539 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003540 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003541 *
Tejun Heo492eb212013-08-08 20:11:25 -04003542 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003543 * to visit for post-order traversal of @root's descendants. @root is
3544 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003545 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003546 * While this function requires cgroup_mutex or RCU read locking, it
3547 * doesn't require the whole traversal to be contained in a single critical
3548 * section. This function will return the correct next descendant as long
3549 * as both @pos and @cgroup are accessible and @pos is a descendant of
3550 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003551 *
3552 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3553 * css which finished ->css_online() is guaranteed to be visible in the
3554 * future iterations and will stay visible until the last reference is put.
3555 * A css which hasn't finished ->css_online() or already finished
3556 * ->css_offline() may show up during traversal. It's each subsystem's
3557 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003558 */
Tejun Heo492eb212013-08-08 20:11:25 -04003559struct cgroup_subsys_state *
3560css_next_descendant_post(struct cgroup_subsys_state *pos,
3561 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003562{
Tejun Heo492eb212013-08-08 20:11:25 -04003563 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003564
Tejun Heo8353da12014-05-13 12:19:23 -04003565 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003566
Tejun Heo58b79a92013-09-06 15:31:08 -04003567 /* if first iteration, visit leftmost descendant which may be @root */
3568 if (!pos)
3569 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003570
Tejun Heobd8815a2013-08-08 20:11:27 -04003571 /* if we visited @root, we're done */
3572 if (pos == root)
3573 return NULL;
3574
Tejun Heo574bd9f2012-11-09 09:12:29 -08003575 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003576 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003577 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003578 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003579
3580 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003581 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003582}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003583
Tejun Heof3d46502014-05-16 13:22:52 -04003584/**
3585 * css_has_online_children - does a css have online children
3586 * @css: the target css
3587 *
3588 * Returns %true if @css has any online children; otherwise, %false. This
3589 * function can be called from any context but the caller is responsible
3590 * for synchronizing against on/offlining as necessary.
3591 */
3592bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003593{
Tejun Heof3d46502014-05-16 13:22:52 -04003594 struct cgroup_subsys_state *child;
3595 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003596
3597 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003598 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003599 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003600 ret = true;
3601 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003602 }
3603 }
3604 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003605 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003606}
3607
Tejun Heo0942eee2013-08-08 20:11:26 -04003608/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003609 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003610 * @it: the iterator to advance
3611 *
3612 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003613 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003614static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003615{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003616 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003617 struct cgrp_cset_link *link;
3618 struct css_set *cset;
3619
3620 /* Advance to the next non-empty css_set */
3621 do {
3622 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003623 if (l == it->cset_head) {
3624 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003625 return;
3626 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003627
3628 if (it->ss) {
3629 cset = container_of(l, struct css_set,
3630 e_cset_node[it->ss->id]);
3631 } else {
3632 link = list_entry(l, struct cgrp_cset_link, cset_link);
3633 cset = link->cset;
3634 }
Tejun Heoc7561122014-02-25 10:04:01 -05003635 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3636
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003637 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003638
3639 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003640 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003641 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003642 it->task_pos = cset->mg_tasks.next;
3643
3644 it->tasks_head = &cset->tasks;
3645 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003646}
3647
Tejun Heo0942eee2013-08-08 20:11:26 -04003648/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003649 * css_task_iter_start - initiate task iteration
3650 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003651 * @it: the task iterator to use
3652 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003653 * Initiate iteration through the tasks of @css. The caller can call
3654 * css_task_iter_next() to walk through the tasks until the function
3655 * returns NULL. On completion of iteration, css_task_iter_end() must be
3656 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003657 *
3658 * Note that this function acquires a lock which is released when the
3659 * iteration finishes. The caller can't sleep while iteration is in
3660 * progress.
3661 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003662void css_task_iter_start(struct cgroup_subsys_state *css,
3663 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003664 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003665{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003666 /* no one should try to iterate before mounting cgroups */
3667 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003668
Tejun Heo96d365e2014-02-13 06:58:40 -05003669 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003670
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003671 it->ss = css->ss;
3672
3673 if (it->ss)
3674 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3675 else
3676 it->cset_pos = &css->cgroup->cset_links;
3677
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003678 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003679
Tejun Heo72ec7022013-08-08 20:11:26 -04003680 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003681}
Paul Menage817929e2007-10-18 23:39:36 -07003682
Tejun Heo0942eee2013-08-08 20:11:26 -04003683/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003684 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003685 * @it: the task iterator being iterated
3686 *
3687 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003688 * initialized via css_task_iter_start(). Returns NULL when the iteration
3689 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003690 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003691struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003692{
3693 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003694 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003695
3696 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003697 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003698 return NULL;
3699 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003700
3701 /*
3702 * Advance iterator to find next entry. cset->tasks is consumed
3703 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3704 * next cset.
3705 */
Paul Menage817929e2007-10-18 23:39:36 -07003706 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003707
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003708 if (l == it->tasks_head)
3709 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003710
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003711 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003712 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003713 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003714 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003715
Paul Menage817929e2007-10-18 23:39:36 -07003716 return res;
3717}
3718
Tejun Heo0942eee2013-08-08 20:11:26 -04003719/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003720 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003721 * @it: the task iterator to finish
3722 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003723 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003724 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003725void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003726 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003727{
Tejun Heo96d365e2014-02-13 06:58:40 -05003728 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003729}
3730
3731/**
3732 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3733 * @to: cgroup to which the tasks will be moved
3734 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003735 *
3736 * Locking rules between cgroup_post_fork() and the migration path
3737 * guarantee that, if a task is forking while being migrated, the new child
3738 * is guaranteed to be either visible in the source cgroup after the
3739 * parent's migration is complete or put into the target cgroup. No task
3740 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003741 */
3742int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3743{
Tejun Heo952aaa12014-02-25 10:04:03 -05003744 LIST_HEAD(preloaded_csets);
3745 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003746 struct css_task_iter it;
3747 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003748 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003749
Tejun Heo952aaa12014-02-25 10:04:03 -05003750 mutex_lock(&cgroup_mutex);
3751
3752 /* all tasks in @from are being moved, all csets are source */
3753 down_read(&css_set_rwsem);
3754 list_for_each_entry(link, &from->cset_links, cset_link)
3755 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3756 up_read(&css_set_rwsem);
3757
3758 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3759 if (ret)
3760 goto out_err;
3761
3762 /*
3763 * Migrate tasks one-by-one until @form is empty. This fails iff
3764 * ->can_attach() fails.
3765 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003766 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003767 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003768 task = css_task_iter_next(&it);
3769 if (task)
3770 get_task_struct(task);
3771 css_task_iter_end(&it);
3772
3773 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003774 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003775 put_task_struct(task);
3776 }
3777 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003778out_err:
3779 cgroup_migrate_finish(&preloaded_csets);
3780 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003781 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003782}
3783
Paul Menage817929e2007-10-18 23:39:36 -07003784/*
Ben Blum102a7752009-09-23 15:56:26 -07003785 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003786 *
3787 * Reading this file can return large amounts of data if a cgroup has
3788 * *lots* of attached tasks. So it may need several calls to read(),
3789 * but we cannot guarantee that the information we produce is correct
3790 * unless we produce it entirely atomically.
3791 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003792 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003793
Li Zefan24528252012-01-20 11:58:43 +08003794/* which pidlist file are we talking about? */
3795enum cgroup_filetype {
3796 CGROUP_FILE_PROCS,
3797 CGROUP_FILE_TASKS,
3798};
3799
3800/*
3801 * A pidlist is a list of pids that virtually represents the contents of one
3802 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3803 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3804 * to the cgroup.
3805 */
3806struct cgroup_pidlist {
3807 /*
3808 * used to find which pidlist is wanted. doesn't change as long as
3809 * this particular list stays in the list.
3810 */
3811 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3812 /* array of xids */
3813 pid_t *list;
3814 /* how many elements the above list has */
3815 int length;
Li Zefan24528252012-01-20 11:58:43 +08003816 /* each of these stored in a list by its cgroup */
3817 struct list_head links;
3818 /* pointer to the cgroup we belong to, for list removal purposes */
3819 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003820 /* for delayed destruction */
3821 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003822};
3823
Paul Menagebbcb81d2007-10-18 23:39:32 -07003824/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003825 * The following two functions "fix" the issue where there are more pids
3826 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3827 * TODO: replace with a kernel-wide solution to this problem
3828 */
3829#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3830static void *pidlist_allocate(int count)
3831{
3832 if (PIDLIST_TOO_LARGE(count))
3833 return vmalloc(count * sizeof(pid_t));
3834 else
3835 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3836}
Tejun Heob1a21362013-11-29 10:42:58 -05003837
Ben Blumd1d9fd32009-09-23 15:56:28 -07003838static void pidlist_free(void *p)
3839{
Bandan Das58794512015-03-02 17:51:10 -05003840 kvfree(p);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003841}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003842
3843/*
Tejun Heob1a21362013-11-29 10:42:58 -05003844 * Used to destroy all pidlists lingering waiting for destroy timer. None
3845 * should be left afterwards.
3846 */
3847static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3848{
3849 struct cgroup_pidlist *l, *tmp_l;
3850
3851 mutex_lock(&cgrp->pidlist_mutex);
3852 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3853 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3854 mutex_unlock(&cgrp->pidlist_mutex);
3855
3856 flush_workqueue(cgroup_pidlist_destroy_wq);
3857 BUG_ON(!list_empty(&cgrp->pidlists));
3858}
3859
3860static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3861{
3862 struct delayed_work *dwork = to_delayed_work(work);
3863 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3864 destroy_dwork);
3865 struct cgroup_pidlist *tofree = NULL;
3866
3867 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003868
3869 /*
Tejun Heo04502362013-11-29 10:42:59 -05003870 * Destroy iff we didn't get queued again. The state won't change
3871 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003872 */
Tejun Heo04502362013-11-29 10:42:59 -05003873 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003874 list_del(&l->links);
3875 pidlist_free(l->list);
3876 put_pid_ns(l->key.ns);
3877 tofree = l;
3878 }
3879
Tejun Heob1a21362013-11-29 10:42:58 -05003880 mutex_unlock(&l->owner->pidlist_mutex);
3881 kfree(tofree);
3882}
3883
3884/*
Ben Blum102a7752009-09-23 15:56:26 -07003885 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003886 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003887 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003888static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003889{
Ben Blum102a7752009-09-23 15:56:26 -07003890 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003891
3892 /*
3893 * we presume the 0th element is unique, so i starts at 1. trivial
3894 * edge cases first; no work needs to be done for either
3895 */
3896 if (length == 0 || length == 1)
3897 return length;
3898 /* src and dest walk down the list; dest counts unique elements */
3899 for (src = 1; src < length; src++) {
3900 /* find next unique element */
3901 while (list[src] == list[src-1]) {
3902 src++;
3903 if (src == length)
3904 goto after;
3905 }
3906 /* dest always points to where the next unique element goes */
3907 list[dest] = list[src];
3908 dest++;
3909 }
3910after:
Ben Blum102a7752009-09-23 15:56:26 -07003911 return dest;
3912}
3913
Tejun Heoafb2bc12013-11-29 10:42:59 -05003914/*
3915 * The two pid files - task and cgroup.procs - guaranteed that the result
3916 * is sorted, which forced this whole pidlist fiasco. As pid order is
3917 * different per namespace, each namespace needs differently sorted list,
3918 * making it impossible to use, for example, single rbtree of member tasks
3919 * sorted by task pointer. As pidlists can be fairly large, allocating one
3920 * per open file is dangerous, so cgroup had to implement shared pool of
3921 * pidlists keyed by cgroup and namespace.
3922 *
3923 * All this extra complexity was caused by the original implementation
3924 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04003925 * want to do away with it. Explicitly scramble sort order if on the
3926 * default hierarchy so that no such expectation exists in the new
3927 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05003928 *
3929 * Scrambling is done by swapping every two consecutive bits, which is
3930 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3931 */
3932static pid_t pid_fry(pid_t pid)
3933{
3934 unsigned a = pid & 0x55555555;
3935 unsigned b = pid & 0xAAAAAAAA;
3936
3937 return (a << 1) | (b >> 1);
3938}
3939
3940static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3941{
Tejun Heoaa6ec292014-07-09 10:08:08 -04003942 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05003943 return pid_fry(pid);
3944 else
3945 return pid;
3946}
3947
Ben Blum102a7752009-09-23 15:56:26 -07003948static int cmppid(const void *a, const void *b)
3949{
3950 return *(pid_t *)a - *(pid_t *)b;
3951}
3952
Tejun Heoafb2bc12013-11-29 10:42:59 -05003953static int fried_cmppid(const void *a, const void *b)
3954{
3955 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3956}
3957
Ben Blum72a8cb32009-09-23 15:56:27 -07003958static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3959 enum cgroup_filetype type)
3960{
3961 struct cgroup_pidlist *l;
3962 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003963 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003964
Tejun Heoe6b81712013-11-29 10:42:59 -05003965 lockdep_assert_held(&cgrp->pidlist_mutex);
3966
3967 list_for_each_entry(l, &cgrp->pidlists, links)
3968 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003969 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003970 return NULL;
3971}
3972
Ben Blum72a8cb32009-09-23 15:56:27 -07003973/*
3974 * find the appropriate pidlist for our purpose (given procs vs tasks)
3975 * returns with the lock on that pidlist already held, and takes care
3976 * of the use count, or returns NULL with no locks held if we're out of
3977 * memory.
3978 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003979static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3980 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003981{
3982 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003983
Tejun Heoe6b81712013-11-29 10:42:59 -05003984 lockdep_assert_held(&cgrp->pidlist_mutex);
3985
3986 l = cgroup_pidlist_find(cgrp, type);
3987 if (l)
3988 return l;
3989
Ben Blum72a8cb32009-09-23 15:56:27 -07003990 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003991 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003992 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003993 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003994
Tejun Heob1a21362013-11-29 10:42:58 -05003995 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003996 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003997 /* don't need task_nsproxy() if we're looking at ourself */
3998 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003999 l->owner = cgrp;
4000 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07004001 return l;
4002}
4003
4004/*
Ben Blum102a7752009-09-23 15:56:26 -07004005 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
4006 */
Ben Blum72a8cb32009-09-23 15:56:27 -07004007static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
4008 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07004009{
4010 pid_t *array;
4011 int length;
4012 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04004013 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07004014 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07004015 struct cgroup_pidlist *l;
4016
Tejun Heo4bac00d2013-11-29 10:42:59 -05004017 lockdep_assert_held(&cgrp->pidlist_mutex);
4018
Ben Blum102a7752009-09-23 15:56:26 -07004019 /*
4020 * If cgroup gets more users after we read count, we won't have
4021 * enough space - tough. This race is indistinguishable to the
4022 * caller from the case that the additional cgroup users didn't
4023 * show up until sometime later on.
4024 */
4025 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004026 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07004027 if (!array)
4028 return -ENOMEM;
4029 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04004030 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004031 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07004032 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07004033 break;
Ben Blum102a7752009-09-23 15:56:26 -07004034 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07004035 if (type == CGROUP_FILE_PROCS)
4036 pid = task_tgid_vnr(tsk);
4037 else
4038 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07004039 if (pid > 0) /* make sure to only use valid results */
4040 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07004041 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004042 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07004043 length = n;
4044 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04004045 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004046 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
4047 else
4048 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07004049 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07004050 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05004051
Tejun Heoe6b81712013-11-29 10:42:59 -05004052 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07004053 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07004054 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07004055 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07004056 }
Tejun Heoe6b81712013-11-29 10:42:59 -05004057
4058 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07004059 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07004060 l->list = array;
4061 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07004062 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07004063 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004064}
4065
Balbir Singh846c7bb2007-10-18 23:39:44 -07004066/**
Li Zefana043e3b2008-02-23 15:24:09 -08004067 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07004068 * @stats: cgroupstats to fill information into
4069 * @dentry: A dentry entry belonging to the cgroup for which stats have
4070 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08004071 *
4072 * Build and fill cgroupstats so that taskstats can export it to user
4073 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07004074 */
4075int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
4076{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004077 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07004078 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04004079 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004080 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08004081
Tejun Heo2bd59d42014-02-11 11:52:49 -05004082 /* it should be kernfs_node belonging to cgroupfs and is a directory */
4083 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4084 kernfs_type(kn) != KERNFS_DIR)
4085 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004086
Li Zefanbad34662014-02-14 16:54:28 +08004087 mutex_lock(&cgroup_mutex);
4088
Tejun Heo2bd59d42014-02-11 11:52:49 -05004089 /*
4090 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04004091 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05004092 * @kn->priv is RCU safe. Let's do the RCU dancing.
4093 */
4094 rcu_read_lock();
4095 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004096 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004097 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004098 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004099 return -ENOENT;
4100 }
Li Zefanbad34662014-02-14 16:54:28 +08004101 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004102
Tejun Heo9d800df2014-05-14 09:15:00 -04004103 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004104 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004105 switch (tsk->state) {
4106 case TASK_RUNNING:
4107 stats->nr_running++;
4108 break;
4109 case TASK_INTERRUPTIBLE:
4110 stats->nr_sleeping++;
4111 break;
4112 case TASK_UNINTERRUPTIBLE:
4113 stats->nr_uninterruptible++;
4114 break;
4115 case TASK_STOPPED:
4116 stats->nr_stopped++;
4117 break;
4118 default:
4119 if (delayacct_is_task_waiting_on_io(tsk))
4120 stats->nr_io_wait++;
4121 break;
4122 }
4123 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004124 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004125
Li Zefanbad34662014-02-14 16:54:28 +08004126 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004127 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004128}
4129
Paul Menage8f3ff202009-09-23 15:56:25 -07004130
Paul Menagecc31edc2008-10-18 20:28:04 -07004131/*
Ben Blum102a7752009-09-23 15:56:26 -07004132 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004133 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004134 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004135 */
4136
Ben Blum102a7752009-09-23 15:56:26 -07004137static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004138{
4139 /*
4140 * Initially we receive a position value that corresponds to
4141 * one more than the last pid shown (or 0 on the first call or
4142 * after a seek to the start). Use a binary-search to find the
4143 * next pid to display, if any
4144 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004145 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004146 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004147 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004148 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004149 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004150 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004151
Tejun Heo4bac00d2013-11-29 10:42:59 -05004152 mutex_lock(&cgrp->pidlist_mutex);
4153
4154 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004155 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004156 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004157 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004158 * could already have been destroyed.
4159 */
Tejun Heo5d224442013-12-05 12:28:04 -05004160 if (of->priv)
4161 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004162
4163 /*
4164 * Either this is the first start() after open or the matching
4165 * pidlist has been destroyed inbetween. Create a new one.
4166 */
Tejun Heo5d224442013-12-05 12:28:04 -05004167 if (!of->priv) {
4168 ret = pidlist_array_load(cgrp, type,
4169 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004170 if (ret)
4171 return ERR_PTR(ret);
4172 }
Tejun Heo5d224442013-12-05 12:28:04 -05004173 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004174
Paul Menagecc31edc2008-10-18 20:28:04 -07004175 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004176 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004177
Paul Menagecc31edc2008-10-18 20:28:04 -07004178 while (index < end) {
4179 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004180 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004181 index = mid;
4182 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004183 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004184 index = mid + 1;
4185 else
4186 end = mid;
4187 }
4188 }
4189 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004190 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004191 return NULL;
4192 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004193 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004194 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004195 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004196}
4197
Ben Blum102a7752009-09-23 15:56:26 -07004198static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004199{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004200 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004201 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004202
Tejun Heo5d224442013-12-05 12:28:04 -05004203 if (l)
4204 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004205 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004206 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004207}
4208
Ben Blum102a7752009-09-23 15:56:26 -07004209static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004210{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004211 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004212 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004213 pid_t *p = v;
4214 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004215 /*
4216 * Advance to the next pid in the array. If this goes off the
4217 * end, we're done
4218 */
4219 p++;
4220 if (p >= end) {
4221 return NULL;
4222 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004223 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004224 return p;
4225 }
4226}
4227
Ben Blum102a7752009-09-23 15:56:26 -07004228static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004229{
Joe Perches94ff2122015-04-15 16:18:20 -07004230 seq_printf(s, "%d\n", *(int *)v);
4231
4232 return 0;
Paul Menagecc31edc2008-10-18 20:28:04 -07004233}
4234
Tejun Heo182446d2013-08-08 20:11:24 -04004235static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4236 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004237{
Tejun Heo182446d2013-08-08 20:11:24 -04004238 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004239}
4240
Tejun Heo182446d2013-08-08 20:11:24 -04004241static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4242 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004243{
Paul Menage6379c102008-07-25 01:47:01 -07004244 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004245 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004246 else
Tejun Heo182446d2013-08-08 20:11:24 -04004247 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004248 return 0;
4249}
4250
Tejun Heo182446d2013-08-08 20:11:24 -04004251static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4252 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004253{
Tejun Heo182446d2013-08-08 20:11:24 -04004254 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004255}
4256
Tejun Heo182446d2013-08-08 20:11:24 -04004257static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4258 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004259{
4260 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004261 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004262 else
Tejun Heo182446d2013-08-08 20:11:24 -04004263 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004264 return 0;
4265}
4266
Tejun Heoa14c6872014-07-15 11:05:09 -04004267/* cgroup core interface files for the default hierarchy */
4268static struct cftype cgroup_dfl_base_files[] = {
4269 {
4270 .name = "cgroup.procs",
4271 .seq_start = cgroup_pidlist_start,
4272 .seq_next = cgroup_pidlist_next,
4273 .seq_stop = cgroup_pidlist_stop,
4274 .seq_show = cgroup_pidlist_show,
4275 .private = CGROUP_FILE_PROCS,
4276 .write = cgroup_procs_write,
4277 .mode = S_IRUGO | S_IWUSR,
4278 },
4279 {
4280 .name = "cgroup.controllers",
4281 .flags = CFTYPE_ONLY_ON_ROOT,
4282 .seq_show = cgroup_root_controllers_show,
4283 },
4284 {
4285 .name = "cgroup.controllers",
4286 .flags = CFTYPE_NOT_ON_ROOT,
4287 .seq_show = cgroup_controllers_show,
4288 },
4289 {
4290 .name = "cgroup.subtree_control",
4291 .seq_show = cgroup_subtree_control_show,
4292 .write = cgroup_subtree_control_write,
4293 },
4294 {
4295 .name = "cgroup.populated",
4296 .flags = CFTYPE_NOT_ON_ROOT,
4297 .seq_show = cgroup_populated_show,
4298 },
4299 { } /* terminate */
4300};
4301
4302/* cgroup core interface files for the legacy hierarchies */
4303static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004304 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004305 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004306 .seq_start = cgroup_pidlist_start,
4307 .seq_next = cgroup_pidlist_next,
4308 .seq_stop = cgroup_pidlist_stop,
4309 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004310 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004311 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004312 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004313 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004314 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004315 .name = "cgroup.clone_children",
4316 .read_u64 = cgroup_clone_children_read,
4317 .write_u64 = cgroup_clone_children_write,
4318 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004319 {
Tejun Heo873fe092013-04-14 20:15:26 -07004320 .name = "cgroup.sane_behavior",
4321 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004322 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004323 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004324 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004325 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004326 .seq_start = cgroup_pidlist_start,
4327 .seq_next = cgroup_pidlist_next,
4328 .seq_stop = cgroup_pidlist_stop,
4329 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004330 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004331 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004332 .mode = S_IRUGO | S_IWUSR,
4333 },
4334 {
4335 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004336 .read_u64 = cgroup_read_notify_on_release,
4337 .write_u64 = cgroup_write_notify_on_release,
4338 },
Tejun Heo873fe092013-04-14 20:15:26 -07004339 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004340 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004341 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004342 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004343 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004344 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004345 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004346 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004347};
4348
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004349/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004350 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004351 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004352 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004353 *
4354 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004355 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10004356static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004357{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004358 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004359 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004360
Tejun Heo8e3f6542012-04-01 12:09:55 -07004361 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004362 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004363 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004364
Tejun Heo69dfa002014-05-04 15:09:13 -04004365 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004366 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004367
Tejun Heo0adb0702014-02-12 09:29:48 -05004368 list_for_each_entry(cfts, &ss->cfts, node) {
4369 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004370 if (ret < 0)
4371 goto err;
4372 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004373 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004374 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004375err:
4376 cgroup_clear_dir(cgrp, subsys_mask);
4377 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004378}
4379
Tejun Heo0c21ead2013-08-13 20:22:51 -04004380/*
4381 * css destruction is four-stage process.
4382 *
4383 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4384 * Implemented in kill_css().
4385 *
4386 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004387 * and thus css_tryget_online() is guaranteed to fail, the css can be
4388 * offlined by invoking offline_css(). After offlining, the base ref is
4389 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004390 *
4391 * 3. When the percpu_ref reaches zero, the only possible remaining
4392 * accessors are inside RCU read sections. css_release() schedules the
4393 * RCU callback.
4394 *
4395 * 4. After the grace period, the css can be freed. Implemented in
4396 * css_free_work_fn().
4397 *
4398 * It is actually hairier because both step 2 and 4 require process context
4399 * and thus involve punting to css->destroy_work adding two additional
4400 * steps to the already complex sequence.
4401 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004402static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004403{
4404 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004405 container_of(work, struct cgroup_subsys_state, destroy_work);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004406 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004407 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004408
Tejun Heo9a1049d2014-06-28 08:10:14 -04004409 percpu_ref_exit(&css->refcnt);
4410
Vladimir Davydov01e58652015-02-12 14:59:26 -08004411 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004412 /* css free path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004413 int id = css->id;
4414
Tejun Heo9d755d32014-05-14 09:15:02 -04004415 if (css->parent)
4416 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004417
Vladimir Davydov01e58652015-02-12 14:59:26 -08004418 ss->css_free(css);
4419 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004420 cgroup_put(cgrp);
4421 } else {
4422 /* cgroup free path */
4423 atomic_dec(&cgrp->root->nr_cgrps);
4424 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004425 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004426
Tejun Heod51f39b2014-05-16 13:22:48 -04004427 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004428 /*
4429 * We get a ref to the parent, and put the ref when
4430 * this cgroup is being freed, so it's guaranteed
4431 * that the parent won't be destroyed before its
4432 * children.
4433 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004434 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004435 kernfs_put(cgrp->kn);
4436 kfree(cgrp);
4437 } else {
4438 /*
4439 * This is root cgroup's refcnt reaching zero,
4440 * which indicates that the root should be
4441 * released.
4442 */
4443 cgroup_destroy_root(cgrp->root);
4444 }
4445 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004446}
4447
4448static void css_free_rcu_fn(struct rcu_head *rcu_head)
4449{
4450 struct cgroup_subsys_state *css =
4451 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4452
Tejun Heo0c21ead2013-08-13 20:22:51 -04004453 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004454 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004455}
4456
Tejun Heo25e15d82014-05-14 09:15:02 -04004457static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004458{
4459 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004460 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004461 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004462 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004463
Tejun Heo1fed1b22014-05-16 13:22:49 -04004464 mutex_lock(&cgroup_mutex);
4465
Tejun Heode3f0342014-05-16 13:22:49 -04004466 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004467 list_del_rcu(&css->sibling);
4468
Tejun Heo9d755d32014-05-14 09:15:02 -04004469 if (ss) {
4470 /* css release path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004471 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004472 if (ss->css_released)
4473 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004474 } else {
4475 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004476 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4477 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004478
4479 /*
4480 * There are two control paths which try to determine
4481 * cgroup from dentry without going through kernfs -
4482 * cgroupstats_build() and css_tryget_online_from_dir().
4483 * Those are supported by RCU protecting clearing of
4484 * cgrp->kn->priv backpointer.
4485 */
4486 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004487 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004488
Tejun Heo1fed1b22014-05-16 13:22:49 -04004489 mutex_unlock(&cgroup_mutex);
4490
Tejun Heo0c21ead2013-08-13 20:22:51 -04004491 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004492}
4493
Paul Menageddbcc7e2007-10-18 23:39:30 -07004494static void css_release(struct percpu_ref *ref)
4495{
4496 struct cgroup_subsys_state *css =
4497 container_of(ref, struct cgroup_subsys_state, refcnt);
4498
Tejun Heo25e15d82014-05-14 09:15:02 -04004499 INIT_WORK(&css->destroy_work, css_release_work_fn);
4500 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004501}
4502
Tejun Heoddfcada2014-05-04 15:09:14 -04004503static void init_and_link_css(struct cgroup_subsys_state *css,
4504 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004505{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004506 lockdep_assert_held(&cgroup_mutex);
4507
Tejun Heoddfcada2014-05-04 15:09:14 -04004508 cgroup_get(cgrp);
4509
Tejun Heod5c419b2014-05-16 13:22:48 -04004510 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004511 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004512 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004513 INIT_LIST_HEAD(&css->sibling);
4514 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004515 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004516
Tejun Heod51f39b2014-05-16 13:22:48 -04004517 if (cgroup_parent(cgrp)) {
4518 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004519 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004520 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004521
Tejun Heoca8bdca2013-08-26 18:40:56 -04004522 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004523}
4524
Li Zefan2a4ac632013-07-31 16:16:40 +08004525/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004526static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004527{
Tejun Heo623f9262013-08-13 11:01:55 -04004528 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004529 int ret = 0;
4530
Tejun Heoa31f2d32012-11-19 08:13:37 -08004531 lockdep_assert_held(&cgroup_mutex);
4532
Tejun Heo92fb9742012-11-19 08:13:38 -08004533 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004534 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004535 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004536 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004537 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004538 }
Tejun Heob1929db2012-11-19 08:13:38 -08004539 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004540}
4541
Li Zefan2a4ac632013-07-31 16:16:40 +08004542/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004543static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004544{
Tejun Heo623f9262013-08-13 11:01:55 -04004545 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004546
4547 lockdep_assert_held(&cgroup_mutex);
4548
4549 if (!(css->flags & CSS_ONLINE))
4550 return;
4551
Li Zefand7eeac12013-03-12 15:35:59 -07004552 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004553 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004554
Tejun Heoeb954192013-08-08 20:11:23 -04004555 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004556 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004557
4558 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004559}
4560
Tejun Heoc81c925a2013-12-06 15:11:56 -05004561/**
4562 * create_css - create a cgroup_subsys_state
4563 * @cgrp: the cgroup new css will be associated with
4564 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004565 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004566 *
4567 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004568 * css is online and installed in @cgrp with all interface files created if
4569 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004570 */
Tejun Heof63070d2014-07-08 18:02:57 -04004571static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4572 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004573{
Tejun Heod51f39b2014-05-16 13:22:48 -04004574 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004575 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004576 struct cgroup_subsys_state *css;
4577 int err;
4578
Tejun Heoc81c925a2013-12-06 15:11:56 -05004579 lockdep_assert_held(&cgroup_mutex);
4580
Tejun Heo1fed1b22014-05-16 13:22:49 -04004581 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004582 if (IS_ERR(css))
4583 return PTR_ERR(css);
4584
Tejun Heoddfcada2014-05-04 15:09:14 -04004585 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004586
Tejun Heo2aad2a82014-09-24 13:31:50 -04004587 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004588 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004589 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004590
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004591 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004592 if (err < 0)
4593 goto err_free_percpu_ref;
4594 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004595
Tejun Heof63070d2014-07-08 18:02:57 -04004596 if (visible) {
4597 err = cgroup_populate_dir(cgrp, 1 << ss->id);
4598 if (err)
4599 goto err_free_id;
4600 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004601
4602 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004603 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004604 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004605
4606 err = online_css(css);
4607 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004608 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004609
Tejun Heoc81c925a2013-12-06 15:11:56 -05004610 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004611 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004612 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 -04004613 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004614 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004615 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004616 ss->warned_broken_hierarchy = true;
4617 }
4618
4619 return 0;
4620
Tejun Heo1fed1b22014-05-16 13:22:49 -04004621err_list_del:
4622 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004623 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004624err_free_id:
4625 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004626err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004627 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004628err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004629 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004630 return err;
4631}
4632
Tejun Heob3bfd982014-05-13 12:19:22 -04004633static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4634 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004635{
Tejun Heoa9746d82014-05-13 12:19:22 -04004636 struct cgroup *parent, *cgrp;
4637 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004638 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004639 struct kernfs_node *kn;
Tejun Heoa14c6872014-07-15 11:05:09 -04004640 struct cftype *base_files;
Tejun Heob3bfd982014-05-13 12:19:22 -04004641 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004642
Alban Crequy71b1fb52014-08-18 12:20:20 +01004643 /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable.
4644 */
4645 if (strchr(name, '\n'))
4646 return -EINVAL;
4647
Tejun Heoa9746d82014-05-13 12:19:22 -04004648 parent = cgroup_kn_lock_live(parent_kn);
4649 if (!parent)
4650 return -ENODEV;
4651 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004652
Tejun Heo0a950f62012-11-19 09:02:12 -08004653 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004654 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004655 if (!cgrp) {
4656 ret = -ENOMEM;
4657 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004658 }
4659
Tejun Heo2aad2a82014-09-24 13:31:50 -04004660 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004661 if (ret)
4662 goto out_free_cgrp;
4663
Li Zefan0ab02ca2014-02-11 16:05:46 +08004664 /*
4665 * Temporarily set the pointer to NULL, so idr_find() won't return
4666 * a half-baked cgroup.
4667 */
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004668 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_KERNEL);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004669 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004670 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004671 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004672 }
4673
Paul Menagecc31edc2008-10-18 20:28:04 -07004674 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004675
Tejun Heo9d800df2014-05-14 09:15:00 -04004676 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004677 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004678
Li Zefanb6abdb02008-03-04 14:28:19 -08004679 if (notify_on_release(parent))
4680 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4681
Tejun Heo2260e7f2012-11-19 08:13:38 -08004682 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4683 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004684
Tejun Heo2bd59d42014-02-11 11:52:49 -05004685 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004686 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004687 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004688 ret = PTR_ERR(kn);
4689 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004690 }
4691 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004692
Tejun Heo6f305582014-02-12 09:29:50 -05004693 /*
4694 * This extra ref will be put in cgroup_free_fn() and guarantees
4695 * that @cgrp->kn is always accessible.
4696 */
4697 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004698
Tejun Heo0cb51d72014-05-16 13:22:49 -04004699 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004700
Tejun Heo4e139af2012-11-19 08:13:36 -08004701 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004702 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004703 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004704 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004705
Tejun Heo0d802552013-12-06 15:11:56 -05004706 /*
4707 * @cgrp is now fully operational. If something fails after this
4708 * point, it'll be released via the normal destruction path.
4709 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004710 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004711
Tejun Heoba0f4d72014-05-13 12:19:22 -04004712 ret = cgroup_kn_set_ugid(kn);
4713 if (ret)
4714 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004715
Tejun Heoa14c6872014-07-15 11:05:09 -04004716 if (cgroup_on_dfl(cgrp))
4717 base_files = cgroup_dfl_base_files;
4718 else
4719 base_files = cgroup_legacy_base_files;
4720
4721 ret = cgroup_addrm_files(cgrp, base_files, true);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004722 if (ret)
4723 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004724
Tejun Heo9d403e92013-12-06 15:11:56 -05004725 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004726 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004727 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004728 ret = create_css(cgrp, ss,
4729 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004730 if (ret)
4731 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004732 }
Tejun Heoa8638032012-11-09 09:12:29 -08004733 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004734
Tejun Heobd53d612014-04-23 11:13:16 -04004735 /*
4736 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004737 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004738 */
Tejun Heo667c2492014-07-08 18:02:56 -04004739 if (!cgroup_on_dfl(cgrp)) {
4740 cgrp->subtree_control = parent->subtree_control;
4741 cgroup_refresh_child_subsys_mask(cgrp);
4742 }
Tejun Heof392e512014-04-23 11:13:14 -04004743
Tejun Heo2bd59d42014-02-11 11:52:49 -05004744 kernfs_activate(kn);
4745
Tejun Heoba0f4d72014-05-13 12:19:22 -04004746 ret = 0;
4747 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004748
Tejun Heoba0f4d72014-05-13 12:19:22 -04004749out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004750 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004751out_cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004752 percpu_ref_exit(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004753out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004754 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004755out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004756 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004757 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004758
4759out_destroy:
4760 cgroup_destroy_locked(cgrp);
4761 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004762}
4763
Tejun Heo223dbc32013-08-13 20:22:50 -04004764/*
4765 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004766 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4767 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004768 */
4769static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004770{
Tejun Heo223dbc32013-08-13 20:22:50 -04004771 struct cgroup_subsys_state *css =
4772 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004773
Tejun Heof20104d2013-08-13 20:22:50 -04004774 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004775 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004776 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004777
Tejun Heo09a503ea2013-08-13 20:22:50 -04004778 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004779}
4780
Tejun Heo223dbc32013-08-13 20:22:50 -04004781/* css kill confirmation processing requires process context, bounce */
4782static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004783{
4784 struct cgroup_subsys_state *css =
4785 container_of(ref, struct cgroup_subsys_state, refcnt);
4786
Tejun Heo223dbc32013-08-13 20:22:50 -04004787 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004788 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004789}
4790
Tejun Heof392e512014-04-23 11:13:14 -04004791/**
4792 * kill_css - destroy a css
4793 * @css: css to destroy
4794 *
4795 * This function initiates destruction of @css by removing cgroup interface
4796 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004797 * asynchronously once css_tryget_online() is guaranteed to fail and when
4798 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004799 */
4800static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004801{
Tejun Heo01f64742014-05-13 12:19:23 -04004802 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004803
Tejun Heo2bd59d42014-02-11 11:52:49 -05004804 /*
4805 * This must happen before css is disassociated with its cgroup.
4806 * See seq_css() for details.
4807 */
Tejun Heoaec25022014-02-08 10:36:58 -05004808 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004809
Tejun Heoedae0c32013-08-13 20:22:51 -04004810 /*
4811 * Killing would put the base ref, but we need to keep it alive
4812 * until after ->css_offline().
4813 */
4814 css_get(css);
4815
4816 /*
4817 * cgroup core guarantees that, by the time ->css_offline() is
4818 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004819 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004820 * proceed to offlining css's because percpu_ref_kill() doesn't
4821 * guarantee that the ref is seen as killed on all CPUs on return.
4822 *
4823 * Use percpu_ref_kill_and_confirm() to get notifications as each
4824 * css is confirmed to be seen as killed on all CPUs.
4825 */
4826 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004827}
4828
4829/**
4830 * cgroup_destroy_locked - the first stage of cgroup destruction
4831 * @cgrp: cgroup to be destroyed
4832 *
4833 * css's make use of percpu refcnts whose killing latency shouldn't be
4834 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004835 * guarantee that css_tryget_online() won't succeed by the time
4836 * ->css_offline() is invoked. To satisfy all the requirements,
4837 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004838 *
4839 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4840 * userland visible parts and start killing the percpu refcnts of
4841 * css's. Set up so that the next stage will be kicked off once all
4842 * the percpu refcnts are confirmed to be killed.
4843 *
4844 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4845 * rest of destruction. Once all cgroup references are gone, the
4846 * cgroup is RCU-freed.
4847 *
4848 * This function implements s1. After this step, @cgrp is gone as far as
4849 * the userland is concerned and a new cgroup with the same name may be
4850 * created. As cgroup doesn't care about the names internally, this
4851 * doesn't cause any problem.
4852 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004853static int cgroup_destroy_locked(struct cgroup *cgrp)
4854 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004855{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004856 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004857 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004858 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004859
Tejun Heo42809dd2012-11-19 08:13:37 -08004860 lockdep_assert_held(&cgroup_mutex);
4861
Tejun Heoddd69142013-06-12 21:04:54 -07004862 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004863 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004864 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004865 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004866 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004867 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004868 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004869 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004870 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004871
Tejun Heo1a90dd52012-11-05 09:16:59 -08004872 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004873 * Make sure there's no live children. We can't test emptiness of
4874 * ->self.children as dead children linger on it while being
4875 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004876 */
Tejun Heof3d46502014-05-16 13:22:52 -04004877 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004878 return -EBUSY;
4879
4880 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004881 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004882 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004883 */
Tejun Heo184faf32014-05-16 13:22:51 -04004884 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004885
Tejun Heo249f3462014-05-14 09:15:01 -04004886 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004887 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004888 kill_css(css);
4889
Tejun Heo455050d2013-06-13 19:27:41 -07004890 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004891 * Remove @cgrp directory along with the base files. @cgrp has an
4892 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004893 */
Tejun Heo01f64742014-05-13 12:19:23 -04004894 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004895
Tejun Heod51f39b2014-05-16 13:22:48 -04004896 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004897
Tejun Heo249f3462014-05-14 09:15:01 -04004898 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004899 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004900
Tejun Heoea15f8c2013-06-13 19:27:42 -07004901 return 0;
4902};
4903
Tejun Heo2bd59d42014-02-11 11:52:49 -05004904static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004905{
Tejun Heoa9746d82014-05-13 12:19:22 -04004906 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004907 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004908
Tejun Heoa9746d82014-05-13 12:19:22 -04004909 cgrp = cgroup_kn_lock_live(kn);
4910 if (!cgrp)
4911 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004912
Tejun Heoa9746d82014-05-13 12:19:22 -04004913 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004914
Tejun Heoa9746d82014-05-13 12:19:22 -04004915 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004916 return ret;
4917}
4918
Tejun Heo2bd59d42014-02-11 11:52:49 -05004919static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4920 .remount_fs = cgroup_remount,
4921 .show_options = cgroup_show_options,
4922 .mkdir = cgroup_mkdir,
4923 .rmdir = cgroup_rmdir,
4924 .rename = cgroup_rename,
4925};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004926
Tejun Heo15a4c832014-05-04 15:09:14 -04004927static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004928{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004929 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004930
4931 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004932
Tejun Heo648bb562012-11-19 08:13:36 -08004933 mutex_lock(&cgroup_mutex);
4934
Tejun Heo15a4c832014-05-04 15:09:14 -04004935 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004936 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004937
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004938 /* Create the root cgroup state for this subsystem */
4939 ss->root = &cgrp_dfl_root;
4940 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004941 /* We don't handle early failures gracefully */
4942 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004943 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004944
4945 /*
4946 * Root csses are never destroyed and we can't initialize
4947 * percpu_ref during early init. Disable refcnting.
4948 */
4949 css->flags |= CSS_NO_REF;
4950
Tejun Heo15a4c832014-05-04 15:09:14 -04004951 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004952 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004953 css->id = 1;
4954 } else {
4955 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4956 BUG_ON(css->id < 0);
4957 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004958
Li Zefane8d55fd2008-04-29 01:00:13 -07004959 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004960 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004961 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004962 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004963 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004964
Aleksa Saraicb4a3162015-06-06 10:02:14 +10004965 have_fork_callback |= (bool)ss->fork << ss->id;
4966 have_exit_callback |= (bool)ss->exit << ss->id;
Aleksa Sarai7e476822015-06-09 21:32:09 +10004967 have_canfork_callback |= (bool)ss->can_fork << ss->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004968
Li Zefane8d55fd2008-04-29 01:00:13 -07004969 /* At system boot, before all subsystems have been
4970 * registered, no tasks have been forked, so we don't
4971 * need to invoke fork callbacks here. */
4972 BUG_ON(!list_empty(&init_task.tasks));
4973
Tejun Heoae7f1642013-08-13 20:22:50 -04004974 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004975
Tejun Heo648bb562012-11-19 08:13:36 -08004976 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004977}
4978
4979/**
Li Zefana043e3b2008-02-23 15:24:09 -08004980 * cgroup_init_early - cgroup initialization at system boot
4981 *
4982 * Initialize cgroups at system boot, and initialize any
4983 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004984 */
4985int __init cgroup_init_early(void)
4986{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04004987 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07004988 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004989 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004990
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004991 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004992 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4993
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004994 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004995
Tejun Heo3ed80a62014-02-08 10:36:58 -05004996 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004997 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004998 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4999 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05005000 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05005001 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
5002 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005003
Tejun Heoaec25022014-02-08 10:36:58 -05005004 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05005005 ss->name = cgroup_subsys_name[i];
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005006 if (!ss->legacy_name)
5007 ss->legacy_name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07005008
5009 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04005010 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005011 }
5012 return 0;
5013}
5014
5015/**
Li Zefana043e3b2008-02-23 15:24:09 -08005016 * cgroup_init - cgroup initialization
5017 *
5018 * Register cgroup filesystem and /proc file, and initialize
5019 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005020 */
5021int __init cgroup_init(void)
5022{
Tejun Heo30159ec2013-06-25 11:53:37 -07005023 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08005024 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04005025 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07005026
Tejun Heod59cfc02015-05-13 16:35:17 -04005027 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heoa14c6872014-07-15 11:05:09 -04005028 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
5029 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005030
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005031 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005032
Tejun Heo82fe9b02013-06-25 11:53:37 -07005033 /* Add init_css_set to the hash table */
5034 key = css_set_hash(init_css_set.subsys);
5035 hash_add(css_set_table, &init_css_set.hlist, key);
5036
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005037 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07005038
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005039 mutex_unlock(&cgroup_mutex);
5040
Tejun Heo172a2c062014-03-19 10:23:53 -04005041 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04005042 if (ss->early_init) {
5043 struct cgroup_subsys_state *css =
5044 init_css_set.subsys[ss->id];
5045
5046 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5047 GFP_KERNEL);
5048 BUG_ON(css->id < 0);
5049 } else {
5050 cgroup_init_subsys(ss, false);
5051 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005052
Tejun Heo2d8f2432014-04-23 11:13:15 -04005053 list_add_tail(&init_css_set.e_cset_node[ssid],
5054 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005055
5056 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005057 * Setting dfl_root subsys_mask needs to consider the
5058 * disabled flag and cftype registration needs kmalloc,
5059 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005060 */
Tejun Heoa8ddc822014-07-15 11:05:10 -04005061 if (ss->disabled)
5062 continue;
5063
5064 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5065
5066 if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes)
5067 ss->dfl_cftypes = ss->legacy_cftypes;
5068
Tejun Heo5de4fa12014-07-15 11:05:10 -04005069 if (!ss->dfl_cftypes)
5070 cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id;
5071
Tejun Heoa8ddc822014-07-15 11:05:10 -04005072 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5073 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5074 } else {
5075 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5076 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005077 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005078
5079 if (ss->bind)
5080 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005081 }
Greg KH676db4a2010-08-05 13:53:35 -07005082
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05005083 err = sysfs_create_mount_point(fs_kobj, "cgroup");
5084 if (err)
5085 return err;
Paul Menagea4243162007-10-18 23:39:35 -07005086
5087 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005088 if (err < 0) {
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05005089 sysfs_remove_mount_point(fs_kobj, "cgroup");
Tejun Heo2bd59d42014-02-11 11:52:49 -05005090 return err;
Paul Menagea4243162007-10-18 23:39:35 -07005091 }
5092
5093 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05005094 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005095}
Paul Menageb4f48b62007-10-18 23:39:33 -07005096
Tejun Heoe5fca242013-11-22 17:14:39 -05005097static int __init cgroup_wq_init(void)
5098{
5099 /*
5100 * There isn't much point in executing destruction path in
5101 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005102 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005103 *
5104 * We would prefer to do this in cgroup_init() above, but that
5105 * is called before init_workqueues(): so leave this until after.
5106 */
Tejun Heo1a115332014-02-12 19:06:19 -05005107 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005108 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005109
5110 /*
5111 * Used to destroy pidlists and separate to serve as flush domain.
5112 * Cap @max_active to 1 too.
5113 */
5114 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5115 0, 1);
5116 BUG_ON(!cgroup_pidlist_destroy_wq);
5117
Tejun Heoe5fca242013-11-22 17:14:39 -05005118 return 0;
5119}
5120core_initcall(cgroup_wq_init);
5121
Paul Menagea4243162007-10-18 23:39:35 -07005122/*
5123 * proc_cgroup_show()
5124 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5125 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005126 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005127int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5128 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005129{
Tejun Heoe61734c2014-02-12 09:29:50 -05005130 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005131 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005132 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005133
5134 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005135 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005136 if (!buf)
5137 goto out;
5138
Paul Menagea4243162007-10-18 23:39:35 -07005139 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05005140 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005141
Tejun Heo985ed672014-03-19 10:23:53 -04005142 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005143 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005144 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005145 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005146
Tejun Heoa2dd4242014-03-19 10:23:55 -04005147 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005148 continue;
5149
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005150 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heod98817d2015-08-18 13:58:16 -07005151 if (root != &cgrp_dfl_root)
5152 for_each_subsys(ss, ssid)
5153 if (root->subsys_mask & (1 << ssid))
5154 seq_printf(m, "%s%s", count++ ? "," : "",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005155 ss->legacy_name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005156 if (strlen(root->name))
5157 seq_printf(m, "%sname=%s", count ? "," : "",
5158 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005159 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07005160 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05005161 path = cgroup_path(cgrp, buf, PATH_MAX);
5162 if (!path) {
5163 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07005164 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05005165 }
5166 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07005167 seq_putc(m, '\n');
5168 }
5169
Zefan Li006f4ac2014-09-18 16:03:15 +08005170 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005171out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05005172 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005173 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005174 kfree(buf);
5175out:
5176 return retval;
5177}
5178
Paul Menagea4243162007-10-18 23:39:35 -07005179/* Display information about each subsystem and each hierarchy */
5180static int proc_cgroupstats_show(struct seq_file *m, void *v)
5181{
Tejun Heo30159ec2013-06-25 11:53:37 -07005182 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005183 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005184
Paul Menage8bab8dd2008-04-04 14:29:57 -07005185 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005186 /*
5187 * ideally we don't want subsystems moving around while we do this.
5188 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5189 * subsys/hierarchy state.
5190 */
Paul Menagea4243162007-10-18 23:39:35 -07005191 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005192
5193 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005194 seq_printf(m, "%s\t%d\t%d\t%d\n",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005195 ss->legacy_name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05005196 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07005197
Paul Menagea4243162007-10-18 23:39:35 -07005198 mutex_unlock(&cgroup_mutex);
5199 return 0;
5200}
5201
5202static int cgroupstats_open(struct inode *inode, struct file *file)
5203{
Al Viro9dce07f2008-03-29 03:07:28 +00005204 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005205}
5206
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005207static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005208 .open = cgroupstats_open,
5209 .read = seq_read,
5210 .llseek = seq_lseek,
5211 .release = single_release,
5212};
5213
Aleksa Sarai7e476822015-06-09 21:32:09 +10005214static void **subsys_canfork_priv_p(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5215{
5216 if (CGROUP_CANFORK_START <= i && i < CGROUP_CANFORK_END)
5217 return &ss_priv[i - CGROUP_CANFORK_START];
5218 return NULL;
5219}
5220
5221static void *subsys_canfork_priv(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5222{
5223 void **private = subsys_canfork_priv_p(ss_priv, i);
5224 return private ? *private : NULL;
5225}
5226
Paul Menageb4f48b62007-10-18 23:39:33 -07005227/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005228 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005229 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005230 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005231 * A task is associated with the init_css_set until cgroup_post_fork()
5232 * attaches it to the parent's css_set. Empty cg_list indicates that
5233 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005234 */
5235void cgroup_fork(struct task_struct *child)
5236{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005237 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005238 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005239}
5240
5241/**
Aleksa Sarai7e476822015-06-09 21:32:09 +10005242 * cgroup_can_fork - called on a new task before the process is exposed
5243 * @child: the task in question.
5244 *
5245 * This calls the subsystem can_fork() callbacks. If the can_fork() callback
5246 * returns an error, the fork aborts with that error code. This allows for
5247 * a cgroup subsystem to conditionally allow or deny new forks.
5248 */
5249int cgroup_can_fork(struct task_struct *child,
5250 void *ss_priv[CGROUP_CANFORK_COUNT])
5251{
5252 struct cgroup_subsys *ss;
5253 int i, j, ret;
5254
5255 for_each_subsys_which(ss, i, &have_canfork_callback) {
5256 ret = ss->can_fork(child, subsys_canfork_priv_p(ss_priv, i));
5257 if (ret)
5258 goto out_revert;
5259 }
5260
5261 return 0;
5262
5263out_revert:
5264 for_each_subsys(ss, j) {
5265 if (j >= i)
5266 break;
5267 if (ss->cancel_fork)
5268 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, j));
5269 }
5270
5271 return ret;
5272}
5273
5274/**
5275 * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
5276 * @child: the task in question
5277 *
5278 * This calls the cancel_fork() callbacks if a fork failed *after*
5279 * cgroup_can_fork() succeded.
5280 */
5281void cgroup_cancel_fork(struct task_struct *child,
5282 void *ss_priv[CGROUP_CANFORK_COUNT])
5283{
5284 struct cgroup_subsys *ss;
5285 int i;
5286
5287 for_each_subsys(ss, i)
5288 if (ss->cancel_fork)
5289 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, i));
5290}
5291
5292/**
Li Zefana043e3b2008-02-23 15:24:09 -08005293 * cgroup_post_fork - called on a new task after adding it to the task list
5294 * @child: the task in question
5295 *
Tejun Heo5edee612012-10-16 15:03:14 -07005296 * Adds the task to the list running through its css_set if necessary and
5297 * call the subsystem fork() callbacks. Has to be after the task is
5298 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005299 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005300 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005301 */
Aleksa Sarai7e476822015-06-09 21:32:09 +10005302void cgroup_post_fork(struct task_struct *child,
5303 void *old_ss_priv[CGROUP_CANFORK_COUNT])
Paul Menage817929e2007-10-18 23:39:36 -07005304{
Tejun Heo30159ec2013-06-25 11:53:37 -07005305 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005306 int i;
5307
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005308 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005309 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005310 * function sets use_task_css_set_links before grabbing
5311 * tasklist_lock and we just went through tasklist_lock to add
5312 * @child, it's guaranteed that either we see the set
5313 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5314 * @child during its iteration.
5315 *
5316 * If we won the race, @child is associated with %current's
5317 * css_set. Grabbing css_set_rwsem guarantees both that the
5318 * association is stable, and, on completion of the parent's
5319 * migration, @child is visible in the source of migration or
5320 * already in the destination cgroup. This guarantee is necessary
5321 * when implementing operations which need to migrate all tasks of
5322 * a cgroup to another.
5323 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005324 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005325 * will remain in init_css_set. This is safe because all tasks are
5326 * in the init_css_set before cg_links is enabled and there's no
5327 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005328 */
Paul Menage817929e2007-10-18 23:39:36 -07005329 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005330 struct css_set *cset;
5331
Tejun Heo96d365e2014-02-13 06:58:40 -05005332 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005333 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005334 if (list_empty(&child->cg_list)) {
5335 rcu_assign_pointer(child->cgroups, cset);
5336 list_add(&child->cg_list, &cset->tasks);
5337 get_css_set(cset);
5338 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005339 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07005340 }
Tejun Heo5edee612012-10-16 15:03:14 -07005341
5342 /*
5343 * Call ss->fork(). This must happen after @child is linked on
5344 * css_set; otherwise, @child might change state between ->fork()
5345 * and addition to css_set.
5346 */
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005347 for_each_subsys_which(ss, i, &have_fork_callback)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005348 ss->fork(child, subsys_canfork_priv(old_ss_priv, i));
Paul Menage817929e2007-10-18 23:39:36 -07005349}
Tejun Heo5edee612012-10-16 15:03:14 -07005350
Paul Menage817929e2007-10-18 23:39:36 -07005351/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005352 * cgroup_exit - detach cgroup from exiting task
5353 * @tsk: pointer to task_struct of exiting process
5354 *
5355 * Description: Detach cgroup from @tsk and release it.
5356 *
5357 * Note that cgroups marked notify_on_release force every task in
5358 * them to take the global cgroup_mutex mutex when exiting.
5359 * This could impact scaling on very large systems. Be reluctant to
5360 * use notify_on_release cgroups where very high task exit scaling
5361 * is required on large systems.
5362 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005363 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5364 * call cgroup_exit() while the task is still competent to handle
5365 * notify_on_release(), then leave the task attached to the root cgroup in
5366 * each hierarchy for the remainder of its exit. No need to bother with
5367 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005368 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005369 */
Li Zefan1ec41832014-03-28 15:22:19 +08005370void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005371{
Tejun Heo30159ec2013-06-25 11:53:37 -07005372 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005373 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005374 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005375 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005376
5377 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005378 * Unlink from @tsk from its css_set. As migration path can't race
5379 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005380 */
5381 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005382 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005383 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005384 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005385 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005386 }
5387
Paul Menageb4f48b62007-10-18 23:39:33 -07005388 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005389 cset = task_css_set(tsk);
5390 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005391
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005392 /* see cgroup_post_fork() for details */
5393 for_each_subsys_which(ss, i, &have_exit_callback) {
5394 struct cgroup_subsys_state *old_css = cset->subsys[i];
5395 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005396
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005397 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005398 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005399
Tejun Heoeaf797a2014-02-25 10:04:03 -05005400 if (put_cset)
Zefan Lia25eb522014-09-19 16:51:00 +08005401 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005402}
Paul Menage697f4162007-10-18 23:39:34 -07005403
Paul Menagebd89aab2007-10-18 23:40:44 -07005404static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005405{
Zefan Lia25eb522014-09-19 16:51:00 +08005406 if (notify_on_release(cgrp) && !cgroup_has_tasks(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005407 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5408 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005409}
5410
Paul Menage81a6a5c2007-10-18 23:39:38 -07005411/*
5412 * Notify userspace when a cgroup is released, by running the
5413 * configured release agent with the name of the cgroup (path
5414 * relative to the root of cgroup file system) as the argument.
5415 *
5416 * Most likely, this user command will try to rmdir this cgroup.
5417 *
5418 * This races with the possibility that some other task will be
5419 * attached to this cgroup before it is removed, or that some other
5420 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5421 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5422 * unused, and this cgroup will be reprieved from its death sentence,
5423 * to continue to serve a useful existence. Next time it's released,
5424 * we will get notified again, if it still has 'notify_on_release' set.
5425 *
5426 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5427 * means only wait until the task is successfully execve()'d. The
5428 * separate release agent task is forked by call_usermodehelper(),
5429 * then control in this thread returns here, without waiting for the
5430 * release agent task. We don't bother to wait because the caller of
5431 * this routine has no use for the exit status of the release agent
5432 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005433 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005434static void cgroup_release_agent(struct work_struct *work)
5435{
Zefan Li971ff492014-09-18 16:06:19 +08005436 struct cgroup *cgrp =
5437 container_of(work, struct cgroup, release_agent_work);
5438 char *pathbuf = NULL, *agentbuf = NULL, *path;
5439 char *argv[3], *envp[3];
5440
Paul Menage81a6a5c2007-10-18 23:39:38 -07005441 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005442
Zefan Li971ff492014-09-18 16:06:19 +08005443 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5444 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5445 if (!pathbuf || !agentbuf)
5446 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005447
Zefan Li971ff492014-09-18 16:06:19 +08005448 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5449 if (!path)
5450 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005451
Zefan Li971ff492014-09-18 16:06:19 +08005452 argv[0] = agentbuf;
5453 argv[1] = path;
5454 argv[2] = NULL;
5455
5456 /* minimal command environment */
5457 envp[0] = "HOME=/";
5458 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5459 envp[2] = NULL;
5460
Paul Menage81a6a5c2007-10-18 23:39:38 -07005461 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005462 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005463 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005464out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005465 mutex_unlock(&cgroup_mutex);
5466out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005467 kfree(agentbuf);
5468 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005469}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005470
5471static int __init cgroup_disable(char *str)
5472{
Tejun Heo30159ec2013-06-25 11:53:37 -07005473 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005474 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005475 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005476
5477 while ((token = strsep(&str, ",")) != NULL) {
5478 if (!*token)
5479 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005480
Tejun Heo3ed80a62014-02-08 10:36:58 -05005481 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005482 if (strcmp(token, ss->name) &&
5483 strcmp(token, ss->legacy_name))
5484 continue;
5485
5486 ss->disabled = 1;
5487 printk(KERN_INFO "Disabling %s control group subsystem\n",
5488 ss->name);
5489 break;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005490 }
5491 }
5492 return 1;
5493}
5494__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005495
Tejun Heoa8ddc822014-07-15 11:05:10 -04005496static int __init cgroup_set_legacy_files_on_dfl(char *str)
5497{
5498 printk("cgroup: using legacy files on the default hierarchy\n");
5499 cgroup_legacy_files_on_dfl = true;
5500 return 0;
5501}
5502__setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl);
5503
Tejun Heob77d7b62013-08-13 11:01:54 -04005504/**
Tejun Heoec903c02014-05-13 12:11:01 -04005505 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005506 * @dentry: directory dentry of interest
5507 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005508 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005509 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5510 * to get the corresponding css and return it. If such css doesn't exist
5511 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005512 */
Tejun Heoec903c02014-05-13 12:11:01 -04005513struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5514 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005515{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005516 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5517 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005518 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005519
Tejun Heo35cf0832013-08-26 18:40:56 -04005520 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005521 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5522 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005523 return ERR_PTR(-EBADF);
5524
Tejun Heo5a17f542014-02-11 11:52:47 -05005525 rcu_read_lock();
5526
Tejun Heo2bd59d42014-02-11 11:52:49 -05005527 /*
5528 * This path doesn't originate from kernfs and @kn could already
5529 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005530 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005531 */
5532 cgrp = rcu_dereference(kn->priv);
5533 if (cgrp)
5534 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005535
Tejun Heoec903c02014-05-13 12:11:01 -04005536 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005537 css = ERR_PTR(-ENOENT);
5538
5539 rcu_read_unlock();
5540 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005541}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005542
Li Zefan1cb650b2013-08-19 10:05:24 +08005543/**
5544 * css_from_id - lookup css by id
5545 * @id: the cgroup id
5546 * @ss: cgroup subsys to be looked into
5547 *
5548 * Returns the css if there's valid one with @id, otherwise returns NULL.
5549 * Should be called under rcu_read_lock().
5550 */
5551struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5552{
Tejun Heo6fa49182014-05-04 15:09:13 -04005553 WARN_ON_ONCE(!rcu_read_lock_held());
Vladimir Davydovadbe4272015-04-15 16:13:00 -07005554 return id > 0 ? idr_find(&ss->css_idr, id) : NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005555}
5556
Paul Menagefe693432009-09-23 15:56:20 -07005557#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005558static struct cgroup_subsys_state *
5559debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005560{
5561 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5562
5563 if (!css)
5564 return ERR_PTR(-ENOMEM);
5565
5566 return css;
5567}
5568
Tejun Heoeb954192013-08-08 20:11:23 -04005569static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005570{
Tejun Heoeb954192013-08-08 20:11:23 -04005571 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005572}
5573
Tejun Heo182446d2013-08-08 20:11:24 -04005574static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5575 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005576{
Tejun Heo182446d2013-08-08 20:11:24 -04005577 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005578}
5579
Tejun Heo182446d2013-08-08 20:11:24 -04005580static u64 current_css_set_read(struct cgroup_subsys_state *css,
5581 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005582{
5583 return (u64)(unsigned long)current->cgroups;
5584}
5585
Tejun Heo182446d2013-08-08 20:11:24 -04005586static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005587 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005588{
5589 u64 count;
5590
5591 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005592 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005593 rcu_read_unlock();
5594 return count;
5595}
5596
Tejun Heo2da8ca82013-12-05 12:28:04 -05005597static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005598{
Tejun Heo69d02062013-06-12 21:04:50 -07005599 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005600 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005601 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005602
Tejun Heoe61734c2014-02-12 09:29:50 -05005603 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5604 if (!name_buf)
5605 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005606
Tejun Heo96d365e2014-02-13 06:58:40 -05005607 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005608 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005609 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005610 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005611 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005612
Tejun Heoa2dd4242014-03-19 10:23:55 -04005613 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005614 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005615 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005616 }
5617 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005618 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005619 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005620 return 0;
5621}
5622
5623#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005624static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005625{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005626 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005627 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005628
Tejun Heo96d365e2014-02-13 06:58:40 -05005629 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005630 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005631 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005632 struct task_struct *task;
5633 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005634
Tejun Heo5abb8852013-06-12 21:04:49 -07005635 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005636
Tejun Heo5abb8852013-06-12 21:04:49 -07005637 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005638 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5639 goto overflow;
5640 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005641 }
Tejun Heoc7561122014-02-25 10:04:01 -05005642
5643 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5644 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5645 goto overflow;
5646 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5647 }
5648 continue;
5649 overflow:
5650 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005651 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005652 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005653 return 0;
5654}
5655
Tejun Heo182446d2013-08-08 20:11:24 -04005656static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005657{
Zefan Lia25eb522014-09-19 16:51:00 +08005658 return (!cgroup_has_tasks(css->cgroup) &&
5659 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07005660}
5661
5662static struct cftype debug_files[] = {
5663 {
Paul Menagefe693432009-09-23 15:56:20 -07005664 .name = "taskcount",
5665 .read_u64 = debug_taskcount_read,
5666 },
5667
5668 {
5669 .name = "current_css_set",
5670 .read_u64 = current_css_set_read,
5671 },
5672
5673 {
5674 .name = "current_css_set_refcount",
5675 .read_u64 = current_css_set_refcount_read,
5676 },
5677
5678 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005679 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005680 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005681 },
5682
5683 {
5684 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005685 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005686 },
5687
5688 {
Paul Menagefe693432009-09-23 15:56:20 -07005689 .name = "releasable",
5690 .read_u64 = releasable_read,
5691 },
Paul Menagefe693432009-09-23 15:56:20 -07005692
Tejun Heo4baf6e32012-04-01 12:09:55 -07005693 { } /* terminate */
5694};
Paul Menagefe693432009-09-23 15:56:20 -07005695
Tejun Heo073219e2014-02-08 10:36:58 -05005696struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005697 .css_alloc = debug_css_alloc,
5698 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04005699 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005700};
5701#endif /* CONFIG_CGROUP_DEBUG */