blob: f3f5cd5e2c0d9ccd8b954e9191cd9169d53c32d7 [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))
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001345 seq_printf(seq, ",%s", ss->legacy_name);
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))
1353 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001354 spin_unlock(&release_agent_path_lock);
1355
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001356 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001357 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001358 if (strlen(root->name))
1359 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001360 return 0;
1361}
1362
1363struct cgroup_sb_opts {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001364 unsigned long subsys_mask;
Tejun Heo69dfa002014-05-04 15:09:13 -04001365 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001366 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001367 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001368 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001369 /* User explicitly requested empty subsystem */
1370 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001371};
1372
Ben Blumcf5d5942010-03-10 15:22:09 -08001373static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001374{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001375 char *token, *o = data;
1376 bool all_ss = false, one_ss = false;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001377 unsigned long mask = -1UL;
Tejun Heo30159ec2013-06-25 11:53:37 -07001378 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001379 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001380 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001381
1382#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001383 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001384#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001385
Paul Menagec6d57f32009-09-23 15:56:19 -07001386 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001387
1388 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001389 nr_opts++;
1390
Paul Menageddbcc7e2007-10-18 23:39:30 -07001391 if (!*token)
1392 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001393 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001394 /* Explicitly have no subsystems */
1395 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001396 continue;
1397 }
1398 if (!strcmp(token, "all")) {
1399 /* Mutually exclusive option 'all' + subsystem name */
1400 if (one_ss)
1401 return -EINVAL;
1402 all_ss = true;
1403 continue;
1404 }
Tejun Heo873fe092013-04-14 20:15:26 -07001405 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1406 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1407 continue;
1408 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001409 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001410 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001411 continue;
1412 }
1413 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001414 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001415 continue;
1416 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001417 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001418 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001419 continue;
1420 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001421 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001422 /* Specifying two release agents is forbidden */
1423 if (opts->release_agent)
1424 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001425 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001426 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001427 if (!opts->release_agent)
1428 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001429 continue;
1430 }
1431 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001432 const char *name = token + 5;
1433 /* Can't specify an empty name */
1434 if (!strlen(name))
1435 return -EINVAL;
1436 /* Must match [\w.-]+ */
1437 for (i = 0; i < strlen(name); i++) {
1438 char c = name[i];
1439 if (isalnum(c))
1440 continue;
1441 if ((c == '.') || (c == '-') || (c == '_'))
1442 continue;
1443 return -EINVAL;
1444 }
1445 /* Specifying two names is forbidden */
1446 if (opts->name)
1447 return -EINVAL;
1448 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001449 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001450 GFP_KERNEL);
1451 if (!opts->name)
1452 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001453
1454 continue;
1455 }
1456
Tejun Heo30159ec2013-06-25 11:53:37 -07001457 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001458 if (strcmp(token, ss->legacy_name))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001459 continue;
1460 if (ss->disabled)
1461 continue;
1462
1463 /* Mutually exclusive option 'all' + subsystem name */
1464 if (all_ss)
1465 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001466 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001467 one_ss = true;
1468
1469 break;
1470 }
1471 if (i == CGROUP_SUBSYS_COUNT)
1472 return -ENOENT;
1473 }
1474
Tejun Heo873fe092013-04-14 20:15:26 -07001475 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001476 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 -04001477 if (nr_opts != 1) {
1478 pr_err("sane_behavior: no other mount options allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001479 return -EINVAL;
1480 }
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001481 return 0;
Tejun Heo873fe092013-04-14 20:15:26 -07001482 }
1483
Li Zefanf9ab5b52009-06-17 16:26:33 -07001484 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001485 * If the 'all' option was specified select all the subsystems,
1486 * otherwise if 'none', 'name=' and a subsystem name options were
1487 * not specified, let's default to 'all'
1488 */
1489 if (all_ss || (!one_ss && !opts->none && !opts->name))
1490 for_each_subsys(ss, i)
1491 if (!ss->disabled)
1492 opts->subsys_mask |= (1 << i);
1493
1494 /*
1495 * We either have to specify by name or by subsystems. (So all
1496 * empty hierarchies must have a name).
1497 */
1498 if (!opts->subsys_mask && !opts->name)
1499 return -EINVAL;
1500
1501 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001502 * Option noprefix was introduced just for backward compatibility
1503 * with the old cpuset, so we allow noprefix only if mounting just
1504 * the cpuset subsystem.
1505 */
Tejun Heo93438622013-04-14 20:15:25 -07001506 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001507 return -EINVAL;
1508
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001509 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001510 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001511 return -EINVAL;
1512
Paul Menageddbcc7e2007-10-18 23:39:30 -07001513 return 0;
1514}
1515
Tejun Heo2bd59d42014-02-11 11:52:49 -05001516static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001517{
1518 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001519 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001520 struct cgroup_sb_opts opts;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001521 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001522
Tejun Heoaa6ec292014-07-09 10:08:08 -04001523 if (root == &cgrp_dfl_root) {
1524 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001525 return -EINVAL;
1526 }
1527
Paul Menageddbcc7e2007-10-18 23:39:30 -07001528 mutex_lock(&cgroup_mutex);
1529
1530 /* See what subsystems are wanted */
1531 ret = parse_cgroupfs_options(data, &opts);
1532 if (ret)
1533 goto out_unlock;
1534
Tejun Heof392e512014-04-23 11:13:14 -04001535 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001536 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001537 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001538
Tejun Heof392e512014-04-23 11:13:14 -04001539 added_mask = opts.subsys_mask & ~root->subsys_mask;
1540 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001541
Ben Blumcf5d5942010-03-10 15:22:09 -08001542 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001543 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001544 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001545 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001546 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001547 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001548 goto out_unlock;
1549 }
1550
Tejun Heof172e672013-06-28 17:07:30 -07001551 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001552 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001553 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001554 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001555 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001556
Tejun Heo5df36032014-03-19 10:23:54 -04001557 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001558 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001559 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001560
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001561 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001562
Tejun Heo69e943b2014-02-08 10:36:58 -05001563 if (opts.release_agent) {
1564 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001565 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001566 spin_unlock(&release_agent_path_lock);
1567 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001568 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001569 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001570 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001571 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001572 return ret;
1573}
1574
Tejun Heoafeb0f92014-02-13 06:58:39 -05001575/*
1576 * To reduce the fork() overhead for systems that are not actually using
1577 * their cgroups capability, we don't maintain the lists running through
1578 * each css_set to its tasks until we see the list actually used - in other
1579 * words after the first mount.
1580 */
1581static bool use_task_css_set_links __read_mostly;
1582
1583static void cgroup_enable_task_cg_lists(void)
1584{
1585 struct task_struct *p, *g;
1586
Tejun Heo96d365e2014-02-13 06:58:40 -05001587 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001588
1589 if (use_task_css_set_links)
1590 goto out_unlock;
1591
1592 use_task_css_set_links = true;
1593
1594 /*
1595 * We need tasklist_lock because RCU is not safe against
1596 * while_each_thread(). Besides, a forking task that has passed
1597 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1598 * is not guaranteed to have its child immediately visible in the
1599 * tasklist if we walk through it with RCU.
1600 */
1601 read_lock(&tasklist_lock);
1602 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001603 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1604 task_css_set(p) != &init_css_set);
1605
1606 /*
1607 * We should check if the process is exiting, otherwise
1608 * it will race with cgroup_exit() in that the list
1609 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001610 * Do it while holding siglock so that we don't end up
1611 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001612 */
Tejun Heof153ad12014-02-25 09:56:49 -05001613 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001614 if (!(p->flags & PF_EXITING)) {
1615 struct css_set *cset = task_css_set(p);
1616
1617 list_add(&p->cg_list, &cset->tasks);
1618 get_css_set(cset);
1619 }
Tejun Heof153ad12014-02-25 09:56:49 -05001620 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001621 } while_each_thread(g, p);
1622 read_unlock(&tasklist_lock);
1623out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001624 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001625}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001626
Paul Menagecc31edc2008-10-18 20:28:04 -07001627static void init_cgroup_housekeeping(struct cgroup *cgrp)
1628{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001629 struct cgroup_subsys *ss;
1630 int ssid;
1631
Tejun Heod5c419b2014-05-16 13:22:48 -04001632 INIT_LIST_HEAD(&cgrp->self.sibling);
1633 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001634 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001635 INIT_LIST_HEAD(&cgrp->pidlists);
1636 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001637 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001638 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001639
1640 for_each_subsys(ss, ssid)
1641 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001642
1643 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001644 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001645}
Paul Menagec6d57f32009-09-23 15:56:19 -07001646
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001647static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001648 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001649{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001650 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001651
Paul Menageddbcc7e2007-10-18 23:39:30 -07001652 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001653 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001654 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001655 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001656 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001657
Paul Menagec6d57f32009-09-23 15:56:19 -07001658 root->flags = opts->flags;
1659 if (opts->release_agent)
1660 strcpy(root->release_agent_path, opts->release_agent);
1661 if (opts->name)
1662 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001663 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001664 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001665}
1666
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001667static int cgroup_setup_root(struct cgroup_root *root, unsigned long ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001668{
Tejun Heod427dfe2014-02-11 11:52:48 -05001669 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001670 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heoa14c6872014-07-15 11:05:09 -04001671 struct cftype *base_files;
Tejun Heod427dfe2014-02-11 11:52:48 -05001672 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001673 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001674
Tejun Heod427dfe2014-02-11 11:52:48 -05001675 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001676
Vladimir Davydovcf780b72015-08-03 15:32:26 +03001677 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_KERNEL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001678 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001679 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001680 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001681
Tejun Heo2aad2a82014-09-24 13:31:50 -04001682 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1683 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001684 if (ret)
1685 goto out;
1686
Tejun Heod427dfe2014-02-11 11:52:48 -05001687 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001688 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001689 * but that's OK - it can only be increased by someone holding
1690 * cgroup_lock, and that's us. The worst that can happen is that we
1691 * have some link structures left over
1692 */
1693 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001694 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001695 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001696
Tejun Heo985ed672014-03-19 10:23:53 -04001697 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001698 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001699 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001700
Tejun Heo2bd59d42014-02-11 11:52:49 -05001701 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1702 KERNFS_ROOT_CREATE_DEACTIVATED,
1703 root_cgrp);
1704 if (IS_ERR(root->kf_root)) {
1705 ret = PTR_ERR(root->kf_root);
1706 goto exit_root_id;
1707 }
1708 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001709
Tejun Heoa14c6872014-07-15 11:05:09 -04001710 if (root == &cgrp_dfl_root)
1711 base_files = cgroup_dfl_base_files;
1712 else
1713 base_files = cgroup_legacy_base_files;
1714
1715 ret = cgroup_addrm_files(root_cgrp, base_files, true);
Tejun Heod427dfe2014-02-11 11:52:48 -05001716 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001717 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001718
Tejun Heo5df36032014-03-19 10:23:54 -04001719 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001720 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001721 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001722
Tejun Heod427dfe2014-02-11 11:52:48 -05001723 /*
1724 * There must be no failure case after here, since rebinding takes
1725 * care of subsystems' refcounts, which are explicitly dropped in
1726 * the failure exit path.
1727 */
1728 list_add(&root->root_list, &cgroup_roots);
1729 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001730
Tejun Heod427dfe2014-02-11 11:52:48 -05001731 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001732 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001733 * objects.
1734 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001735 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001736 hash_for_each(css_set_table, i, cset, hlist)
1737 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001738 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001739
Tejun Heod5c419b2014-05-16 13:22:48 -04001740 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001741 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001742
Tejun Heo2bd59d42014-02-11 11:52:49 -05001743 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001744 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001745 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001746
Tejun Heo2bd59d42014-02-11 11:52:49 -05001747destroy_root:
1748 kernfs_destroy_root(root->kf_root);
1749 root->kf_root = NULL;
1750exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001751 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001752cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001753 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001754out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001755 free_cgrp_cset_links(&tmp_links);
1756 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001757}
1758
Al Virof7e83572010-07-26 13:23:11 +04001759static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001760 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001761 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001762{
Li Zefan3a32bd72014-06-30 11:50:59 +08001763 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08001764 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001765 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001766 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001767 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001768 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08001769 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001770 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001771
1772 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001773 * The first time anyone tries to mount a cgroup, enable the list
1774 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001775 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001776 if (!use_task_css_set_links)
1777 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001778
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001779 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001780
Paul Menageddbcc7e2007-10-18 23:39:30 -07001781 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001782 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001783 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001784 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001785
Tejun Heo2bd59d42014-02-11 11:52:49 -05001786 /* look for a matching existing root */
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001787 if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) {
Tejun Heoa2dd4242014-03-19 10:23:55 -04001788 cgrp_dfl_root_visible = true;
1789 root = &cgrp_dfl_root;
1790 cgroup_get(&root->cgrp);
1791 ret = 0;
1792 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001793 }
1794
Li Zefan970317a2014-06-30 11:49:58 +08001795 /*
1796 * Destruction of cgroup root is asynchronous, so subsystems may
1797 * still be dying after the previous unmount. Let's drain the
1798 * dying subsystems. We just need to ensure that the ones
1799 * unmounted previously finish dying and don't care about new ones
1800 * starting. Testing ref liveliness is good enough.
1801 */
1802 for_each_subsys(ss, i) {
1803 if (!(opts.subsys_mask & (1 << i)) ||
1804 ss->root == &cgrp_dfl_root)
1805 continue;
1806
1807 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
1808 mutex_unlock(&cgroup_mutex);
1809 msleep(10);
1810 ret = restart_syscall();
1811 goto out_free;
1812 }
1813 cgroup_put(&ss->root->cgrp);
1814 }
1815
Tejun Heo985ed672014-03-19 10:23:53 -04001816 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001817 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001818
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001819 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001820 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001821
Paul Menage817929e2007-10-18 23:39:36 -07001822 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001823 * If we asked for a name then it must match. Also, if
1824 * name matches but sybsys_mask doesn't, we should fail.
1825 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001826 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001827 if (opts.name) {
1828 if (strcmp(opts.name, root->name))
1829 continue;
1830 name_match = true;
1831 }
Tejun Heo31261212013-06-28 17:07:30 -07001832
1833 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001834 * If we asked for subsystems (or explicitly for no
1835 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001836 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001837 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001838 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001839 if (!name_match)
1840 continue;
1841 ret = -EBUSY;
1842 goto out_unlock;
1843 }
Tejun Heo873fe092013-04-14 20:15:26 -07001844
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001845 if (root->flags ^ opts.flags)
1846 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05001847
Tejun Heo776f02f2014-02-12 09:29:50 -05001848 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08001849 * We want to reuse @root whose lifetime is governed by its
1850 * ->cgrp. Let's check whether @root is alive and keep it
1851 * that way. As cgroup_kill_sb() can happen anytime, we
1852 * want to block it by pinning the sb so that @root doesn't
1853 * get killed before mount is complete.
1854 *
1855 * With the sb pinned, tryget_live can reliably indicate
1856 * whether @root can be reused. If it's being killed,
1857 * drain it. We can use wait_queue for the wait but this
1858 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001859 */
Li Zefan3a32bd72014-06-30 11:50:59 +08001860 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
1861 if (IS_ERR(pinned_sb) ||
1862 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001863 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08001864 if (!IS_ERR_OR_NULL(pinned_sb))
1865 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05001866 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001867 ret = restart_syscall();
1868 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001869 }
1870
1871 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001872 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001873 }
1874
Tejun Heo172a2c062014-03-19 10:23:53 -04001875 /*
1876 * No such thing, create a new one. name= matching without subsys
1877 * specification is allowed for already existing hierarchies but we
1878 * can't create new one without subsys specification.
1879 */
1880 if (!opts.subsys_mask && !opts.none) {
1881 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001882 goto out_unlock;
1883 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001884
Tejun Heo172a2c062014-03-19 10:23:53 -04001885 root = kzalloc(sizeof(*root), GFP_KERNEL);
1886 if (!root) {
1887 ret = -ENOMEM;
1888 goto out_unlock;
1889 }
1890
1891 init_cgroup_root(root, &opts);
1892
Tejun Heo35585572014-02-13 06:58:38 -05001893 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001894 if (ret)
1895 cgroup_free_root(root);
1896
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001897out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001898 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001899out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001900 kfree(opts.release_agent);
1901 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001902
Tejun Heo2bd59d42014-02-11 11:52:49 -05001903 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001904 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001905
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001906 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1907 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001908 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001909 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08001910
1911 /*
1912 * If @pinned_sb, we're reusing an existing root and holding an
1913 * extra ref on its sb. Mount is complete. Put the extra ref.
1914 */
1915 if (pinned_sb) {
1916 WARN_ON(new_sb);
1917 deactivate_super(pinned_sb);
1918 }
1919
Tejun Heo2bd59d42014-02-11 11:52:49 -05001920 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001921}
1922
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001923static void cgroup_kill_sb(struct super_block *sb)
1924{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001925 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001926 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001927
Tejun Heo9d755d32014-05-14 09:15:02 -04001928 /*
1929 * If @root doesn't have any mounts or children, start killing it.
1930 * This prevents new mounts by disabling percpu_ref_tryget_live().
1931 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001932 *
1933 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001934 */
Johannes Weiner3c606d32015-01-22 10:19:43 -05001935 if (!list_empty(&root->cgrp.self.children) ||
Li Zefan1f779fb2014-06-04 16:48:15 +08001936 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001937 cgroup_put(&root->cgrp);
1938 else
1939 percpu_ref_kill(&root->cgrp.self.refcnt);
1940
Tejun Heo2bd59d42014-02-11 11:52:49 -05001941 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001942}
1943
1944static struct file_system_type cgroup_fs_type = {
1945 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001946 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001947 .kill_sb = cgroup_kill_sb,
1948};
1949
Li Zefana043e3b2008-02-23 15:24:09 -08001950/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001951 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001952 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001953 * @buf: the buffer to write the path into
1954 * @buflen: the length of the buffer
1955 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001956 * Determine @task's cgroup on the first (the one with the lowest non-zero
1957 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1958 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1959 * cgroup controller callbacks.
1960 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001961 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001962 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001963char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001964{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001965 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001966 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001967 int hierarchy_id = 1;
1968 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001969
1970 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001971 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001972
Tejun Heo913ffdb2013-07-11 16:34:48 -07001973 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1974
Tejun Heo857a2be2013-04-14 20:50:08 -07001975 if (root) {
1976 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001977 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001978 } else {
1979 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001980 if (strlcpy(buf, "/", buflen) < buflen)
1981 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001982 }
1983
Tejun Heo96d365e2014-02-13 06:58:40 -05001984 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001985 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001986 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001987}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001988EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001989
Tejun Heob3dc0942014-02-25 10:04:01 -05001990/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001991struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001992 /* the src and dst cset list running through cset->mg_node */
1993 struct list_head src_csets;
1994 struct list_head dst_csets;
1995
1996 /*
1997 * Fields for cgroup_taskset_*() iteration.
1998 *
1999 * Before migration is committed, the target migration tasks are on
2000 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
2001 * the csets on ->dst_csets. ->csets point to either ->src_csets
2002 * or ->dst_csets depending on whether migration is committed.
2003 *
2004 * ->cur_csets and ->cur_task point to the current task position
2005 * during iteration.
2006 */
2007 struct list_head *csets;
2008 struct css_set *cur_cset;
2009 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002010};
2011
2012/**
2013 * cgroup_taskset_first - reset taskset and return the first task
2014 * @tset: taskset of interest
2015 *
2016 * @tset iteration is initialized and the first task is returned.
2017 */
2018struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
2019{
Tejun Heob3dc0942014-02-25 10:04:01 -05002020 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2021 tset->cur_task = NULL;
2022
2023 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002024}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002025
2026/**
2027 * cgroup_taskset_next - iterate to the next task in taskset
2028 * @tset: taskset of interest
2029 *
2030 * Return the next task in @tset. Iteration must have been initialized
2031 * with cgroup_taskset_first().
2032 */
2033struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
2034{
Tejun Heob3dc0942014-02-25 10:04:01 -05002035 struct css_set *cset = tset->cur_cset;
2036 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002037
Tejun Heob3dc0942014-02-25 10:04:01 -05002038 while (&cset->mg_node != tset->csets) {
2039 if (!task)
2040 task = list_first_entry(&cset->mg_tasks,
2041 struct task_struct, cg_list);
2042 else
2043 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002044
Tejun Heob3dc0942014-02-25 10:04:01 -05002045 if (&task->cg_list != &cset->mg_tasks) {
2046 tset->cur_cset = cset;
2047 tset->cur_task = task;
2048 return task;
2049 }
2050
2051 cset = list_next_entry(cset, mg_node);
2052 task = NULL;
2053 }
2054
2055 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002056}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002057
2058/**
Ben Blum74a11662011-05-26 16:25:20 -07002059 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02002060 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002061 * @tsk: the task being migrated
2062 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07002063 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002064 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07002065 */
Tejun Heo5abb8852013-06-12 21:04:49 -07002066static void cgroup_task_migrate(struct cgroup *old_cgrp,
2067 struct task_struct *tsk,
2068 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07002069{
Tejun Heo5abb8852013-06-12 21:04:49 -07002070 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07002071
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002072 lockdep_assert_held(&cgroup_mutex);
2073 lockdep_assert_held(&css_set_rwsem);
2074
Ben Blum74a11662011-05-26 16:25:20 -07002075 /*
Tejun Heod59cfc02015-05-13 16:35:17 -04002076 * We are synchronized through cgroup_threadgroup_rwsem against
2077 * PF_EXITING setting such that we can't race against cgroup_exit()
2078 * changing the css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07002079 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01002080 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07002081 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07002082
Tejun Heob3dc0942014-02-25 10:04:01 -05002083 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07002084 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002085
Tejun Heo1b9aba42014-03-19 17:43:21 -04002086 /*
2087 * Use move_tail so that cgroup_taskset_first() still returns the
2088 * leader after migration. This works because cgroup_migrate()
2089 * ensures that the dst_cset of the leader is the first on the
2090 * tset's dst_csets list.
2091 */
2092 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07002093
2094 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07002095 * We just gained a reference on old_cset by taking it from the
2096 * task. As trading it for new_cset is protected by cgroup_mutex,
2097 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07002098 */
Zefan Lia25eb522014-09-19 16:51:00 +08002099 put_css_set_locked(old_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002100}
2101
Li Zefana043e3b2008-02-23 15:24:09 -08002102/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002103 * cgroup_migrate_finish - cleanup after attach
2104 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002105 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002106 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2107 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002108 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002109static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002110{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002111 struct css_set *cset, *tmp_cset;
2112
2113 lockdep_assert_held(&cgroup_mutex);
2114
2115 down_write(&css_set_rwsem);
2116 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2117 cset->mg_src_cgrp = NULL;
2118 cset->mg_dst_cset = NULL;
2119 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002120 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002121 }
2122 up_write(&css_set_rwsem);
2123}
2124
2125/**
2126 * cgroup_migrate_add_src - add a migration source css_set
2127 * @src_cset: the source css_set to add
2128 * @dst_cgrp: the destination cgroup
2129 * @preloaded_csets: list of preloaded css_sets
2130 *
2131 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2132 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2133 * up by cgroup_migrate_finish().
2134 *
Tejun Heod59cfc02015-05-13 16:35:17 -04002135 * This function may be called without holding cgroup_threadgroup_rwsem
2136 * even if the target is a process. Threads may be created and destroyed
2137 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2138 * into play and the preloaded css_sets are guaranteed to cover all
2139 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002140 */
2141static void cgroup_migrate_add_src(struct css_set *src_cset,
2142 struct cgroup *dst_cgrp,
2143 struct list_head *preloaded_csets)
2144{
2145 struct cgroup *src_cgrp;
2146
2147 lockdep_assert_held(&cgroup_mutex);
2148 lockdep_assert_held(&css_set_rwsem);
2149
2150 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2151
Tejun Heo1958d2d2014-02-25 10:04:03 -05002152 if (!list_empty(&src_cset->mg_preload_node))
2153 return;
2154
2155 WARN_ON(src_cset->mg_src_cgrp);
2156 WARN_ON(!list_empty(&src_cset->mg_tasks));
2157 WARN_ON(!list_empty(&src_cset->mg_node));
2158
2159 src_cset->mg_src_cgrp = src_cgrp;
2160 get_css_set(src_cset);
2161 list_add(&src_cset->mg_preload_node, preloaded_csets);
2162}
2163
2164/**
2165 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002166 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002167 * @preloaded_csets: list of preloaded source css_sets
2168 *
2169 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2170 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002171 * pins all destination css_sets, links each to its source, and append them
2172 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2173 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002174 *
2175 * This function must be called after cgroup_migrate_add_src() has been
2176 * called on each migration source css_set. After migration is performed
2177 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2178 * @preloaded_csets.
2179 */
2180static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2181 struct list_head *preloaded_csets)
2182{
2183 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002184 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002185
2186 lockdep_assert_held(&cgroup_mutex);
2187
Tejun Heof8f22e52014-04-23 11:13:16 -04002188 /*
2189 * Except for the root, child_subsys_mask must be zero for a cgroup
2190 * with tasks so that child cgroups don't compete against tasks.
2191 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002192 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002193 dst_cgrp->child_subsys_mask)
2194 return -EBUSY;
2195
Tejun Heo1958d2d2014-02-25 10:04:03 -05002196 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002197 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002198 struct css_set *dst_cset;
2199
Tejun Heof817de92014-04-23 11:13:16 -04002200 dst_cset = find_css_set(src_cset,
2201 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002202 if (!dst_cset)
2203 goto err;
2204
2205 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002206
2207 /*
2208 * If src cset equals dst, it's noop. Drop the src.
2209 * cgroup_migrate() will skip the cset too. Note that we
2210 * can't handle src == dst as some nodes are used by both.
2211 */
2212 if (src_cset == dst_cset) {
2213 src_cset->mg_src_cgrp = NULL;
2214 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002215 put_css_set(src_cset);
2216 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002217 continue;
2218 }
2219
Tejun Heo1958d2d2014-02-25 10:04:03 -05002220 src_cset->mg_dst_cset = dst_cset;
2221
2222 if (list_empty(&dst_cset->mg_preload_node))
2223 list_add(&dst_cset->mg_preload_node, &csets);
2224 else
Zefan Lia25eb522014-09-19 16:51:00 +08002225 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002226 }
2227
Tejun Heof817de92014-04-23 11:13:16 -04002228 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002229 return 0;
2230err:
2231 cgroup_migrate_finish(&csets);
2232 return -ENOMEM;
2233}
2234
2235/**
2236 * cgroup_migrate - migrate a process or task to a cgroup
2237 * @cgrp: the destination cgroup
2238 * @leader: the leader of the process or the task to migrate
2239 * @threadgroup: whether @leader points to the whole process or a single task
2240 *
2241 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
Tejun Heod59cfc02015-05-13 16:35:17 -04002242 * process, the caller must be holding cgroup_threadgroup_rwsem. The
Tejun Heo1958d2d2014-02-25 10:04:03 -05002243 * caller is also responsible for invoking cgroup_migrate_add_src() and
2244 * cgroup_migrate_prepare_dst() on the targets before invoking this
2245 * function and following up with cgroup_migrate_finish().
2246 *
2247 * As long as a controller's ->can_attach() doesn't fail, this function is
2248 * guaranteed to succeed. This means that, excluding ->can_attach()
2249 * failure, when migrating multiple targets, the success or failure can be
2250 * decided for all targets by invoking group_migrate_prepare_dst() before
2251 * actually starting migrating.
2252 */
2253static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2254 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002255{
Tejun Heob3dc0942014-02-25 10:04:01 -05002256 struct cgroup_taskset tset = {
2257 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2258 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2259 .csets = &tset.src_csets,
2260 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002261 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002262 struct css_set *cset, *tmp_cset;
2263 struct task_struct *task, *tmp_task;
2264 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002265
2266 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002267 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2268 * already PF_EXITING could be freed from underneath us unless we
2269 * take an rcu_read_lock.
2270 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002271 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002272 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002273 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002274 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002275 /* @task either already exited or can't exit until the end */
2276 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002277 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002278
Tejun Heoeaf797a2014-02-25 10:04:03 -05002279 /* leave @task alone if post_fork() hasn't linked it yet */
2280 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002281 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002282
Tejun Heob3dc0942014-02-25 10:04:01 -05002283 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002284 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002285 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002286
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002287 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002288 * cgroup_taskset_first() must always return the leader.
2289 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002290 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002291 list_move_tail(&task->cg_list, &cset->mg_tasks);
2292 if (list_empty(&cset->mg_node))
2293 list_add_tail(&cset->mg_node, &tset.src_csets);
2294 if (list_empty(&cset->mg_dst_cset->mg_node))
2295 list_move_tail(&cset->mg_dst_cset->mg_node,
2296 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002297 next:
Li Zefan081aa452013-03-13 09:17:09 +08002298 if (!threadgroup)
2299 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002300 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002301 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002302 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002303
Tejun Heo134d3372011-12-12 18:12:21 -08002304 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002305 if (list_empty(&tset.src_csets))
2306 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002307
Tejun Heo1958d2d2014-02-25 10:04:03 -05002308 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002309 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002310 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002311 ret = css->ss->can_attach(css, &tset);
2312 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002313 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002314 goto out_cancel_attach;
2315 }
2316 }
Ben Blum74a11662011-05-26 16:25:20 -07002317 }
2318
2319 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002320 * Now that we're guaranteed success, proceed to move all tasks to
2321 * the new cgroup. There are no failure cases after here, so this
2322 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002323 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002324 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002325 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2326 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2327 cgroup_task_migrate(cset->mg_src_cgrp, task,
2328 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002329 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002330 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002331
2332 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002333 * Migration is committed, all target tasks are now on dst_csets.
2334 * Nothing is sensitive to fork() after this point. Notify
2335 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002336 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002337 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002338
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002339 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002340 if (css->ss->attach)
2341 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002342
Tejun Heo9db8de32014-02-13 06:58:43 -05002343 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002344 goto out_release_tset;
2345
Ben Blum74a11662011-05-26 16:25:20 -07002346out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002347 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002348 if (css == failed_css)
2349 break;
2350 if (css->ss->cancel_attach)
2351 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002352 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002353out_release_tset:
2354 down_write(&css_set_rwsem);
2355 list_splice_init(&tset.dst_csets, &tset.src_csets);
2356 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002357 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002358 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002359 }
2360 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002361 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002362}
2363
Tejun Heo1958d2d2014-02-25 10:04:03 -05002364/**
2365 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2366 * @dst_cgrp: the cgroup to attach to
2367 * @leader: the task or the leader of the threadgroup to be attached
2368 * @threadgroup: attach the whole threadgroup?
2369 *
Tejun Heod59cfc02015-05-13 16:35:17 -04002370 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002371 */
2372static int cgroup_attach_task(struct cgroup *dst_cgrp,
2373 struct task_struct *leader, bool threadgroup)
2374{
2375 LIST_HEAD(preloaded_csets);
2376 struct task_struct *task;
2377 int ret;
2378
2379 /* look up all src csets */
2380 down_read(&css_set_rwsem);
2381 rcu_read_lock();
2382 task = leader;
2383 do {
2384 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2385 &preloaded_csets);
2386 if (!threadgroup)
2387 break;
2388 } while_each_thread(leader, task);
2389 rcu_read_unlock();
2390 up_read(&css_set_rwsem);
2391
2392 /* prepare dst csets and commit */
2393 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2394 if (!ret)
2395 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2396
2397 cgroup_migrate_finish(&preloaded_csets);
2398 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002399}
2400
Tejun Heo187fe842015-06-18 16:54:28 -04002401static int cgroup_procs_write_permission(struct task_struct *task,
2402 struct cgroup *dst_cgrp,
2403 struct kernfs_open_file *of)
Tejun Heodedf22e2015-06-18 16:54:28 -04002404{
2405 const struct cred *cred = current_cred();
2406 const struct cred *tcred = get_task_cred(task);
2407 int ret = 0;
2408
2409 /*
2410 * even if we're attaching all tasks in the thread group, we only
2411 * need to check permissions on one of them.
2412 */
2413 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2414 !uid_eq(cred->euid, tcred->uid) &&
2415 !uid_eq(cred->euid, tcred->suid))
2416 ret = -EACCES;
2417
Tejun Heo187fe842015-06-18 16:54:28 -04002418 if (!ret && cgroup_on_dfl(dst_cgrp)) {
2419 struct super_block *sb = of->file->f_path.dentry->d_sb;
2420 struct cgroup *cgrp;
2421 struct inode *inode;
2422
2423 down_read(&css_set_rwsem);
2424 cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
2425 up_read(&css_set_rwsem);
2426
2427 while (!cgroup_is_descendant(dst_cgrp, cgrp))
2428 cgrp = cgroup_parent(cgrp);
2429
2430 ret = -ENOMEM;
2431 inode = kernfs_get_inode(sb, cgrp->procs_kn);
2432 if (inode) {
2433 ret = inode_permission(inode, MAY_WRITE);
2434 iput(inode);
2435 }
2436 }
2437
Tejun Heodedf22e2015-06-18 16:54:28 -04002438 put_cred(tcred);
2439 return ret;
2440}
2441
Ben Blum74a11662011-05-26 16:25:20 -07002442/*
2443 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002444 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002445 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002446 */
Tejun Heoacbef752014-05-13 12:16:22 -04002447static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2448 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002449{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002450 struct task_struct *tsk;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002451 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002452 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002453 int ret;
2454
Tejun Heoacbef752014-05-13 12:16:22 -04002455 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2456 return -EINVAL;
2457
Tejun Heoe76ecae2014-05-13 12:19:23 -04002458 cgrp = cgroup_kn_lock_live(of->kn);
2459 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002460 return -ENODEV;
2461
Tejun Heob5ba75b2015-05-13 16:35:18 -04002462 percpu_down_write(&cgroup_threadgroup_rwsem);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002463 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002464 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002465 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002466 if (!tsk) {
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002467 ret = -ESRCH;
Tejun Heob5ba75b2015-05-13 16:35:18 -04002468 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002469 }
Tejun Heodedf22e2015-06-18 16:54:28 -04002470 } else {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002471 tsk = current;
Tejun Heodedf22e2015-06-18 16:54:28 -04002472 }
Tejun Heocd3d0952011-12-12 18:12:21 -08002473
2474 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002475 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002476
2477 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002478 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002479 * trapped in a cpuset, or RT worker may be born in a cgroup
2480 * with no rt_runtime allocated. Just say no.
2481 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002482 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002483 ret = -EINVAL;
Tejun Heob5ba75b2015-05-13 16:35:18 -04002484 goto out_unlock_rcu;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002485 }
2486
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002487 get_task_struct(tsk);
2488 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002489
Tejun Heo187fe842015-06-18 16:54:28 -04002490 ret = cgroup_procs_write_permission(tsk, cgrp, of);
Tejun Heodedf22e2015-06-18 16:54:28 -04002491 if (!ret)
2492 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
Li Zefan081aa452013-03-13 09:17:09 +08002493
Paul Menagebbcb81d2007-10-18 23:39:32 -07002494 put_task_struct(tsk);
Tejun Heob5ba75b2015-05-13 16:35:18 -04002495 goto out_unlock_threadgroup;
2496
2497out_unlock_rcu:
2498 rcu_read_unlock();
2499out_unlock_threadgroup:
2500 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002501 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002502 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002503}
2504
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002505/**
2506 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2507 * @from: attach to all cgroups of a given task
2508 * @tsk: the task to be attached
2509 */
2510int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2511{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002512 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002513 int retval = 0;
2514
Tejun Heo47cfcd02013-04-07 09:29:51 -07002515 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002516 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002517 struct cgroup *from_cgrp;
2518
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002519 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002520 continue;
2521
Tejun Heo96d365e2014-02-13 06:58:40 -05002522 down_read(&css_set_rwsem);
2523 from_cgrp = task_cgroup_from_root(from, root);
2524 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002525
Li Zefan6f4b7e62013-07-31 16:18:36 +08002526 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002527 if (retval)
2528 break;
2529 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002530 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002531
2532 return retval;
2533}
2534EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2535
Tejun Heoacbef752014-05-13 12:16:22 -04002536static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2537 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002538{
Tejun Heoacbef752014-05-13 12:16:22 -04002539 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002540}
2541
Tejun Heoacbef752014-05-13 12:16:22 -04002542static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2543 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002544{
Tejun Heoacbef752014-05-13 12:16:22 -04002545 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002546}
2547
Tejun Heo451af502014-05-13 12:16:21 -04002548static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2549 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002550{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002551 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002552
Tejun Heoe76ecae2014-05-13 12:19:23 -04002553 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2554
2555 cgrp = cgroup_kn_lock_live(of->kn);
2556 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002557 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002558 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002559 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2560 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002561 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002562 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002563 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002564}
2565
Tejun Heo2da8ca82013-12-05 12:28:04 -05002566static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002567{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002568 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002569
Tejun Heo46cfeb02014-05-13 12:11:00 -04002570 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002571 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002572 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002573 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002574 return 0;
2575}
2576
Tejun Heo2da8ca82013-12-05 12:28:04 -05002577static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002578{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002579 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002580 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002581}
2582
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002583static void cgroup_print_ss_mask(struct seq_file *seq, unsigned long ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002584{
2585 struct cgroup_subsys *ss;
2586 bool printed = false;
2587 int ssid;
2588
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002589 for_each_subsys_which(ss, ssid, &ss_mask) {
2590 if (printed)
2591 seq_putc(seq, ' ');
2592 seq_printf(seq, "%s", ss->name);
2593 printed = true;
Tejun Heof8f22e52014-04-23 11:13:16 -04002594 }
2595 if (printed)
2596 seq_putc(seq, '\n');
2597}
2598
2599/* show controllers which are currently attached to the default hierarchy */
2600static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2601{
2602 struct cgroup *cgrp = seq_css(seq)->cgroup;
2603
Tejun Heo5533e012014-05-14 19:33:07 -04002604 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2605 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002606 return 0;
2607}
2608
2609/* show controllers which are enabled from the parent */
2610static int cgroup_controllers_show(struct seq_file *seq, void *v)
2611{
2612 struct cgroup *cgrp = seq_css(seq)->cgroup;
2613
Tejun Heo667c2492014-07-08 18:02:56 -04002614 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002615 return 0;
2616}
2617
2618/* show controllers which are enabled for a given cgroup's children */
2619static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2620{
2621 struct cgroup *cgrp = seq_css(seq)->cgroup;
2622
Tejun Heo667c2492014-07-08 18:02:56 -04002623 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002624 return 0;
2625}
2626
2627/**
2628 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2629 * @cgrp: root of the subtree to update csses for
2630 *
2631 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2632 * css associations need to be updated accordingly. This function looks up
2633 * all css_sets which are attached to the subtree, creates the matching
2634 * updated css_sets and migrates the tasks to the new ones.
2635 */
2636static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2637{
2638 LIST_HEAD(preloaded_csets);
2639 struct cgroup_subsys_state *css;
2640 struct css_set *src_cset;
2641 int ret;
2642
Tejun Heof8f22e52014-04-23 11:13:16 -04002643 lockdep_assert_held(&cgroup_mutex);
2644
Tejun Heob5ba75b2015-05-13 16:35:18 -04002645 percpu_down_write(&cgroup_threadgroup_rwsem);
2646
Tejun Heof8f22e52014-04-23 11:13:16 -04002647 /* look up all csses currently attached to @cgrp's subtree */
2648 down_read(&css_set_rwsem);
2649 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2650 struct cgrp_cset_link *link;
2651
2652 /* self is not affected by child_subsys_mask change */
2653 if (css->cgroup == cgrp)
2654 continue;
2655
2656 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2657 cgroup_migrate_add_src(link->cset, cgrp,
2658 &preloaded_csets);
2659 }
2660 up_read(&css_set_rwsem);
2661
2662 /* NULL dst indicates self on default hierarchy */
2663 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2664 if (ret)
2665 goto out_finish;
2666
2667 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2668 struct task_struct *last_task = NULL, *task;
2669
2670 /* src_csets precede dst_csets, break on the first dst_cset */
2671 if (!src_cset->mg_src_cgrp)
2672 break;
2673
2674 /*
2675 * All tasks in src_cset need to be migrated to the
2676 * matching dst_cset. Empty it process by process. We
2677 * walk tasks but migrate processes. The leader might even
2678 * belong to a different cset but such src_cset would also
2679 * be among the target src_csets because the default
2680 * hierarchy enforces per-process membership.
2681 */
2682 while (true) {
2683 down_read(&css_set_rwsem);
2684 task = list_first_entry_or_null(&src_cset->tasks,
2685 struct task_struct, cg_list);
2686 if (task) {
2687 task = task->group_leader;
2688 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2689 get_task_struct(task);
2690 }
2691 up_read(&css_set_rwsem);
2692
2693 if (!task)
2694 break;
2695
2696 /* guard against possible infinite loop */
2697 if (WARN(last_task == task,
2698 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2699 goto out_finish;
2700 last_task = task;
2701
Tejun Heof8f22e52014-04-23 11:13:16 -04002702 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2703
Tejun Heof8f22e52014-04-23 11:13:16 -04002704 put_task_struct(task);
2705
2706 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2707 goto out_finish;
2708 }
2709 }
2710
2711out_finish:
2712 cgroup_migrate_finish(&preloaded_csets);
Tejun Heob5ba75b2015-05-13 16:35:18 -04002713 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002714 return ret;
2715}
2716
2717/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002718static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2719 char *buf, size_t nbytes,
2720 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002721{
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002722 unsigned long enable = 0, disable = 0;
2723 unsigned long css_enable, css_disable, old_sc, new_sc, old_ss, new_ss;
Tejun Heoa9746d82014-05-13 12:19:22 -04002724 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002725 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002726 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002727 int ssid, ret;
2728
2729 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002730 * Parse input - space separated list of subsystem names prefixed
2731 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002732 */
Tejun Heo451af502014-05-13 12:16:21 -04002733 buf = strstrip(buf);
2734 while ((tok = strsep(&buf, " "))) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002735 unsigned long tmp_ss_mask = ~cgrp_dfl_root_inhibit_ss_mask;
2736
Tejun Heod37167a2014-05-13 12:10:59 -04002737 if (tok[0] == '\0')
2738 continue;
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002739 for_each_subsys_which(ss, ssid, &tmp_ss_mask) {
2740 if (ss->disabled || strcmp(tok + 1, ss->name))
Tejun Heof8f22e52014-04-23 11:13:16 -04002741 continue;
2742
2743 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002744 enable |= 1 << ssid;
2745 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002746 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002747 disable |= 1 << ssid;
2748 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002749 } else {
2750 return -EINVAL;
2751 }
2752 break;
2753 }
2754 if (ssid == CGROUP_SUBSYS_COUNT)
2755 return -EINVAL;
2756 }
2757
Tejun Heoa9746d82014-05-13 12:19:22 -04002758 cgrp = cgroup_kn_lock_live(of->kn);
2759 if (!cgrp)
2760 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002761
2762 for_each_subsys(ss, ssid) {
2763 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002764 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002765 enable &= ~(1 << ssid);
2766 continue;
2767 }
2768
Tejun Heoc29adf22014-07-08 18:02:56 -04002769 /* unavailable or not enabled on the parent? */
2770 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2771 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002772 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002773 ret = -ENOENT;
2774 goto out_unlock;
2775 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002776 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002777 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002778 disable &= ~(1 << ssid);
2779 continue;
2780 }
2781
2782 /* a child has it enabled? */
2783 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002784 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002785 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002786 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002787 }
2788 }
2789 }
2790 }
2791
2792 if (!enable && !disable) {
2793 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002794 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002795 }
2796
2797 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002798 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002799 * with tasks so that child cgroups don't compete against tasks.
2800 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002801 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002802 ret = -EBUSY;
2803 goto out_unlock;
2804 }
2805
2806 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002807 * Update subsys masks and calculate what needs to be done. More
2808 * subsystems than specified may need to be enabled or disabled
2809 * depending on subsystem dependencies.
2810 */
Tejun Heo755bf5e2014-11-18 02:49:50 -05002811 old_sc = cgrp->subtree_control;
2812 old_ss = cgrp->child_subsys_mask;
2813 new_sc = (old_sc | enable) & ~disable;
2814 new_ss = cgroup_calc_child_subsys_mask(cgrp, new_sc);
Tejun Heoc29adf22014-07-08 18:02:56 -04002815
Tejun Heo755bf5e2014-11-18 02:49:50 -05002816 css_enable = ~old_ss & new_ss;
2817 css_disable = old_ss & ~new_ss;
Tejun Heof63070d2014-07-08 18:02:57 -04002818 enable |= css_enable;
2819 disable |= css_disable;
2820
Tejun Heodb6e3052014-11-18 02:49:51 -05002821 /*
2822 * Because css offlining is asynchronous, userland might try to
2823 * re-enable the same controller while the previous instance is
2824 * still around. In such cases, wait till it's gone using
2825 * offline_waitq.
2826 */
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002827 for_each_subsys_which(ss, ssid, &css_enable) {
Tejun Heodb6e3052014-11-18 02:49:51 -05002828 cgroup_for_each_live_child(child, cgrp) {
2829 DEFINE_WAIT(wait);
2830
2831 if (!cgroup_css(child, ss))
2832 continue;
2833
2834 cgroup_get(child);
2835 prepare_to_wait(&child->offline_waitq, &wait,
2836 TASK_UNINTERRUPTIBLE);
2837 cgroup_kn_unlock(of->kn);
2838 schedule();
2839 finish_wait(&child->offline_waitq, &wait);
2840 cgroup_put(child);
2841
2842 return restart_syscall();
2843 }
2844 }
2845
Tejun Heo755bf5e2014-11-18 02:49:50 -05002846 cgrp->subtree_control = new_sc;
2847 cgrp->child_subsys_mask = new_ss;
2848
Tejun Heof63070d2014-07-08 18:02:57 -04002849 /*
2850 * Create new csses or make the existing ones visible. A css is
2851 * created invisible if it's being implicitly enabled through
2852 * dependency. An invisible css is made visible when the userland
2853 * explicitly enables it.
Tejun Heof8f22e52014-04-23 11:13:16 -04002854 */
2855 for_each_subsys(ss, ssid) {
2856 if (!(enable & (1 << ssid)))
2857 continue;
2858
2859 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04002860 if (css_enable & (1 << ssid))
2861 ret = create_css(child, ss,
2862 cgrp->subtree_control & (1 << ssid));
2863 else
2864 ret = cgroup_populate_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002865 if (ret)
2866 goto err_undo_css;
2867 }
2868 }
2869
Tejun Heoc29adf22014-07-08 18:02:56 -04002870 /*
2871 * At this point, cgroup_e_css() results reflect the new csses
2872 * making the following cgroup_update_dfl_csses() properly update
2873 * css associations of all tasks in the subtree.
2874 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002875 ret = cgroup_update_dfl_csses(cgrp);
2876 if (ret)
2877 goto err_undo_css;
2878
Tejun Heof63070d2014-07-08 18:02:57 -04002879 /*
2880 * All tasks are migrated out of disabled csses. Kill or hide
2881 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002882 * disabled while other subsystems are still depending on it. The
2883 * css must not actively control resources and be in the vanilla
2884 * state if it's made visible again later. Controllers which may
2885 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04002886 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002887 for_each_subsys(ss, ssid) {
2888 if (!(disable & (1 << ssid)))
2889 continue;
2890
Tejun Heof63070d2014-07-08 18:02:57 -04002891 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002892 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2893
2894 if (css_disable & (1 << ssid)) {
2895 kill_css(css);
2896 } else {
Tejun Heof63070d2014-07-08 18:02:57 -04002897 cgroup_clear_dir(child, 1 << ssid);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002898 if (ss->css_reset)
2899 ss->css_reset(css);
2900 }
Tejun Heof63070d2014-07-08 18:02:57 -04002901 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002902 }
2903
Tejun Heo56c807b2014-11-18 02:49:51 -05002904 /*
2905 * The effective csses of all the descendants (excluding @cgrp) may
2906 * have changed. Subsystems can optionally subscribe to this event
2907 * by implementing ->css_e_css_changed() which is invoked if any of
2908 * the effective csses seen from the css's cgroup may have changed.
2909 */
2910 for_each_subsys(ss, ssid) {
2911 struct cgroup_subsys_state *this_css = cgroup_css(cgrp, ss);
2912 struct cgroup_subsys_state *css;
2913
2914 if (!ss->css_e_css_changed || !this_css)
2915 continue;
2916
2917 css_for_each_descendant_pre(css, this_css)
2918 if (css != this_css)
2919 ss->css_e_css_changed(css);
2920 }
2921
Tejun Heof8f22e52014-04-23 11:13:16 -04002922 kernfs_activate(cgrp->kn);
2923 ret = 0;
2924out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002925 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002926 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002927
2928err_undo_css:
Tejun Heo755bf5e2014-11-18 02:49:50 -05002929 cgrp->subtree_control = old_sc;
2930 cgrp->child_subsys_mask = old_ss;
Tejun Heof8f22e52014-04-23 11:13:16 -04002931
2932 for_each_subsys(ss, ssid) {
2933 if (!(enable & (1 << ssid)))
2934 continue;
2935
2936 cgroup_for_each_live_child(child, cgrp) {
2937 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04002938
2939 if (!css)
2940 continue;
2941
2942 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04002943 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04002944 else
2945 cgroup_clear_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002946 }
2947 }
2948 goto out_unlock;
2949}
2950
Tejun Heo842b5972014-04-25 18:28:02 -04002951static int cgroup_populated_show(struct seq_file *seq, void *v)
2952{
2953 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2954 return 0;
2955}
2956
Tejun Heo2bd59d42014-02-11 11:52:49 -05002957static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2958 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002959{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002960 struct cgroup *cgrp = of->kn->parent->priv;
2961 struct cftype *cft = of->kn->priv;
2962 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002963 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002964
Tejun Heob4168642014-05-13 12:16:21 -04002965 if (cft->write)
2966 return cft->write(of, buf, nbytes, off);
2967
Tejun Heo2bd59d42014-02-11 11:52:49 -05002968 /*
2969 * kernfs guarantees that a file isn't deleted with operations in
2970 * flight, which means that the matching css is and stays alive and
2971 * doesn't need to be pinned. The RCU locking is not necessary
2972 * either. It's just for the convenience of using cgroup_css().
2973 */
2974 rcu_read_lock();
2975 css = cgroup_css(cgrp, cft->ss);
2976 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002977
Tejun Heo451af502014-05-13 12:16:21 -04002978 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002979 unsigned long long v;
2980 ret = kstrtoull(buf, 0, &v);
2981 if (!ret)
2982 ret = cft->write_u64(css, cft, v);
2983 } else if (cft->write_s64) {
2984 long long v;
2985 ret = kstrtoll(buf, 0, &v);
2986 if (!ret)
2987 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002988 } else {
2989 ret = -EINVAL;
2990 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002991
Tejun Heoa742c592013-12-05 12:28:03 -05002992 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002993}
2994
Tejun Heo6612f052013-12-05 12:28:04 -05002995static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002996{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002997 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002998}
2999
3000static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
3001{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003002 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003003}
3004
3005static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3006{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003007 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07003008}
3009
3010static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3011{
Tejun Heo7da11272013-12-05 12:28:04 -05003012 struct cftype *cft = seq_cft(m);
3013 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08003014
Tejun Heo2da8ca82013-12-05 12:28:04 -05003015 if (cft->seq_show)
3016 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07003017
Tejun Heo896f5192013-12-05 12:28:04 -05003018 if (cft->read_u64)
3019 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3020 else if (cft->read_s64)
3021 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3022 else
3023 return -EINVAL;
3024 return 0;
Paul Menage91796562008-04-29 01:00:01 -07003025}
3026
Tejun Heo2bd59d42014-02-11 11:52:49 -05003027static struct kernfs_ops cgroup_kf_single_ops = {
3028 .atomic_write_len = PAGE_SIZE,
3029 .write = cgroup_file_write,
3030 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07003031};
3032
Tejun Heo2bd59d42014-02-11 11:52:49 -05003033static struct kernfs_ops cgroup_kf_ops = {
3034 .atomic_write_len = PAGE_SIZE,
3035 .write = cgroup_file_write,
3036 .seq_start = cgroup_seqfile_start,
3037 .seq_next = cgroup_seqfile_next,
3038 .seq_stop = cgroup_seqfile_stop,
3039 .seq_show = cgroup_seqfile_show,
3040};
Paul Menageddbcc7e2007-10-18 23:39:30 -07003041
3042/*
3043 * cgroup_rename - Only allow simple rename of directories in place.
3044 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003045static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
3046 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003047{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003048 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08003049 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08003050
Tejun Heo2bd59d42014-02-11 11:52:49 -05003051 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003052 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003053 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003054 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08003055
Tejun Heo6db8e852013-06-14 11:18:22 -07003056 /*
3057 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04003058 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07003059 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003060 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07003061 return -EPERM;
3062
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003063 /*
Tejun Heo8353da12014-05-13 12:19:23 -04003064 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003065 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04003066 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003067 */
3068 kernfs_break_active_protection(new_parent);
3069 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08003070
Tejun Heo2bd59d42014-02-11 11:52:49 -05003071 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003072
Tejun Heo2bd59d42014-02-11 11:52:49 -05003073 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08003074
Tejun Heo2bd59d42014-02-11 11:52:49 -05003075 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003076
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003077 kernfs_unbreak_active_protection(kn);
3078 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003079 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07003080}
3081
Tejun Heo49957f82014-04-07 16:44:47 -04003082/* set uid and gid of cgroup dirs and files to that of the creator */
3083static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3084{
3085 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3086 .ia_uid = current_fsuid(),
3087 .ia_gid = current_fsgid(), };
3088
3089 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3090 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3091 return 0;
3092
3093 return kernfs_setattr(kn, &iattr);
3094}
3095
Tejun Heo2bb566c2013-08-08 20:11:23 -04003096static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003097{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003098 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003099 struct kernfs_node *kn;
3100 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003101 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003102
Tejun Heo2bd59d42014-02-11 11:52:49 -05003103#ifdef CONFIG_DEBUG_LOCK_ALLOC
3104 key = &cft->lockdep_key;
3105#endif
3106 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3107 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003108 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003109 if (IS_ERR(kn))
3110 return PTR_ERR(kn);
3111
3112 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003113 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003114 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003115 return ret;
3116 }
3117
Tejun Heo187fe842015-06-18 16:54:28 -04003118 if (cft->write == cgroup_procs_write)
3119 cgrp->procs_kn = kn;
3120 else if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04003121 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04003122 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003123}
3124
Tejun Heob1f28d32013-06-28 16:24:10 -07003125/**
3126 * cgroup_addrm_files - add or remove files to a cgroup directory
3127 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07003128 * @cfts: array of cftypes to be added
3129 * @is_add: whether to add or remove
3130 *
3131 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04003132 * For removals, this function never fails. If addition fails, this
3133 * function doesn't remove files already added. The caller is responsible
3134 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07003135 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04003136static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
3137 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003138{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003139 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07003140 int ret;
3141
Tejun Heo01f64742014-05-13 12:19:23 -04003142 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003143
3144 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003145 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003146 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003147 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003148 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003149 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003150 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003151 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003152 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003153 continue;
3154
Li Zefan2739d3c2013-01-21 18:18:33 +08003155 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04003156 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003157 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003158 pr_warn("%s: failed to add %s, err=%d\n",
3159 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07003160 return ret;
3161 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003162 } else {
3163 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003164 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003165 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003166 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003167}
3168
Tejun Heo21a2d342014-02-12 09:29:49 -05003169static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003170{
3171 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003172 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003173 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003174 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003175 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003176
Tejun Heo01f64742014-05-13 12:19:23 -04003177 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003178
Li Zefane8c82d22013-06-18 18:48:37 +08003179 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003180 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003181 struct cgroup *cgrp = css->cgroup;
3182
Li Zefane8c82d22013-06-18 18:48:37 +08003183 if (cgroup_is_dead(cgrp))
3184 continue;
3185
Tejun Heo21a2d342014-02-12 09:29:49 -05003186 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003187 if (ret)
3188 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003189 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003190
3191 if (is_add && !ret)
3192 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003193 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003194}
3195
Tejun Heo2da440a2014-02-11 11:52:48 -05003196static void cgroup_exit_cftypes(struct cftype *cfts)
3197{
3198 struct cftype *cft;
3199
Tejun Heo2bd59d42014-02-11 11:52:49 -05003200 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3201 /* free copy for custom atomic_write_len, see init_cftypes() */
3202 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3203 kfree(cft->kf_ops);
3204 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003205 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003206
3207 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003208 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003209 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003210}
3211
Tejun Heo2bd59d42014-02-11 11:52:49 -05003212static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003213{
3214 struct cftype *cft;
3215
Tejun Heo2bd59d42014-02-11 11:52:49 -05003216 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3217 struct kernfs_ops *kf_ops;
3218
Tejun Heo0adb0702014-02-12 09:29:48 -05003219 WARN_ON(cft->ss || cft->kf_ops);
3220
Tejun Heo2bd59d42014-02-11 11:52:49 -05003221 if (cft->seq_start)
3222 kf_ops = &cgroup_kf_ops;
3223 else
3224 kf_ops = &cgroup_kf_single_ops;
3225
3226 /*
3227 * Ugh... if @cft wants a custom max_write_len, we need to
3228 * make a copy of kf_ops to set its atomic_write_len.
3229 */
3230 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3231 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3232 if (!kf_ops) {
3233 cgroup_exit_cftypes(cfts);
3234 return -ENOMEM;
3235 }
3236 kf_ops->atomic_write_len = cft->max_write_len;
3237 }
3238
3239 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003240 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003241 }
3242
3243 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003244}
3245
Tejun Heo21a2d342014-02-12 09:29:49 -05003246static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3247{
Tejun Heo01f64742014-05-13 12:19:23 -04003248 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003249
3250 if (!cfts || !cfts[0].ss)
3251 return -ENOENT;
3252
3253 list_del(&cfts->node);
3254 cgroup_apply_cftypes(cfts, false);
3255 cgroup_exit_cftypes(cfts);
3256 return 0;
3257}
3258
Tejun Heo8e3f6542012-04-01 12:09:55 -07003259/**
Tejun Heo80b13582014-02-12 09:29:48 -05003260 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3261 * @cfts: zero-length name terminated array of cftypes
3262 *
3263 * Unregister @cfts. Files described by @cfts are removed from all
3264 * existing cgroups and all future cgroups won't have them either. This
3265 * function can be called anytime whether @cfts' subsys is attached or not.
3266 *
3267 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3268 * registered.
3269 */
3270int cgroup_rm_cftypes(struct cftype *cfts)
3271{
Tejun Heo21a2d342014-02-12 09:29:49 -05003272 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003273
Tejun Heo01f64742014-05-13 12:19:23 -04003274 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003275 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003276 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003277 return ret;
3278}
3279
3280/**
3281 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3282 * @ss: target cgroup subsystem
3283 * @cfts: zero-length name terminated array of cftypes
3284 *
3285 * Register @cfts to @ss. Files described by @cfts are created for all
3286 * existing cgroups to which @ss is attached and all future cgroups will
3287 * have them too. This function can be called anytime whether @ss is
3288 * attached or not.
3289 *
3290 * Returns 0 on successful registration, -errno on failure. Note that this
3291 * function currently returns 0 as long as @cfts registration is successful
3292 * even if some file creation attempts on existing cgroups fail.
3293 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003294static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003295{
Tejun Heo9ccece82013-06-28 16:24:11 -07003296 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003297
Li Zefanc731ae12014-06-05 17:16:30 +08003298 if (ss->disabled)
3299 return 0;
3300
Li Zefandc5736e2014-02-17 10:41:50 +08003301 if (!cfts || cfts[0].name[0] == '\0')
3302 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003303
Tejun Heo2bd59d42014-02-11 11:52:49 -05003304 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003305 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003306 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003307
Tejun Heo01f64742014-05-13 12:19:23 -04003308 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003309
Tejun Heo0adb0702014-02-12 09:29:48 -05003310 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003311 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003312 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003313 cgroup_rm_cftypes_locked(cfts);
3314
Tejun Heo01f64742014-05-13 12:19:23 -04003315 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003316 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003317}
Tejun Heo79578622012-04-01 12:09:56 -07003318
3319/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003320 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3321 * @ss: target cgroup subsystem
3322 * @cfts: zero-length name terminated array of cftypes
3323 *
3324 * Similar to cgroup_add_cftypes() but the added files are only used for
3325 * the default hierarchy.
3326 */
3327int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3328{
3329 struct cftype *cft;
3330
3331 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003332 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003333 return cgroup_add_cftypes(ss, cfts);
3334}
3335
3336/**
3337 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3338 * @ss: target cgroup subsystem
3339 * @cfts: zero-length name terminated array of cftypes
3340 *
3341 * Similar to cgroup_add_cftypes() but the added files are only used for
3342 * the legacy hierarchies.
3343 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003344int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3345{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003346 struct cftype *cft;
3347
Vivek Goyalfa8137b2014-08-08 11:44:03 -04003348 /*
3349 * If legacy_flies_on_dfl, we want to show the legacy files on the
3350 * dfl hierarchy but iff the target subsystem hasn't been updated
3351 * for the dfl hierarchy yet.
3352 */
3353 if (!cgroup_legacy_files_on_dfl ||
3354 ss->dfl_cftypes != ss->legacy_cftypes) {
3355 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3356 cft->flags |= __CFTYPE_NOT_ON_DFL;
3357 }
3358
Tejun Heo2cf669a2014-07-15 11:05:09 -04003359 return cgroup_add_cftypes(ss, cfts);
3360}
3361
Li Zefana043e3b2008-02-23 15:24:09 -08003362/**
3363 * cgroup_task_count - count the number of tasks in a cgroup.
3364 * @cgrp: the cgroup in question
3365 *
3366 * Return the number of tasks in the cgroup.
3367 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003368static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003369{
3370 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003371 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003372
Tejun Heo96d365e2014-02-13 06:58:40 -05003373 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003374 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3375 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003376 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003377 return count;
3378}
3379
Tejun Heo574bd9f2012-11-09 09:12:29 -08003380/**
Tejun Heo492eb212013-08-08 20:11:25 -04003381 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003382 * @pos: the current position (%NULL to initiate traversal)
3383 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003384 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003385 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003386 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003387 * that @parent and @pos are accessible. The next sibling is guaranteed to
3388 * be returned regardless of their states.
3389 *
3390 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3391 * css which finished ->css_online() is guaranteed to be visible in the
3392 * future iterations and will stay visible until the last reference is put.
3393 * A css which hasn't finished ->css_online() or already finished
3394 * ->css_offline() may show up during traversal. It's each subsystem's
3395 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003396 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003397struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3398 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003399{
Tejun Heoc2931b72014-05-16 13:22:51 -04003400 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003401
Tejun Heo8353da12014-05-13 12:19:23 -04003402 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003403
3404 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003405 * @pos could already have been unlinked from the sibling list.
3406 * Once a cgroup is removed, its ->sibling.next is no longer
3407 * updated when its next sibling changes. CSS_RELEASED is set when
3408 * @pos is taken off list, at which time its next pointer is valid,
3409 * and, as releases are serialized, the one pointed to by the next
3410 * pointer is guaranteed to not have started release yet. This
3411 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3412 * critical section, the one pointed to by its next pointer is
3413 * guaranteed to not have finished its RCU grace period even if we
3414 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003415 *
Tejun Heode3f0342014-05-16 13:22:49 -04003416 * If @pos has CSS_RELEASED set, its next pointer can't be
3417 * dereferenced; however, as each css is given a monotonically
3418 * increasing unique serial number and always appended to the
3419 * sibling list, the next one can be found by walking the parent's
3420 * children until the first css with higher serial number than
3421 * @pos's. While this path can be slower, it happens iff iteration
3422 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003423 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003424 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003425 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3426 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3427 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003428 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003429 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003430 if (next->serial_nr > pos->serial_nr)
3431 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003432 }
3433
Tejun Heo3b281af2014-04-23 11:13:15 -04003434 /*
3435 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003436 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003437 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003438 if (&next->sibling != &parent->children)
3439 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003440 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003441}
Tejun Heo53fa5262013-05-24 10:55:38 +09003442
3443/**
Tejun Heo492eb212013-08-08 20:11:25 -04003444 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003445 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003446 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003447 *
Tejun Heo492eb212013-08-08 20:11:25 -04003448 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003449 * to visit for pre-order traversal of @root's descendants. @root is
3450 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003451 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003452 * While this function requires cgroup_mutex or RCU read locking, it
3453 * doesn't require the whole traversal to be contained in a single critical
3454 * section. This function will return the correct next descendant as long
3455 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003456 *
3457 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3458 * css which finished ->css_online() is guaranteed to be visible in the
3459 * future iterations and will stay visible until the last reference is put.
3460 * A css which hasn't finished ->css_online() or already finished
3461 * ->css_offline() may show up during traversal. It's each subsystem's
3462 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003463 */
Tejun Heo492eb212013-08-08 20:11:25 -04003464struct cgroup_subsys_state *
3465css_next_descendant_pre(struct cgroup_subsys_state *pos,
3466 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003467{
Tejun Heo492eb212013-08-08 20:11:25 -04003468 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003469
Tejun Heo8353da12014-05-13 12:19:23 -04003470 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003471
Tejun Heobd8815a2013-08-08 20:11:27 -04003472 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003473 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003474 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003475
3476 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003477 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003478 if (next)
3479 return next;
3480
3481 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003482 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003483 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003484 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003485 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003486 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003487 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003488
3489 return NULL;
3490}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003491
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003492/**
Tejun Heo492eb212013-08-08 20:11:25 -04003493 * css_rightmost_descendant - return the rightmost descendant of a css
3494 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003495 *
Tejun Heo492eb212013-08-08 20:11:25 -04003496 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3497 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003498 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003499 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003500 * While this function requires cgroup_mutex or RCU read locking, it
3501 * doesn't require the whole traversal to be contained in a single critical
3502 * section. This function will return the correct rightmost descendant as
3503 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003504 */
Tejun Heo492eb212013-08-08 20:11:25 -04003505struct cgroup_subsys_state *
3506css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003507{
Tejun Heo492eb212013-08-08 20:11:25 -04003508 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003509
Tejun Heo8353da12014-05-13 12:19:23 -04003510 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003511
3512 do {
3513 last = pos;
3514 /* ->prev isn't RCU safe, walk ->next till the end */
3515 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003516 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003517 pos = tmp;
3518 } while (pos);
3519
3520 return last;
3521}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003522
Tejun Heo492eb212013-08-08 20:11:25 -04003523static struct cgroup_subsys_state *
3524css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003525{
Tejun Heo492eb212013-08-08 20:11:25 -04003526 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003527
3528 do {
3529 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003530 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003531 } while (pos);
3532
3533 return last;
3534}
3535
3536/**
Tejun Heo492eb212013-08-08 20:11:25 -04003537 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003538 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003539 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003540 *
Tejun Heo492eb212013-08-08 20:11:25 -04003541 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003542 * to visit for post-order traversal of @root's descendants. @root is
3543 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003544 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003545 * While this function requires cgroup_mutex or RCU read locking, it
3546 * doesn't require the whole traversal to be contained in a single critical
3547 * section. This function will return the correct next descendant as long
3548 * as both @pos and @cgroup are accessible and @pos is a descendant of
3549 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003550 *
3551 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3552 * css which finished ->css_online() is guaranteed to be visible in the
3553 * future iterations and will stay visible until the last reference is put.
3554 * A css which hasn't finished ->css_online() or already finished
3555 * ->css_offline() may show up during traversal. It's each subsystem's
3556 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003557 */
Tejun Heo492eb212013-08-08 20:11:25 -04003558struct cgroup_subsys_state *
3559css_next_descendant_post(struct cgroup_subsys_state *pos,
3560 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003561{
Tejun Heo492eb212013-08-08 20:11:25 -04003562 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003563
Tejun Heo8353da12014-05-13 12:19:23 -04003564 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003565
Tejun Heo58b79a92013-09-06 15:31:08 -04003566 /* if first iteration, visit leftmost descendant which may be @root */
3567 if (!pos)
3568 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003569
Tejun Heobd8815a2013-08-08 20:11:27 -04003570 /* if we visited @root, we're done */
3571 if (pos == root)
3572 return NULL;
3573
Tejun Heo574bd9f2012-11-09 09:12:29 -08003574 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003575 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003576 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003577 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003578
3579 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003580 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003581}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003582
Tejun Heof3d46502014-05-16 13:22:52 -04003583/**
3584 * css_has_online_children - does a css have online children
3585 * @css: the target css
3586 *
3587 * Returns %true if @css has any online children; otherwise, %false. This
3588 * function can be called from any context but the caller is responsible
3589 * for synchronizing against on/offlining as necessary.
3590 */
3591bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003592{
Tejun Heof3d46502014-05-16 13:22:52 -04003593 struct cgroup_subsys_state *child;
3594 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003595
3596 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003597 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003598 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003599 ret = true;
3600 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003601 }
3602 }
3603 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003604 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003605}
3606
Tejun Heo0942eee2013-08-08 20:11:26 -04003607/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003608 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003609 * @it: the iterator to advance
3610 *
3611 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003612 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003613static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003614{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003615 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003616 struct cgrp_cset_link *link;
3617 struct css_set *cset;
3618
3619 /* Advance to the next non-empty css_set */
3620 do {
3621 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003622 if (l == it->cset_head) {
3623 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003624 return;
3625 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003626
3627 if (it->ss) {
3628 cset = container_of(l, struct css_set,
3629 e_cset_node[it->ss->id]);
3630 } else {
3631 link = list_entry(l, struct cgrp_cset_link, cset_link);
3632 cset = link->cset;
3633 }
Tejun Heoc7561122014-02-25 10:04:01 -05003634 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3635
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003636 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003637
3638 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003639 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003640 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003641 it->task_pos = cset->mg_tasks.next;
3642
3643 it->tasks_head = &cset->tasks;
3644 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003645}
3646
Tejun Heo0942eee2013-08-08 20:11:26 -04003647/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003648 * css_task_iter_start - initiate task iteration
3649 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003650 * @it: the task iterator to use
3651 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003652 * Initiate iteration through the tasks of @css. The caller can call
3653 * css_task_iter_next() to walk through the tasks until the function
3654 * returns NULL. On completion of iteration, css_task_iter_end() must be
3655 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003656 *
3657 * Note that this function acquires a lock which is released when the
3658 * iteration finishes. The caller can't sleep while iteration is in
3659 * progress.
3660 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003661void css_task_iter_start(struct cgroup_subsys_state *css,
3662 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003663 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003664{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003665 /* no one should try to iterate before mounting cgroups */
3666 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003667
Tejun Heo96d365e2014-02-13 06:58:40 -05003668 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003669
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003670 it->ss = css->ss;
3671
3672 if (it->ss)
3673 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3674 else
3675 it->cset_pos = &css->cgroup->cset_links;
3676
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003677 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003678
Tejun Heo72ec7022013-08-08 20:11:26 -04003679 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003680}
Paul Menage817929e2007-10-18 23:39:36 -07003681
Tejun Heo0942eee2013-08-08 20:11:26 -04003682/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003683 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003684 * @it: the task iterator being iterated
3685 *
3686 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003687 * initialized via css_task_iter_start(). Returns NULL when the iteration
3688 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003689 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003690struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003691{
3692 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003693 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003694
3695 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003696 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003697 return NULL;
3698 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003699
3700 /*
3701 * Advance iterator to find next entry. cset->tasks is consumed
3702 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3703 * next cset.
3704 */
Paul Menage817929e2007-10-18 23:39:36 -07003705 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003706
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003707 if (l == it->tasks_head)
3708 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003709
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003710 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003711 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003712 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003713 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003714
Paul Menage817929e2007-10-18 23:39:36 -07003715 return res;
3716}
3717
Tejun Heo0942eee2013-08-08 20:11:26 -04003718/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003719 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003720 * @it: the task iterator to finish
3721 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003722 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003723 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003724void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003725 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003726{
Tejun Heo96d365e2014-02-13 06:58:40 -05003727 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003728}
3729
3730/**
3731 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3732 * @to: cgroup to which the tasks will be moved
3733 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003734 *
3735 * Locking rules between cgroup_post_fork() and the migration path
3736 * guarantee that, if a task is forking while being migrated, the new child
3737 * is guaranteed to be either visible in the source cgroup after the
3738 * parent's migration is complete or put into the target cgroup. No task
3739 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003740 */
3741int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3742{
Tejun Heo952aaa12014-02-25 10:04:03 -05003743 LIST_HEAD(preloaded_csets);
3744 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003745 struct css_task_iter it;
3746 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003747 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003748
Tejun Heo952aaa12014-02-25 10:04:03 -05003749 mutex_lock(&cgroup_mutex);
3750
3751 /* all tasks in @from are being moved, all csets are source */
3752 down_read(&css_set_rwsem);
3753 list_for_each_entry(link, &from->cset_links, cset_link)
3754 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3755 up_read(&css_set_rwsem);
3756
3757 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3758 if (ret)
3759 goto out_err;
3760
3761 /*
3762 * Migrate tasks one-by-one until @form is empty. This fails iff
3763 * ->can_attach() fails.
3764 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003765 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003766 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003767 task = css_task_iter_next(&it);
3768 if (task)
3769 get_task_struct(task);
3770 css_task_iter_end(&it);
3771
3772 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003773 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003774 put_task_struct(task);
3775 }
3776 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003777out_err:
3778 cgroup_migrate_finish(&preloaded_csets);
3779 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003780 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003781}
3782
Paul Menage817929e2007-10-18 23:39:36 -07003783/*
Ben Blum102a7752009-09-23 15:56:26 -07003784 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003785 *
3786 * Reading this file can return large amounts of data if a cgroup has
3787 * *lots* of attached tasks. So it may need several calls to read(),
3788 * but we cannot guarantee that the information we produce is correct
3789 * unless we produce it entirely atomically.
3790 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003791 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003792
Li Zefan24528252012-01-20 11:58:43 +08003793/* which pidlist file are we talking about? */
3794enum cgroup_filetype {
3795 CGROUP_FILE_PROCS,
3796 CGROUP_FILE_TASKS,
3797};
3798
3799/*
3800 * A pidlist is a list of pids that virtually represents the contents of one
3801 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3802 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3803 * to the cgroup.
3804 */
3805struct cgroup_pidlist {
3806 /*
3807 * used to find which pidlist is wanted. doesn't change as long as
3808 * this particular list stays in the list.
3809 */
3810 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3811 /* array of xids */
3812 pid_t *list;
3813 /* how many elements the above list has */
3814 int length;
Li Zefan24528252012-01-20 11:58:43 +08003815 /* each of these stored in a list by its cgroup */
3816 struct list_head links;
3817 /* pointer to the cgroup we belong to, for list removal purposes */
3818 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003819 /* for delayed destruction */
3820 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003821};
3822
Paul Menagebbcb81d2007-10-18 23:39:32 -07003823/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003824 * The following two functions "fix" the issue where there are more pids
3825 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3826 * TODO: replace with a kernel-wide solution to this problem
3827 */
3828#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3829static void *pidlist_allocate(int count)
3830{
3831 if (PIDLIST_TOO_LARGE(count))
3832 return vmalloc(count * sizeof(pid_t));
3833 else
3834 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3835}
Tejun Heob1a21362013-11-29 10:42:58 -05003836
Ben Blumd1d9fd32009-09-23 15:56:28 -07003837static void pidlist_free(void *p)
3838{
Bandan Das58794512015-03-02 17:51:10 -05003839 kvfree(p);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003840}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003841
3842/*
Tejun Heob1a21362013-11-29 10:42:58 -05003843 * Used to destroy all pidlists lingering waiting for destroy timer. None
3844 * should be left afterwards.
3845 */
3846static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3847{
3848 struct cgroup_pidlist *l, *tmp_l;
3849
3850 mutex_lock(&cgrp->pidlist_mutex);
3851 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3852 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3853 mutex_unlock(&cgrp->pidlist_mutex);
3854
3855 flush_workqueue(cgroup_pidlist_destroy_wq);
3856 BUG_ON(!list_empty(&cgrp->pidlists));
3857}
3858
3859static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3860{
3861 struct delayed_work *dwork = to_delayed_work(work);
3862 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3863 destroy_dwork);
3864 struct cgroup_pidlist *tofree = NULL;
3865
3866 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003867
3868 /*
Tejun Heo04502362013-11-29 10:42:59 -05003869 * Destroy iff we didn't get queued again. The state won't change
3870 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003871 */
Tejun Heo04502362013-11-29 10:42:59 -05003872 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003873 list_del(&l->links);
3874 pidlist_free(l->list);
3875 put_pid_ns(l->key.ns);
3876 tofree = l;
3877 }
3878
Tejun Heob1a21362013-11-29 10:42:58 -05003879 mutex_unlock(&l->owner->pidlist_mutex);
3880 kfree(tofree);
3881}
3882
3883/*
Ben Blum102a7752009-09-23 15:56:26 -07003884 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003885 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003886 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003887static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003888{
Ben Blum102a7752009-09-23 15:56:26 -07003889 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003890
3891 /*
3892 * we presume the 0th element is unique, so i starts at 1. trivial
3893 * edge cases first; no work needs to be done for either
3894 */
3895 if (length == 0 || length == 1)
3896 return length;
3897 /* src and dest walk down the list; dest counts unique elements */
3898 for (src = 1; src < length; src++) {
3899 /* find next unique element */
3900 while (list[src] == list[src-1]) {
3901 src++;
3902 if (src == length)
3903 goto after;
3904 }
3905 /* dest always points to where the next unique element goes */
3906 list[dest] = list[src];
3907 dest++;
3908 }
3909after:
Ben Blum102a7752009-09-23 15:56:26 -07003910 return dest;
3911}
3912
Tejun Heoafb2bc12013-11-29 10:42:59 -05003913/*
3914 * The two pid files - task and cgroup.procs - guaranteed that the result
3915 * is sorted, which forced this whole pidlist fiasco. As pid order is
3916 * different per namespace, each namespace needs differently sorted list,
3917 * making it impossible to use, for example, single rbtree of member tasks
3918 * sorted by task pointer. As pidlists can be fairly large, allocating one
3919 * per open file is dangerous, so cgroup had to implement shared pool of
3920 * pidlists keyed by cgroup and namespace.
3921 *
3922 * All this extra complexity was caused by the original implementation
3923 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04003924 * want to do away with it. Explicitly scramble sort order if on the
3925 * default hierarchy so that no such expectation exists in the new
3926 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05003927 *
3928 * Scrambling is done by swapping every two consecutive bits, which is
3929 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3930 */
3931static pid_t pid_fry(pid_t pid)
3932{
3933 unsigned a = pid & 0x55555555;
3934 unsigned b = pid & 0xAAAAAAAA;
3935
3936 return (a << 1) | (b >> 1);
3937}
3938
3939static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3940{
Tejun Heoaa6ec292014-07-09 10:08:08 -04003941 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05003942 return pid_fry(pid);
3943 else
3944 return pid;
3945}
3946
Ben Blum102a7752009-09-23 15:56:26 -07003947static int cmppid(const void *a, const void *b)
3948{
3949 return *(pid_t *)a - *(pid_t *)b;
3950}
3951
Tejun Heoafb2bc12013-11-29 10:42:59 -05003952static int fried_cmppid(const void *a, const void *b)
3953{
3954 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3955}
3956
Ben Blum72a8cb32009-09-23 15:56:27 -07003957static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3958 enum cgroup_filetype type)
3959{
3960 struct cgroup_pidlist *l;
3961 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003962 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003963
Tejun Heoe6b81712013-11-29 10:42:59 -05003964 lockdep_assert_held(&cgrp->pidlist_mutex);
3965
3966 list_for_each_entry(l, &cgrp->pidlists, links)
3967 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003968 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003969 return NULL;
3970}
3971
Ben Blum72a8cb32009-09-23 15:56:27 -07003972/*
3973 * find the appropriate pidlist for our purpose (given procs vs tasks)
3974 * returns with the lock on that pidlist already held, and takes care
3975 * of the use count, or returns NULL with no locks held if we're out of
3976 * memory.
3977 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003978static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3979 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003980{
3981 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003982
Tejun Heoe6b81712013-11-29 10:42:59 -05003983 lockdep_assert_held(&cgrp->pidlist_mutex);
3984
3985 l = cgroup_pidlist_find(cgrp, type);
3986 if (l)
3987 return l;
3988
Ben Blum72a8cb32009-09-23 15:56:27 -07003989 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003990 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003991 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003992 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003993
Tejun Heob1a21362013-11-29 10:42:58 -05003994 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003995 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003996 /* don't need task_nsproxy() if we're looking at ourself */
3997 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003998 l->owner = cgrp;
3999 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07004000 return l;
4001}
4002
4003/*
Ben Blum102a7752009-09-23 15:56:26 -07004004 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
4005 */
Ben Blum72a8cb32009-09-23 15:56:27 -07004006static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
4007 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07004008{
4009 pid_t *array;
4010 int length;
4011 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04004012 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07004013 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07004014 struct cgroup_pidlist *l;
4015
Tejun Heo4bac00d2013-11-29 10:42:59 -05004016 lockdep_assert_held(&cgrp->pidlist_mutex);
4017
Ben Blum102a7752009-09-23 15:56:26 -07004018 /*
4019 * If cgroup gets more users after we read count, we won't have
4020 * enough space - tough. This race is indistinguishable to the
4021 * caller from the case that the additional cgroup users didn't
4022 * show up until sometime later on.
4023 */
4024 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004025 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07004026 if (!array)
4027 return -ENOMEM;
4028 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04004029 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004030 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07004031 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07004032 break;
Ben Blum102a7752009-09-23 15:56:26 -07004033 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07004034 if (type == CGROUP_FILE_PROCS)
4035 pid = task_tgid_vnr(tsk);
4036 else
4037 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07004038 if (pid > 0) /* make sure to only use valid results */
4039 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07004040 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004041 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07004042 length = n;
4043 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04004044 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004045 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
4046 else
4047 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07004048 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07004049 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05004050
Tejun Heoe6b81712013-11-29 10:42:59 -05004051 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07004052 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07004053 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07004054 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07004055 }
Tejun Heoe6b81712013-11-29 10:42:59 -05004056
4057 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07004058 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07004059 l->list = array;
4060 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07004061 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07004062 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004063}
4064
Balbir Singh846c7bb2007-10-18 23:39:44 -07004065/**
Li Zefana043e3b2008-02-23 15:24:09 -08004066 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07004067 * @stats: cgroupstats to fill information into
4068 * @dentry: A dentry entry belonging to the cgroup for which stats have
4069 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08004070 *
4071 * Build and fill cgroupstats so that taskstats can export it to user
4072 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07004073 */
4074int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
4075{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004076 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07004077 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04004078 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004079 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08004080
Tejun Heo2bd59d42014-02-11 11:52:49 -05004081 /* it should be kernfs_node belonging to cgroupfs and is a directory */
4082 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4083 kernfs_type(kn) != KERNFS_DIR)
4084 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004085
Li Zefanbad34662014-02-14 16:54:28 +08004086 mutex_lock(&cgroup_mutex);
4087
Tejun Heo2bd59d42014-02-11 11:52:49 -05004088 /*
4089 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04004090 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05004091 * @kn->priv is RCU safe. Let's do the RCU dancing.
4092 */
4093 rcu_read_lock();
4094 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004095 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004096 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004097 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004098 return -ENOENT;
4099 }
Li Zefanbad34662014-02-14 16:54:28 +08004100 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004101
Tejun Heo9d800df2014-05-14 09:15:00 -04004102 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004103 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004104 switch (tsk->state) {
4105 case TASK_RUNNING:
4106 stats->nr_running++;
4107 break;
4108 case TASK_INTERRUPTIBLE:
4109 stats->nr_sleeping++;
4110 break;
4111 case TASK_UNINTERRUPTIBLE:
4112 stats->nr_uninterruptible++;
4113 break;
4114 case TASK_STOPPED:
4115 stats->nr_stopped++;
4116 break;
4117 default:
4118 if (delayacct_is_task_waiting_on_io(tsk))
4119 stats->nr_io_wait++;
4120 break;
4121 }
4122 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004123 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004124
Li Zefanbad34662014-02-14 16:54:28 +08004125 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004126 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004127}
4128
Paul Menage8f3ff202009-09-23 15:56:25 -07004129
Paul Menagecc31edc2008-10-18 20:28:04 -07004130/*
Ben Blum102a7752009-09-23 15:56:26 -07004131 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004132 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004133 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004134 */
4135
Ben Blum102a7752009-09-23 15:56:26 -07004136static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004137{
4138 /*
4139 * Initially we receive a position value that corresponds to
4140 * one more than the last pid shown (or 0 on the first call or
4141 * after a seek to the start). Use a binary-search to find the
4142 * next pid to display, if any
4143 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004144 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004145 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004146 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004147 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004148 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004149 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004150
Tejun Heo4bac00d2013-11-29 10:42:59 -05004151 mutex_lock(&cgrp->pidlist_mutex);
4152
4153 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004154 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004155 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004156 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004157 * could already have been destroyed.
4158 */
Tejun Heo5d224442013-12-05 12:28:04 -05004159 if (of->priv)
4160 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004161
4162 /*
4163 * Either this is the first start() after open or the matching
4164 * pidlist has been destroyed inbetween. Create a new one.
4165 */
Tejun Heo5d224442013-12-05 12:28:04 -05004166 if (!of->priv) {
4167 ret = pidlist_array_load(cgrp, type,
4168 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004169 if (ret)
4170 return ERR_PTR(ret);
4171 }
Tejun Heo5d224442013-12-05 12:28:04 -05004172 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004173
Paul Menagecc31edc2008-10-18 20:28:04 -07004174 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004175 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004176
Paul Menagecc31edc2008-10-18 20:28:04 -07004177 while (index < end) {
4178 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004179 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004180 index = mid;
4181 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004182 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004183 index = mid + 1;
4184 else
4185 end = mid;
4186 }
4187 }
4188 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004189 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004190 return NULL;
4191 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004192 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004193 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004194 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004195}
4196
Ben Blum102a7752009-09-23 15:56:26 -07004197static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004198{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004199 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004200 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004201
Tejun Heo5d224442013-12-05 12:28:04 -05004202 if (l)
4203 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004204 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004205 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004206}
4207
Ben Blum102a7752009-09-23 15:56:26 -07004208static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004209{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004210 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004211 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004212 pid_t *p = v;
4213 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004214 /*
4215 * Advance to the next pid in the array. If this goes off the
4216 * end, we're done
4217 */
4218 p++;
4219 if (p >= end) {
4220 return NULL;
4221 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004222 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004223 return p;
4224 }
4225}
4226
Ben Blum102a7752009-09-23 15:56:26 -07004227static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004228{
Joe Perches94ff2122015-04-15 16:18:20 -07004229 seq_printf(s, "%d\n", *(int *)v);
4230
4231 return 0;
Paul Menagecc31edc2008-10-18 20:28:04 -07004232}
4233
Tejun Heo182446d2013-08-08 20:11:24 -04004234static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4235 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004236{
Tejun Heo182446d2013-08-08 20:11:24 -04004237 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004238}
4239
Tejun Heo182446d2013-08-08 20:11:24 -04004240static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4241 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004242{
Paul Menage6379c102008-07-25 01:47:01 -07004243 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004244 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004245 else
Tejun Heo182446d2013-08-08 20:11:24 -04004246 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004247 return 0;
4248}
4249
Tejun Heo182446d2013-08-08 20:11:24 -04004250static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4251 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004252{
Tejun Heo182446d2013-08-08 20:11:24 -04004253 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004254}
4255
Tejun Heo182446d2013-08-08 20:11:24 -04004256static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4257 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004258{
4259 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004260 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004261 else
Tejun Heo182446d2013-08-08 20:11:24 -04004262 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004263 return 0;
4264}
4265
Tejun Heoa14c6872014-07-15 11:05:09 -04004266/* cgroup core interface files for the default hierarchy */
4267static struct cftype cgroup_dfl_base_files[] = {
4268 {
4269 .name = "cgroup.procs",
4270 .seq_start = cgroup_pidlist_start,
4271 .seq_next = cgroup_pidlist_next,
4272 .seq_stop = cgroup_pidlist_stop,
4273 .seq_show = cgroup_pidlist_show,
4274 .private = CGROUP_FILE_PROCS,
4275 .write = cgroup_procs_write,
4276 .mode = S_IRUGO | S_IWUSR,
4277 },
4278 {
4279 .name = "cgroup.controllers",
4280 .flags = CFTYPE_ONLY_ON_ROOT,
4281 .seq_show = cgroup_root_controllers_show,
4282 },
4283 {
4284 .name = "cgroup.controllers",
4285 .flags = CFTYPE_NOT_ON_ROOT,
4286 .seq_show = cgroup_controllers_show,
4287 },
4288 {
4289 .name = "cgroup.subtree_control",
4290 .seq_show = cgroup_subtree_control_show,
4291 .write = cgroup_subtree_control_write,
4292 },
4293 {
4294 .name = "cgroup.populated",
4295 .flags = CFTYPE_NOT_ON_ROOT,
4296 .seq_show = cgroup_populated_show,
4297 },
4298 { } /* terminate */
4299};
4300
4301/* cgroup core interface files for the legacy hierarchies */
4302static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004303 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004304 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004305 .seq_start = cgroup_pidlist_start,
4306 .seq_next = cgroup_pidlist_next,
4307 .seq_stop = cgroup_pidlist_stop,
4308 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004309 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004310 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004311 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004312 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004313 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004314 .name = "cgroup.clone_children",
4315 .read_u64 = cgroup_clone_children_read,
4316 .write_u64 = cgroup_clone_children_write,
4317 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004318 {
Tejun Heo873fe092013-04-14 20:15:26 -07004319 .name = "cgroup.sane_behavior",
4320 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004321 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004322 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004323 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004324 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004325 .seq_start = cgroup_pidlist_start,
4326 .seq_next = cgroup_pidlist_next,
4327 .seq_stop = cgroup_pidlist_stop,
4328 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004329 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004330 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004331 .mode = S_IRUGO | S_IWUSR,
4332 },
4333 {
4334 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004335 .read_u64 = cgroup_read_notify_on_release,
4336 .write_u64 = cgroup_write_notify_on_release,
4337 },
Tejun Heo873fe092013-04-14 20:15:26 -07004338 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004339 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004340 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004341 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004342 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004343 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004344 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004345 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004346};
4347
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004348/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004349 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004350 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004351 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004352 *
4353 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004354 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10004355static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004356{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004357 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004358 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004359
Tejun Heo8e3f6542012-04-01 12:09:55 -07004360 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004361 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004362 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004363
Tejun Heo69dfa002014-05-04 15:09:13 -04004364 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004365 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004366
Tejun Heo0adb0702014-02-12 09:29:48 -05004367 list_for_each_entry(cfts, &ss->cfts, node) {
4368 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004369 if (ret < 0)
4370 goto err;
4371 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004372 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004373 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004374err:
4375 cgroup_clear_dir(cgrp, subsys_mask);
4376 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004377}
4378
Tejun Heo0c21ead2013-08-13 20:22:51 -04004379/*
4380 * css destruction is four-stage process.
4381 *
4382 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4383 * Implemented in kill_css().
4384 *
4385 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004386 * and thus css_tryget_online() is guaranteed to fail, the css can be
4387 * offlined by invoking offline_css(). After offlining, the base ref is
4388 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004389 *
4390 * 3. When the percpu_ref reaches zero, the only possible remaining
4391 * accessors are inside RCU read sections. css_release() schedules the
4392 * RCU callback.
4393 *
4394 * 4. After the grace period, the css can be freed. Implemented in
4395 * css_free_work_fn().
4396 *
4397 * It is actually hairier because both step 2 and 4 require process context
4398 * and thus involve punting to css->destroy_work adding two additional
4399 * steps to the already complex sequence.
4400 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004401static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004402{
4403 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004404 container_of(work, struct cgroup_subsys_state, destroy_work);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004405 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004406 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004407
Tejun Heo9a1049d2014-06-28 08:10:14 -04004408 percpu_ref_exit(&css->refcnt);
4409
Vladimir Davydov01e58652015-02-12 14:59:26 -08004410 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004411 /* css free path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004412 int id = css->id;
4413
Tejun Heo9d755d32014-05-14 09:15:02 -04004414 if (css->parent)
4415 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004416
Vladimir Davydov01e58652015-02-12 14:59:26 -08004417 ss->css_free(css);
4418 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004419 cgroup_put(cgrp);
4420 } else {
4421 /* cgroup free path */
4422 atomic_dec(&cgrp->root->nr_cgrps);
4423 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004424 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004425
Tejun Heod51f39b2014-05-16 13:22:48 -04004426 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004427 /*
4428 * We get a ref to the parent, and put the ref when
4429 * this cgroup is being freed, so it's guaranteed
4430 * that the parent won't be destroyed before its
4431 * children.
4432 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004433 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004434 kernfs_put(cgrp->kn);
4435 kfree(cgrp);
4436 } else {
4437 /*
4438 * This is root cgroup's refcnt reaching zero,
4439 * which indicates that the root should be
4440 * released.
4441 */
4442 cgroup_destroy_root(cgrp->root);
4443 }
4444 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004445}
4446
4447static void css_free_rcu_fn(struct rcu_head *rcu_head)
4448{
4449 struct cgroup_subsys_state *css =
4450 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4451
Tejun Heo0c21ead2013-08-13 20:22:51 -04004452 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004453 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004454}
4455
Tejun Heo25e15d82014-05-14 09:15:02 -04004456static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004457{
4458 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004459 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004460 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004461 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004462
Tejun Heo1fed1b22014-05-16 13:22:49 -04004463 mutex_lock(&cgroup_mutex);
4464
Tejun Heode3f0342014-05-16 13:22:49 -04004465 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004466 list_del_rcu(&css->sibling);
4467
Tejun Heo9d755d32014-05-14 09:15:02 -04004468 if (ss) {
4469 /* css release path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004470 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004471 if (ss->css_released)
4472 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004473 } else {
4474 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004475 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4476 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004477
4478 /*
4479 * There are two control paths which try to determine
4480 * cgroup from dentry without going through kernfs -
4481 * cgroupstats_build() and css_tryget_online_from_dir().
4482 * Those are supported by RCU protecting clearing of
4483 * cgrp->kn->priv backpointer.
4484 */
4485 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004486 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004487
Tejun Heo1fed1b22014-05-16 13:22:49 -04004488 mutex_unlock(&cgroup_mutex);
4489
Tejun Heo0c21ead2013-08-13 20:22:51 -04004490 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004491}
4492
Paul Menageddbcc7e2007-10-18 23:39:30 -07004493static void css_release(struct percpu_ref *ref)
4494{
4495 struct cgroup_subsys_state *css =
4496 container_of(ref, struct cgroup_subsys_state, refcnt);
4497
Tejun Heo25e15d82014-05-14 09:15:02 -04004498 INIT_WORK(&css->destroy_work, css_release_work_fn);
4499 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004500}
4501
Tejun Heoddfcada2014-05-04 15:09:14 -04004502static void init_and_link_css(struct cgroup_subsys_state *css,
4503 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004504{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004505 lockdep_assert_held(&cgroup_mutex);
4506
Tejun Heoddfcada2014-05-04 15:09:14 -04004507 cgroup_get(cgrp);
4508
Tejun Heod5c419b2014-05-16 13:22:48 -04004509 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004510 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004511 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004512 INIT_LIST_HEAD(&css->sibling);
4513 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004514 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004515
Tejun Heod51f39b2014-05-16 13:22:48 -04004516 if (cgroup_parent(cgrp)) {
4517 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004518 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004519 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004520
Tejun Heoca8bdca2013-08-26 18:40:56 -04004521 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004522}
4523
Li Zefan2a4ac632013-07-31 16:16:40 +08004524/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004525static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004526{
Tejun Heo623f9262013-08-13 11:01:55 -04004527 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004528 int ret = 0;
4529
Tejun Heoa31f2d32012-11-19 08:13:37 -08004530 lockdep_assert_held(&cgroup_mutex);
4531
Tejun Heo92fb9742012-11-19 08:13:38 -08004532 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004533 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004534 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004535 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004536 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004537 }
Tejun Heob1929db2012-11-19 08:13:38 -08004538 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004539}
4540
Li Zefan2a4ac632013-07-31 16:16:40 +08004541/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004542static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004543{
Tejun Heo623f9262013-08-13 11:01:55 -04004544 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004545
4546 lockdep_assert_held(&cgroup_mutex);
4547
4548 if (!(css->flags & CSS_ONLINE))
4549 return;
4550
Li Zefand7eeac12013-03-12 15:35:59 -07004551 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004552 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004553
Tejun Heoeb954192013-08-08 20:11:23 -04004554 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004555 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004556
4557 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004558}
4559
Tejun Heoc81c925a2013-12-06 15:11:56 -05004560/**
4561 * create_css - create a cgroup_subsys_state
4562 * @cgrp: the cgroup new css will be associated with
4563 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004564 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004565 *
4566 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004567 * css is online and installed in @cgrp with all interface files created if
4568 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004569 */
Tejun Heof63070d2014-07-08 18:02:57 -04004570static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4571 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004572{
Tejun Heod51f39b2014-05-16 13:22:48 -04004573 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004574 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004575 struct cgroup_subsys_state *css;
4576 int err;
4577
Tejun Heoc81c925a2013-12-06 15:11:56 -05004578 lockdep_assert_held(&cgroup_mutex);
4579
Tejun Heo1fed1b22014-05-16 13:22:49 -04004580 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004581 if (IS_ERR(css))
4582 return PTR_ERR(css);
4583
Tejun Heoddfcada2014-05-04 15:09:14 -04004584 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004585
Tejun Heo2aad2a82014-09-24 13:31:50 -04004586 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004587 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004588 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004589
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004590 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004591 if (err < 0)
4592 goto err_free_percpu_ref;
4593 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004594
Tejun Heof63070d2014-07-08 18:02:57 -04004595 if (visible) {
4596 err = cgroup_populate_dir(cgrp, 1 << ss->id);
4597 if (err)
4598 goto err_free_id;
4599 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004600
4601 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004602 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004603 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004604
4605 err = online_css(css);
4606 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004607 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004608
Tejun Heoc81c925a2013-12-06 15:11:56 -05004609 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004610 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004611 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 -04004612 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004613 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004614 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004615 ss->warned_broken_hierarchy = true;
4616 }
4617
4618 return 0;
4619
Tejun Heo1fed1b22014-05-16 13:22:49 -04004620err_list_del:
4621 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004622 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004623err_free_id:
4624 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004625err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004626 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004627err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004628 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004629 return err;
4630}
4631
Tejun Heob3bfd982014-05-13 12:19:22 -04004632static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4633 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004634{
Tejun Heoa9746d82014-05-13 12:19:22 -04004635 struct cgroup *parent, *cgrp;
4636 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004637 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004638 struct kernfs_node *kn;
Tejun Heoa14c6872014-07-15 11:05:09 -04004639 struct cftype *base_files;
Tejun Heob3bfd982014-05-13 12:19:22 -04004640 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004641
Alban Crequy71b1fb52014-08-18 12:20:20 +01004642 /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable.
4643 */
4644 if (strchr(name, '\n'))
4645 return -EINVAL;
4646
Tejun Heoa9746d82014-05-13 12:19:22 -04004647 parent = cgroup_kn_lock_live(parent_kn);
4648 if (!parent)
4649 return -ENODEV;
4650 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004651
Tejun Heo0a950f62012-11-19 09:02:12 -08004652 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004653 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004654 if (!cgrp) {
4655 ret = -ENOMEM;
4656 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004657 }
4658
Tejun Heo2aad2a82014-09-24 13:31:50 -04004659 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004660 if (ret)
4661 goto out_free_cgrp;
4662
Li Zefan0ab02ca2014-02-11 16:05:46 +08004663 /*
4664 * Temporarily set the pointer to NULL, so idr_find() won't return
4665 * a half-baked cgroup.
4666 */
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004667 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_KERNEL);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004668 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004669 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004670 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004671 }
4672
Paul Menagecc31edc2008-10-18 20:28:04 -07004673 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004674
Tejun Heo9d800df2014-05-14 09:15:00 -04004675 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004676 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004677
Li Zefanb6abdb02008-03-04 14:28:19 -08004678 if (notify_on_release(parent))
4679 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4680
Tejun Heo2260e7f2012-11-19 08:13:38 -08004681 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4682 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004683
Tejun Heo2bd59d42014-02-11 11:52:49 -05004684 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004685 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004686 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004687 ret = PTR_ERR(kn);
4688 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004689 }
4690 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004691
Tejun Heo6f305582014-02-12 09:29:50 -05004692 /*
4693 * This extra ref will be put in cgroup_free_fn() and guarantees
4694 * that @cgrp->kn is always accessible.
4695 */
4696 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004697
Tejun Heo0cb51d72014-05-16 13:22:49 -04004698 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004699
Tejun Heo4e139af2012-11-19 08:13:36 -08004700 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004701 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004702 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004703 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004704
Tejun Heo0d802552013-12-06 15:11:56 -05004705 /*
4706 * @cgrp is now fully operational. If something fails after this
4707 * point, it'll be released via the normal destruction path.
4708 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004709 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004710
Tejun Heoba0f4d72014-05-13 12:19:22 -04004711 ret = cgroup_kn_set_ugid(kn);
4712 if (ret)
4713 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004714
Tejun Heoa14c6872014-07-15 11:05:09 -04004715 if (cgroup_on_dfl(cgrp))
4716 base_files = cgroup_dfl_base_files;
4717 else
4718 base_files = cgroup_legacy_base_files;
4719
4720 ret = cgroup_addrm_files(cgrp, base_files, true);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004721 if (ret)
4722 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004723
Tejun Heo9d403e92013-12-06 15:11:56 -05004724 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004725 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004726 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004727 ret = create_css(cgrp, ss,
4728 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004729 if (ret)
4730 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004731 }
Tejun Heoa8638032012-11-09 09:12:29 -08004732 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004733
Tejun Heobd53d612014-04-23 11:13:16 -04004734 /*
4735 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004736 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004737 */
Tejun Heo667c2492014-07-08 18:02:56 -04004738 if (!cgroup_on_dfl(cgrp)) {
4739 cgrp->subtree_control = parent->subtree_control;
4740 cgroup_refresh_child_subsys_mask(cgrp);
4741 }
Tejun Heof392e512014-04-23 11:13:14 -04004742
Tejun Heo2bd59d42014-02-11 11:52:49 -05004743 kernfs_activate(kn);
4744
Tejun Heoba0f4d72014-05-13 12:19:22 -04004745 ret = 0;
4746 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004747
Tejun Heoba0f4d72014-05-13 12:19:22 -04004748out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004749 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004750out_cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004751 percpu_ref_exit(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004752out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004753 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004754out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004755 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004756 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004757
4758out_destroy:
4759 cgroup_destroy_locked(cgrp);
4760 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004761}
4762
Tejun Heo223dbc32013-08-13 20:22:50 -04004763/*
4764 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004765 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4766 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004767 */
4768static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004769{
Tejun Heo223dbc32013-08-13 20:22:50 -04004770 struct cgroup_subsys_state *css =
4771 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004772
Tejun Heof20104d2013-08-13 20:22:50 -04004773 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004774 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004775 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004776
Tejun Heo09a503ea2013-08-13 20:22:50 -04004777 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004778}
4779
Tejun Heo223dbc32013-08-13 20:22:50 -04004780/* css kill confirmation processing requires process context, bounce */
4781static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004782{
4783 struct cgroup_subsys_state *css =
4784 container_of(ref, struct cgroup_subsys_state, refcnt);
4785
Tejun Heo223dbc32013-08-13 20:22:50 -04004786 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004787 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004788}
4789
Tejun Heof392e512014-04-23 11:13:14 -04004790/**
4791 * kill_css - destroy a css
4792 * @css: css to destroy
4793 *
4794 * This function initiates destruction of @css by removing cgroup interface
4795 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004796 * asynchronously once css_tryget_online() is guaranteed to fail and when
4797 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004798 */
4799static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004800{
Tejun Heo01f64742014-05-13 12:19:23 -04004801 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004802
Tejun Heo2bd59d42014-02-11 11:52:49 -05004803 /*
4804 * This must happen before css is disassociated with its cgroup.
4805 * See seq_css() for details.
4806 */
Tejun Heoaec25022014-02-08 10:36:58 -05004807 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004808
Tejun Heoedae0c32013-08-13 20:22:51 -04004809 /*
4810 * Killing would put the base ref, but we need to keep it alive
4811 * until after ->css_offline().
4812 */
4813 css_get(css);
4814
4815 /*
4816 * cgroup core guarantees that, by the time ->css_offline() is
4817 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004818 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004819 * proceed to offlining css's because percpu_ref_kill() doesn't
4820 * guarantee that the ref is seen as killed on all CPUs on return.
4821 *
4822 * Use percpu_ref_kill_and_confirm() to get notifications as each
4823 * css is confirmed to be seen as killed on all CPUs.
4824 */
4825 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004826}
4827
4828/**
4829 * cgroup_destroy_locked - the first stage of cgroup destruction
4830 * @cgrp: cgroup to be destroyed
4831 *
4832 * css's make use of percpu refcnts whose killing latency shouldn't be
4833 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004834 * guarantee that css_tryget_online() won't succeed by the time
4835 * ->css_offline() is invoked. To satisfy all the requirements,
4836 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004837 *
4838 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4839 * userland visible parts and start killing the percpu refcnts of
4840 * css's. Set up so that the next stage will be kicked off once all
4841 * the percpu refcnts are confirmed to be killed.
4842 *
4843 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4844 * rest of destruction. Once all cgroup references are gone, the
4845 * cgroup is RCU-freed.
4846 *
4847 * This function implements s1. After this step, @cgrp is gone as far as
4848 * the userland is concerned and a new cgroup with the same name may be
4849 * created. As cgroup doesn't care about the names internally, this
4850 * doesn't cause any problem.
4851 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004852static int cgroup_destroy_locked(struct cgroup *cgrp)
4853 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004854{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004855 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004856 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004857 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004858
Tejun Heo42809dd2012-11-19 08:13:37 -08004859 lockdep_assert_held(&cgroup_mutex);
4860
Tejun Heoddd69142013-06-12 21:04:54 -07004861 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004862 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004863 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004864 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004865 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004866 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004867 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004868 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004869 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004870
Tejun Heo1a90dd52012-11-05 09:16:59 -08004871 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004872 * Make sure there's no live children. We can't test emptiness of
4873 * ->self.children as dead children linger on it while being
4874 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004875 */
Tejun Heof3d46502014-05-16 13:22:52 -04004876 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004877 return -EBUSY;
4878
4879 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004880 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004881 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004882 */
Tejun Heo184faf32014-05-16 13:22:51 -04004883 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004884
Tejun Heo249f3462014-05-14 09:15:01 -04004885 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004886 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004887 kill_css(css);
4888
Tejun Heo455050d2013-06-13 19:27:41 -07004889 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004890 * Remove @cgrp directory along with the base files. @cgrp has an
4891 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004892 */
Tejun Heo01f64742014-05-13 12:19:23 -04004893 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004894
Tejun Heod51f39b2014-05-16 13:22:48 -04004895 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004896
Tejun Heo249f3462014-05-14 09:15:01 -04004897 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004898 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004899
Tejun Heoea15f8c2013-06-13 19:27:42 -07004900 return 0;
4901};
4902
Tejun Heo2bd59d42014-02-11 11:52:49 -05004903static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004904{
Tejun Heoa9746d82014-05-13 12:19:22 -04004905 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004906 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004907
Tejun Heoa9746d82014-05-13 12:19:22 -04004908 cgrp = cgroup_kn_lock_live(kn);
4909 if (!cgrp)
4910 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004911
Tejun Heoa9746d82014-05-13 12:19:22 -04004912 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004913
Tejun Heoa9746d82014-05-13 12:19:22 -04004914 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004915 return ret;
4916}
4917
Tejun Heo2bd59d42014-02-11 11:52:49 -05004918static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4919 .remount_fs = cgroup_remount,
4920 .show_options = cgroup_show_options,
4921 .mkdir = cgroup_mkdir,
4922 .rmdir = cgroup_rmdir,
4923 .rename = cgroup_rename,
4924};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004925
Tejun Heo15a4c832014-05-04 15:09:14 -04004926static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004927{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004928 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004929
4930 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004931
Tejun Heo648bb562012-11-19 08:13:36 -08004932 mutex_lock(&cgroup_mutex);
4933
Tejun Heo15a4c832014-05-04 15:09:14 -04004934 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004935 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004936
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004937 /* Create the root cgroup state for this subsystem */
4938 ss->root = &cgrp_dfl_root;
4939 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004940 /* We don't handle early failures gracefully */
4941 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004942 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004943
4944 /*
4945 * Root csses are never destroyed and we can't initialize
4946 * percpu_ref during early init. Disable refcnting.
4947 */
4948 css->flags |= CSS_NO_REF;
4949
Tejun Heo15a4c832014-05-04 15:09:14 -04004950 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004951 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004952 css->id = 1;
4953 } else {
4954 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4955 BUG_ON(css->id < 0);
4956 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004957
Li Zefane8d55fd2008-04-29 01:00:13 -07004958 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004959 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004960 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004961 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004962 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004963
Aleksa Saraicb4a3162015-06-06 10:02:14 +10004964 have_fork_callback |= (bool)ss->fork << ss->id;
4965 have_exit_callback |= (bool)ss->exit << ss->id;
Aleksa Sarai7e476822015-06-09 21:32:09 +10004966 have_canfork_callback |= (bool)ss->can_fork << ss->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004967
Li Zefane8d55fd2008-04-29 01:00:13 -07004968 /* At system boot, before all subsystems have been
4969 * registered, no tasks have been forked, so we don't
4970 * need to invoke fork callbacks here. */
4971 BUG_ON(!list_empty(&init_task.tasks));
4972
Tejun Heoae7f1642013-08-13 20:22:50 -04004973 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004974
Tejun Heo648bb562012-11-19 08:13:36 -08004975 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004976}
4977
4978/**
Li Zefana043e3b2008-02-23 15:24:09 -08004979 * cgroup_init_early - cgroup initialization at system boot
4980 *
4981 * Initialize cgroups at system boot, and initialize any
4982 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004983 */
4984int __init cgroup_init_early(void)
4985{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04004986 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07004987 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004988 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004989
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004990 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004991 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4992
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004993 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004994
Tejun Heo3ed80a62014-02-08 10:36:58 -05004995 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004996 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004997 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4998 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004999 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05005000 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
5001 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005002
Tejun Heoaec25022014-02-08 10:36:58 -05005003 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05005004 ss->name = cgroup_subsys_name[i];
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005005 if (!ss->legacy_name)
5006 ss->legacy_name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07005007
5008 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04005009 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005010 }
5011 return 0;
5012}
5013
5014/**
Li Zefana043e3b2008-02-23 15:24:09 -08005015 * cgroup_init - cgroup initialization
5016 *
5017 * Register cgroup filesystem and /proc file, and initialize
5018 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005019 */
5020int __init cgroup_init(void)
5021{
Tejun Heo30159ec2013-06-25 11:53:37 -07005022 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08005023 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04005024 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07005025
Tejun Heod59cfc02015-05-13 16:35:17 -04005026 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heoa14c6872014-07-15 11:05:09 -04005027 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
5028 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005029
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005030 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005031
Tejun Heo82fe9b02013-06-25 11:53:37 -07005032 /* Add init_css_set to the hash table */
5033 key = css_set_hash(init_css_set.subsys);
5034 hash_add(css_set_table, &init_css_set.hlist, key);
5035
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005036 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07005037
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005038 mutex_unlock(&cgroup_mutex);
5039
Tejun Heo172a2c062014-03-19 10:23:53 -04005040 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04005041 if (ss->early_init) {
5042 struct cgroup_subsys_state *css =
5043 init_css_set.subsys[ss->id];
5044
5045 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5046 GFP_KERNEL);
5047 BUG_ON(css->id < 0);
5048 } else {
5049 cgroup_init_subsys(ss, false);
5050 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005051
Tejun Heo2d8f2432014-04-23 11:13:15 -04005052 list_add_tail(&init_css_set.e_cset_node[ssid],
5053 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005054
5055 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005056 * Setting dfl_root subsys_mask needs to consider the
5057 * disabled flag and cftype registration needs kmalloc,
5058 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005059 */
Tejun Heoa8ddc822014-07-15 11:05:10 -04005060 if (ss->disabled)
5061 continue;
5062
5063 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5064
5065 if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes)
5066 ss->dfl_cftypes = ss->legacy_cftypes;
5067
Tejun Heo5de4fa12014-07-15 11:05:10 -04005068 if (!ss->dfl_cftypes)
5069 cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id;
5070
Tejun Heoa8ddc822014-07-15 11:05:10 -04005071 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5072 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5073 } else {
5074 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5075 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005076 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005077
5078 if (ss->bind)
5079 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005080 }
Greg KH676db4a2010-08-05 13:53:35 -07005081
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05005082 err = sysfs_create_mount_point(fs_kobj, "cgroup");
5083 if (err)
5084 return err;
Paul Menagea4243162007-10-18 23:39:35 -07005085
5086 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005087 if (err < 0) {
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05005088 sysfs_remove_mount_point(fs_kobj, "cgroup");
Tejun Heo2bd59d42014-02-11 11:52:49 -05005089 return err;
Paul Menagea4243162007-10-18 23:39:35 -07005090 }
5091
5092 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05005093 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005094}
Paul Menageb4f48b62007-10-18 23:39:33 -07005095
Tejun Heoe5fca242013-11-22 17:14:39 -05005096static int __init cgroup_wq_init(void)
5097{
5098 /*
5099 * There isn't much point in executing destruction path in
5100 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005101 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005102 *
5103 * We would prefer to do this in cgroup_init() above, but that
5104 * is called before init_workqueues(): so leave this until after.
5105 */
Tejun Heo1a115332014-02-12 19:06:19 -05005106 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005107 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005108
5109 /*
5110 * Used to destroy pidlists and separate to serve as flush domain.
5111 * Cap @max_active to 1 too.
5112 */
5113 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5114 0, 1);
5115 BUG_ON(!cgroup_pidlist_destroy_wq);
5116
Tejun Heoe5fca242013-11-22 17:14:39 -05005117 return 0;
5118}
5119core_initcall(cgroup_wq_init);
5120
Paul Menagea4243162007-10-18 23:39:35 -07005121/*
5122 * proc_cgroup_show()
5123 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5124 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005125 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005126int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5127 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005128{
Tejun Heoe61734c2014-02-12 09:29:50 -05005129 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005130 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005131 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005132
5133 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005134 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005135 if (!buf)
5136 goto out;
5137
Paul Menagea4243162007-10-18 23:39:35 -07005138 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05005139 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005140
Tejun Heo985ed672014-03-19 10:23:53 -04005141 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005142 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005143 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005144 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005145
Tejun Heoa2dd4242014-03-19 10:23:55 -04005146 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005147 continue;
5148
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005149 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heod98817d2015-08-18 13:58:16 -07005150 if (root != &cgrp_dfl_root)
5151 for_each_subsys(ss, ssid)
5152 if (root->subsys_mask & (1 << ssid))
5153 seq_printf(m, "%s%s", count++ ? "," : "",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005154 ss->legacy_name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005155 if (strlen(root->name))
5156 seq_printf(m, "%sname=%s", count ? "," : "",
5157 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005158 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07005159 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05005160 path = cgroup_path(cgrp, buf, PATH_MAX);
5161 if (!path) {
5162 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07005163 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05005164 }
5165 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07005166 seq_putc(m, '\n');
5167 }
5168
Zefan Li006f4ac2014-09-18 16:03:15 +08005169 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005170out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05005171 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005172 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005173 kfree(buf);
5174out:
5175 return retval;
5176}
5177
Paul Menagea4243162007-10-18 23:39:35 -07005178/* Display information about each subsystem and each hierarchy */
5179static int proc_cgroupstats_show(struct seq_file *m, void *v)
5180{
Tejun Heo30159ec2013-06-25 11:53:37 -07005181 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005182 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005183
Paul Menage8bab8dd2008-04-04 14:29:57 -07005184 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005185 /*
5186 * ideally we don't want subsystems moving around while we do this.
5187 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5188 * subsys/hierarchy state.
5189 */
Paul Menagea4243162007-10-18 23:39:35 -07005190 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005191
5192 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005193 seq_printf(m, "%s\t%d\t%d\t%d\n",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005194 ss->legacy_name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05005195 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07005196
Paul Menagea4243162007-10-18 23:39:35 -07005197 mutex_unlock(&cgroup_mutex);
5198 return 0;
5199}
5200
5201static int cgroupstats_open(struct inode *inode, struct file *file)
5202{
Al Viro9dce07f2008-03-29 03:07:28 +00005203 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005204}
5205
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005206static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005207 .open = cgroupstats_open,
5208 .read = seq_read,
5209 .llseek = seq_lseek,
5210 .release = single_release,
5211};
5212
Aleksa Sarai7e476822015-06-09 21:32:09 +10005213static void **subsys_canfork_priv_p(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5214{
5215 if (CGROUP_CANFORK_START <= i && i < CGROUP_CANFORK_END)
5216 return &ss_priv[i - CGROUP_CANFORK_START];
5217 return NULL;
5218}
5219
5220static void *subsys_canfork_priv(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5221{
5222 void **private = subsys_canfork_priv_p(ss_priv, i);
5223 return private ? *private : NULL;
5224}
5225
Paul Menageb4f48b62007-10-18 23:39:33 -07005226/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005227 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005228 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005229 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005230 * A task is associated with the init_css_set until cgroup_post_fork()
5231 * attaches it to the parent's css_set. Empty cg_list indicates that
5232 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005233 */
5234void cgroup_fork(struct task_struct *child)
5235{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005236 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005237 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005238}
5239
5240/**
Aleksa Sarai7e476822015-06-09 21:32:09 +10005241 * cgroup_can_fork - called on a new task before the process is exposed
5242 * @child: the task in question.
5243 *
5244 * This calls the subsystem can_fork() callbacks. If the can_fork() callback
5245 * returns an error, the fork aborts with that error code. This allows for
5246 * a cgroup subsystem to conditionally allow or deny new forks.
5247 */
5248int cgroup_can_fork(struct task_struct *child,
5249 void *ss_priv[CGROUP_CANFORK_COUNT])
5250{
5251 struct cgroup_subsys *ss;
5252 int i, j, ret;
5253
5254 for_each_subsys_which(ss, i, &have_canfork_callback) {
5255 ret = ss->can_fork(child, subsys_canfork_priv_p(ss_priv, i));
5256 if (ret)
5257 goto out_revert;
5258 }
5259
5260 return 0;
5261
5262out_revert:
5263 for_each_subsys(ss, j) {
5264 if (j >= i)
5265 break;
5266 if (ss->cancel_fork)
5267 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, j));
5268 }
5269
5270 return ret;
5271}
5272
5273/**
5274 * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
5275 * @child: the task in question
5276 *
5277 * This calls the cancel_fork() callbacks if a fork failed *after*
5278 * cgroup_can_fork() succeded.
5279 */
5280void cgroup_cancel_fork(struct task_struct *child,
5281 void *ss_priv[CGROUP_CANFORK_COUNT])
5282{
5283 struct cgroup_subsys *ss;
5284 int i;
5285
5286 for_each_subsys(ss, i)
5287 if (ss->cancel_fork)
5288 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, i));
5289}
5290
5291/**
Li Zefana043e3b2008-02-23 15:24:09 -08005292 * cgroup_post_fork - called on a new task after adding it to the task list
5293 * @child: the task in question
5294 *
Tejun Heo5edee612012-10-16 15:03:14 -07005295 * Adds the task to the list running through its css_set if necessary and
5296 * call the subsystem fork() callbacks. Has to be after the task is
5297 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005298 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005299 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005300 */
Aleksa Sarai7e476822015-06-09 21:32:09 +10005301void cgroup_post_fork(struct task_struct *child,
5302 void *old_ss_priv[CGROUP_CANFORK_COUNT])
Paul Menage817929e2007-10-18 23:39:36 -07005303{
Tejun Heo30159ec2013-06-25 11:53:37 -07005304 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005305 int i;
5306
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005307 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005308 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005309 * function sets use_task_css_set_links before grabbing
5310 * tasklist_lock and we just went through tasklist_lock to add
5311 * @child, it's guaranteed that either we see the set
5312 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5313 * @child during its iteration.
5314 *
5315 * If we won the race, @child is associated with %current's
5316 * css_set. Grabbing css_set_rwsem guarantees both that the
5317 * association is stable, and, on completion of the parent's
5318 * migration, @child is visible in the source of migration or
5319 * already in the destination cgroup. This guarantee is necessary
5320 * when implementing operations which need to migrate all tasks of
5321 * a cgroup to another.
5322 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005323 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005324 * will remain in init_css_set. This is safe because all tasks are
5325 * in the init_css_set before cg_links is enabled and there's no
5326 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005327 */
Paul Menage817929e2007-10-18 23:39:36 -07005328 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005329 struct css_set *cset;
5330
Tejun Heo96d365e2014-02-13 06:58:40 -05005331 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005332 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005333 if (list_empty(&child->cg_list)) {
5334 rcu_assign_pointer(child->cgroups, cset);
5335 list_add(&child->cg_list, &cset->tasks);
5336 get_css_set(cset);
5337 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005338 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07005339 }
Tejun Heo5edee612012-10-16 15:03:14 -07005340
5341 /*
5342 * Call ss->fork(). This must happen after @child is linked on
5343 * css_set; otherwise, @child might change state between ->fork()
5344 * and addition to css_set.
5345 */
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005346 for_each_subsys_which(ss, i, &have_fork_callback)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005347 ss->fork(child, subsys_canfork_priv(old_ss_priv, i));
Paul Menage817929e2007-10-18 23:39:36 -07005348}
Tejun Heo5edee612012-10-16 15:03:14 -07005349
Paul Menage817929e2007-10-18 23:39:36 -07005350/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005351 * cgroup_exit - detach cgroup from exiting task
5352 * @tsk: pointer to task_struct of exiting process
5353 *
5354 * Description: Detach cgroup from @tsk and release it.
5355 *
5356 * Note that cgroups marked notify_on_release force every task in
5357 * them to take the global cgroup_mutex mutex when exiting.
5358 * This could impact scaling on very large systems. Be reluctant to
5359 * use notify_on_release cgroups where very high task exit scaling
5360 * is required on large systems.
5361 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005362 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5363 * call cgroup_exit() while the task is still competent to handle
5364 * notify_on_release(), then leave the task attached to the root cgroup in
5365 * each hierarchy for the remainder of its exit. No need to bother with
5366 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005367 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005368 */
Li Zefan1ec41832014-03-28 15:22:19 +08005369void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005370{
Tejun Heo30159ec2013-06-25 11:53:37 -07005371 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005372 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005373 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005374 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005375
5376 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005377 * Unlink from @tsk from its css_set. As migration path can't race
5378 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005379 */
5380 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005381 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005382 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005383 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005384 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005385 }
5386
Paul Menageb4f48b62007-10-18 23:39:33 -07005387 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005388 cset = task_css_set(tsk);
5389 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005390
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005391 /* see cgroup_post_fork() for details */
5392 for_each_subsys_which(ss, i, &have_exit_callback) {
5393 struct cgroup_subsys_state *old_css = cset->subsys[i];
5394 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005395
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005396 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005397 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005398
Tejun Heoeaf797a2014-02-25 10:04:03 -05005399 if (put_cset)
Zefan Lia25eb522014-09-19 16:51:00 +08005400 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005401}
Paul Menage697f4162007-10-18 23:39:34 -07005402
Paul Menagebd89aab2007-10-18 23:40:44 -07005403static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005404{
Zefan Lia25eb522014-09-19 16:51:00 +08005405 if (notify_on_release(cgrp) && !cgroup_has_tasks(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005406 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5407 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005408}
5409
Paul Menage81a6a5c2007-10-18 23:39:38 -07005410/*
5411 * Notify userspace when a cgroup is released, by running the
5412 * configured release agent with the name of the cgroup (path
5413 * relative to the root of cgroup file system) as the argument.
5414 *
5415 * Most likely, this user command will try to rmdir this cgroup.
5416 *
5417 * This races with the possibility that some other task will be
5418 * attached to this cgroup before it is removed, or that some other
5419 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5420 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5421 * unused, and this cgroup will be reprieved from its death sentence,
5422 * to continue to serve a useful existence. Next time it's released,
5423 * we will get notified again, if it still has 'notify_on_release' set.
5424 *
5425 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5426 * means only wait until the task is successfully execve()'d. The
5427 * separate release agent task is forked by call_usermodehelper(),
5428 * then control in this thread returns here, without waiting for the
5429 * release agent task. We don't bother to wait because the caller of
5430 * this routine has no use for the exit status of the release agent
5431 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005432 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005433static void cgroup_release_agent(struct work_struct *work)
5434{
Zefan Li971ff492014-09-18 16:06:19 +08005435 struct cgroup *cgrp =
5436 container_of(work, struct cgroup, release_agent_work);
5437 char *pathbuf = NULL, *agentbuf = NULL, *path;
5438 char *argv[3], *envp[3];
5439
Paul Menage81a6a5c2007-10-18 23:39:38 -07005440 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005441
Zefan Li971ff492014-09-18 16:06:19 +08005442 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5443 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5444 if (!pathbuf || !agentbuf)
5445 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005446
Zefan Li971ff492014-09-18 16:06:19 +08005447 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5448 if (!path)
5449 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005450
Zefan Li971ff492014-09-18 16:06:19 +08005451 argv[0] = agentbuf;
5452 argv[1] = path;
5453 argv[2] = NULL;
5454
5455 /* minimal command environment */
5456 envp[0] = "HOME=/";
5457 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5458 envp[2] = NULL;
5459
Paul Menage81a6a5c2007-10-18 23:39:38 -07005460 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005461 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005462 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005463out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005464 mutex_unlock(&cgroup_mutex);
5465out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005466 kfree(agentbuf);
5467 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005468}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005469
5470static int __init cgroup_disable(char *str)
5471{
Tejun Heo30159ec2013-06-25 11:53:37 -07005472 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005473 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005474 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005475
5476 while ((token = strsep(&str, ",")) != NULL) {
5477 if (!*token)
5478 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005479
Tejun Heo3ed80a62014-02-08 10:36:58 -05005480 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005481 if (strcmp(token, ss->name) &&
5482 strcmp(token, ss->legacy_name))
5483 continue;
5484
5485 ss->disabled = 1;
5486 printk(KERN_INFO "Disabling %s control group subsystem\n",
5487 ss->name);
5488 break;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005489 }
5490 }
5491 return 1;
5492}
5493__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005494
Tejun Heoa8ddc822014-07-15 11:05:10 -04005495static int __init cgroup_set_legacy_files_on_dfl(char *str)
5496{
5497 printk("cgroup: using legacy files on the default hierarchy\n");
5498 cgroup_legacy_files_on_dfl = true;
5499 return 0;
5500}
5501__setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl);
5502
Tejun Heob77d7b62013-08-13 11:01:54 -04005503/**
Tejun Heoec903c02014-05-13 12:11:01 -04005504 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005505 * @dentry: directory dentry of interest
5506 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005507 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005508 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5509 * to get the corresponding css and return it. If such css doesn't exist
5510 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005511 */
Tejun Heoec903c02014-05-13 12:11:01 -04005512struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5513 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005514{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005515 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5516 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005517 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005518
Tejun Heo35cf0832013-08-26 18:40:56 -04005519 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005520 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5521 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005522 return ERR_PTR(-EBADF);
5523
Tejun Heo5a17f542014-02-11 11:52:47 -05005524 rcu_read_lock();
5525
Tejun Heo2bd59d42014-02-11 11:52:49 -05005526 /*
5527 * This path doesn't originate from kernfs and @kn could already
5528 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005529 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005530 */
5531 cgrp = rcu_dereference(kn->priv);
5532 if (cgrp)
5533 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005534
Tejun Heoec903c02014-05-13 12:11:01 -04005535 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005536 css = ERR_PTR(-ENOENT);
5537
5538 rcu_read_unlock();
5539 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005540}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005541
Li Zefan1cb650b2013-08-19 10:05:24 +08005542/**
5543 * css_from_id - lookup css by id
5544 * @id: the cgroup id
5545 * @ss: cgroup subsys to be looked into
5546 *
5547 * Returns the css if there's valid one with @id, otherwise returns NULL.
5548 * Should be called under rcu_read_lock().
5549 */
5550struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5551{
Tejun Heo6fa49182014-05-04 15:09:13 -04005552 WARN_ON_ONCE(!rcu_read_lock_held());
Vladimir Davydovadbe4272015-04-15 16:13:00 -07005553 return id > 0 ? idr_find(&ss->css_idr, id) : NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005554}
5555
Paul Menagefe693432009-09-23 15:56:20 -07005556#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005557static struct cgroup_subsys_state *
5558debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005559{
5560 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5561
5562 if (!css)
5563 return ERR_PTR(-ENOMEM);
5564
5565 return css;
5566}
5567
Tejun Heoeb954192013-08-08 20:11:23 -04005568static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005569{
Tejun Heoeb954192013-08-08 20:11:23 -04005570 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005571}
5572
Tejun Heo182446d2013-08-08 20:11:24 -04005573static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5574 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005575{
Tejun Heo182446d2013-08-08 20:11:24 -04005576 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005577}
5578
Tejun Heo182446d2013-08-08 20:11:24 -04005579static u64 current_css_set_read(struct cgroup_subsys_state *css,
5580 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005581{
5582 return (u64)(unsigned long)current->cgroups;
5583}
5584
Tejun Heo182446d2013-08-08 20:11:24 -04005585static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005586 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005587{
5588 u64 count;
5589
5590 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005591 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005592 rcu_read_unlock();
5593 return count;
5594}
5595
Tejun Heo2da8ca82013-12-05 12:28:04 -05005596static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005597{
Tejun Heo69d02062013-06-12 21:04:50 -07005598 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005599 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005600 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005601
Tejun Heoe61734c2014-02-12 09:29:50 -05005602 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5603 if (!name_buf)
5604 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005605
Tejun Heo96d365e2014-02-13 06:58:40 -05005606 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005607 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005608 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005609 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005610 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005611
Tejun Heoa2dd4242014-03-19 10:23:55 -04005612 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005613 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005614 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005615 }
5616 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005617 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005618 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005619 return 0;
5620}
5621
5622#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005623static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005624{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005625 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005626 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005627
Tejun Heo96d365e2014-02-13 06:58:40 -05005628 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005629 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005630 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005631 struct task_struct *task;
5632 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005633
Tejun Heo5abb8852013-06-12 21:04:49 -07005634 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005635
Tejun Heo5abb8852013-06-12 21:04:49 -07005636 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005637 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5638 goto overflow;
5639 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005640 }
Tejun Heoc7561122014-02-25 10:04:01 -05005641
5642 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5643 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5644 goto overflow;
5645 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5646 }
5647 continue;
5648 overflow:
5649 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005650 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005651 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005652 return 0;
5653}
5654
Tejun Heo182446d2013-08-08 20:11:24 -04005655static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005656{
Zefan Lia25eb522014-09-19 16:51:00 +08005657 return (!cgroup_has_tasks(css->cgroup) &&
5658 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07005659}
5660
5661static struct cftype debug_files[] = {
5662 {
Paul Menagefe693432009-09-23 15:56:20 -07005663 .name = "taskcount",
5664 .read_u64 = debug_taskcount_read,
5665 },
5666
5667 {
5668 .name = "current_css_set",
5669 .read_u64 = current_css_set_read,
5670 },
5671
5672 {
5673 .name = "current_css_set_refcount",
5674 .read_u64 = current_css_set_refcount_read,
5675 },
5676
5677 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005678 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005679 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005680 },
5681
5682 {
5683 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005684 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005685 },
5686
5687 {
Paul Menagefe693432009-09-23 15:56:20 -07005688 .name = "releasable",
5689 .read_u64 = releasable_read,
5690 },
Paul Menagefe693432009-09-23 15:56:20 -07005691
Tejun Heo4baf6e32012-04-01 12:09:55 -07005692 { } /* terminate */
5693};
Paul Menagefe693432009-09-23 15:56:20 -07005694
Tejun Heo073219e2014-02-08 10:36:58 -05005695struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005696 .css_alloc = debug_css_alloc,
5697 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04005698 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005699};
5700#endif /* CONFIG_CGROUP_DEBUG */