blob: 0fd5227958fed86165c994efbf5c13a831f5f7ad [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() \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500110 rcu_lockdep_assert(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 Heo9871bf92013-06-24 15:21:47 -0700148
Tejun Heoa2dd4242014-03-19 10:23:55 -0400149/*
150 * The default hierarchy always exists but is hidden until mounted for the
151 * first time. This is for backward compatibility.
152 */
153static bool cgrp_dfl_root_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700154
Tejun Heoa8ddc822014-07-15 11:05:10 -0400155/*
156 * Set by the boot param of the same name and makes subsystems with NULL
157 * ->dfl_files to use ->legacy_files on the default hierarchy.
158 */
159static bool cgroup_legacy_files_on_dfl;
160
Tejun Heo5533e012014-05-14 19:33:07 -0400161/* some controllers are not supported in the default hierarchy */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000162static unsigned long cgrp_dfl_root_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -0400163
Paul Menageddbcc7e2007-10-18 23:39:30 -0700164/* The list of hierarchy roots */
165
Tejun Heo9871bf92013-06-24 15:21:47 -0700166static LIST_HEAD(cgroup_roots);
167static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700168
Tejun Heo3417ae12014-02-08 10:37:01 -0500169/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700170static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700171
Li Zefan794611a2013-06-18 18:53:53 +0800172/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400173 * Assign a monotonically increasing serial number to csses. It guarantees
174 * cgroups with bigger numbers are newer than those with smaller numbers.
175 * Also, as csses are always appended to the parent's ->children list, it
176 * guarantees that sibling csses are always sorted in the ascending serial
177 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800178 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400179static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800180
Paul Menageddbcc7e2007-10-18 23:39:30 -0700181/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800182 * check for fork/exit handlers to call. This avoids us having to do
183 * extra work in the fork/exit path if none of the subsystems need to
184 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700185 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700186static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700187
Tejun Heoa14c6872014-07-15 11:05:09 -0400188static struct cftype cgroup_dfl_base_files[];
189static struct cftype cgroup_legacy_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700190
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400191static int rebind_subsystems(struct cgroup_root *dst_root,
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000192 unsigned long ss_mask);
Tejun Heo42809dd2012-11-19 08:13:37 -0800193static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heof63070d2014-07-08 18:02:57 -0400194static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
195 bool visible);
Tejun Heo9d755d32014-05-14 09:15:02 -0400196static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400197static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400198static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
199 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800200
Tejun Heo6fa49182014-05-04 15:09:13 -0400201/* IDR wrappers which synchronize using cgroup_idr_lock */
202static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
203 gfp_t gfp_mask)
204{
205 int ret;
206
207 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400208 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400209 ret = idr_alloc(idr, ptr, start, end, gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400210 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400211 idr_preload_end();
212 return ret;
213}
214
215static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
216{
217 void *ret;
218
Tejun Heo54504e92014-05-13 12:10:59 -0400219 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400220 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400221 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400222 return ret;
223}
224
225static void cgroup_idr_remove(struct idr *idr, int id)
226{
Tejun Heo54504e92014-05-13 12:10:59 -0400227 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400228 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400229 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400230}
231
Tejun Heod51f39b2014-05-16 13:22:48 -0400232static struct cgroup *cgroup_parent(struct cgroup *cgrp)
233{
234 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
235
236 if (parent_css)
237 return container_of(parent_css, struct cgroup, self);
238 return NULL;
239}
240
Tejun Heo95109b62013-08-08 20:11:27 -0400241/**
242 * cgroup_css - obtain a cgroup's css for the specified subsystem
243 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400244 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400245 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400246 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
247 * function must be called either under cgroup_mutex or rcu_read_lock() and
248 * the caller is responsible for pinning the returned css if it wants to
249 * keep accessing it outside the said locks. This function may return
250 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400251 */
252static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400253 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400254{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400255 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500256 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500257 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400258 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400259 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400260}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700261
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400262/**
263 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
264 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400265 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400266 *
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400267 * Similar to cgroup_css() but returns the effective css, which is defined
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400268 * as the matching css of the nearest ancestor including self which has @ss
269 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
270 * function is guaranteed to return non-NULL css.
271 */
272static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
273 struct cgroup_subsys *ss)
274{
275 lockdep_assert_held(&cgroup_mutex);
276
277 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400278 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400279
280 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
281 return NULL;
282
Tejun Heoeeecbd12014-11-18 02:49:52 -0500283 /*
284 * This function is used while updating css associations and thus
285 * can't test the csses directly. Use ->child_subsys_mask.
286 */
Tejun Heod51f39b2014-05-16 13:22:48 -0400287 while (cgroup_parent(cgrp) &&
288 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
289 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400290
291 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700292}
293
Tejun Heoeeecbd12014-11-18 02:49:52 -0500294/**
295 * cgroup_get_e_css - get a cgroup's effective css for the specified subsystem
296 * @cgrp: the cgroup of interest
297 * @ss: the subsystem of interest
298 *
299 * Find and get the effective css of @cgrp for @ss. The effective css is
300 * defined as the matching css of the nearest ancestor including self which
301 * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on,
302 * the root css is returned, so this function always returns a valid css.
303 * The returned css must be put using css_put().
304 */
305struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgrp,
306 struct cgroup_subsys *ss)
307{
308 struct cgroup_subsys_state *css;
309
310 rcu_read_lock();
311
312 do {
313 css = cgroup_css(cgrp, ss);
314
315 if (css && css_tryget_online(css))
316 goto out_unlock;
317 cgrp = cgroup_parent(cgrp);
318 } while (cgrp);
319
320 css = init_css_set.subsys[ss->id];
321 css_get(css);
322out_unlock:
323 rcu_read_unlock();
324 return css;
325}
326
Paul Menageddbcc7e2007-10-18 23:39:30 -0700327/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700328static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700329{
Tejun Heo184faf32014-05-16 13:22:51 -0400330 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700331}
332
Tejun Heob4168642014-05-13 12:16:21 -0400333struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500334{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500335 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400336 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500337
338 /*
339 * This is open and unprotected implementation of cgroup_css().
340 * seq_css() is only called from a kernfs file operation which has
341 * an active reference on the file. Because all the subsystem
342 * files are drained before a css is disassociated with a cgroup,
343 * the matching css from the cgroup's subsys table is guaranteed to
344 * be and stay valid until the enclosing operation is complete.
345 */
346 if (cft->ss)
347 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
348 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400349 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500350}
Tejun Heob4168642014-05-13 12:16:21 -0400351EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500352
Li Zefan78574cf2013-04-08 19:00:38 -0700353/**
354 * cgroup_is_descendant - test ancestry
355 * @cgrp: the cgroup to be tested
356 * @ancestor: possible ancestor of @cgrp
357 *
358 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
359 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
360 * and @ancestor are accessible.
361 */
362bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
363{
364 while (cgrp) {
365 if (cgrp == ancestor)
366 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400367 cgrp = cgroup_parent(cgrp);
Li Zefan78574cf2013-04-08 19:00:38 -0700368 }
369 return false;
370}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700371
Adrian Bunke9685a02008-02-07 00:13:46 -0800372static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700373{
Paul Menagebd89aab2007-10-18 23:40:44 -0700374 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700375}
376
Tejun Heo30159ec2013-06-25 11:53:37 -0700377/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500378 * for_each_css - iterate all css's of a cgroup
379 * @css: the iteration cursor
380 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
381 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700382 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400383 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700384 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500385#define for_each_css(css, ssid, cgrp) \
386 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
387 if (!((css) = rcu_dereference_check( \
388 (cgrp)->subsys[(ssid)], \
389 lockdep_is_held(&cgroup_mutex)))) { } \
390 else
391
392/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400393 * for_each_e_css - iterate all effective css's of a cgroup
394 * @css: the iteration cursor
395 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
396 * @cgrp: the target cgroup to iterate css's of
397 *
398 * Should be called under cgroup_[tree_]mutex.
399 */
400#define for_each_e_css(css, ssid, cgrp) \
401 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
402 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
403 ; \
404 else
405
406/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500407 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700408 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500409 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700410 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500411#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500412 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
413 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700414
Tejun Heo985ed672014-03-19 10:23:53 -0400415/* iterate across the hierarchies */
416#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700417 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700418
Tejun Heof8f22e52014-04-23 11:13:16 -0400419/* iterate over child cgrps, lock should be held throughout iteration */
420#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400421 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400422 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400423 cgroup_is_dead(child); })) \
424 ; \
425 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700426
Paul Menage81a6a5c2007-10-18 23:39:38 -0700427static void cgroup_release_agent(struct work_struct *work);
Paul Menagebd89aab2007-10-18 23:40:44 -0700428static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700429
Tejun Heo69d02062013-06-12 21:04:50 -0700430/*
431 * A cgroup can be associated with multiple css_sets as different tasks may
432 * belong to different cgroups on different hierarchies. In the other
433 * direction, a css_set is naturally associated with multiple cgroups.
434 * This M:N relationship is represented by the following link structure
435 * which exists for each association and allows traversing the associations
436 * from both sides.
437 */
438struct cgrp_cset_link {
439 /* the cgroup and css_set this link associates */
440 struct cgroup *cgrp;
441 struct css_set *cset;
442
443 /* list of cgrp_cset_links anchored at cgrp->cset_links */
444 struct list_head cset_link;
445
446 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
447 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700448};
449
Tejun Heo172a2c062014-03-19 10:23:53 -0400450/*
451 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700452 * hierarchies being mounted. It contains a pointer to the root state
453 * for each subsystem. Also used to anchor the list of css_sets. Not
454 * reference-counted, to improve performance when child cgroups
455 * haven't been created.
456 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400457struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400458 .refcount = ATOMIC_INIT(1),
459 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
460 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
461 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
462 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
463 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
464};
Paul Menage817929e2007-10-18 23:39:36 -0700465
Tejun Heo172a2c062014-03-19 10:23:53 -0400466static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700467
Tejun Heo842b5972014-04-25 18:28:02 -0400468/**
469 * cgroup_update_populated - updated populated count of a cgroup
470 * @cgrp: the target cgroup
471 * @populated: inc or dec populated count
472 *
473 * @cgrp is either getting the first task (css_set) or losing the last.
474 * Update @cgrp->populated_cnt accordingly. The count is propagated
475 * towards root so that a given cgroup's populated_cnt is zero iff the
476 * cgroup and all its descendants are empty.
477 *
478 * @cgrp's interface file "cgroup.populated" is zero if
479 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
480 * changes from or to zero, userland is notified that the content of the
481 * interface file has changed. This can be used to detect when @cgrp and
482 * its descendants become populated or empty.
483 */
484static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
485{
486 lockdep_assert_held(&css_set_rwsem);
487
488 do {
489 bool trigger;
490
491 if (populated)
492 trigger = !cgrp->populated_cnt++;
493 else
494 trigger = !--cgrp->populated_cnt;
495
496 if (!trigger)
497 break;
498
499 if (cgrp->populated_kn)
500 kernfs_notify(cgrp->populated_kn);
Tejun Heod51f39b2014-05-16 13:22:48 -0400501 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400502 } while (cgrp);
503}
504
Paul Menage7717f7b2009-09-23 15:56:22 -0700505/*
506 * hash table for cgroup groups. This improves the performance to find
507 * an existing css_set. This hash doesn't (currently) take into
508 * account cgroups in empty hierarchies.
509 */
Li Zefan472b1052008-04-29 01:00:11 -0700510#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800511static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700512
Li Zefan0ac801f2013-01-10 11:49:27 +0800513static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700514{
Li Zefan0ac801f2013-01-10 11:49:27 +0800515 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700516 struct cgroup_subsys *ss;
517 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700518
Tejun Heo30159ec2013-06-25 11:53:37 -0700519 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800520 key += (unsigned long)css[i];
521 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700522
Li Zefan0ac801f2013-01-10 11:49:27 +0800523 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700524}
525
Zefan Lia25eb522014-09-19 16:51:00 +0800526static void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700527{
Tejun Heo69d02062013-06-12 21:04:50 -0700528 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400529 struct cgroup_subsys *ss;
530 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700531
Tejun Heo89c55092014-02-13 06:58:40 -0500532 lockdep_assert_held(&css_set_rwsem);
533
534 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700535 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700536
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700537 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400538 for_each_subsys(ss, ssid)
539 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700540 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700541 css_set_count--;
542
Tejun Heo69d02062013-06-12 21:04:50 -0700543 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700544 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700545
Tejun Heo69d02062013-06-12 21:04:50 -0700546 list_del(&link->cset_link);
547 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800548
Tejun Heo96d365e2014-02-13 06:58:40 -0500549 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo842b5972014-04-25 18:28:02 -0400550 if (list_empty(&cgrp->cset_links)) {
551 cgroup_update_populated(cgrp, false);
Zefan Lia25eb522014-09-19 16:51:00 +0800552 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700553 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700554
555 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700556 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700557
Tejun Heo5abb8852013-06-12 21:04:49 -0700558 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700559}
560
Zefan Lia25eb522014-09-19 16:51:00 +0800561static void put_css_set(struct css_set *cset)
Tejun Heo89c55092014-02-13 06:58:40 -0500562{
563 /*
564 * Ensure that the refcount doesn't hit zero while any readers
565 * can see it. Similar to atomic_dec_and_lock(), but for an
566 * rwlock
567 */
568 if (atomic_add_unless(&cset->refcount, -1, 1))
569 return;
570
571 down_write(&css_set_rwsem);
Zefan Lia25eb522014-09-19 16:51:00 +0800572 put_css_set_locked(cset);
Tejun Heo89c55092014-02-13 06:58:40 -0500573 up_write(&css_set_rwsem);
574}
575
Paul Menage817929e2007-10-18 23:39:36 -0700576/*
577 * refcounted get/put for css_set objects
578 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700579static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700580{
Tejun Heo5abb8852013-06-12 21:04:49 -0700581 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700582}
583
Tejun Heob326f9d2013-06-24 15:21:48 -0700584/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700585 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700586 * @cset: candidate css_set being tested
587 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700588 * @new_cgrp: cgroup that's being entered by the task
589 * @template: desired set of css pointers in css_set (pre-calculated)
590 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800591 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700592 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
593 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700594static bool compare_css_sets(struct css_set *cset,
595 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700596 struct cgroup *new_cgrp,
597 struct cgroup_subsys_state *template[])
598{
599 struct list_head *l1, *l2;
600
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400601 /*
602 * On the default hierarchy, there can be csets which are
603 * associated with the same set of cgroups but different csses.
604 * Let's first ensure that csses match.
605 */
606 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700607 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700608
609 /*
610 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400611 * different cgroups in hierarchies. As different cgroups may
612 * share the same effective css, this comparison is always
613 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700614 */
Tejun Heo69d02062013-06-12 21:04:50 -0700615 l1 = &cset->cgrp_links;
616 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700617 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700618 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700619 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700620
621 l1 = l1->next;
622 l2 = l2->next;
623 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700624 if (l1 == &cset->cgrp_links) {
625 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700626 break;
627 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700628 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700629 }
630 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700631 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
632 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
633 cgrp1 = link1->cgrp;
634 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700635 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700636 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700637
638 /*
639 * If this hierarchy is the hierarchy of the cgroup
640 * that's changing, then we need to check that this
641 * css_set points to the new cgroup; if it's any other
642 * hierarchy, then this css_set should point to the
643 * same cgroup as the old css_set.
644 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700645 if (cgrp1->root == new_cgrp->root) {
646 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700647 return false;
648 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700649 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700650 return false;
651 }
652 }
653 return true;
654}
655
Tejun Heob326f9d2013-06-24 15:21:48 -0700656/**
657 * find_existing_css_set - init css array and find the matching css_set
658 * @old_cset: the css_set that we're using before the cgroup transition
659 * @cgrp: the cgroup that we're moving into
660 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700661 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700662static struct css_set *find_existing_css_set(struct css_set *old_cset,
663 struct cgroup *cgrp,
664 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700665{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400666 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700667 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700668 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800669 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700670 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700671
Ben Blumaae8aab2010-03-10 15:22:07 -0800672 /*
673 * Build the set of subsystem state objects that we want to see in the
674 * new css_set. while subsystems can change globally, the entries here
675 * won't change, so no need for locking.
676 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700677 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400678 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400679 /*
680 * @ss is in this hierarchy, so we want the
681 * effective css from @cgrp.
682 */
683 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700684 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400685 /*
686 * @ss is not in this hierarchy, so we don't want
687 * to change the css.
688 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700689 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700690 }
691 }
692
Li Zefan0ac801f2013-01-10 11:49:27 +0800693 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700694 hash_for_each_possible(css_set_table, cset, hlist, key) {
695 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700696 continue;
697
698 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700699 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700700 }
Paul Menage817929e2007-10-18 23:39:36 -0700701
702 /* No existing cgroup group matched */
703 return NULL;
704}
705
Tejun Heo69d02062013-06-12 21:04:50 -0700706static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700707{
Tejun Heo69d02062013-06-12 21:04:50 -0700708 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700709
Tejun Heo69d02062013-06-12 21:04:50 -0700710 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
711 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700712 kfree(link);
713 }
714}
715
Tejun Heo69d02062013-06-12 21:04:50 -0700716/**
717 * allocate_cgrp_cset_links - allocate cgrp_cset_links
718 * @count: the number of links to allocate
719 * @tmp_links: list_head the allocated links are put on
720 *
721 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
722 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700723 */
Tejun Heo69d02062013-06-12 21:04:50 -0700724static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700725{
Tejun Heo69d02062013-06-12 21:04:50 -0700726 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700727 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700728
729 INIT_LIST_HEAD(tmp_links);
730
Li Zefan36553432008-07-29 22:33:19 -0700731 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700732 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700733 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700734 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700735 return -ENOMEM;
736 }
Tejun Heo69d02062013-06-12 21:04:50 -0700737 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700738 }
739 return 0;
740}
741
Li Zefanc12f65d2009-01-07 18:07:42 -0800742/**
743 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700744 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700745 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800746 * @cgrp: the destination cgroup
747 */
Tejun Heo69d02062013-06-12 21:04:50 -0700748static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
749 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800750{
Tejun Heo69d02062013-06-12 21:04:50 -0700751 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800752
Tejun Heo69d02062013-06-12 21:04:50 -0700753 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400754
755 if (cgroup_on_dfl(cgrp))
756 cset->dfl_cgrp = cgrp;
757
Tejun Heo69d02062013-06-12 21:04:50 -0700758 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
759 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700760 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400761
762 if (list_empty(&cgrp->cset_links))
763 cgroup_update_populated(cgrp, true);
Tejun Heo69d02062013-06-12 21:04:50 -0700764 list_move(&link->cset_link, &cgrp->cset_links);
Tejun Heo842b5972014-04-25 18:28:02 -0400765
Paul Menage7717f7b2009-09-23 15:56:22 -0700766 /*
767 * Always add links to the tail of the list so that the list
768 * is sorted by order of hierarchy creation
769 */
Tejun Heo69d02062013-06-12 21:04:50 -0700770 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800771}
772
Tejun Heob326f9d2013-06-24 15:21:48 -0700773/**
774 * find_css_set - return a new css_set with one cgroup updated
775 * @old_cset: the baseline css_set
776 * @cgrp: the cgroup to be updated
777 *
778 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
779 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700780 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700781static struct css_set *find_css_set(struct css_set *old_cset,
782 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700783{
Tejun Heob326f9d2013-06-24 15:21:48 -0700784 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700785 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700786 struct list_head tmp_links;
787 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400788 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800789 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400790 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700791
Tejun Heob326f9d2013-06-24 15:21:48 -0700792 lockdep_assert_held(&cgroup_mutex);
793
Paul Menage817929e2007-10-18 23:39:36 -0700794 /* First see if we already have a cgroup group that matches
795 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500796 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700797 cset = find_existing_css_set(old_cset, cgrp, template);
798 if (cset)
799 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500800 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700801
Tejun Heo5abb8852013-06-12 21:04:49 -0700802 if (cset)
803 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700804
Tejun Heof4f4be22013-06-12 21:04:51 -0700805 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700806 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700807 return NULL;
808
Tejun Heo69d02062013-06-12 21:04:50 -0700809 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700810 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700811 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700812 return NULL;
813 }
814
Tejun Heo5abb8852013-06-12 21:04:49 -0700815 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700816 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700817 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500818 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -0500819 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -0500820 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700821 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700822
823 /* Copy the set of subsystem state objects generated in
824 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700825 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700826
Tejun Heo96d365e2014-02-13 06:58:40 -0500827 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700828 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700829 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700830 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700831
Paul Menage7717f7b2009-09-23 15:56:22 -0700832 if (c->root == cgrp->root)
833 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700834 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700835 }
Paul Menage817929e2007-10-18 23:39:36 -0700836
Tejun Heo69d02062013-06-12 21:04:50 -0700837 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700838
Paul Menage817929e2007-10-18 23:39:36 -0700839 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700840
Tejun Heo2d8f2432014-04-23 11:13:15 -0400841 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700842 key = css_set_hash(cset->subsys);
843 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700844
Tejun Heo2d8f2432014-04-23 11:13:15 -0400845 for_each_subsys(ss, ssid)
846 list_add_tail(&cset->e_cset_node[ssid],
847 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
848
Tejun Heo96d365e2014-02-13 06:58:40 -0500849 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700850
Tejun Heo5abb8852013-06-12 21:04:49 -0700851 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700852}
853
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400854static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700855{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400856 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500857
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400858 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500859}
860
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400861static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500862{
863 int id;
864
865 lockdep_assert_held(&cgroup_mutex);
866
Tejun Heo985ed672014-03-19 10:23:53 -0400867 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -0500868 if (id < 0)
869 return id;
870
871 root->hierarchy_id = id;
872 return 0;
873}
874
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400875static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500876{
877 lockdep_assert_held(&cgroup_mutex);
878
879 if (root->hierarchy_id) {
880 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
881 root->hierarchy_id = 0;
882 }
883}
884
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400885static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500886{
887 if (root) {
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400888 /* hierarchy ID should already have been released */
Tejun Heof2e85d52014-02-11 11:52:49 -0500889 WARN_ON_ONCE(root->hierarchy_id);
890
891 idr_destroy(&root->cgroup_idr);
892 kfree(root);
893 }
894}
895
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400896static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500897{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400898 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -0500899 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500900
Tejun Heo2bd59d42014-02-11 11:52:49 -0500901 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500902
Tejun Heo776f02f2014-02-12 09:29:50 -0500903 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -0400904 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -0500905
Tejun Heof2e85d52014-02-11 11:52:49 -0500906 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -0400907 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -0500908
909 /*
910 * Release all the links from cset_links to this hierarchy's
911 * root cgroup
912 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500913 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500914
915 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
916 list_del(&link->cset_link);
917 list_del(&link->cgrp_link);
918 kfree(link);
919 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500920 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500921
922 if (!list_empty(&root->root_list)) {
923 list_del(&root->root_list);
924 cgroup_root_count--;
925 }
926
927 cgroup_exit_root_id(root);
928
929 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500930
Tejun Heo2bd59d42014-02-11 11:52:49 -0500931 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500932 cgroup_free_root(root);
933}
934
Tejun Heoceb6a082014-02-25 10:04:02 -0500935/* look up cgroup associated with given css_set on the specified hierarchy */
936static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400937 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700938{
Paul Menage7717f7b2009-09-23 15:56:22 -0700939 struct cgroup *res = NULL;
940
Tejun Heo96d365e2014-02-13 06:58:40 -0500941 lockdep_assert_held(&cgroup_mutex);
942 lockdep_assert_held(&css_set_rwsem);
943
Tejun Heo5abb8852013-06-12 21:04:49 -0700944 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400945 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700946 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700947 struct cgrp_cset_link *link;
948
949 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700950 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700951
Paul Menage7717f7b2009-09-23 15:56:22 -0700952 if (c->root == root) {
953 res = c;
954 break;
955 }
956 }
957 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500958
Paul Menage7717f7b2009-09-23 15:56:22 -0700959 BUG_ON(!res);
960 return res;
961}
962
963/*
Tejun Heoceb6a082014-02-25 10:04:02 -0500964 * Return the cgroup for "task" from the given hierarchy. Must be
965 * called with cgroup_mutex and css_set_rwsem held.
966 */
967static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400968 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -0500969{
970 /*
971 * No need to lock the task - since we hold cgroup_mutex the
972 * task can't change groups, so the only thing that can happen
973 * is that it exits and its css is set back to init_css_set.
974 */
975 return cset_cgroup_from_root(task_css_set(task), root);
976}
977
978/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700979 * A task must hold cgroup_mutex to modify cgroups.
980 *
981 * Any task can increment and decrement the count field without lock.
982 * So in general, code holding cgroup_mutex can't rely on the count
983 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800984 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700985 * means that no tasks are currently attached, therefore there is no
986 * way a task attached to that cgroup can fork (the other way to
987 * increment the count). So code holding cgroup_mutex can safely
988 * assume that if the count is zero, it will stay zero. Similarly, if
989 * a task holds cgroup_mutex on a cgroup with zero count, it
990 * knows that the cgroup won't be removed, as cgroup_rmdir()
991 * needs that mutex.
992 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993 * A cgroup can only be deleted if both its 'count' of using tasks
994 * is zero, and its list of 'children' cgroups is empty. Since all
995 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400996 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -0700997 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400998 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700999 *
1000 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001001 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -07001002 */
1003
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001004static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001005static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001006static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -07001007
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001008static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1009 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001010{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001011 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
1012 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
1013 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
1014 cft->ss->name, cft->name);
1015 else
1016 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1017 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001018}
1019
Tejun Heof2e85d52014-02-11 11:52:49 -05001020/**
1021 * cgroup_file_mode - deduce file mode of a control file
1022 * @cft: the control file in question
1023 *
1024 * returns cft->mode if ->mode is not 0
1025 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
1026 * returns S_IRUGO if it has only a read handler
1027 * returns S_IWUSR if it has only a write hander
1028 */
1029static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001030{
Tejun Heof2e85d52014-02-11 11:52:49 -05001031 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001032
Tejun Heof2e85d52014-02-11 11:52:49 -05001033 if (cft->mode)
1034 return cft->mode;
1035
1036 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1037 mode |= S_IRUGO;
1038
Tejun Heo6770c642014-05-13 12:16:21 -04001039 if (cft->write_u64 || cft->write_s64 || cft->write)
Tejun Heof2e85d52014-02-11 11:52:49 -05001040 mode |= S_IWUSR;
1041
1042 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001043}
1044
Tejun Heo59f52962014-02-11 11:52:49 -05001045static void cgroup_get(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001046{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001047 WARN_ON_ONCE(cgroup_is_dead(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04001048 css_get(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001049}
1050
Li Zefanaa323622014-09-04 14:43:38 +08001051static bool cgroup_tryget(struct cgroup *cgrp)
1052{
1053 return css_tryget(&cgrp->self);
1054}
1055
Tejun Heo59f52962014-02-11 11:52:49 -05001056static void cgroup_put(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001057{
Tejun Heo9d755d32014-05-14 09:15:02 -04001058 css_put(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001059}
1060
Tejun Heoa9746d82014-05-13 12:19:22 -04001061/**
Tejun Heo0f060de2014-11-18 02:49:50 -05001062 * cgroup_calc_child_subsys_mask - calculate child_subsys_mask
Tejun Heoaf0ba672014-07-08 18:02:57 -04001063 * @cgrp: the target cgroup
Tejun Heo0f060de2014-11-18 02:49:50 -05001064 * @subtree_control: the new subtree_control mask to consider
Tejun Heoaf0ba672014-07-08 18:02:57 -04001065 *
1066 * On the default hierarchy, a subsystem may request other subsystems to be
1067 * enabled together through its ->depends_on mask. In such cases, more
1068 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1069 *
Tejun Heo0f060de2014-11-18 02:49:50 -05001070 * This function calculates which subsystems need to be enabled if
1071 * @subtree_control is to be applied to @cgrp. The returned mask is always
1072 * a superset of @subtree_control and follows the usual hierarchy rules.
Tejun Heoaf0ba672014-07-08 18:02:57 -04001073 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001074static unsigned long cgroup_calc_child_subsys_mask(struct cgroup *cgrp,
1075 unsigned long subtree_control)
Tejun Heo667c2492014-07-08 18:02:56 -04001076{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001077 struct cgroup *parent = cgroup_parent(cgrp);
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001078 unsigned long cur_ss_mask = subtree_control;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001079 struct cgroup_subsys *ss;
1080 int ssid;
1081
1082 lockdep_assert_held(&cgroup_mutex);
1083
Tejun Heo0f060de2014-11-18 02:49:50 -05001084 if (!cgroup_on_dfl(cgrp))
1085 return cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001086
1087 while (true) {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001088 unsigned long new_ss_mask = cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001089
1090 for_each_subsys(ss, ssid)
1091 if (cur_ss_mask & (1 << ssid))
1092 new_ss_mask |= ss->depends_on;
1093
1094 /*
1095 * Mask out subsystems which aren't available. This can
1096 * happen only if some depended-upon subsystems were bound
1097 * to non-default hierarchies.
1098 */
1099 if (parent)
1100 new_ss_mask &= parent->child_subsys_mask;
1101 else
1102 new_ss_mask &= cgrp->root->subsys_mask;
1103
1104 if (new_ss_mask == cur_ss_mask)
1105 break;
1106 cur_ss_mask = new_ss_mask;
1107 }
1108
Tejun Heo0f060de2014-11-18 02:49:50 -05001109 return cur_ss_mask;
1110}
1111
1112/**
1113 * cgroup_refresh_child_subsys_mask - update child_subsys_mask
1114 * @cgrp: the target cgroup
1115 *
1116 * Update @cgrp->child_subsys_mask according to the current
1117 * @cgrp->subtree_control using cgroup_calc_child_subsys_mask().
1118 */
1119static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1120{
1121 cgrp->child_subsys_mask =
1122 cgroup_calc_child_subsys_mask(cgrp, cgrp->subtree_control);
Tejun Heo667c2492014-07-08 18:02:56 -04001123}
1124
Tejun Heoa9746d82014-05-13 12:19:22 -04001125/**
1126 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1127 * @kn: the kernfs_node being serviced
1128 *
1129 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1130 * the method finishes if locking succeeded. Note that once this function
1131 * returns the cgroup returned by cgroup_kn_lock_live() may become
1132 * inaccessible any time. If the caller intends to continue to access the
1133 * cgroup, it should pin it before invoking this function.
1134 */
1135static void cgroup_kn_unlock(struct kernfs_node *kn)
1136{
1137 struct cgroup *cgrp;
1138
1139 if (kernfs_type(kn) == KERNFS_DIR)
1140 cgrp = kn->priv;
1141 else
1142 cgrp = kn->parent->priv;
1143
1144 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001145
1146 kernfs_unbreak_active_protection(kn);
1147 cgroup_put(cgrp);
1148}
1149
1150/**
1151 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1152 * @kn: the kernfs_node being serviced
1153 *
1154 * This helper is to be used by a cgroup kernfs method currently servicing
1155 * @kn. It breaks the active protection, performs cgroup locking and
1156 * verifies that the associated cgroup is alive. Returns the cgroup if
1157 * alive; otherwise, %NULL. A successful return should be undone by a
1158 * matching cgroup_kn_unlock() invocation.
1159 *
1160 * Any cgroup kernfs method implementation which requires locking the
1161 * associated cgroup should use this helper. It avoids nesting cgroup
1162 * locking under kernfs active protection and allows all kernfs operations
1163 * including self-removal.
1164 */
1165static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1166{
1167 struct cgroup *cgrp;
1168
1169 if (kernfs_type(kn) == KERNFS_DIR)
1170 cgrp = kn->priv;
1171 else
1172 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001173
1174 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001175 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001176 * active_ref. cgroup liveliness check alone provides enough
1177 * protection against removal. Ensure @cgrp stays accessible and
1178 * break the active_ref protection.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001179 */
Li Zefanaa323622014-09-04 14:43:38 +08001180 if (!cgroup_tryget(cgrp))
1181 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001182 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001183
Tejun Heoa9746d82014-05-13 12:19:22 -04001184 mutex_lock(&cgroup_mutex);
1185
1186 if (!cgroup_is_dead(cgrp))
1187 return cgrp;
1188
1189 cgroup_kn_unlock(kn);
1190 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001191}
1192
Li Zefan2739d3c2013-01-21 18:18:33 +08001193static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001194{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001195 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001196
Tejun Heo01f64742014-05-13 12:19:23 -04001197 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001198 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001199}
1200
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001201/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001202 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001203 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001204 * @subsys_mask: mask of the subsystem ids whose files should be removed
1205 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001206static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001207{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001208 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001209 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001210
Tejun Heob420ba72013-07-12 12:34:02 -07001211 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001212 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001213
Tejun Heo69dfa002014-05-04 15:09:13 -04001214 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001215 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001216 list_for_each_entry(cfts, &ss->cfts, node)
1217 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001218 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001219}
1220
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001221static int rebind_subsystems(struct cgroup_root *dst_root,
1222 unsigned long ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001223{
Tejun Heo30159ec2013-06-25 11:53:37 -07001224 struct cgroup_subsys *ss;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001225 unsigned long tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001226 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001227
Tejun Heoace2bee2014-02-11 11:52:47 -05001228 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001229
Tejun Heo5df36032014-03-19 10:23:54 -04001230 for_each_subsys(ss, ssid) {
1231 if (!(ss_mask & (1 << ssid)))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001232 continue;
Tejun Heo30159ec2013-06-25 11:53:37 -07001233
Tejun Heo7fd8c562014-04-23 11:13:16 -04001234 /* if @ss has non-root csses attached to it, can't move */
1235 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001236 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001237
Tejun Heo5df36032014-03-19 10:23:54 -04001238 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001239 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001240 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001241 }
1242
Tejun Heo5533e012014-05-14 19:33:07 -04001243 /* skip creating root files on dfl_root for inhibited subsystems */
1244 tmp_ss_mask = ss_mask;
1245 if (dst_root == &cgrp_dfl_root)
1246 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1247
1248 ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask);
Tejun Heoa2dd4242014-03-19 10:23:55 -04001249 if (ret) {
1250 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001251 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001252
Tejun Heoa2dd4242014-03-19 10:23:55 -04001253 /*
1254 * Rebinding back to the default root is not allowed to
1255 * fail. Using both default and non-default roots should
1256 * be rare. Moving subsystems back and forth even more so.
1257 * Just warn about it and continue.
1258 */
1259 if (cgrp_dfl_root_visible) {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001260 pr_warn("failed to create files (%d) while rebinding 0x%lx to default root\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001261 ret, ss_mask);
Joe Perchesed3d2612014-04-25 18:28:03 -04001262 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
Tejun Heoa2dd4242014-03-19 10:23:55 -04001263 }
Tejun Heo5df36032014-03-19 10:23:54 -04001264 }
Tejun Heo31261212013-06-28 17:07:30 -07001265
1266 /*
1267 * Nothing can fail from this point on. Remove files for the
1268 * removed subsystems and rebind each subsystem.
1269 */
Tejun Heo5df36032014-03-19 10:23:54 -04001270 for_each_subsys(ss, ssid)
Tejun Heoa2dd4242014-03-19 10:23:55 -04001271 if (ss_mask & (1 << ssid))
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001272 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo31261212013-06-28 17:07:30 -07001273
Tejun Heo5df36032014-03-19 10:23:54 -04001274 for_each_subsys(ss, ssid) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001275 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001276 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001277 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001278
Tejun Heo5df36032014-03-19 10:23:54 -04001279 if (!(ss_mask & (1 << ssid)))
1280 continue;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001281
Tejun Heo5df36032014-03-19 10:23:54 -04001282 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001283 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001284
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001285 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001286
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001287 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1288 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001289 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001290 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001291
Tejun Heo2d8f2432014-04-23 11:13:15 -04001292 down_write(&css_set_rwsem);
1293 hash_for_each(css_set_table, i, cset, hlist)
1294 list_move_tail(&cset->e_cset_node[ss->id],
1295 &dst_root->cgrp.e_csets[ss->id]);
1296 up_write(&css_set_rwsem);
1297
Tejun Heof392e512014-04-23 11:13:14 -04001298 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo667c2492014-07-08 18:02:56 -04001299 src_root->cgrp.subtree_control &= ~(1 << ssid);
1300 cgroup_refresh_child_subsys_mask(&src_root->cgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001301
Tejun Heobd53d612014-04-23 11:13:16 -04001302 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001303 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo667c2492014-07-08 18:02:56 -04001304 if (dst_root != &cgrp_dfl_root) {
1305 dst_root->cgrp.subtree_control |= 1 << ssid;
1306 cgroup_refresh_child_subsys_mask(&dst_root->cgrp);
1307 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001308
Tejun Heo5df36032014-03-19 10:23:54 -04001309 if (ss->bind)
1310 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001311 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001312
Tejun Heoa2dd4242014-03-19 10:23:55 -04001313 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001314 return 0;
1315}
1316
Tejun Heo2bd59d42014-02-11 11:52:49 -05001317static int cgroup_show_options(struct seq_file *seq,
1318 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001319{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001320 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001321 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001322 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001323
Tejun Heob85d2042013-12-06 15:11:57 -05001324 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04001325 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05001326 seq_printf(seq, ",%s", ss->name);
Tejun Heo93438622013-04-14 20:15:25 -07001327 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001328 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001329 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001330 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001331
1332 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001333 if (strlen(root->release_agent_path))
1334 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001335 spin_unlock(&release_agent_path_lock);
1336
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001337 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001338 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001339 if (strlen(root->name))
1340 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001341 return 0;
1342}
1343
1344struct cgroup_sb_opts {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001345 unsigned long subsys_mask;
Tejun Heo69dfa002014-05-04 15:09:13 -04001346 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001347 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001348 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001349 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001350 /* User explicitly requested empty subsystem */
1351 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001352};
1353
Ben Blumcf5d5942010-03-10 15:22:09 -08001354static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001355{
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001356 char *token, *o = data;
1357 bool all_ss = false, one_ss = false;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001358 unsigned long mask = -1UL;
Tejun Heo30159ec2013-06-25 11:53:37 -07001359 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001360 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001361 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001362
1363#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001364 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001365#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001366
Paul Menagec6d57f32009-09-23 15:56:19 -07001367 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001368
1369 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001370 nr_opts++;
1371
Paul Menageddbcc7e2007-10-18 23:39:30 -07001372 if (!*token)
1373 return -EINVAL;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001374 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001375 /* Explicitly have no subsystems */
1376 opts->none = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001377 continue;
1378 }
1379 if (!strcmp(token, "all")) {
1380 /* Mutually exclusive option 'all' + subsystem name */
1381 if (one_ss)
1382 return -EINVAL;
1383 all_ss = true;
1384 continue;
1385 }
Tejun Heo873fe092013-04-14 20:15:26 -07001386 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1387 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1388 continue;
1389 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001390 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001391 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001392 continue;
1393 }
1394 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001395 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001396 continue;
1397 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001398 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001399 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001400 continue;
1401 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001402 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001403 /* Specifying two release agents is forbidden */
1404 if (opts->release_agent)
1405 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001406 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001407 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001408 if (!opts->release_agent)
1409 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001410 continue;
1411 }
1412 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001413 const char *name = token + 5;
1414 /* Can't specify an empty name */
1415 if (!strlen(name))
1416 return -EINVAL;
1417 /* Must match [\w.-]+ */
1418 for (i = 0; i < strlen(name); i++) {
1419 char c = name[i];
1420 if (isalnum(c))
1421 continue;
1422 if ((c == '.') || (c == '-') || (c == '_'))
1423 continue;
1424 return -EINVAL;
1425 }
1426 /* Specifying two names is forbidden */
1427 if (opts->name)
1428 return -EINVAL;
1429 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001430 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001431 GFP_KERNEL);
1432 if (!opts->name)
1433 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001434
1435 continue;
1436 }
1437
Tejun Heo30159ec2013-06-25 11:53:37 -07001438 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001439 if (strcmp(token, ss->name))
1440 continue;
1441 if (ss->disabled)
1442 continue;
1443
1444 /* Mutually exclusive option 'all' + subsystem name */
1445 if (all_ss)
1446 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001447 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001448 one_ss = true;
1449
1450 break;
1451 }
1452 if (i == CGROUP_SUBSYS_COUNT)
1453 return -ENOENT;
1454 }
1455
Tejun Heo873fe092013-04-14 20:15:26 -07001456 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001457 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 -04001458 if (nr_opts != 1) {
1459 pr_err("sane_behavior: no other mount options allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001460 return -EINVAL;
1461 }
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001462 return 0;
Tejun Heo873fe092013-04-14 20:15:26 -07001463 }
1464
Li Zefanf9ab5b52009-06-17 16:26:33 -07001465 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001466 * If the 'all' option was specified select all the subsystems,
1467 * otherwise if 'none', 'name=' and a subsystem name options were
1468 * not specified, let's default to 'all'
1469 */
1470 if (all_ss || (!one_ss && !opts->none && !opts->name))
1471 for_each_subsys(ss, i)
1472 if (!ss->disabled)
1473 opts->subsys_mask |= (1 << i);
1474
1475 /*
1476 * We either have to specify by name or by subsystems. (So all
1477 * empty hierarchies must have a name).
1478 */
1479 if (!opts->subsys_mask && !opts->name)
1480 return -EINVAL;
1481
1482 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001483 * Option noprefix was introduced just for backward compatibility
1484 * with the old cpuset, so we allow noprefix only if mounting just
1485 * the cpuset subsystem.
1486 */
Tejun Heo93438622013-04-14 20:15:25 -07001487 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001488 return -EINVAL;
1489
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001490 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001491 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001492 return -EINVAL;
1493
Paul Menageddbcc7e2007-10-18 23:39:30 -07001494 return 0;
1495}
1496
Tejun Heo2bd59d42014-02-11 11:52:49 -05001497static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001498{
1499 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001500 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001501 struct cgroup_sb_opts opts;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001502 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001503
Tejun Heoaa6ec292014-07-09 10:08:08 -04001504 if (root == &cgrp_dfl_root) {
1505 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001506 return -EINVAL;
1507 }
1508
Paul Menageddbcc7e2007-10-18 23:39:30 -07001509 mutex_lock(&cgroup_mutex);
1510
1511 /* See what subsystems are wanted */
1512 ret = parse_cgroupfs_options(data, &opts);
1513 if (ret)
1514 goto out_unlock;
1515
Tejun Heof392e512014-04-23 11:13:14 -04001516 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001517 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001518 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001519
Tejun Heof392e512014-04-23 11:13:14 -04001520 added_mask = opts.subsys_mask & ~root->subsys_mask;
1521 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001522
Ben Blumcf5d5942010-03-10 15:22:09 -08001523 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001524 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001525 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001526 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001527 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001528 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001529 goto out_unlock;
1530 }
1531
Tejun Heof172e672013-06-28 17:07:30 -07001532 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001533 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001534 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001535 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001536 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001537
Tejun Heo5df36032014-03-19 10:23:54 -04001538 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001539 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001540 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001541
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001542 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001543
Tejun Heo69e943b2014-02-08 10:36:58 -05001544 if (opts.release_agent) {
1545 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001546 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001547 spin_unlock(&release_agent_path_lock);
1548 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001549 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001550 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001551 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001553 return ret;
1554}
1555
Tejun Heoafeb0f92014-02-13 06:58:39 -05001556/*
1557 * To reduce the fork() overhead for systems that are not actually using
1558 * their cgroups capability, we don't maintain the lists running through
1559 * each css_set to its tasks until we see the list actually used - in other
1560 * words after the first mount.
1561 */
1562static bool use_task_css_set_links __read_mostly;
1563
1564static void cgroup_enable_task_cg_lists(void)
1565{
1566 struct task_struct *p, *g;
1567
Tejun Heo96d365e2014-02-13 06:58:40 -05001568 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001569
1570 if (use_task_css_set_links)
1571 goto out_unlock;
1572
1573 use_task_css_set_links = true;
1574
1575 /*
1576 * We need tasklist_lock because RCU is not safe against
1577 * while_each_thread(). Besides, a forking task that has passed
1578 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1579 * is not guaranteed to have its child immediately visible in the
1580 * tasklist if we walk through it with RCU.
1581 */
1582 read_lock(&tasklist_lock);
1583 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001584 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1585 task_css_set(p) != &init_css_set);
1586
1587 /*
1588 * We should check if the process is exiting, otherwise
1589 * it will race with cgroup_exit() in that the list
1590 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001591 * Do it while holding siglock so that we don't end up
1592 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001593 */
Tejun Heof153ad12014-02-25 09:56:49 -05001594 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001595 if (!(p->flags & PF_EXITING)) {
1596 struct css_set *cset = task_css_set(p);
1597
1598 list_add(&p->cg_list, &cset->tasks);
1599 get_css_set(cset);
1600 }
Tejun Heof153ad12014-02-25 09:56:49 -05001601 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001602 } while_each_thread(g, p);
1603 read_unlock(&tasklist_lock);
1604out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001605 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001606}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001607
Paul Menagecc31edc2008-10-18 20:28:04 -07001608static void init_cgroup_housekeeping(struct cgroup *cgrp)
1609{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001610 struct cgroup_subsys *ss;
1611 int ssid;
1612
Tejun Heod5c419b2014-05-16 13:22:48 -04001613 INIT_LIST_HEAD(&cgrp->self.sibling);
1614 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001615 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001616 INIT_LIST_HEAD(&cgrp->pidlists);
1617 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001618 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001619 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001620
1621 for_each_subsys(ss, ssid)
1622 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001623
1624 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001625 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001626}
Paul Menagec6d57f32009-09-23 15:56:19 -07001627
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001628static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001629 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001630{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001631 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001632
Paul Menageddbcc7e2007-10-18 23:39:30 -07001633 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001634 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001635 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001636 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001637 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001638
Paul Menagec6d57f32009-09-23 15:56:19 -07001639 root->flags = opts->flags;
1640 if (opts->release_agent)
1641 strcpy(root->release_agent_path, opts->release_agent);
1642 if (opts->name)
1643 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001644 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001645 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001646}
1647
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001648static int cgroup_setup_root(struct cgroup_root *root, unsigned long ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001649{
Tejun Heod427dfe2014-02-11 11:52:48 -05001650 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001651 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heoa14c6872014-07-15 11:05:09 -04001652 struct cftype *base_files;
Tejun Heod427dfe2014-02-11 11:52:48 -05001653 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001654 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001655
Tejun Heod427dfe2014-02-11 11:52:48 -05001656 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001657
Tejun Heo6fa49182014-05-04 15:09:13 -04001658 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_NOWAIT);
Tejun Heod427dfe2014-02-11 11:52:48 -05001659 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001660 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001661 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001662
Tejun Heo2aad2a82014-09-24 13:31:50 -04001663 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1664 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001665 if (ret)
1666 goto out;
1667
Tejun Heod427dfe2014-02-11 11:52:48 -05001668 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001669 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001670 * but that's OK - it can only be increased by someone holding
1671 * cgroup_lock, and that's us. The worst that can happen is that we
1672 * have some link structures left over
1673 */
1674 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001675 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001676 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001677
Tejun Heo985ed672014-03-19 10:23:53 -04001678 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001679 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001680 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001681
Tejun Heo2bd59d42014-02-11 11:52:49 -05001682 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1683 KERNFS_ROOT_CREATE_DEACTIVATED,
1684 root_cgrp);
1685 if (IS_ERR(root->kf_root)) {
1686 ret = PTR_ERR(root->kf_root);
1687 goto exit_root_id;
1688 }
1689 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001690
Tejun Heoa14c6872014-07-15 11:05:09 -04001691 if (root == &cgrp_dfl_root)
1692 base_files = cgroup_dfl_base_files;
1693 else
1694 base_files = cgroup_legacy_base_files;
1695
1696 ret = cgroup_addrm_files(root_cgrp, base_files, true);
Tejun Heod427dfe2014-02-11 11:52:48 -05001697 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001698 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001699
Tejun Heo5df36032014-03-19 10:23:54 -04001700 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001701 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001702 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001703
Tejun Heod427dfe2014-02-11 11:52:48 -05001704 /*
1705 * There must be no failure case after here, since rebinding takes
1706 * care of subsystems' refcounts, which are explicitly dropped in
1707 * the failure exit path.
1708 */
1709 list_add(&root->root_list, &cgroup_roots);
1710 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001711
Tejun Heod427dfe2014-02-11 11:52:48 -05001712 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001713 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001714 * objects.
1715 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001716 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001717 hash_for_each(css_set_table, i, cset, hlist)
1718 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001719 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001720
Tejun Heod5c419b2014-05-16 13:22:48 -04001721 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001722 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001723
Tejun Heo2bd59d42014-02-11 11:52:49 -05001724 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001725 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001726 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001727
Tejun Heo2bd59d42014-02-11 11:52:49 -05001728destroy_root:
1729 kernfs_destroy_root(root->kf_root);
1730 root->kf_root = NULL;
1731exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001732 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001733cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001734 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001735out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001736 free_cgrp_cset_links(&tmp_links);
1737 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001738}
1739
Al Virof7e83572010-07-26 13:23:11 +04001740static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001741 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001742 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001743{
Li Zefan3a32bd72014-06-30 11:50:59 +08001744 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08001745 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001746 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001747 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001748 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001749 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08001750 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001751 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001752
1753 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001754 * The first time anyone tries to mount a cgroup, enable the list
1755 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001756 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001757 if (!use_task_css_set_links)
1758 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001759
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001760 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001761
Paul Menageddbcc7e2007-10-18 23:39:30 -07001762 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001763 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001764 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001765 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001766
Tejun Heo2bd59d42014-02-11 11:52:49 -05001767 /* look for a matching existing root */
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001768 if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) {
Tejun Heoa2dd4242014-03-19 10:23:55 -04001769 cgrp_dfl_root_visible = true;
1770 root = &cgrp_dfl_root;
1771 cgroup_get(&root->cgrp);
1772 ret = 0;
1773 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001774 }
1775
Li Zefan970317a2014-06-30 11:49:58 +08001776 /*
1777 * Destruction of cgroup root is asynchronous, so subsystems may
1778 * still be dying after the previous unmount. Let's drain the
1779 * dying subsystems. We just need to ensure that the ones
1780 * unmounted previously finish dying and don't care about new ones
1781 * starting. Testing ref liveliness is good enough.
1782 */
1783 for_each_subsys(ss, i) {
1784 if (!(opts.subsys_mask & (1 << i)) ||
1785 ss->root == &cgrp_dfl_root)
1786 continue;
1787
1788 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
1789 mutex_unlock(&cgroup_mutex);
1790 msleep(10);
1791 ret = restart_syscall();
1792 goto out_free;
1793 }
1794 cgroup_put(&ss->root->cgrp);
1795 }
1796
Tejun Heo985ed672014-03-19 10:23:53 -04001797 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001798 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001799
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001800 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001801 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001802
Paul Menage817929e2007-10-18 23:39:36 -07001803 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001804 * If we asked for a name then it must match. Also, if
1805 * name matches but sybsys_mask doesn't, we should fail.
1806 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001807 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001808 if (opts.name) {
1809 if (strcmp(opts.name, root->name))
1810 continue;
1811 name_match = true;
1812 }
Tejun Heo31261212013-06-28 17:07:30 -07001813
1814 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001815 * If we asked for subsystems (or explicitly for no
1816 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001817 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001818 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001819 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001820 if (!name_match)
1821 continue;
1822 ret = -EBUSY;
1823 goto out_unlock;
1824 }
Tejun Heo873fe092013-04-14 20:15:26 -07001825
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001826 if (root->flags ^ opts.flags)
1827 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05001828
Tejun Heo776f02f2014-02-12 09:29:50 -05001829 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08001830 * We want to reuse @root whose lifetime is governed by its
1831 * ->cgrp. Let's check whether @root is alive and keep it
1832 * that way. As cgroup_kill_sb() can happen anytime, we
1833 * want to block it by pinning the sb so that @root doesn't
1834 * get killed before mount is complete.
1835 *
1836 * With the sb pinned, tryget_live can reliably indicate
1837 * whether @root can be reused. If it's being killed,
1838 * drain it. We can use wait_queue for the wait but this
1839 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001840 */
Li Zefan3a32bd72014-06-30 11:50:59 +08001841 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
1842 if (IS_ERR(pinned_sb) ||
1843 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001844 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08001845 if (!IS_ERR_OR_NULL(pinned_sb))
1846 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05001847 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001848 ret = restart_syscall();
1849 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001850 }
1851
1852 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001853 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001854 }
1855
Tejun Heo172a2c062014-03-19 10:23:53 -04001856 /*
1857 * No such thing, create a new one. name= matching without subsys
1858 * specification is allowed for already existing hierarchies but we
1859 * can't create new one without subsys specification.
1860 */
1861 if (!opts.subsys_mask && !opts.none) {
1862 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001863 goto out_unlock;
1864 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001865
Tejun Heo172a2c062014-03-19 10:23:53 -04001866 root = kzalloc(sizeof(*root), GFP_KERNEL);
1867 if (!root) {
1868 ret = -ENOMEM;
1869 goto out_unlock;
1870 }
1871
1872 init_cgroup_root(root, &opts);
1873
Tejun Heo35585572014-02-13 06:58:38 -05001874 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001875 if (ret)
1876 cgroup_free_root(root);
1877
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001878out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001879 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001880out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001881 kfree(opts.release_agent);
1882 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001883
Tejun Heo2bd59d42014-02-11 11:52:49 -05001884 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001885 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001886
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001887 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1888 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001889 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001890 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08001891
1892 /*
1893 * If @pinned_sb, we're reusing an existing root and holding an
1894 * extra ref on its sb. Mount is complete. Put the extra ref.
1895 */
1896 if (pinned_sb) {
1897 WARN_ON(new_sb);
1898 deactivate_super(pinned_sb);
1899 }
1900
Tejun Heo2bd59d42014-02-11 11:52:49 -05001901 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001902}
1903
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001904static void cgroup_kill_sb(struct super_block *sb)
1905{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001906 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001907 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001908
Tejun Heo9d755d32014-05-14 09:15:02 -04001909 /*
1910 * If @root doesn't have any mounts or children, start killing it.
1911 * This prevents new mounts by disabling percpu_ref_tryget_live().
1912 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001913 *
1914 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001915 */
Johannes Weiner3c606d32015-01-22 10:19:43 -05001916 if (!list_empty(&root->cgrp.self.children) ||
Li Zefan1f779fb2014-06-04 16:48:15 +08001917 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001918 cgroup_put(&root->cgrp);
1919 else
1920 percpu_ref_kill(&root->cgrp.self.refcnt);
1921
Tejun Heo2bd59d42014-02-11 11:52:49 -05001922 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001923}
1924
1925static struct file_system_type cgroup_fs_type = {
1926 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001927 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001928 .kill_sb = cgroup_kill_sb,
1929};
1930
Greg KH676db4a2010-08-05 13:53:35 -07001931static struct kobject *cgroup_kobj;
1932
Li Zefana043e3b2008-02-23 15:24:09 -08001933/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001934 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001935 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001936 * @buf: the buffer to write the path into
1937 * @buflen: the length of the buffer
1938 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001939 * Determine @task's cgroup on the first (the one with the lowest non-zero
1940 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1941 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1942 * cgroup controller callbacks.
1943 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001944 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001945 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001946char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001947{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001948 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001949 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001950 int hierarchy_id = 1;
1951 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001952
1953 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001954 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001955
Tejun Heo913ffdb2013-07-11 16:34:48 -07001956 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1957
Tejun Heo857a2be2013-04-14 20:50:08 -07001958 if (root) {
1959 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001960 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001961 } else {
1962 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001963 if (strlcpy(buf, "/", buflen) < buflen)
1964 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001965 }
1966
Tejun Heo96d365e2014-02-13 06:58:40 -05001967 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001968 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001969 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001970}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001971EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001972
Tejun Heob3dc0942014-02-25 10:04:01 -05001973/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001974struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001975 /* the src and dst cset list running through cset->mg_node */
1976 struct list_head src_csets;
1977 struct list_head dst_csets;
1978
1979 /*
1980 * Fields for cgroup_taskset_*() iteration.
1981 *
1982 * Before migration is committed, the target migration tasks are on
1983 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1984 * the csets on ->dst_csets. ->csets point to either ->src_csets
1985 * or ->dst_csets depending on whether migration is committed.
1986 *
1987 * ->cur_csets and ->cur_task point to the current task position
1988 * during iteration.
1989 */
1990 struct list_head *csets;
1991 struct css_set *cur_cset;
1992 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001993};
1994
1995/**
1996 * cgroup_taskset_first - reset taskset and return the first task
1997 * @tset: taskset of interest
1998 *
1999 * @tset iteration is initialized and the first task is returned.
2000 */
2001struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
2002{
Tejun Heob3dc0942014-02-25 10:04:01 -05002003 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2004 tset->cur_task = NULL;
2005
2006 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002007}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002008
2009/**
2010 * cgroup_taskset_next - iterate to the next task in taskset
2011 * @tset: taskset of interest
2012 *
2013 * Return the next task in @tset. Iteration must have been initialized
2014 * with cgroup_taskset_first().
2015 */
2016struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
2017{
Tejun Heob3dc0942014-02-25 10:04:01 -05002018 struct css_set *cset = tset->cur_cset;
2019 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002020
Tejun Heob3dc0942014-02-25 10:04:01 -05002021 while (&cset->mg_node != tset->csets) {
2022 if (!task)
2023 task = list_first_entry(&cset->mg_tasks,
2024 struct task_struct, cg_list);
2025 else
2026 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002027
Tejun Heob3dc0942014-02-25 10:04:01 -05002028 if (&task->cg_list != &cset->mg_tasks) {
2029 tset->cur_cset = cset;
2030 tset->cur_task = task;
2031 return task;
2032 }
2033
2034 cset = list_next_entry(cset, mg_node);
2035 task = NULL;
2036 }
2037
2038 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002039}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002040
2041/**
Ben Blum74a11662011-05-26 16:25:20 -07002042 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02002043 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002044 * @tsk: the task being migrated
2045 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07002046 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002047 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07002048 */
Tejun Heo5abb8852013-06-12 21:04:49 -07002049static void cgroup_task_migrate(struct cgroup *old_cgrp,
2050 struct task_struct *tsk,
2051 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07002052{
Tejun Heo5abb8852013-06-12 21:04:49 -07002053 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07002054
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002055 lockdep_assert_held(&cgroup_mutex);
2056 lockdep_assert_held(&css_set_rwsem);
2057
Ben Blum74a11662011-05-26 16:25:20 -07002058 /*
Tejun Heod59cfc02015-05-13 16:35:17 -04002059 * We are synchronized through cgroup_threadgroup_rwsem against
2060 * PF_EXITING setting such that we can't race against cgroup_exit()
2061 * changing the css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07002062 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01002063 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07002064 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07002065
Tejun Heob3dc0942014-02-25 10:04:01 -05002066 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07002067 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002068
Tejun Heo1b9aba42014-03-19 17:43:21 -04002069 /*
2070 * Use move_tail so that cgroup_taskset_first() still returns the
2071 * leader after migration. This works because cgroup_migrate()
2072 * ensures that the dst_cset of the leader is the first on the
2073 * tset's dst_csets list.
2074 */
2075 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07002076
2077 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07002078 * We just gained a reference on old_cset by taking it from the
2079 * task. As trading it for new_cset is protected by cgroup_mutex,
2080 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07002081 */
Zefan Lia25eb522014-09-19 16:51:00 +08002082 put_css_set_locked(old_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002083}
2084
Li Zefana043e3b2008-02-23 15:24:09 -08002085/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002086 * cgroup_migrate_finish - cleanup after attach
2087 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002088 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002089 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2090 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002091 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002092static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002093{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002094 struct css_set *cset, *tmp_cset;
2095
2096 lockdep_assert_held(&cgroup_mutex);
2097
2098 down_write(&css_set_rwsem);
2099 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2100 cset->mg_src_cgrp = NULL;
2101 cset->mg_dst_cset = NULL;
2102 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002103 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002104 }
2105 up_write(&css_set_rwsem);
2106}
2107
2108/**
2109 * cgroup_migrate_add_src - add a migration source css_set
2110 * @src_cset: the source css_set to add
2111 * @dst_cgrp: the destination cgroup
2112 * @preloaded_csets: list of preloaded css_sets
2113 *
2114 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2115 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2116 * up by cgroup_migrate_finish().
2117 *
Tejun Heod59cfc02015-05-13 16:35:17 -04002118 * This function may be called without holding cgroup_threadgroup_rwsem
2119 * even if the target is a process. Threads may be created and destroyed
2120 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2121 * into play and the preloaded css_sets are guaranteed to cover all
2122 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002123 */
2124static void cgroup_migrate_add_src(struct css_set *src_cset,
2125 struct cgroup *dst_cgrp,
2126 struct list_head *preloaded_csets)
2127{
2128 struct cgroup *src_cgrp;
2129
2130 lockdep_assert_held(&cgroup_mutex);
2131 lockdep_assert_held(&css_set_rwsem);
2132
2133 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2134
Tejun Heo1958d2d2014-02-25 10:04:03 -05002135 if (!list_empty(&src_cset->mg_preload_node))
2136 return;
2137
2138 WARN_ON(src_cset->mg_src_cgrp);
2139 WARN_ON(!list_empty(&src_cset->mg_tasks));
2140 WARN_ON(!list_empty(&src_cset->mg_node));
2141
2142 src_cset->mg_src_cgrp = src_cgrp;
2143 get_css_set(src_cset);
2144 list_add(&src_cset->mg_preload_node, preloaded_csets);
2145}
2146
2147/**
2148 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002149 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002150 * @preloaded_csets: list of preloaded source css_sets
2151 *
2152 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2153 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002154 * pins all destination css_sets, links each to its source, and append them
2155 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2156 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002157 *
2158 * This function must be called after cgroup_migrate_add_src() has been
2159 * called on each migration source css_set. After migration is performed
2160 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2161 * @preloaded_csets.
2162 */
2163static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2164 struct list_head *preloaded_csets)
2165{
2166 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002167 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002168
2169 lockdep_assert_held(&cgroup_mutex);
2170
Tejun Heof8f22e52014-04-23 11:13:16 -04002171 /*
2172 * Except for the root, child_subsys_mask must be zero for a cgroup
2173 * with tasks so that child cgroups don't compete against tasks.
2174 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002175 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002176 dst_cgrp->child_subsys_mask)
2177 return -EBUSY;
2178
Tejun Heo1958d2d2014-02-25 10:04:03 -05002179 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002180 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002181 struct css_set *dst_cset;
2182
Tejun Heof817de92014-04-23 11:13:16 -04002183 dst_cset = find_css_set(src_cset,
2184 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002185 if (!dst_cset)
2186 goto err;
2187
2188 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002189
2190 /*
2191 * If src cset equals dst, it's noop. Drop the src.
2192 * cgroup_migrate() will skip the cset too. Note that we
2193 * can't handle src == dst as some nodes are used by both.
2194 */
2195 if (src_cset == dst_cset) {
2196 src_cset->mg_src_cgrp = NULL;
2197 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002198 put_css_set(src_cset);
2199 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002200 continue;
2201 }
2202
Tejun Heo1958d2d2014-02-25 10:04:03 -05002203 src_cset->mg_dst_cset = dst_cset;
2204
2205 if (list_empty(&dst_cset->mg_preload_node))
2206 list_add(&dst_cset->mg_preload_node, &csets);
2207 else
Zefan Lia25eb522014-09-19 16:51:00 +08002208 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002209 }
2210
Tejun Heof817de92014-04-23 11:13:16 -04002211 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002212 return 0;
2213err:
2214 cgroup_migrate_finish(&csets);
2215 return -ENOMEM;
2216}
2217
2218/**
2219 * cgroup_migrate - migrate a process or task to a cgroup
2220 * @cgrp: the destination cgroup
2221 * @leader: the leader of the process or the task to migrate
2222 * @threadgroup: whether @leader points to the whole process or a single task
2223 *
2224 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
Tejun Heod59cfc02015-05-13 16:35:17 -04002225 * process, the caller must be holding cgroup_threadgroup_rwsem. The
Tejun Heo1958d2d2014-02-25 10:04:03 -05002226 * caller is also responsible for invoking cgroup_migrate_add_src() and
2227 * cgroup_migrate_prepare_dst() on the targets before invoking this
2228 * function and following up with cgroup_migrate_finish().
2229 *
2230 * As long as a controller's ->can_attach() doesn't fail, this function is
2231 * guaranteed to succeed. This means that, excluding ->can_attach()
2232 * failure, when migrating multiple targets, the success or failure can be
2233 * decided for all targets by invoking group_migrate_prepare_dst() before
2234 * actually starting migrating.
2235 */
2236static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2237 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002238{
Tejun Heob3dc0942014-02-25 10:04:01 -05002239 struct cgroup_taskset tset = {
2240 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2241 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2242 .csets = &tset.src_csets,
2243 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002244 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002245 struct css_set *cset, *tmp_cset;
2246 struct task_struct *task, *tmp_task;
2247 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002248
2249 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002250 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2251 * already PF_EXITING could be freed from underneath us unless we
2252 * take an rcu_read_lock.
2253 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002254 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002255 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002256 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002257 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002258 /* @task either already exited or can't exit until the end */
2259 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002260 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002261
Tejun Heoeaf797a2014-02-25 10:04:03 -05002262 /* leave @task alone if post_fork() hasn't linked it yet */
2263 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002264 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002265
Tejun Heob3dc0942014-02-25 10:04:01 -05002266 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002267 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002268 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002269
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002270 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002271 * cgroup_taskset_first() must always return the leader.
2272 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002273 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002274 list_move_tail(&task->cg_list, &cset->mg_tasks);
2275 if (list_empty(&cset->mg_node))
2276 list_add_tail(&cset->mg_node, &tset.src_csets);
2277 if (list_empty(&cset->mg_dst_cset->mg_node))
2278 list_move_tail(&cset->mg_dst_cset->mg_node,
2279 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002280 next:
Li Zefan081aa452013-03-13 09:17:09 +08002281 if (!threadgroup)
2282 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002283 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002284 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002285 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002286
Tejun Heo134d3372011-12-12 18:12:21 -08002287 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002288 if (list_empty(&tset.src_csets))
2289 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002290
Tejun Heo1958d2d2014-02-25 10:04:03 -05002291 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002292 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002293 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002294 ret = css->ss->can_attach(css, &tset);
2295 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002296 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002297 goto out_cancel_attach;
2298 }
2299 }
Ben Blum74a11662011-05-26 16:25:20 -07002300 }
2301
2302 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002303 * Now that we're guaranteed success, proceed to move all tasks to
2304 * the new cgroup. There are no failure cases after here, so this
2305 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002306 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002307 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002308 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2309 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2310 cgroup_task_migrate(cset->mg_src_cgrp, task,
2311 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002312 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002313 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002314
2315 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002316 * Migration is committed, all target tasks are now on dst_csets.
2317 * Nothing is sensitive to fork() after this point. Notify
2318 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002319 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002320 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002321
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002322 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002323 if (css->ss->attach)
2324 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002325
Tejun Heo9db8de32014-02-13 06:58:43 -05002326 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002327 goto out_release_tset;
2328
Ben Blum74a11662011-05-26 16:25:20 -07002329out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002330 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002331 if (css == failed_css)
2332 break;
2333 if (css->ss->cancel_attach)
2334 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002335 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002336out_release_tset:
2337 down_write(&css_set_rwsem);
2338 list_splice_init(&tset.dst_csets, &tset.src_csets);
2339 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002340 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002341 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002342 }
2343 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002344 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002345}
2346
Tejun Heo1958d2d2014-02-25 10:04:03 -05002347/**
2348 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2349 * @dst_cgrp: the cgroup to attach to
2350 * @leader: the task or the leader of the threadgroup to be attached
2351 * @threadgroup: attach the whole threadgroup?
2352 *
Tejun Heod59cfc02015-05-13 16:35:17 -04002353 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002354 */
2355static int cgroup_attach_task(struct cgroup *dst_cgrp,
2356 struct task_struct *leader, bool threadgroup)
2357{
2358 LIST_HEAD(preloaded_csets);
2359 struct task_struct *task;
2360 int ret;
2361
2362 /* look up all src csets */
2363 down_read(&css_set_rwsem);
2364 rcu_read_lock();
2365 task = leader;
2366 do {
2367 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2368 &preloaded_csets);
2369 if (!threadgroup)
2370 break;
2371 } while_each_thread(leader, task);
2372 rcu_read_unlock();
2373 up_read(&css_set_rwsem);
2374
2375 /* prepare dst csets and commit */
2376 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2377 if (!ret)
2378 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2379
2380 cgroup_migrate_finish(&preloaded_csets);
2381 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002382}
2383
2384/*
2385 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002386 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002387 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002388 */
Tejun Heoacbef752014-05-13 12:16:22 -04002389static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2390 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002391{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002392 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002393 const struct cred *cred = current_cred(), *tcred;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002394 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002395 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002396 int ret;
2397
Tejun Heoacbef752014-05-13 12:16:22 -04002398 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2399 return -EINVAL;
2400
Tejun Heoe76ecae2014-05-13 12:19:23 -04002401 cgrp = cgroup_kn_lock_live(of->kn);
2402 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002403 return -ENODEV;
2404
Tejun Heob5ba75b2015-05-13 16:35:18 -04002405 percpu_down_write(&cgroup_threadgroup_rwsem);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002406 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002407 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002408 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002409 if (!tsk) {
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002410 ret = -ESRCH;
Tejun Heob5ba75b2015-05-13 16:35:18 -04002411 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002412 }
Ben Blum74a11662011-05-26 16:25:20 -07002413 /*
2414 * even if we're attaching all tasks in the thread group, we
2415 * only need to check permissions on one of them.
2416 */
David Howellsc69e8d92008-11-14 10:39:19 +11002417 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002418 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2419 !uid_eq(cred->euid, tcred->uid) &&
2420 !uid_eq(cred->euid, tcred->suid)) {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002421 ret = -EACCES;
Tejun Heob5ba75b2015-05-13 16:35:18 -04002422 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002423 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002424 } else
2425 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002426
2427 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002428 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002429
2430 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002431 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002432 * trapped in a cpuset, or RT worker may be born in a cgroup
2433 * with no rt_runtime allocated. Just say no.
2434 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002435 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002436 ret = -EINVAL;
Tejun Heob5ba75b2015-05-13 16:35:18 -04002437 goto out_unlock_rcu;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002438 }
2439
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002440 get_task_struct(tsk);
2441 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002442
Li Zefan081aa452013-03-13 09:17:09 +08002443 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2444
Paul Menagebbcb81d2007-10-18 23:39:32 -07002445 put_task_struct(tsk);
Tejun Heob5ba75b2015-05-13 16:35:18 -04002446 goto out_unlock_threadgroup;
2447
2448out_unlock_rcu:
2449 rcu_read_unlock();
2450out_unlock_threadgroup:
2451 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002452 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002453 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002454}
2455
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002456/**
2457 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2458 * @from: attach to all cgroups of a given task
2459 * @tsk: the task to be attached
2460 */
2461int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2462{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002463 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002464 int retval = 0;
2465
Tejun Heo47cfcd02013-04-07 09:29:51 -07002466 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002467 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002468 struct cgroup *from_cgrp;
2469
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002470 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002471 continue;
2472
Tejun Heo96d365e2014-02-13 06:58:40 -05002473 down_read(&css_set_rwsem);
2474 from_cgrp = task_cgroup_from_root(from, root);
2475 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002476
Li Zefan6f4b7e62013-07-31 16:18:36 +08002477 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002478 if (retval)
2479 break;
2480 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002481 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002482
2483 return retval;
2484}
2485EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2486
Tejun Heoacbef752014-05-13 12:16:22 -04002487static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2488 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002489{
Tejun Heoacbef752014-05-13 12:16:22 -04002490 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002491}
2492
Tejun Heoacbef752014-05-13 12:16:22 -04002493static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2494 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002495{
Tejun Heoacbef752014-05-13 12:16:22 -04002496 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002497}
2498
Tejun Heo451af502014-05-13 12:16:21 -04002499static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2500 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e0662008-07-25 01:46:59 -07002501{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002502 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002503
Tejun Heoe76ecae2014-05-13 12:19:23 -04002504 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2505
2506 cgrp = cgroup_kn_lock_live(of->kn);
2507 if (!cgrp)
Paul Menagee788e0662008-07-25 01:46:59 -07002508 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002509 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002510 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2511 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002512 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002513 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002514 return nbytes;
Paul Menagee788e0662008-07-25 01:46:59 -07002515}
2516
Tejun Heo2da8ca82013-12-05 12:28:04 -05002517static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e0662008-07-25 01:46:59 -07002518{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002519 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002520
Tejun Heo46cfeb02014-05-13 12:11:00 -04002521 spin_lock(&release_agent_path_lock);
Paul Menagee788e0662008-07-25 01:46:59 -07002522 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002523 spin_unlock(&release_agent_path_lock);
Paul Menagee788e0662008-07-25 01:46:59 -07002524 seq_putc(seq, '\n');
Paul Menagee788e0662008-07-25 01:46:59 -07002525 return 0;
2526}
2527
Tejun Heo2da8ca82013-12-05 12:28:04 -05002528static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002529{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002530 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002531 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002532}
2533
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002534static void cgroup_print_ss_mask(struct seq_file *seq, unsigned long ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002535{
2536 struct cgroup_subsys *ss;
2537 bool printed = false;
2538 int ssid;
2539
2540 for_each_subsys(ss, ssid) {
2541 if (ss_mask & (1 << ssid)) {
2542 if (printed)
2543 seq_putc(seq, ' ');
2544 seq_printf(seq, "%s", ss->name);
2545 printed = true;
2546 }
2547 }
2548 if (printed)
2549 seq_putc(seq, '\n');
2550}
2551
2552/* show controllers which are currently attached to the default hierarchy */
2553static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2554{
2555 struct cgroup *cgrp = seq_css(seq)->cgroup;
2556
Tejun Heo5533e012014-05-14 19:33:07 -04002557 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2558 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002559 return 0;
2560}
2561
2562/* show controllers which are enabled from the parent */
2563static int cgroup_controllers_show(struct seq_file *seq, void *v)
2564{
2565 struct cgroup *cgrp = seq_css(seq)->cgroup;
2566
Tejun Heo667c2492014-07-08 18:02:56 -04002567 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002568 return 0;
2569}
2570
2571/* show controllers which are enabled for a given cgroup's children */
2572static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2573{
2574 struct cgroup *cgrp = seq_css(seq)->cgroup;
2575
Tejun Heo667c2492014-07-08 18:02:56 -04002576 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002577 return 0;
2578}
2579
2580/**
2581 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2582 * @cgrp: root of the subtree to update csses for
2583 *
2584 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2585 * css associations need to be updated accordingly. This function looks up
2586 * all css_sets which are attached to the subtree, creates the matching
2587 * updated css_sets and migrates the tasks to the new ones.
2588 */
2589static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2590{
2591 LIST_HEAD(preloaded_csets);
2592 struct cgroup_subsys_state *css;
2593 struct css_set *src_cset;
2594 int ret;
2595
Tejun Heof8f22e52014-04-23 11:13:16 -04002596 lockdep_assert_held(&cgroup_mutex);
2597
Tejun Heob5ba75b2015-05-13 16:35:18 -04002598 percpu_down_write(&cgroup_threadgroup_rwsem);
2599
Tejun Heof8f22e52014-04-23 11:13:16 -04002600 /* look up all csses currently attached to @cgrp's subtree */
2601 down_read(&css_set_rwsem);
2602 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2603 struct cgrp_cset_link *link;
2604
2605 /* self is not affected by child_subsys_mask change */
2606 if (css->cgroup == cgrp)
2607 continue;
2608
2609 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2610 cgroup_migrate_add_src(link->cset, cgrp,
2611 &preloaded_csets);
2612 }
2613 up_read(&css_set_rwsem);
2614
2615 /* NULL dst indicates self on default hierarchy */
2616 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2617 if (ret)
2618 goto out_finish;
2619
2620 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2621 struct task_struct *last_task = NULL, *task;
2622
2623 /* src_csets precede dst_csets, break on the first dst_cset */
2624 if (!src_cset->mg_src_cgrp)
2625 break;
2626
2627 /*
2628 * All tasks in src_cset need to be migrated to the
2629 * matching dst_cset. Empty it process by process. We
2630 * walk tasks but migrate processes. The leader might even
2631 * belong to a different cset but such src_cset would also
2632 * be among the target src_csets because the default
2633 * hierarchy enforces per-process membership.
2634 */
2635 while (true) {
2636 down_read(&css_set_rwsem);
2637 task = list_first_entry_or_null(&src_cset->tasks,
2638 struct task_struct, cg_list);
2639 if (task) {
2640 task = task->group_leader;
2641 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2642 get_task_struct(task);
2643 }
2644 up_read(&css_set_rwsem);
2645
2646 if (!task)
2647 break;
2648
2649 /* guard against possible infinite loop */
2650 if (WARN(last_task == task,
2651 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2652 goto out_finish;
2653 last_task = task;
2654
Tejun Heof8f22e52014-04-23 11:13:16 -04002655 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2656
Tejun Heof8f22e52014-04-23 11:13:16 -04002657 put_task_struct(task);
2658
2659 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2660 goto out_finish;
2661 }
2662 }
2663
2664out_finish:
2665 cgroup_migrate_finish(&preloaded_csets);
Tejun Heob5ba75b2015-05-13 16:35:18 -04002666 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002667 return ret;
2668}
2669
2670/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002671static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2672 char *buf, size_t nbytes,
2673 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002674{
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002675 unsigned long enable = 0, disable = 0;
2676 unsigned long css_enable, css_disable, old_sc, new_sc, old_ss, new_ss;
Tejun Heoa9746d82014-05-13 12:19:22 -04002677 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002678 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002679 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002680 int ssid, ret;
2681
2682 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002683 * Parse input - space separated list of subsystem names prefixed
2684 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002685 */
Tejun Heo451af502014-05-13 12:16:21 -04002686 buf = strstrip(buf);
2687 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04002688 if (tok[0] == '\0')
2689 continue;
Tejun Heof8f22e52014-04-23 11:13:16 -04002690 for_each_subsys(ss, ssid) {
Tejun Heo5533e012014-05-14 19:33:07 -04002691 if (ss->disabled || strcmp(tok + 1, ss->name) ||
2692 ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask))
Tejun Heof8f22e52014-04-23 11:13:16 -04002693 continue;
2694
2695 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002696 enable |= 1 << ssid;
2697 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002698 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002699 disable |= 1 << ssid;
2700 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002701 } else {
2702 return -EINVAL;
2703 }
2704 break;
2705 }
2706 if (ssid == CGROUP_SUBSYS_COUNT)
2707 return -EINVAL;
2708 }
2709
Tejun Heoa9746d82014-05-13 12:19:22 -04002710 cgrp = cgroup_kn_lock_live(of->kn);
2711 if (!cgrp)
2712 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002713
2714 for_each_subsys(ss, ssid) {
2715 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002716 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002717 enable &= ~(1 << ssid);
2718 continue;
2719 }
2720
Tejun Heoc29adf22014-07-08 18:02:56 -04002721 /* unavailable or not enabled on the parent? */
2722 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2723 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002724 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002725 ret = -ENOENT;
2726 goto out_unlock;
2727 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002728 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002729 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002730 disable &= ~(1 << ssid);
2731 continue;
2732 }
2733
2734 /* a child has it enabled? */
2735 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002736 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002737 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002738 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002739 }
2740 }
2741 }
2742 }
2743
2744 if (!enable && !disable) {
2745 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002746 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002747 }
2748
2749 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002750 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002751 * with tasks so that child cgroups don't compete against tasks.
2752 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002753 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002754 ret = -EBUSY;
2755 goto out_unlock;
2756 }
2757
2758 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002759 * Update subsys masks and calculate what needs to be done. More
2760 * subsystems than specified may need to be enabled or disabled
2761 * depending on subsystem dependencies.
2762 */
Tejun Heo755bf5e2014-11-18 02:49:50 -05002763 old_sc = cgrp->subtree_control;
2764 old_ss = cgrp->child_subsys_mask;
2765 new_sc = (old_sc | enable) & ~disable;
2766 new_ss = cgroup_calc_child_subsys_mask(cgrp, new_sc);
Tejun Heoc29adf22014-07-08 18:02:56 -04002767
Tejun Heo755bf5e2014-11-18 02:49:50 -05002768 css_enable = ~old_ss & new_ss;
2769 css_disable = old_ss & ~new_ss;
Tejun Heof63070d2014-07-08 18:02:57 -04002770 enable |= css_enable;
2771 disable |= css_disable;
2772
Tejun Heodb6e3052014-11-18 02:49:51 -05002773 /*
2774 * Because css offlining is asynchronous, userland might try to
2775 * re-enable the same controller while the previous instance is
2776 * still around. In such cases, wait till it's gone using
2777 * offline_waitq.
2778 */
2779 for_each_subsys(ss, ssid) {
2780 if (!(css_enable & (1 << ssid)))
2781 continue;
2782
2783 cgroup_for_each_live_child(child, cgrp) {
2784 DEFINE_WAIT(wait);
2785
2786 if (!cgroup_css(child, ss))
2787 continue;
2788
2789 cgroup_get(child);
2790 prepare_to_wait(&child->offline_waitq, &wait,
2791 TASK_UNINTERRUPTIBLE);
2792 cgroup_kn_unlock(of->kn);
2793 schedule();
2794 finish_wait(&child->offline_waitq, &wait);
2795 cgroup_put(child);
2796
2797 return restart_syscall();
2798 }
2799 }
2800
Tejun Heo755bf5e2014-11-18 02:49:50 -05002801 cgrp->subtree_control = new_sc;
2802 cgrp->child_subsys_mask = new_ss;
2803
Tejun Heof63070d2014-07-08 18:02:57 -04002804 /*
2805 * Create new csses or make the existing ones visible. A css is
2806 * created invisible if it's being implicitly enabled through
2807 * dependency. An invisible css is made visible when the userland
2808 * explicitly enables it.
Tejun Heof8f22e52014-04-23 11:13:16 -04002809 */
2810 for_each_subsys(ss, ssid) {
2811 if (!(enable & (1 << ssid)))
2812 continue;
2813
2814 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04002815 if (css_enable & (1 << ssid))
2816 ret = create_css(child, ss,
2817 cgrp->subtree_control & (1 << ssid));
2818 else
2819 ret = cgroup_populate_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002820 if (ret)
2821 goto err_undo_css;
2822 }
2823 }
2824
Tejun Heoc29adf22014-07-08 18:02:56 -04002825 /*
2826 * At this point, cgroup_e_css() results reflect the new csses
2827 * making the following cgroup_update_dfl_csses() properly update
2828 * css associations of all tasks in the subtree.
2829 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002830 ret = cgroup_update_dfl_csses(cgrp);
2831 if (ret)
2832 goto err_undo_css;
2833
Tejun Heof63070d2014-07-08 18:02:57 -04002834 /*
2835 * All tasks are migrated out of disabled csses. Kill or hide
2836 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002837 * disabled while other subsystems are still depending on it. The
2838 * css must not actively control resources and be in the vanilla
2839 * state if it's made visible again later. Controllers which may
2840 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04002841 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002842 for_each_subsys(ss, ssid) {
2843 if (!(disable & (1 << ssid)))
2844 continue;
2845
Tejun Heof63070d2014-07-08 18:02:57 -04002846 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002847 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2848
2849 if (css_disable & (1 << ssid)) {
2850 kill_css(css);
2851 } else {
Tejun Heof63070d2014-07-08 18:02:57 -04002852 cgroup_clear_dir(child, 1 << ssid);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002853 if (ss->css_reset)
2854 ss->css_reset(css);
2855 }
Tejun Heof63070d2014-07-08 18:02:57 -04002856 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002857 }
2858
Tejun Heo56c807b2014-11-18 02:49:51 -05002859 /*
2860 * The effective csses of all the descendants (excluding @cgrp) may
2861 * have changed. Subsystems can optionally subscribe to this event
2862 * by implementing ->css_e_css_changed() which is invoked if any of
2863 * the effective csses seen from the css's cgroup may have changed.
2864 */
2865 for_each_subsys(ss, ssid) {
2866 struct cgroup_subsys_state *this_css = cgroup_css(cgrp, ss);
2867 struct cgroup_subsys_state *css;
2868
2869 if (!ss->css_e_css_changed || !this_css)
2870 continue;
2871
2872 css_for_each_descendant_pre(css, this_css)
2873 if (css != this_css)
2874 ss->css_e_css_changed(css);
2875 }
2876
Tejun Heof8f22e52014-04-23 11:13:16 -04002877 kernfs_activate(cgrp->kn);
2878 ret = 0;
2879out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002880 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002881 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002882
2883err_undo_css:
Tejun Heo755bf5e2014-11-18 02:49:50 -05002884 cgrp->subtree_control = old_sc;
2885 cgrp->child_subsys_mask = old_ss;
Tejun Heof8f22e52014-04-23 11:13:16 -04002886
2887 for_each_subsys(ss, ssid) {
2888 if (!(enable & (1 << ssid)))
2889 continue;
2890
2891 cgroup_for_each_live_child(child, cgrp) {
2892 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04002893
2894 if (!css)
2895 continue;
2896
2897 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04002898 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04002899 else
2900 cgroup_clear_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002901 }
2902 }
2903 goto out_unlock;
2904}
2905
Tejun Heo842b5972014-04-25 18:28:02 -04002906static int cgroup_populated_show(struct seq_file *seq, void *v)
2907{
2908 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2909 return 0;
2910}
2911
Tejun Heo2bd59d42014-02-11 11:52:49 -05002912static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2913 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002914{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002915 struct cgroup *cgrp = of->kn->parent->priv;
2916 struct cftype *cft = of->kn->priv;
2917 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002918 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002919
Tejun Heob4168642014-05-13 12:16:21 -04002920 if (cft->write)
2921 return cft->write(of, buf, nbytes, off);
2922
Tejun Heo2bd59d42014-02-11 11:52:49 -05002923 /*
2924 * kernfs guarantees that a file isn't deleted with operations in
2925 * flight, which means that the matching css is and stays alive and
2926 * doesn't need to be pinned. The RCU locking is not necessary
2927 * either. It's just for the convenience of using cgroup_css().
2928 */
2929 rcu_read_lock();
2930 css = cgroup_css(cgrp, cft->ss);
2931 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002932
Tejun Heo451af502014-05-13 12:16:21 -04002933 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002934 unsigned long long v;
2935 ret = kstrtoull(buf, 0, &v);
2936 if (!ret)
2937 ret = cft->write_u64(css, cft, v);
2938 } else if (cft->write_s64) {
2939 long long v;
2940 ret = kstrtoll(buf, 0, &v);
2941 if (!ret)
2942 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002943 } else {
2944 ret = -EINVAL;
2945 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002946
Tejun Heoa742c592013-12-05 12:28:03 -05002947 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002948}
2949
Tejun Heo6612f052013-12-05 12:28:04 -05002950static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002951{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002952 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002953}
2954
2955static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2956{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002957 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002958}
2959
2960static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2961{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002962 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002963}
2964
2965static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2966{
Tejun Heo7da11272013-12-05 12:28:04 -05002967 struct cftype *cft = seq_cft(m);
2968 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002969
Tejun Heo2da8ca82013-12-05 12:28:04 -05002970 if (cft->seq_show)
2971 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002972
Tejun Heo896f5192013-12-05 12:28:04 -05002973 if (cft->read_u64)
2974 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2975 else if (cft->read_s64)
2976 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2977 else
2978 return -EINVAL;
2979 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002980}
2981
Tejun Heo2bd59d42014-02-11 11:52:49 -05002982static struct kernfs_ops cgroup_kf_single_ops = {
2983 .atomic_write_len = PAGE_SIZE,
2984 .write = cgroup_file_write,
2985 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002986};
2987
Tejun Heo2bd59d42014-02-11 11:52:49 -05002988static struct kernfs_ops cgroup_kf_ops = {
2989 .atomic_write_len = PAGE_SIZE,
2990 .write = cgroup_file_write,
2991 .seq_start = cgroup_seqfile_start,
2992 .seq_next = cgroup_seqfile_next,
2993 .seq_stop = cgroup_seqfile_stop,
2994 .seq_show = cgroup_seqfile_show,
2995};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002996
2997/*
2998 * cgroup_rename - Only allow simple rename of directories in place.
2999 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003000static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
3001 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003002{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003003 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08003004 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08003005
Tejun Heo2bd59d42014-02-11 11:52:49 -05003006 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003007 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003008 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003009 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08003010
Tejun Heo6db8e852013-06-14 11:18:22 -07003011 /*
3012 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04003013 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07003014 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003015 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07003016 return -EPERM;
3017
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003018 /*
Tejun Heo8353da12014-05-13 12:19:23 -04003019 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003020 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04003021 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003022 */
3023 kernfs_break_active_protection(new_parent);
3024 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08003025
Tejun Heo2bd59d42014-02-11 11:52:49 -05003026 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003027
Tejun Heo2bd59d42014-02-11 11:52:49 -05003028 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08003029
Tejun Heo2bd59d42014-02-11 11:52:49 -05003030 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003031
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003032 kernfs_unbreak_active_protection(kn);
3033 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003034 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07003035}
3036
Tejun Heo49957f82014-04-07 16:44:47 -04003037/* set uid and gid of cgroup dirs and files to that of the creator */
3038static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3039{
3040 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3041 .ia_uid = current_fsuid(),
3042 .ia_gid = current_fsgid(), };
3043
3044 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3045 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3046 return 0;
3047
3048 return kernfs_setattr(kn, &iattr);
3049}
3050
Tejun Heo2bb566c2013-08-08 20:11:23 -04003051static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003052{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003053 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003054 struct kernfs_node *kn;
3055 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003056 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003057
Tejun Heo2bd59d42014-02-11 11:52:49 -05003058#ifdef CONFIG_DEBUG_LOCK_ALLOC
3059 key = &cft->lockdep_key;
3060#endif
3061 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3062 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003063 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003064 if (IS_ERR(kn))
3065 return PTR_ERR(kn);
3066
3067 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003068 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003069 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003070 return ret;
3071 }
3072
Tejun Heob7fc5ad2014-05-13 12:16:22 -04003073 if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04003074 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04003075 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003076}
3077
Tejun Heob1f28d32013-06-28 16:24:10 -07003078/**
3079 * cgroup_addrm_files - add or remove files to a cgroup directory
3080 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07003081 * @cfts: array of cftypes to be added
3082 * @is_add: whether to add or remove
3083 *
3084 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04003085 * For removals, this function never fails. If addition fails, this
3086 * function doesn't remove files already added. The caller is responsible
3087 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07003088 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04003089static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
3090 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003091{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003092 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07003093 int ret;
3094
Tejun Heo01f64742014-05-13 12:19:23 -04003095 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003096
3097 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003098 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003099 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003100 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003101 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003102 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003103 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003104 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003105 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003106 continue;
3107
Li Zefan2739d3c2013-01-21 18:18:33 +08003108 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04003109 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003110 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003111 pr_warn("%s: failed to add %s, err=%d\n",
3112 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07003113 return ret;
3114 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003115 } else {
3116 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003117 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003118 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003119 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003120}
3121
Tejun Heo21a2d342014-02-12 09:29:49 -05003122static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003123{
3124 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003125 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003126 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003127 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003128 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003129
Tejun Heo01f64742014-05-13 12:19:23 -04003130 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003131
Li Zefane8c82d22013-06-18 18:48:37 +08003132 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003133 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003134 struct cgroup *cgrp = css->cgroup;
3135
Li Zefane8c82d22013-06-18 18:48:37 +08003136 if (cgroup_is_dead(cgrp))
3137 continue;
3138
Tejun Heo21a2d342014-02-12 09:29:49 -05003139 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003140 if (ret)
3141 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003142 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003143
3144 if (is_add && !ret)
3145 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003146 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003147}
3148
Tejun Heo2da440a2014-02-11 11:52:48 -05003149static void cgroup_exit_cftypes(struct cftype *cfts)
3150{
3151 struct cftype *cft;
3152
Tejun Heo2bd59d42014-02-11 11:52:49 -05003153 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3154 /* free copy for custom atomic_write_len, see init_cftypes() */
3155 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3156 kfree(cft->kf_ops);
3157 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003158 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003159
3160 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003161 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003162 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003163}
3164
Tejun Heo2bd59d42014-02-11 11:52:49 -05003165static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003166{
3167 struct cftype *cft;
3168
Tejun Heo2bd59d42014-02-11 11:52:49 -05003169 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3170 struct kernfs_ops *kf_ops;
3171
Tejun Heo0adb0702014-02-12 09:29:48 -05003172 WARN_ON(cft->ss || cft->kf_ops);
3173
Tejun Heo2bd59d42014-02-11 11:52:49 -05003174 if (cft->seq_start)
3175 kf_ops = &cgroup_kf_ops;
3176 else
3177 kf_ops = &cgroup_kf_single_ops;
3178
3179 /*
3180 * Ugh... if @cft wants a custom max_write_len, we need to
3181 * make a copy of kf_ops to set its atomic_write_len.
3182 */
3183 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3184 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3185 if (!kf_ops) {
3186 cgroup_exit_cftypes(cfts);
3187 return -ENOMEM;
3188 }
3189 kf_ops->atomic_write_len = cft->max_write_len;
3190 }
3191
3192 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003193 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003194 }
3195
3196 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003197}
3198
Tejun Heo21a2d342014-02-12 09:29:49 -05003199static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3200{
Tejun Heo01f64742014-05-13 12:19:23 -04003201 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003202
3203 if (!cfts || !cfts[0].ss)
3204 return -ENOENT;
3205
3206 list_del(&cfts->node);
3207 cgroup_apply_cftypes(cfts, false);
3208 cgroup_exit_cftypes(cfts);
3209 return 0;
3210}
3211
Tejun Heo8e3f6542012-04-01 12:09:55 -07003212/**
Tejun Heo80b13582014-02-12 09:29:48 -05003213 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3214 * @cfts: zero-length name terminated array of cftypes
3215 *
3216 * Unregister @cfts. Files described by @cfts are removed from all
3217 * existing cgroups and all future cgroups won't have them either. This
3218 * function can be called anytime whether @cfts' subsys is attached or not.
3219 *
3220 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3221 * registered.
3222 */
3223int cgroup_rm_cftypes(struct cftype *cfts)
3224{
Tejun Heo21a2d342014-02-12 09:29:49 -05003225 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003226
Tejun Heo01f64742014-05-13 12:19:23 -04003227 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003228 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003229 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003230 return ret;
3231}
3232
3233/**
3234 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3235 * @ss: target cgroup subsystem
3236 * @cfts: zero-length name terminated array of cftypes
3237 *
3238 * Register @cfts to @ss. Files described by @cfts are created for all
3239 * existing cgroups to which @ss is attached and all future cgroups will
3240 * have them too. This function can be called anytime whether @ss is
3241 * attached or not.
3242 *
3243 * Returns 0 on successful registration, -errno on failure. Note that this
3244 * function currently returns 0 as long as @cfts registration is successful
3245 * even if some file creation attempts on existing cgroups fail.
3246 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003247static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003248{
Tejun Heo9ccece82013-06-28 16:24:11 -07003249 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003250
Li Zefanc731ae12014-06-05 17:16:30 +08003251 if (ss->disabled)
3252 return 0;
3253
Li Zefandc5736e2014-02-17 10:41:50 +08003254 if (!cfts || cfts[0].name[0] == '\0')
3255 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003256
Tejun Heo2bd59d42014-02-11 11:52:49 -05003257 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003258 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003259 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003260
Tejun Heo01f64742014-05-13 12:19:23 -04003261 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003262
Tejun Heo0adb0702014-02-12 09:29:48 -05003263 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003264 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003265 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003266 cgroup_rm_cftypes_locked(cfts);
3267
Tejun Heo01f64742014-05-13 12:19:23 -04003268 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003269 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003270}
Tejun Heo79578622012-04-01 12:09:56 -07003271
3272/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003273 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3274 * @ss: target cgroup subsystem
3275 * @cfts: zero-length name terminated array of cftypes
3276 *
3277 * Similar to cgroup_add_cftypes() but the added files are only used for
3278 * the default hierarchy.
3279 */
3280int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3281{
3282 struct cftype *cft;
3283
3284 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003285 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003286 return cgroup_add_cftypes(ss, cfts);
3287}
3288
3289/**
3290 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3291 * @ss: target cgroup subsystem
3292 * @cfts: zero-length name terminated array of cftypes
3293 *
3294 * Similar to cgroup_add_cftypes() but the added files are only used for
3295 * the legacy hierarchies.
3296 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003297int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3298{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003299 struct cftype *cft;
3300
Vivek Goyalfa8137b2014-08-08 11:44:03 -04003301 /*
3302 * If legacy_flies_on_dfl, we want to show the legacy files on the
3303 * dfl hierarchy but iff the target subsystem hasn't been updated
3304 * for the dfl hierarchy yet.
3305 */
3306 if (!cgroup_legacy_files_on_dfl ||
3307 ss->dfl_cftypes != ss->legacy_cftypes) {
3308 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3309 cft->flags |= __CFTYPE_NOT_ON_DFL;
3310 }
3311
Tejun Heo2cf669a2014-07-15 11:05:09 -04003312 return cgroup_add_cftypes(ss, cfts);
3313}
3314
Li Zefana043e3b2008-02-23 15:24:09 -08003315/**
3316 * cgroup_task_count - count the number of tasks in a cgroup.
3317 * @cgrp: the cgroup in question
3318 *
3319 * Return the number of tasks in the cgroup.
3320 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003321static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003322{
3323 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003324 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003325
Tejun Heo96d365e2014-02-13 06:58:40 -05003326 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003327 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3328 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003329 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003330 return count;
3331}
3332
Tejun Heo574bd9f2012-11-09 09:12:29 -08003333/**
Tejun Heo492eb212013-08-08 20:11:25 -04003334 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003335 * @pos: the current position (%NULL to initiate traversal)
3336 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003337 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003338 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003339 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003340 * that @parent and @pos are accessible. The next sibling is guaranteed to
3341 * be returned regardless of their states.
3342 *
3343 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3344 * css which finished ->css_online() is guaranteed to be visible in the
3345 * future iterations and will stay visible until the last reference is put.
3346 * A css which hasn't finished ->css_online() or already finished
3347 * ->css_offline() may show up during traversal. It's each subsystem's
3348 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003349 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003350struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3351 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003352{
Tejun Heoc2931b72014-05-16 13:22:51 -04003353 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003354
Tejun Heo8353da12014-05-13 12:19:23 -04003355 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003356
3357 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003358 * @pos could already have been unlinked from the sibling list.
3359 * Once a cgroup is removed, its ->sibling.next is no longer
3360 * updated when its next sibling changes. CSS_RELEASED is set when
3361 * @pos is taken off list, at which time its next pointer is valid,
3362 * and, as releases are serialized, the one pointed to by the next
3363 * pointer is guaranteed to not have started release yet. This
3364 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3365 * critical section, the one pointed to by its next pointer is
3366 * guaranteed to not have finished its RCU grace period even if we
3367 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003368 *
Tejun Heode3f0342014-05-16 13:22:49 -04003369 * If @pos has CSS_RELEASED set, its next pointer can't be
3370 * dereferenced; however, as each css is given a monotonically
3371 * increasing unique serial number and always appended to the
3372 * sibling list, the next one can be found by walking the parent's
3373 * children until the first css with higher serial number than
3374 * @pos's. While this path can be slower, it happens iff iteration
3375 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003376 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003377 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003378 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3379 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3380 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003381 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003382 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003383 if (next->serial_nr > pos->serial_nr)
3384 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003385 }
3386
Tejun Heo3b281af2014-04-23 11:13:15 -04003387 /*
3388 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003389 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003390 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003391 if (&next->sibling != &parent->children)
3392 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003393 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003394}
Tejun Heo53fa5262013-05-24 10:55:38 +09003395
3396/**
Tejun Heo492eb212013-08-08 20:11:25 -04003397 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003398 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003399 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003400 *
Tejun Heo492eb212013-08-08 20:11:25 -04003401 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003402 * to visit for pre-order traversal of @root's descendants. @root is
3403 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003404 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003405 * While this function requires cgroup_mutex or RCU read locking, it
3406 * doesn't require the whole traversal to be contained in a single critical
3407 * section. This function will return the correct next descendant as long
3408 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003409 *
3410 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3411 * css which finished ->css_online() is guaranteed to be visible in the
3412 * future iterations and will stay visible until the last reference is put.
3413 * A css which hasn't finished ->css_online() or already finished
3414 * ->css_offline() may show up during traversal. It's each subsystem's
3415 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003416 */
Tejun Heo492eb212013-08-08 20:11:25 -04003417struct cgroup_subsys_state *
3418css_next_descendant_pre(struct cgroup_subsys_state *pos,
3419 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003420{
Tejun Heo492eb212013-08-08 20:11:25 -04003421 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003422
Tejun Heo8353da12014-05-13 12:19:23 -04003423 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003424
Tejun Heobd8815a2013-08-08 20:11:27 -04003425 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003426 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003427 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003428
3429 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003430 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003431 if (next)
3432 return next;
3433
3434 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003435 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003436 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003437 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003438 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003439 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003440 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003441
3442 return NULL;
3443}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003444
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003445/**
Tejun Heo492eb212013-08-08 20:11:25 -04003446 * css_rightmost_descendant - return the rightmost descendant of a css
3447 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003448 *
Tejun Heo492eb212013-08-08 20:11:25 -04003449 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3450 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003451 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003452 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003453 * While this function requires cgroup_mutex or RCU read locking, it
3454 * doesn't require the whole traversal to be contained in a single critical
3455 * section. This function will return the correct rightmost descendant as
3456 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003457 */
Tejun Heo492eb212013-08-08 20:11:25 -04003458struct cgroup_subsys_state *
3459css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003460{
Tejun Heo492eb212013-08-08 20:11:25 -04003461 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003462
Tejun Heo8353da12014-05-13 12:19:23 -04003463 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003464
3465 do {
3466 last = pos;
3467 /* ->prev isn't RCU safe, walk ->next till the end */
3468 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003469 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003470 pos = tmp;
3471 } while (pos);
3472
3473 return last;
3474}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003475
Tejun Heo492eb212013-08-08 20:11:25 -04003476static struct cgroup_subsys_state *
3477css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003478{
Tejun Heo492eb212013-08-08 20:11:25 -04003479 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003480
3481 do {
3482 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003483 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003484 } while (pos);
3485
3486 return last;
3487}
3488
3489/**
Tejun Heo492eb212013-08-08 20:11:25 -04003490 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003491 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003492 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003493 *
Tejun Heo492eb212013-08-08 20:11:25 -04003494 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003495 * to visit for post-order traversal of @root's descendants. @root is
3496 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003497 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003498 * While this function requires cgroup_mutex or RCU read locking, it
3499 * doesn't require the whole traversal to be contained in a single critical
3500 * section. This function will return the correct next descendant as long
3501 * as both @pos and @cgroup are accessible and @pos is a descendant of
3502 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003503 *
3504 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3505 * css which finished ->css_online() is guaranteed to be visible in the
3506 * future iterations and will stay visible until the last reference is put.
3507 * A css which hasn't finished ->css_online() or already finished
3508 * ->css_offline() may show up during traversal. It's each subsystem's
3509 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003510 */
Tejun Heo492eb212013-08-08 20:11:25 -04003511struct cgroup_subsys_state *
3512css_next_descendant_post(struct cgroup_subsys_state *pos,
3513 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003514{
Tejun Heo492eb212013-08-08 20:11:25 -04003515 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003516
Tejun Heo8353da12014-05-13 12:19:23 -04003517 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003518
Tejun Heo58b79a92013-09-06 15:31:08 -04003519 /* if first iteration, visit leftmost descendant which may be @root */
3520 if (!pos)
3521 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003522
Tejun Heobd8815a2013-08-08 20:11:27 -04003523 /* if we visited @root, we're done */
3524 if (pos == root)
3525 return NULL;
3526
Tejun Heo574bd9f2012-11-09 09:12:29 -08003527 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003528 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003529 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003530 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003531
3532 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003533 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003534}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003535
Tejun Heof3d46502014-05-16 13:22:52 -04003536/**
3537 * css_has_online_children - does a css have online children
3538 * @css: the target css
3539 *
3540 * Returns %true if @css has any online children; otherwise, %false. This
3541 * function can be called from any context but the caller is responsible
3542 * for synchronizing against on/offlining as necessary.
3543 */
3544bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003545{
Tejun Heof3d46502014-05-16 13:22:52 -04003546 struct cgroup_subsys_state *child;
3547 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003548
3549 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003550 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003551 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003552 ret = true;
3553 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003554 }
3555 }
3556 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003557 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003558}
3559
Tejun Heo0942eee2013-08-08 20:11:26 -04003560/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003561 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003562 * @it: the iterator to advance
3563 *
3564 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003565 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003566static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003567{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003568 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003569 struct cgrp_cset_link *link;
3570 struct css_set *cset;
3571
3572 /* Advance to the next non-empty css_set */
3573 do {
3574 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003575 if (l == it->cset_head) {
3576 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003577 return;
3578 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003579
3580 if (it->ss) {
3581 cset = container_of(l, struct css_set,
3582 e_cset_node[it->ss->id]);
3583 } else {
3584 link = list_entry(l, struct cgrp_cset_link, cset_link);
3585 cset = link->cset;
3586 }
Tejun Heoc7561122014-02-25 10:04:01 -05003587 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3588
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003589 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003590
3591 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003592 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003593 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003594 it->task_pos = cset->mg_tasks.next;
3595
3596 it->tasks_head = &cset->tasks;
3597 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003598}
3599
Tejun Heo0942eee2013-08-08 20:11:26 -04003600/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003601 * css_task_iter_start - initiate task iteration
3602 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003603 * @it: the task iterator to use
3604 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003605 * Initiate iteration through the tasks of @css. The caller can call
3606 * css_task_iter_next() to walk through the tasks until the function
3607 * returns NULL. On completion of iteration, css_task_iter_end() must be
3608 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003609 *
3610 * Note that this function acquires a lock which is released when the
3611 * iteration finishes. The caller can't sleep while iteration is in
3612 * progress.
3613 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003614void css_task_iter_start(struct cgroup_subsys_state *css,
3615 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003616 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003617{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003618 /* no one should try to iterate before mounting cgroups */
3619 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003620
Tejun Heo96d365e2014-02-13 06:58:40 -05003621 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003622
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003623 it->ss = css->ss;
3624
3625 if (it->ss)
3626 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3627 else
3628 it->cset_pos = &css->cgroup->cset_links;
3629
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003630 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003631
Tejun Heo72ec7022013-08-08 20:11:26 -04003632 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003633}
Paul Menage817929e2007-10-18 23:39:36 -07003634
Tejun Heo0942eee2013-08-08 20:11:26 -04003635/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003636 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003637 * @it: the task iterator being iterated
3638 *
3639 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003640 * initialized via css_task_iter_start(). Returns NULL when the iteration
3641 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003642 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003643struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003644{
3645 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003646 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003647
3648 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003649 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003650 return NULL;
3651 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003652
3653 /*
3654 * Advance iterator to find next entry. cset->tasks is consumed
3655 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3656 * next cset.
3657 */
Paul Menage817929e2007-10-18 23:39:36 -07003658 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003659
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003660 if (l == it->tasks_head)
3661 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003662
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003663 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003664 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003665 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003666 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003667
Paul Menage817929e2007-10-18 23:39:36 -07003668 return res;
3669}
3670
Tejun Heo0942eee2013-08-08 20:11:26 -04003671/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003672 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003673 * @it: the task iterator to finish
3674 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003675 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003676 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003677void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003678 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003679{
Tejun Heo96d365e2014-02-13 06:58:40 -05003680 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003681}
3682
3683/**
3684 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3685 * @to: cgroup to which the tasks will be moved
3686 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003687 *
3688 * Locking rules between cgroup_post_fork() and the migration path
3689 * guarantee that, if a task is forking while being migrated, the new child
3690 * is guaranteed to be either visible in the source cgroup after the
3691 * parent's migration is complete or put into the target cgroup. No task
3692 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003693 */
3694int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3695{
Tejun Heo952aaa12014-02-25 10:04:03 -05003696 LIST_HEAD(preloaded_csets);
3697 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003698 struct css_task_iter it;
3699 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003700 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003701
Tejun Heo952aaa12014-02-25 10:04:03 -05003702 mutex_lock(&cgroup_mutex);
3703
3704 /* all tasks in @from are being moved, all csets are source */
3705 down_read(&css_set_rwsem);
3706 list_for_each_entry(link, &from->cset_links, cset_link)
3707 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3708 up_read(&css_set_rwsem);
3709
3710 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3711 if (ret)
3712 goto out_err;
3713
3714 /*
3715 * Migrate tasks one-by-one until @form is empty. This fails iff
3716 * ->can_attach() fails.
3717 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003718 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003719 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003720 task = css_task_iter_next(&it);
3721 if (task)
3722 get_task_struct(task);
3723 css_task_iter_end(&it);
3724
3725 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003726 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003727 put_task_struct(task);
3728 }
3729 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003730out_err:
3731 cgroup_migrate_finish(&preloaded_csets);
3732 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003733 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003734}
3735
Paul Menage817929e2007-10-18 23:39:36 -07003736/*
Ben Blum102a7752009-09-23 15:56:26 -07003737 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003738 *
3739 * Reading this file can return large amounts of data if a cgroup has
3740 * *lots* of attached tasks. So it may need several calls to read(),
3741 * but we cannot guarantee that the information we produce is correct
3742 * unless we produce it entirely atomically.
3743 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003744 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003745
Li Zefan24528252012-01-20 11:58:43 +08003746/* which pidlist file are we talking about? */
3747enum cgroup_filetype {
3748 CGROUP_FILE_PROCS,
3749 CGROUP_FILE_TASKS,
3750};
3751
3752/*
3753 * A pidlist is a list of pids that virtually represents the contents of one
3754 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3755 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3756 * to the cgroup.
3757 */
3758struct cgroup_pidlist {
3759 /*
3760 * used to find which pidlist is wanted. doesn't change as long as
3761 * this particular list stays in the list.
3762 */
3763 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3764 /* array of xids */
3765 pid_t *list;
3766 /* how many elements the above list has */
3767 int length;
Li Zefan24528252012-01-20 11:58:43 +08003768 /* each of these stored in a list by its cgroup */
3769 struct list_head links;
3770 /* pointer to the cgroup we belong to, for list removal purposes */
3771 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003772 /* for delayed destruction */
3773 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003774};
3775
Paul Menagebbcb81d2007-10-18 23:39:32 -07003776/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003777 * The following two functions "fix" the issue where there are more pids
3778 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3779 * TODO: replace with a kernel-wide solution to this problem
3780 */
3781#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3782static void *pidlist_allocate(int count)
3783{
3784 if (PIDLIST_TOO_LARGE(count))
3785 return vmalloc(count * sizeof(pid_t));
3786 else
3787 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3788}
Tejun Heob1a21362013-11-29 10:42:58 -05003789
Ben Blumd1d9fd32009-09-23 15:56:28 -07003790static void pidlist_free(void *p)
3791{
Bandan Das58794512015-03-02 17:51:10 -05003792 kvfree(p);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003793}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003794
3795/*
Tejun Heob1a21362013-11-29 10:42:58 -05003796 * Used to destroy all pidlists lingering waiting for destroy timer. None
3797 * should be left afterwards.
3798 */
3799static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3800{
3801 struct cgroup_pidlist *l, *tmp_l;
3802
3803 mutex_lock(&cgrp->pidlist_mutex);
3804 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3805 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3806 mutex_unlock(&cgrp->pidlist_mutex);
3807
3808 flush_workqueue(cgroup_pidlist_destroy_wq);
3809 BUG_ON(!list_empty(&cgrp->pidlists));
3810}
3811
3812static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3813{
3814 struct delayed_work *dwork = to_delayed_work(work);
3815 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3816 destroy_dwork);
3817 struct cgroup_pidlist *tofree = NULL;
3818
3819 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003820
3821 /*
Tejun Heo04502362013-11-29 10:42:59 -05003822 * Destroy iff we didn't get queued again. The state won't change
3823 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003824 */
Tejun Heo04502362013-11-29 10:42:59 -05003825 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003826 list_del(&l->links);
3827 pidlist_free(l->list);
3828 put_pid_ns(l->key.ns);
3829 tofree = l;
3830 }
3831
Tejun Heob1a21362013-11-29 10:42:58 -05003832 mutex_unlock(&l->owner->pidlist_mutex);
3833 kfree(tofree);
3834}
3835
3836/*
Ben Blum102a7752009-09-23 15:56:26 -07003837 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003838 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003839 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003840static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003841{
Ben Blum102a7752009-09-23 15:56:26 -07003842 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003843
3844 /*
3845 * we presume the 0th element is unique, so i starts at 1. trivial
3846 * edge cases first; no work needs to be done for either
3847 */
3848 if (length == 0 || length == 1)
3849 return length;
3850 /* src and dest walk down the list; dest counts unique elements */
3851 for (src = 1; src < length; src++) {
3852 /* find next unique element */
3853 while (list[src] == list[src-1]) {
3854 src++;
3855 if (src == length)
3856 goto after;
3857 }
3858 /* dest always points to where the next unique element goes */
3859 list[dest] = list[src];
3860 dest++;
3861 }
3862after:
Ben Blum102a7752009-09-23 15:56:26 -07003863 return dest;
3864}
3865
Tejun Heoafb2bc12013-11-29 10:42:59 -05003866/*
3867 * The two pid files - task and cgroup.procs - guaranteed that the result
3868 * is sorted, which forced this whole pidlist fiasco. As pid order is
3869 * different per namespace, each namespace needs differently sorted list,
3870 * making it impossible to use, for example, single rbtree of member tasks
3871 * sorted by task pointer. As pidlists can be fairly large, allocating one
3872 * per open file is dangerous, so cgroup had to implement shared pool of
3873 * pidlists keyed by cgroup and namespace.
3874 *
3875 * All this extra complexity was caused by the original implementation
3876 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04003877 * want to do away with it. Explicitly scramble sort order if on the
3878 * default hierarchy so that no such expectation exists in the new
3879 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05003880 *
3881 * Scrambling is done by swapping every two consecutive bits, which is
3882 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3883 */
3884static pid_t pid_fry(pid_t pid)
3885{
3886 unsigned a = pid & 0x55555555;
3887 unsigned b = pid & 0xAAAAAAAA;
3888
3889 return (a << 1) | (b >> 1);
3890}
3891
3892static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3893{
Tejun Heoaa6ec292014-07-09 10:08:08 -04003894 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05003895 return pid_fry(pid);
3896 else
3897 return pid;
3898}
3899
Ben Blum102a7752009-09-23 15:56:26 -07003900static int cmppid(const void *a, const void *b)
3901{
3902 return *(pid_t *)a - *(pid_t *)b;
3903}
3904
Tejun Heoafb2bc12013-11-29 10:42:59 -05003905static int fried_cmppid(const void *a, const void *b)
3906{
3907 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3908}
3909
Ben Blum72a8cb32009-09-23 15:56:27 -07003910static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3911 enum cgroup_filetype type)
3912{
3913 struct cgroup_pidlist *l;
3914 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003915 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003916
Tejun Heoe6b81712013-11-29 10:42:59 -05003917 lockdep_assert_held(&cgrp->pidlist_mutex);
3918
3919 list_for_each_entry(l, &cgrp->pidlists, links)
3920 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003921 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003922 return NULL;
3923}
3924
Ben Blum72a8cb32009-09-23 15:56:27 -07003925/*
3926 * find the appropriate pidlist for our purpose (given procs vs tasks)
3927 * returns with the lock on that pidlist already held, and takes care
3928 * of the use count, or returns NULL with no locks held if we're out of
3929 * memory.
3930 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003931static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3932 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003933{
3934 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003935
Tejun Heoe6b81712013-11-29 10:42:59 -05003936 lockdep_assert_held(&cgrp->pidlist_mutex);
3937
3938 l = cgroup_pidlist_find(cgrp, type);
3939 if (l)
3940 return l;
3941
Ben Blum72a8cb32009-09-23 15:56:27 -07003942 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003943 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003944 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003945 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003946
Tejun Heob1a21362013-11-29 10:42:58 -05003947 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003948 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003949 /* don't need task_nsproxy() if we're looking at ourself */
3950 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003951 l->owner = cgrp;
3952 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003953 return l;
3954}
3955
3956/*
Ben Blum102a7752009-09-23 15:56:26 -07003957 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3958 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003959static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3960 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003961{
3962 pid_t *array;
3963 int length;
3964 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003965 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003966 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003967 struct cgroup_pidlist *l;
3968
Tejun Heo4bac00d2013-11-29 10:42:59 -05003969 lockdep_assert_held(&cgrp->pidlist_mutex);
3970
Ben Blum102a7752009-09-23 15:56:26 -07003971 /*
3972 * If cgroup gets more users after we read count, we won't have
3973 * enough space - tough. This race is indistinguishable to the
3974 * caller from the case that the additional cgroup users didn't
3975 * show up until sometime later on.
3976 */
3977 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003978 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003979 if (!array)
3980 return -ENOMEM;
3981 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04003982 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003983 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003984 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003985 break;
Ben Blum102a7752009-09-23 15:56:26 -07003986 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003987 if (type == CGROUP_FILE_PROCS)
3988 pid = task_tgid_vnr(tsk);
3989 else
3990 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003991 if (pid > 0) /* make sure to only use valid results */
3992 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003993 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003994 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003995 length = n;
3996 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003997 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05003998 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3999 else
4000 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07004001 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07004002 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05004003
Tejun Heoe6b81712013-11-29 10:42:59 -05004004 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07004005 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07004006 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07004007 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07004008 }
Tejun Heoe6b81712013-11-29 10:42:59 -05004009
4010 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07004011 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07004012 l->list = array;
4013 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07004014 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07004015 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004016}
4017
Balbir Singh846c7bb2007-10-18 23:39:44 -07004018/**
Li Zefana043e3b2008-02-23 15:24:09 -08004019 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07004020 * @stats: cgroupstats to fill information into
4021 * @dentry: A dentry entry belonging to the cgroup for which stats have
4022 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08004023 *
4024 * Build and fill cgroupstats so that taskstats can export it to user
4025 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07004026 */
4027int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
4028{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004029 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07004030 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04004031 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004032 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08004033
Tejun Heo2bd59d42014-02-11 11:52:49 -05004034 /* it should be kernfs_node belonging to cgroupfs and is a directory */
4035 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4036 kernfs_type(kn) != KERNFS_DIR)
4037 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004038
Li Zefanbad34662014-02-14 16:54:28 +08004039 mutex_lock(&cgroup_mutex);
4040
Tejun Heo2bd59d42014-02-11 11:52:49 -05004041 /*
4042 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04004043 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05004044 * @kn->priv is RCU safe. Let's do the RCU dancing.
4045 */
4046 rcu_read_lock();
4047 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004048 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004049 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004050 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004051 return -ENOENT;
4052 }
Li Zefanbad34662014-02-14 16:54:28 +08004053 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004054
Tejun Heo9d800df2014-05-14 09:15:00 -04004055 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004056 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004057 switch (tsk->state) {
4058 case TASK_RUNNING:
4059 stats->nr_running++;
4060 break;
4061 case TASK_INTERRUPTIBLE:
4062 stats->nr_sleeping++;
4063 break;
4064 case TASK_UNINTERRUPTIBLE:
4065 stats->nr_uninterruptible++;
4066 break;
4067 case TASK_STOPPED:
4068 stats->nr_stopped++;
4069 break;
4070 default:
4071 if (delayacct_is_task_waiting_on_io(tsk))
4072 stats->nr_io_wait++;
4073 break;
4074 }
4075 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004076 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004077
Li Zefanbad34662014-02-14 16:54:28 +08004078 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004079 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004080}
4081
Paul Menage8f3ff202009-09-23 15:56:25 -07004082
Paul Menagecc31edc2008-10-18 20:28:04 -07004083/*
Ben Blum102a7752009-09-23 15:56:26 -07004084 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004085 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004086 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004087 */
4088
Ben Blum102a7752009-09-23 15:56:26 -07004089static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004090{
4091 /*
4092 * Initially we receive a position value that corresponds to
4093 * one more than the last pid shown (or 0 on the first call or
4094 * after a seek to the start). Use a binary-search to find the
4095 * next pid to display, if any
4096 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004097 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004098 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004099 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004100 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004101 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004102 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004103
Tejun Heo4bac00d2013-11-29 10:42:59 -05004104 mutex_lock(&cgrp->pidlist_mutex);
4105
4106 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004107 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004108 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004109 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004110 * could already have been destroyed.
4111 */
Tejun Heo5d224442013-12-05 12:28:04 -05004112 if (of->priv)
4113 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004114
4115 /*
4116 * Either this is the first start() after open or the matching
4117 * pidlist has been destroyed inbetween. Create a new one.
4118 */
Tejun Heo5d224442013-12-05 12:28:04 -05004119 if (!of->priv) {
4120 ret = pidlist_array_load(cgrp, type,
4121 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004122 if (ret)
4123 return ERR_PTR(ret);
4124 }
Tejun Heo5d224442013-12-05 12:28:04 -05004125 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004126
Paul Menagecc31edc2008-10-18 20:28:04 -07004127 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004128 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004129
Paul Menagecc31edc2008-10-18 20:28:04 -07004130 while (index < end) {
4131 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004132 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004133 index = mid;
4134 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004135 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004136 index = mid + 1;
4137 else
4138 end = mid;
4139 }
4140 }
4141 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004142 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004143 return NULL;
4144 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004145 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004146 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004147 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004148}
4149
Ben Blum102a7752009-09-23 15:56:26 -07004150static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004151{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004152 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004153 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004154
Tejun Heo5d224442013-12-05 12:28:04 -05004155 if (l)
4156 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004157 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004158 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004159}
4160
Ben Blum102a7752009-09-23 15:56:26 -07004161static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004162{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004163 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004164 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004165 pid_t *p = v;
4166 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004167 /*
4168 * Advance to the next pid in the array. If this goes off the
4169 * end, we're done
4170 */
4171 p++;
4172 if (p >= end) {
4173 return NULL;
4174 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004175 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004176 return p;
4177 }
4178}
4179
Ben Blum102a7752009-09-23 15:56:26 -07004180static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004181{
Joe Perches94ff2122015-04-15 16:18:20 -07004182 seq_printf(s, "%d\n", *(int *)v);
4183
4184 return 0;
Paul Menagecc31edc2008-10-18 20:28:04 -07004185}
4186
Tejun Heo182446d2013-08-08 20:11:24 -04004187static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4188 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004189{
Tejun Heo182446d2013-08-08 20:11:24 -04004190 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004191}
4192
Tejun Heo182446d2013-08-08 20:11:24 -04004193static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4194 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004195{
Paul Menage6379c102008-07-25 01:47:01 -07004196 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004197 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004198 else
Tejun Heo182446d2013-08-08 20:11:24 -04004199 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004200 return 0;
4201}
4202
Tejun Heo182446d2013-08-08 20:11:24 -04004203static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4204 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004205{
Tejun Heo182446d2013-08-08 20:11:24 -04004206 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004207}
4208
Tejun Heo182446d2013-08-08 20:11:24 -04004209static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4210 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004211{
4212 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004213 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004214 else
Tejun Heo182446d2013-08-08 20:11:24 -04004215 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004216 return 0;
4217}
4218
Tejun Heoa14c6872014-07-15 11:05:09 -04004219/* cgroup core interface files for the default hierarchy */
4220static struct cftype cgroup_dfl_base_files[] = {
4221 {
4222 .name = "cgroup.procs",
4223 .seq_start = cgroup_pidlist_start,
4224 .seq_next = cgroup_pidlist_next,
4225 .seq_stop = cgroup_pidlist_stop,
4226 .seq_show = cgroup_pidlist_show,
4227 .private = CGROUP_FILE_PROCS,
4228 .write = cgroup_procs_write,
4229 .mode = S_IRUGO | S_IWUSR,
4230 },
4231 {
4232 .name = "cgroup.controllers",
4233 .flags = CFTYPE_ONLY_ON_ROOT,
4234 .seq_show = cgroup_root_controllers_show,
4235 },
4236 {
4237 .name = "cgroup.controllers",
4238 .flags = CFTYPE_NOT_ON_ROOT,
4239 .seq_show = cgroup_controllers_show,
4240 },
4241 {
4242 .name = "cgroup.subtree_control",
4243 .seq_show = cgroup_subtree_control_show,
4244 .write = cgroup_subtree_control_write,
4245 },
4246 {
4247 .name = "cgroup.populated",
4248 .flags = CFTYPE_NOT_ON_ROOT,
4249 .seq_show = cgroup_populated_show,
4250 },
4251 { } /* terminate */
4252};
4253
4254/* cgroup core interface files for the legacy hierarchies */
4255static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004256 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004257 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004258 .seq_start = cgroup_pidlist_start,
4259 .seq_next = cgroup_pidlist_next,
4260 .seq_stop = cgroup_pidlist_stop,
4261 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004262 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004263 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004264 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004265 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004266 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004267 .name = "cgroup.clone_children",
4268 .read_u64 = cgroup_clone_children_read,
4269 .write_u64 = cgroup_clone_children_write,
4270 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004271 {
Tejun Heo873fe092013-04-14 20:15:26 -07004272 .name = "cgroup.sane_behavior",
4273 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004274 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004275 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004276 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004277 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004278 .seq_start = cgroup_pidlist_start,
4279 .seq_next = cgroup_pidlist_next,
4280 .seq_stop = cgroup_pidlist_stop,
4281 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004282 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004283 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004284 .mode = S_IRUGO | S_IWUSR,
4285 },
4286 {
4287 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004288 .read_u64 = cgroup_read_notify_on_release,
4289 .write_u64 = cgroup_write_notify_on_release,
4290 },
Tejun Heo873fe092013-04-14 20:15:26 -07004291 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004292 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004293 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004294 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004295 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004296 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004297 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004298 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004299};
4300
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004301/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004302 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004303 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004304 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004305 *
4306 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004307 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10004308static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004309{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004310 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004311 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004312
Tejun Heo8e3f6542012-04-01 12:09:55 -07004313 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004314 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004315 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004316
Tejun Heo69dfa002014-05-04 15:09:13 -04004317 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004318 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004319
Tejun Heo0adb0702014-02-12 09:29:48 -05004320 list_for_each_entry(cfts, &ss->cfts, node) {
4321 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004322 if (ret < 0)
4323 goto err;
4324 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004325 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004326 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004327err:
4328 cgroup_clear_dir(cgrp, subsys_mask);
4329 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004330}
4331
Tejun Heo0c21ead2013-08-13 20:22:51 -04004332/*
4333 * css destruction is four-stage process.
4334 *
4335 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4336 * Implemented in kill_css().
4337 *
4338 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004339 * and thus css_tryget_online() is guaranteed to fail, the css can be
4340 * offlined by invoking offline_css(). After offlining, the base ref is
4341 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004342 *
4343 * 3. When the percpu_ref reaches zero, the only possible remaining
4344 * accessors are inside RCU read sections. css_release() schedules the
4345 * RCU callback.
4346 *
4347 * 4. After the grace period, the css can be freed. Implemented in
4348 * css_free_work_fn().
4349 *
4350 * It is actually hairier because both step 2 and 4 require process context
4351 * and thus involve punting to css->destroy_work adding two additional
4352 * steps to the already complex sequence.
4353 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004354static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004355{
4356 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004357 container_of(work, struct cgroup_subsys_state, destroy_work);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004358 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004359 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004360
Tejun Heo9a1049d2014-06-28 08:10:14 -04004361 percpu_ref_exit(&css->refcnt);
4362
Vladimir Davydov01e58652015-02-12 14:59:26 -08004363 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004364 /* css free path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004365 int id = css->id;
4366
Tejun Heo9d755d32014-05-14 09:15:02 -04004367 if (css->parent)
4368 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004369
Vladimir Davydov01e58652015-02-12 14:59:26 -08004370 ss->css_free(css);
4371 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004372 cgroup_put(cgrp);
4373 } else {
4374 /* cgroup free path */
4375 atomic_dec(&cgrp->root->nr_cgrps);
4376 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004377 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004378
Tejun Heod51f39b2014-05-16 13:22:48 -04004379 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004380 /*
4381 * We get a ref to the parent, and put the ref when
4382 * this cgroup is being freed, so it's guaranteed
4383 * that the parent won't be destroyed before its
4384 * children.
4385 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004386 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004387 kernfs_put(cgrp->kn);
4388 kfree(cgrp);
4389 } else {
4390 /*
4391 * This is root cgroup's refcnt reaching zero,
4392 * which indicates that the root should be
4393 * released.
4394 */
4395 cgroup_destroy_root(cgrp->root);
4396 }
4397 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004398}
4399
4400static void css_free_rcu_fn(struct rcu_head *rcu_head)
4401{
4402 struct cgroup_subsys_state *css =
4403 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4404
Tejun Heo0c21ead2013-08-13 20:22:51 -04004405 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004406 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004407}
4408
Tejun Heo25e15d82014-05-14 09:15:02 -04004409static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004410{
4411 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004412 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004413 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004414 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004415
Tejun Heo1fed1b22014-05-16 13:22:49 -04004416 mutex_lock(&cgroup_mutex);
4417
Tejun Heode3f0342014-05-16 13:22:49 -04004418 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004419 list_del_rcu(&css->sibling);
4420
Tejun Heo9d755d32014-05-14 09:15:02 -04004421 if (ss) {
4422 /* css release path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004423 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004424 if (ss->css_released)
4425 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004426 } else {
4427 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004428 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4429 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004430
4431 /*
4432 * There are two control paths which try to determine
4433 * cgroup from dentry without going through kernfs -
4434 * cgroupstats_build() and css_tryget_online_from_dir().
4435 * Those are supported by RCU protecting clearing of
4436 * cgrp->kn->priv backpointer.
4437 */
4438 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004439 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004440
Tejun Heo1fed1b22014-05-16 13:22:49 -04004441 mutex_unlock(&cgroup_mutex);
4442
Tejun Heo0c21ead2013-08-13 20:22:51 -04004443 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004444}
4445
Paul Menageddbcc7e2007-10-18 23:39:30 -07004446static void css_release(struct percpu_ref *ref)
4447{
4448 struct cgroup_subsys_state *css =
4449 container_of(ref, struct cgroup_subsys_state, refcnt);
4450
Tejun Heo25e15d82014-05-14 09:15:02 -04004451 INIT_WORK(&css->destroy_work, css_release_work_fn);
4452 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004453}
4454
Tejun Heoddfcada2014-05-04 15:09:14 -04004455static void init_and_link_css(struct cgroup_subsys_state *css,
4456 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004457{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004458 lockdep_assert_held(&cgroup_mutex);
4459
Tejun Heoddfcada2014-05-04 15:09:14 -04004460 cgroup_get(cgrp);
4461
Tejun Heod5c419b2014-05-16 13:22:48 -04004462 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004463 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004464 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004465 INIT_LIST_HEAD(&css->sibling);
4466 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004467 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004468
Tejun Heod51f39b2014-05-16 13:22:48 -04004469 if (cgroup_parent(cgrp)) {
4470 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004471 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004472 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004473
Tejun Heoca8bdca2013-08-26 18:40:56 -04004474 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004475}
4476
Li Zefan2a4ac632013-07-31 16:16:40 +08004477/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004478static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004479{
Tejun Heo623f9262013-08-13 11:01:55 -04004480 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004481 int ret = 0;
4482
Tejun Heoa31f2d32012-11-19 08:13:37 -08004483 lockdep_assert_held(&cgroup_mutex);
4484
Tejun Heo92fb9742012-11-19 08:13:38 -08004485 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004486 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004487 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004488 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004489 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004490 }
Tejun Heob1929db2012-11-19 08:13:38 -08004491 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004492}
4493
Li Zefan2a4ac632013-07-31 16:16:40 +08004494/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004495static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004496{
Tejun Heo623f9262013-08-13 11:01:55 -04004497 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004498
4499 lockdep_assert_held(&cgroup_mutex);
4500
4501 if (!(css->flags & CSS_ONLINE))
4502 return;
4503
Li Zefand7eeac12013-03-12 15:35:59 -07004504 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004505 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004506
Tejun Heoeb954192013-08-08 20:11:23 -04004507 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004508 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004509
4510 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004511}
4512
Tejun Heoc81c925a2013-12-06 15:11:56 -05004513/**
4514 * create_css - create a cgroup_subsys_state
4515 * @cgrp: the cgroup new css will be associated with
4516 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004517 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004518 *
4519 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004520 * css is online and installed in @cgrp with all interface files created if
4521 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004522 */
Tejun Heof63070d2014-07-08 18:02:57 -04004523static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4524 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004525{
Tejun Heod51f39b2014-05-16 13:22:48 -04004526 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004527 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004528 struct cgroup_subsys_state *css;
4529 int err;
4530
Tejun Heoc81c925a2013-12-06 15:11:56 -05004531 lockdep_assert_held(&cgroup_mutex);
4532
Tejun Heo1fed1b22014-05-16 13:22:49 -04004533 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004534 if (IS_ERR(css))
4535 return PTR_ERR(css);
4536
Tejun Heoddfcada2014-05-04 15:09:14 -04004537 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004538
Tejun Heo2aad2a82014-09-24 13:31:50 -04004539 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004540 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004541 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004542
Tejun Heo15a4c832014-05-04 15:09:14 -04004543 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT);
4544 if (err < 0)
4545 goto err_free_percpu_ref;
4546 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004547
Tejun Heof63070d2014-07-08 18:02:57 -04004548 if (visible) {
4549 err = cgroup_populate_dir(cgrp, 1 << ss->id);
4550 if (err)
4551 goto err_free_id;
4552 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004553
4554 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004555 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004556 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004557
4558 err = online_css(css);
4559 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004560 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004561
Tejun Heoc81c925a2013-12-06 15:11:56 -05004562 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004563 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004564 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 -04004565 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004566 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004567 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004568 ss->warned_broken_hierarchy = true;
4569 }
4570
4571 return 0;
4572
Tejun Heo1fed1b22014-05-16 13:22:49 -04004573err_list_del:
4574 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004575 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004576err_free_id:
4577 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004578err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004579 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004580err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004581 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004582 return err;
4583}
4584
Tejun Heob3bfd982014-05-13 12:19:22 -04004585static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4586 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004587{
Tejun Heoa9746d82014-05-13 12:19:22 -04004588 struct cgroup *parent, *cgrp;
4589 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004590 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004591 struct kernfs_node *kn;
Tejun Heoa14c6872014-07-15 11:05:09 -04004592 struct cftype *base_files;
Tejun Heob3bfd982014-05-13 12:19:22 -04004593 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004594
Alban Crequy71b1fb52014-08-18 12:20:20 +01004595 /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable.
4596 */
4597 if (strchr(name, '\n'))
4598 return -EINVAL;
4599
Tejun Heoa9746d82014-05-13 12:19:22 -04004600 parent = cgroup_kn_lock_live(parent_kn);
4601 if (!parent)
4602 return -ENODEV;
4603 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004604
Tejun Heo0a950f62012-11-19 09:02:12 -08004605 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004606 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004607 if (!cgrp) {
4608 ret = -ENOMEM;
4609 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004610 }
4611
Tejun Heo2aad2a82014-09-24 13:31:50 -04004612 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004613 if (ret)
4614 goto out_free_cgrp;
4615
Li Zefan0ab02ca2014-02-11 16:05:46 +08004616 /*
4617 * Temporarily set the pointer to NULL, so idr_find() won't return
4618 * a half-baked cgroup.
4619 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004620 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_NOWAIT);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004621 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004622 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004623 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004624 }
4625
Paul Menagecc31edc2008-10-18 20:28:04 -07004626 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004627
Tejun Heo9d800df2014-05-14 09:15:00 -04004628 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004629 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004630
Li Zefanb6abdb02008-03-04 14:28:19 -08004631 if (notify_on_release(parent))
4632 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4633
Tejun Heo2260e7f2012-11-19 08:13:38 -08004634 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4635 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004636
Tejun Heo2bd59d42014-02-11 11:52:49 -05004637 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004638 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004639 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004640 ret = PTR_ERR(kn);
4641 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004642 }
4643 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004644
Tejun Heo6f305582014-02-12 09:29:50 -05004645 /*
4646 * This extra ref will be put in cgroup_free_fn() and guarantees
4647 * that @cgrp->kn is always accessible.
4648 */
4649 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004650
Tejun Heo0cb51d72014-05-16 13:22:49 -04004651 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004652
Tejun Heo4e139af2012-11-19 08:13:36 -08004653 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004654 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004655 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004656 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004657
Tejun Heo0d802552013-12-06 15:11:56 -05004658 /*
4659 * @cgrp is now fully operational. If something fails after this
4660 * point, it'll be released via the normal destruction path.
4661 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004662 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004663
Tejun Heoba0f4d72014-05-13 12:19:22 -04004664 ret = cgroup_kn_set_ugid(kn);
4665 if (ret)
4666 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004667
Tejun Heoa14c6872014-07-15 11:05:09 -04004668 if (cgroup_on_dfl(cgrp))
4669 base_files = cgroup_dfl_base_files;
4670 else
4671 base_files = cgroup_legacy_base_files;
4672
4673 ret = cgroup_addrm_files(cgrp, base_files, true);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004674 if (ret)
4675 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004676
Tejun Heo9d403e92013-12-06 15:11:56 -05004677 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004678 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004679 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004680 ret = create_css(cgrp, ss,
4681 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004682 if (ret)
4683 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004684 }
Tejun Heoa8638032012-11-09 09:12:29 -08004685 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004686
Tejun Heobd53d612014-04-23 11:13:16 -04004687 /*
4688 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004689 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004690 */
Tejun Heo667c2492014-07-08 18:02:56 -04004691 if (!cgroup_on_dfl(cgrp)) {
4692 cgrp->subtree_control = parent->subtree_control;
4693 cgroup_refresh_child_subsys_mask(cgrp);
4694 }
Tejun Heof392e512014-04-23 11:13:14 -04004695
Tejun Heo2bd59d42014-02-11 11:52:49 -05004696 kernfs_activate(kn);
4697
Tejun Heoba0f4d72014-05-13 12:19:22 -04004698 ret = 0;
4699 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004700
Tejun Heoba0f4d72014-05-13 12:19:22 -04004701out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004702 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004703out_cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004704 percpu_ref_exit(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004705out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004706 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004707out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004708 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004709 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004710
4711out_destroy:
4712 cgroup_destroy_locked(cgrp);
4713 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004714}
4715
Tejun Heo223dbc32013-08-13 20:22:50 -04004716/*
4717 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004718 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4719 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004720 */
4721static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004722{
Tejun Heo223dbc32013-08-13 20:22:50 -04004723 struct cgroup_subsys_state *css =
4724 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004725
Tejun Heof20104d2013-08-13 20:22:50 -04004726 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004727 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004728 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004729
Tejun Heo09a503ea2013-08-13 20:22:50 -04004730 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004731}
4732
Tejun Heo223dbc32013-08-13 20:22:50 -04004733/* css kill confirmation processing requires process context, bounce */
4734static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004735{
4736 struct cgroup_subsys_state *css =
4737 container_of(ref, struct cgroup_subsys_state, refcnt);
4738
Tejun Heo223dbc32013-08-13 20:22:50 -04004739 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004740 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004741}
4742
Tejun Heof392e512014-04-23 11:13:14 -04004743/**
4744 * kill_css - destroy a css
4745 * @css: css to destroy
4746 *
4747 * This function initiates destruction of @css by removing cgroup interface
4748 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004749 * asynchronously once css_tryget_online() is guaranteed to fail and when
4750 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004751 */
4752static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004753{
Tejun Heo01f64742014-05-13 12:19:23 -04004754 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004755
Tejun Heo2bd59d42014-02-11 11:52:49 -05004756 /*
4757 * This must happen before css is disassociated with its cgroup.
4758 * See seq_css() for details.
4759 */
Tejun Heoaec25022014-02-08 10:36:58 -05004760 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004761
Tejun Heoedae0c32013-08-13 20:22:51 -04004762 /*
4763 * Killing would put the base ref, but we need to keep it alive
4764 * until after ->css_offline().
4765 */
4766 css_get(css);
4767
4768 /*
4769 * cgroup core guarantees that, by the time ->css_offline() is
4770 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004771 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004772 * proceed to offlining css's because percpu_ref_kill() doesn't
4773 * guarantee that the ref is seen as killed on all CPUs on return.
4774 *
4775 * Use percpu_ref_kill_and_confirm() to get notifications as each
4776 * css is confirmed to be seen as killed on all CPUs.
4777 */
4778 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004779}
4780
4781/**
4782 * cgroup_destroy_locked - the first stage of cgroup destruction
4783 * @cgrp: cgroup to be destroyed
4784 *
4785 * css's make use of percpu refcnts whose killing latency shouldn't be
4786 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004787 * guarantee that css_tryget_online() won't succeed by the time
4788 * ->css_offline() is invoked. To satisfy all the requirements,
4789 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004790 *
4791 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4792 * userland visible parts and start killing the percpu refcnts of
4793 * css's. Set up so that the next stage will be kicked off once all
4794 * the percpu refcnts are confirmed to be killed.
4795 *
4796 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4797 * rest of destruction. Once all cgroup references are gone, the
4798 * cgroup is RCU-freed.
4799 *
4800 * This function implements s1. After this step, @cgrp is gone as far as
4801 * the userland is concerned and a new cgroup with the same name may be
4802 * created. As cgroup doesn't care about the names internally, this
4803 * doesn't cause any problem.
4804 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004805static int cgroup_destroy_locked(struct cgroup *cgrp)
4806 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004807{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004808 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004809 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004810 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004811
Tejun Heo42809dd2012-11-19 08:13:37 -08004812 lockdep_assert_held(&cgroup_mutex);
4813
Tejun Heoddd69142013-06-12 21:04:54 -07004814 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004815 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004816 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004817 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004818 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004819 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004820 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004821 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004822 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004823
Tejun Heo1a90dd52012-11-05 09:16:59 -08004824 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004825 * Make sure there's no live children. We can't test emptiness of
4826 * ->self.children as dead children linger on it while being
4827 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004828 */
Tejun Heof3d46502014-05-16 13:22:52 -04004829 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004830 return -EBUSY;
4831
4832 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004833 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004834 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004835 */
Tejun Heo184faf32014-05-16 13:22:51 -04004836 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004837
Tejun Heo249f3462014-05-14 09:15:01 -04004838 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004839 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004840 kill_css(css);
4841
Tejun Heo455050d2013-06-13 19:27:41 -07004842 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004843 * Remove @cgrp directory along with the base files. @cgrp has an
4844 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004845 */
Tejun Heo01f64742014-05-13 12:19:23 -04004846 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004847
Tejun Heod51f39b2014-05-16 13:22:48 -04004848 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004849
Tejun Heo249f3462014-05-14 09:15:01 -04004850 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004851 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004852
Tejun Heoea15f8c2013-06-13 19:27:42 -07004853 return 0;
4854};
4855
Tejun Heo2bd59d42014-02-11 11:52:49 -05004856static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004857{
Tejun Heoa9746d82014-05-13 12:19:22 -04004858 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004859 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004860
Tejun Heoa9746d82014-05-13 12:19:22 -04004861 cgrp = cgroup_kn_lock_live(kn);
4862 if (!cgrp)
4863 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004864
Tejun Heoa9746d82014-05-13 12:19:22 -04004865 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004866
Tejun Heoa9746d82014-05-13 12:19:22 -04004867 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004868 return ret;
4869}
4870
Tejun Heo2bd59d42014-02-11 11:52:49 -05004871static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4872 .remount_fs = cgroup_remount,
4873 .show_options = cgroup_show_options,
4874 .mkdir = cgroup_mkdir,
4875 .rmdir = cgroup_rmdir,
4876 .rename = cgroup_rename,
4877};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004878
Tejun Heo15a4c832014-05-04 15:09:14 -04004879static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004880{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004881 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004882
4883 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004884
Tejun Heo648bb562012-11-19 08:13:36 -08004885 mutex_lock(&cgroup_mutex);
4886
Tejun Heo15a4c832014-05-04 15:09:14 -04004887 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004888 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004889
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004890 /* Create the root cgroup state for this subsystem */
4891 ss->root = &cgrp_dfl_root;
4892 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004893 /* We don't handle early failures gracefully */
4894 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004895 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004896
4897 /*
4898 * Root csses are never destroyed and we can't initialize
4899 * percpu_ref during early init. Disable refcnting.
4900 */
4901 css->flags |= CSS_NO_REF;
4902
Tejun Heo15a4c832014-05-04 15:09:14 -04004903 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004904 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004905 css->id = 1;
4906 } else {
4907 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4908 BUG_ON(css->id < 0);
4909 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004910
Li Zefane8d55fd2008-04-29 01:00:13 -07004911 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004912 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004913 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004914 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004915 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004916
4917 need_forkexit_callback |= ss->fork || ss->exit;
4918
Li Zefane8d55fd2008-04-29 01:00:13 -07004919 /* At system boot, before all subsystems have been
4920 * registered, no tasks have been forked, so we don't
4921 * need to invoke fork callbacks here. */
4922 BUG_ON(!list_empty(&init_task.tasks));
4923
Tejun Heoae7f1642013-08-13 20:22:50 -04004924 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004925
Tejun Heo648bb562012-11-19 08:13:36 -08004926 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004927}
4928
4929/**
Li Zefana043e3b2008-02-23 15:24:09 -08004930 * cgroup_init_early - cgroup initialization at system boot
4931 *
4932 * Initialize cgroups at system boot, and initialize any
4933 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004934 */
4935int __init cgroup_init_early(void)
4936{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04004937 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07004938 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004939 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004940
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004941 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004942 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4943
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004944 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004945
Tejun Heo3ed80a62014-02-08 10:36:58 -05004946 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004947 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004948 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4949 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004950 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004951 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4952 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004953
Tejun Heoaec25022014-02-08 10:36:58 -05004954 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004955 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004956
4957 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04004958 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004959 }
4960 return 0;
4961}
4962
4963/**
Li Zefana043e3b2008-02-23 15:24:09 -08004964 * cgroup_init - cgroup initialization
4965 *
4966 * Register cgroup filesystem and /proc file, and initialize
4967 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004968 */
4969int __init cgroup_init(void)
4970{
Tejun Heo30159ec2013-06-25 11:53:37 -07004971 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004972 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04004973 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07004974
Tejun Heod59cfc02015-05-13 16:35:17 -04004975 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heoa14c6872014-07-15 11:05:09 -04004976 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
4977 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004978
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004979 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004980
Tejun Heo82fe9b02013-06-25 11:53:37 -07004981 /* Add init_css_set to the hash table */
4982 key = css_set_hash(init_css_set.subsys);
4983 hash_add(css_set_table, &init_css_set.hlist, key);
4984
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004985 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07004986
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004987 mutex_unlock(&cgroup_mutex);
4988
Tejun Heo172a2c062014-03-19 10:23:53 -04004989 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04004990 if (ss->early_init) {
4991 struct cgroup_subsys_state *css =
4992 init_css_set.subsys[ss->id];
4993
4994 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
4995 GFP_KERNEL);
4996 BUG_ON(css->id < 0);
4997 } else {
4998 cgroup_init_subsys(ss, false);
4999 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005000
Tejun Heo2d8f2432014-04-23 11:13:15 -04005001 list_add_tail(&init_css_set.e_cset_node[ssid],
5002 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005003
5004 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005005 * Setting dfl_root subsys_mask needs to consider the
5006 * disabled flag and cftype registration needs kmalloc,
5007 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005008 */
Tejun Heoa8ddc822014-07-15 11:05:10 -04005009 if (ss->disabled)
5010 continue;
5011
5012 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5013
5014 if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes)
5015 ss->dfl_cftypes = ss->legacy_cftypes;
5016
Tejun Heo5de4fa12014-07-15 11:05:10 -04005017 if (!ss->dfl_cftypes)
5018 cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id;
5019
Tejun Heoa8ddc822014-07-15 11:05:10 -04005020 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5021 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5022 } else {
5023 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5024 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005025 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005026
5027 if (ss->bind)
5028 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005029 }
Greg KH676db4a2010-08-05 13:53:35 -07005030
Paul Menageddbcc7e2007-10-18 23:39:30 -07005031 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05005032 if (!cgroup_kobj)
5033 return -ENOMEM;
Paul Menagea4243162007-10-18 23:39:35 -07005034
5035 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005036 if (err < 0) {
5037 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05005038 return err;
Paul Menagea4243162007-10-18 23:39:35 -07005039 }
5040
5041 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05005042 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005043}
Paul Menageb4f48b62007-10-18 23:39:33 -07005044
Tejun Heoe5fca242013-11-22 17:14:39 -05005045static int __init cgroup_wq_init(void)
5046{
5047 /*
5048 * There isn't much point in executing destruction path in
5049 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005050 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005051 *
5052 * We would prefer to do this in cgroup_init() above, but that
5053 * is called before init_workqueues(): so leave this until after.
5054 */
Tejun Heo1a115332014-02-12 19:06:19 -05005055 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005056 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005057
5058 /*
5059 * Used to destroy pidlists and separate to serve as flush domain.
5060 * Cap @max_active to 1 too.
5061 */
5062 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5063 0, 1);
5064 BUG_ON(!cgroup_pidlist_destroy_wq);
5065
Tejun Heoe5fca242013-11-22 17:14:39 -05005066 return 0;
5067}
5068core_initcall(cgroup_wq_init);
5069
Paul Menagea4243162007-10-18 23:39:35 -07005070/*
5071 * proc_cgroup_show()
5072 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5073 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005074 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005075int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5076 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005077{
Tejun Heoe61734c2014-02-12 09:29:50 -05005078 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005079 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005080 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005081
5082 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005083 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005084 if (!buf)
5085 goto out;
5086
Paul Menagea4243162007-10-18 23:39:35 -07005087 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05005088 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005089
Tejun Heo985ed672014-03-19 10:23:53 -04005090 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005091 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005092 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005093 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005094
Tejun Heoa2dd4242014-03-19 10:23:55 -04005095 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005096 continue;
5097
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005098 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05005099 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04005100 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05005101 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005102 if (strlen(root->name))
5103 seq_printf(m, "%sname=%s", count ? "," : "",
5104 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005105 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07005106 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05005107 path = cgroup_path(cgrp, buf, PATH_MAX);
5108 if (!path) {
5109 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07005110 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05005111 }
5112 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07005113 seq_putc(m, '\n');
5114 }
5115
Zefan Li006f4ac2014-09-18 16:03:15 +08005116 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005117out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05005118 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005119 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005120 kfree(buf);
5121out:
5122 return retval;
5123}
5124
Paul Menagea4243162007-10-18 23:39:35 -07005125/* Display information about each subsystem and each hierarchy */
5126static int proc_cgroupstats_show(struct seq_file *m, void *v)
5127{
Tejun Heo30159ec2013-06-25 11:53:37 -07005128 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005129 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005130
Paul Menage8bab8dd2008-04-04 14:29:57 -07005131 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005132 /*
5133 * ideally we don't want subsystems moving around while we do this.
5134 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5135 * subsys/hierarchy state.
5136 */
Paul Menagea4243162007-10-18 23:39:35 -07005137 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005138
5139 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005140 seq_printf(m, "%s\t%d\t%d\t%d\n",
5141 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05005142 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07005143
Paul Menagea4243162007-10-18 23:39:35 -07005144 mutex_unlock(&cgroup_mutex);
5145 return 0;
5146}
5147
5148static int cgroupstats_open(struct inode *inode, struct file *file)
5149{
Al Viro9dce07f2008-03-29 03:07:28 +00005150 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005151}
5152
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005153static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005154 .open = cgroupstats_open,
5155 .read = seq_read,
5156 .llseek = seq_lseek,
5157 .release = single_release,
5158};
5159
Paul Menageb4f48b62007-10-18 23:39:33 -07005160/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005161 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005162 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005163 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005164 * A task is associated with the init_css_set until cgroup_post_fork()
5165 * attaches it to the parent's css_set. Empty cg_list indicates that
5166 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005167 */
5168void cgroup_fork(struct task_struct *child)
5169{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005170 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005171 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005172}
5173
5174/**
Li Zefana043e3b2008-02-23 15:24:09 -08005175 * cgroup_post_fork - called on a new task after adding it to the task list
5176 * @child: the task in question
5177 *
Tejun Heo5edee612012-10-16 15:03:14 -07005178 * Adds the task to the list running through its css_set if necessary and
5179 * call the subsystem fork() callbacks. Has to be after the task is
5180 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005181 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005182 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005183 */
Paul Menage817929e2007-10-18 23:39:36 -07005184void cgroup_post_fork(struct task_struct *child)
5185{
Tejun Heo30159ec2013-06-25 11:53:37 -07005186 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005187 int i;
5188
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005189 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005190 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005191 * function sets use_task_css_set_links before grabbing
5192 * tasklist_lock and we just went through tasklist_lock to add
5193 * @child, it's guaranteed that either we see the set
5194 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5195 * @child during its iteration.
5196 *
5197 * If we won the race, @child is associated with %current's
5198 * css_set. Grabbing css_set_rwsem guarantees both that the
5199 * association is stable, and, on completion of the parent's
5200 * migration, @child is visible in the source of migration or
5201 * already in the destination cgroup. This guarantee is necessary
5202 * when implementing operations which need to migrate all tasks of
5203 * a cgroup to another.
5204 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005205 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005206 * will remain in init_css_set. This is safe because all tasks are
5207 * in the init_css_set before cg_links is enabled and there's no
5208 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005209 */
Paul Menage817929e2007-10-18 23:39:36 -07005210 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005211 struct css_set *cset;
5212
Tejun Heo96d365e2014-02-13 06:58:40 -05005213 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005214 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005215 if (list_empty(&child->cg_list)) {
5216 rcu_assign_pointer(child->cgroups, cset);
5217 list_add(&child->cg_list, &cset->tasks);
5218 get_css_set(cset);
5219 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005220 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07005221 }
Tejun Heo5edee612012-10-16 15:03:14 -07005222
5223 /*
5224 * Call ss->fork(). This must happen after @child is linked on
5225 * css_set; otherwise, @child might change state between ->fork()
5226 * and addition to css_set.
5227 */
5228 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005229 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07005230 if (ss->fork)
5231 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07005232 }
Paul Menage817929e2007-10-18 23:39:36 -07005233}
Tejun Heo5edee612012-10-16 15:03:14 -07005234
Paul Menage817929e2007-10-18 23:39:36 -07005235/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005236 * cgroup_exit - detach cgroup from exiting task
5237 * @tsk: pointer to task_struct of exiting process
5238 *
5239 * Description: Detach cgroup from @tsk and release it.
5240 *
5241 * Note that cgroups marked notify_on_release force every task in
5242 * them to take the global cgroup_mutex mutex when exiting.
5243 * This could impact scaling on very large systems. Be reluctant to
5244 * use notify_on_release cgroups where very high task exit scaling
5245 * is required on large systems.
5246 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005247 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5248 * call cgroup_exit() while the task is still competent to handle
5249 * notify_on_release(), then leave the task attached to the root cgroup in
5250 * each hierarchy for the remainder of its exit. No need to bother with
5251 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005252 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005253 */
Li Zefan1ec41832014-03-28 15:22:19 +08005254void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005255{
Tejun Heo30159ec2013-06-25 11:53:37 -07005256 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005257 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005258 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005259 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005260
5261 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005262 * Unlink from @tsk from its css_set. As migration path can't race
5263 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005264 */
5265 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005266 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005267 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005268 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005269 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005270 }
5271
Paul Menageb4f48b62007-10-18 23:39:33 -07005272 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005273 cset = task_css_set(tsk);
5274 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005275
Li Zefan1ec41832014-03-28 15:22:19 +08005276 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005277 /* see cgroup_post_fork() for details */
5278 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005279 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04005280 struct cgroup_subsys_state *old_css = cset->subsys[i];
5281 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005282
Tejun Heoeb954192013-08-08 20:11:23 -04005283 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005284 }
5285 }
5286 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005287
Tejun Heoeaf797a2014-02-25 10:04:03 -05005288 if (put_cset)
Zefan Lia25eb522014-09-19 16:51:00 +08005289 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005290}
Paul Menage697f4162007-10-18 23:39:34 -07005291
Paul Menagebd89aab2007-10-18 23:40:44 -07005292static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005293{
Zefan Lia25eb522014-09-19 16:51:00 +08005294 if (notify_on_release(cgrp) && !cgroup_has_tasks(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005295 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5296 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005297}
5298
Paul Menage81a6a5c2007-10-18 23:39:38 -07005299/*
5300 * Notify userspace when a cgroup is released, by running the
5301 * configured release agent with the name of the cgroup (path
5302 * relative to the root of cgroup file system) as the argument.
5303 *
5304 * Most likely, this user command will try to rmdir this cgroup.
5305 *
5306 * This races with the possibility that some other task will be
5307 * attached to this cgroup before it is removed, or that some other
5308 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5309 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5310 * unused, and this cgroup will be reprieved from its death sentence,
5311 * to continue to serve a useful existence. Next time it's released,
5312 * we will get notified again, if it still has 'notify_on_release' set.
5313 *
5314 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5315 * means only wait until the task is successfully execve()'d. The
5316 * separate release agent task is forked by call_usermodehelper(),
5317 * then control in this thread returns here, without waiting for the
5318 * release agent task. We don't bother to wait because the caller of
5319 * this routine has no use for the exit status of the release agent
5320 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005321 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005322static void cgroup_release_agent(struct work_struct *work)
5323{
Zefan Li971ff492014-09-18 16:06:19 +08005324 struct cgroup *cgrp =
5325 container_of(work, struct cgroup, release_agent_work);
5326 char *pathbuf = NULL, *agentbuf = NULL, *path;
5327 char *argv[3], *envp[3];
5328
Paul Menage81a6a5c2007-10-18 23:39:38 -07005329 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005330
Zefan Li971ff492014-09-18 16:06:19 +08005331 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5332 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5333 if (!pathbuf || !agentbuf)
5334 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005335
Zefan Li971ff492014-09-18 16:06:19 +08005336 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5337 if (!path)
5338 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005339
Zefan Li971ff492014-09-18 16:06:19 +08005340 argv[0] = agentbuf;
5341 argv[1] = path;
5342 argv[2] = NULL;
5343
5344 /* minimal command environment */
5345 envp[0] = "HOME=/";
5346 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5347 envp[2] = NULL;
5348
Paul Menage81a6a5c2007-10-18 23:39:38 -07005349 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005350 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005351 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005352out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005353 mutex_unlock(&cgroup_mutex);
5354out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005355 kfree(agentbuf);
5356 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005357}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005358
5359static int __init cgroup_disable(char *str)
5360{
Tejun Heo30159ec2013-06-25 11:53:37 -07005361 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005362 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005363 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005364
5365 while ((token = strsep(&str, ",")) != NULL) {
5366 if (!*token)
5367 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005368
Tejun Heo3ed80a62014-02-08 10:36:58 -05005369 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005370 if (!strcmp(token, ss->name)) {
5371 ss->disabled = 1;
5372 printk(KERN_INFO "Disabling %s control group"
5373 " subsystem\n", ss->name);
5374 break;
5375 }
5376 }
5377 }
5378 return 1;
5379}
5380__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005381
Tejun Heoa8ddc822014-07-15 11:05:10 -04005382static int __init cgroup_set_legacy_files_on_dfl(char *str)
5383{
5384 printk("cgroup: using legacy files on the default hierarchy\n");
5385 cgroup_legacy_files_on_dfl = true;
5386 return 0;
5387}
5388__setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl);
5389
Tejun Heob77d7b62013-08-13 11:01:54 -04005390/**
Tejun Heoec903c02014-05-13 12:11:01 -04005391 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005392 * @dentry: directory dentry of interest
5393 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005394 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005395 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5396 * to get the corresponding css and return it. If such css doesn't exist
5397 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005398 */
Tejun Heoec903c02014-05-13 12:11:01 -04005399struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5400 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005401{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005402 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5403 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005404 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005405
Tejun Heo35cf0832013-08-26 18:40:56 -04005406 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005407 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5408 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005409 return ERR_PTR(-EBADF);
5410
Tejun Heo5a17f542014-02-11 11:52:47 -05005411 rcu_read_lock();
5412
Tejun Heo2bd59d42014-02-11 11:52:49 -05005413 /*
5414 * This path doesn't originate from kernfs and @kn could already
5415 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005416 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005417 */
5418 cgrp = rcu_dereference(kn->priv);
5419 if (cgrp)
5420 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005421
Tejun Heoec903c02014-05-13 12:11:01 -04005422 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005423 css = ERR_PTR(-ENOENT);
5424
5425 rcu_read_unlock();
5426 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005427}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005428
Li Zefan1cb650b2013-08-19 10:05:24 +08005429/**
5430 * css_from_id - lookup css by id
5431 * @id: the cgroup id
5432 * @ss: cgroup subsys to be looked into
5433 *
5434 * Returns the css if there's valid one with @id, otherwise returns NULL.
5435 * Should be called under rcu_read_lock().
5436 */
5437struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5438{
Tejun Heo6fa49182014-05-04 15:09:13 -04005439 WARN_ON_ONCE(!rcu_read_lock_held());
Vladimir Davydovadbe4272015-04-15 16:13:00 -07005440 return id > 0 ? idr_find(&ss->css_idr, id) : NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005441}
5442
Paul Menagefe693432009-09-23 15:56:20 -07005443#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005444static struct cgroup_subsys_state *
5445debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005446{
5447 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5448
5449 if (!css)
5450 return ERR_PTR(-ENOMEM);
5451
5452 return css;
5453}
5454
Tejun Heoeb954192013-08-08 20:11:23 -04005455static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005456{
Tejun Heoeb954192013-08-08 20:11:23 -04005457 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005458}
5459
Tejun Heo182446d2013-08-08 20:11:24 -04005460static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5461 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005462{
Tejun Heo182446d2013-08-08 20:11:24 -04005463 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005464}
5465
Tejun Heo182446d2013-08-08 20:11:24 -04005466static u64 current_css_set_read(struct cgroup_subsys_state *css,
5467 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005468{
5469 return (u64)(unsigned long)current->cgroups;
5470}
5471
Tejun Heo182446d2013-08-08 20:11:24 -04005472static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005473 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005474{
5475 u64 count;
5476
5477 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005478 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005479 rcu_read_unlock();
5480 return count;
5481}
5482
Tejun Heo2da8ca82013-12-05 12:28:04 -05005483static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005484{
Tejun Heo69d02062013-06-12 21:04:50 -07005485 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005486 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005487 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005488
Tejun Heoe61734c2014-02-12 09:29:50 -05005489 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5490 if (!name_buf)
5491 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005492
Tejun Heo96d365e2014-02-13 06:58:40 -05005493 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005494 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005495 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005496 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005497 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005498
Tejun Heoa2dd4242014-03-19 10:23:55 -04005499 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005500 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005501 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005502 }
5503 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005504 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005505 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005506 return 0;
5507}
5508
5509#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005510static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005511{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005512 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005513 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005514
Tejun Heo96d365e2014-02-13 06:58:40 -05005515 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005516 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005517 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005518 struct task_struct *task;
5519 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005520
Tejun Heo5abb8852013-06-12 21:04:49 -07005521 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005522
Tejun Heo5abb8852013-06-12 21:04:49 -07005523 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005524 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5525 goto overflow;
5526 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005527 }
Tejun Heoc7561122014-02-25 10:04:01 -05005528
5529 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5530 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5531 goto overflow;
5532 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5533 }
5534 continue;
5535 overflow:
5536 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005537 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005538 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005539 return 0;
5540}
5541
Tejun Heo182446d2013-08-08 20:11:24 -04005542static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005543{
Zefan Lia25eb522014-09-19 16:51:00 +08005544 return (!cgroup_has_tasks(css->cgroup) &&
5545 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07005546}
5547
5548static struct cftype debug_files[] = {
5549 {
Paul Menagefe693432009-09-23 15:56:20 -07005550 .name = "taskcount",
5551 .read_u64 = debug_taskcount_read,
5552 },
5553
5554 {
5555 .name = "current_css_set",
5556 .read_u64 = current_css_set_read,
5557 },
5558
5559 {
5560 .name = "current_css_set_refcount",
5561 .read_u64 = current_css_set_refcount_read,
5562 },
5563
5564 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005565 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005566 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005567 },
5568
5569 {
5570 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005571 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005572 },
5573
5574 {
Paul Menagefe693432009-09-23 15:56:20 -07005575 .name = "releasable",
5576 .read_u64 = releasable_read,
5577 },
Paul Menagefe693432009-09-23 15:56:20 -07005578
Tejun Heo4baf6e32012-04-01 12:09:55 -07005579 { } /* terminate */
5580};
Paul Menagefe693432009-09-23 15:56:20 -07005581
Tejun Heo073219e2014-02-08 10:36:58 -05005582struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005583 .css_alloc = debug_css_alloc,
5584 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04005585 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005586};
5587#endif /* CONFIG_CGROUP_DEBUG */