blob: f41d164a3d54492661eedd41d5a2f253fc1bebf0 [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>
Paul Menageddbcc7e2007-10-18 23:39:30 -070049#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070050#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070051#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070052#include <linux/delayacct.h>
53#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080054#include <linux/hashtable.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070055#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070056#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070057#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020058#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050059#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070060
Arun Sharma600634972011-07-26 16:09:06 -070061#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070062
Tejun Heoe25e2cb2011-12-12 18:12:21 -080063/*
Tejun Heob1a21362013-11-29 10:42:58 -050064 * pidlists linger the following amount before being destroyed. The goal
65 * is avoiding frequent destruction in the middle of consecutive read calls
66 * Expiring in the middle is a performance problem not a correctness one.
67 * 1 sec should be enough.
68 */
69#define CGROUP_PIDLIST_DESTROY_DELAY HZ
70
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050071#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
72 MAX_CFTYPE_NAME + 2)
73
Tejun Heob1a21362013-11-29 10:42:58 -050074/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080075 * cgroup_mutex is the master lock. Any modification to cgroup or its
76 * hierarchy must be performed while holding it.
77 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050078 * css_set_rwsem protects task->cgroups pointer, the list of css_set
79 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080080 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050081 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
82 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083 */
Tejun Heo22194492013-04-07 09:29:51 -070084#ifdef CONFIG_PROVE_RCU
85DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050086DECLARE_RWSEM(css_set_rwsem);
87EXPORT_SYMBOL_GPL(cgroup_mutex);
88EXPORT_SYMBOL_GPL(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070089#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070090static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050091static DECLARE_RWSEM(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070092#endif
93
Tejun Heo69e943b2014-02-08 10:36:58 -050094/*
Tejun Heo15a4c832014-05-04 15:09:14 -040095 * Protects cgroup_idr and css_idr so that IDs can be released without
96 * grabbing cgroup_mutex.
Tejun Heo6fa49182014-05-04 15:09:13 -040097 */
98static DEFINE_SPINLOCK(cgroup_idr_lock);
99
100/*
Tejun Heo69e943b2014-02-08 10:36:58 -0500101 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
102 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
103 */
104static DEFINE_SPINLOCK(release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700105
Tejun Heo8353da12014-05-13 12:19:23 -0400106#define cgroup_assert_mutex_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500107 rcu_lockdep_assert(rcu_read_lock_held() || \
108 lockdep_is_held(&cgroup_mutex), \
Tejun Heo8353da12014-05-13 12:19:23 -0400109 "cgroup_mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500110
Ben Blumaae8aab2010-03-10 15:22:07 -0800111/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500112 * cgroup destruction makes heavy use of work items and there can be a lot
113 * of concurrent destructions. Use a separate workqueue so that cgroup
114 * destruction work items don't end up filling up max_active of system_wq
115 * which may lead to deadlock.
116 */
117static struct workqueue_struct *cgroup_destroy_wq;
118
119/*
Tejun Heob1a21362013-11-29 10:42:58 -0500120 * pidlist destructions need to be flushed on cgroup destruction. Use a
121 * separate workqueue as flush domain.
122 */
123static struct workqueue_struct *cgroup_pidlist_destroy_wq;
124
Tejun Heo3ed80a62014-02-08 10:36:58 -0500125/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500126#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500127static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700128#include <linux/cgroup_subsys.h>
129};
Tejun Heo073219e2014-02-08 10:36:58 -0500130#undef SUBSYS
131
132/* array of cgroup subsystem names */
133#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
134static const char *cgroup_subsys_name[] = {
135#include <linux/cgroup_subsys.h>
136};
137#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700138
Paul Menageddbcc7e2007-10-18 23:39:30 -0700139/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400140 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700141 * unattached - it never has more than a single cgroup, and all tasks are
142 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700143 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400144struct cgroup_root cgrp_dfl_root;
Tejun Heo9871bf92013-06-24 15:21:47 -0700145
Tejun Heoa2dd4242014-03-19 10:23:55 -0400146/*
147 * The default hierarchy always exists but is hidden until mounted for the
148 * first time. This is for backward compatibility.
149 */
150static bool cgrp_dfl_root_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700151
Tejun Heoa8ddc822014-07-15 11:05:10 -0400152/*
153 * Set by the boot param of the same name and makes subsystems with NULL
154 * ->dfl_files to use ->legacy_files on the default hierarchy.
155 */
156static bool cgroup_legacy_files_on_dfl;
157
Tejun Heo5533e012014-05-14 19:33:07 -0400158/* some controllers are not supported in the default hierarchy */
159static const unsigned int cgrp_dfl_root_inhibit_ss_mask = 0
160#ifdef CONFIG_CGROUP_DEBUG
161 | (1 << debug_cgrp_id)
162#endif
163 ;
164
Paul Menageddbcc7e2007-10-18 23:39:30 -0700165/* The list of hierarchy roots */
166
Tejun Heo9871bf92013-06-24 15:21:47 -0700167static LIST_HEAD(cgroup_roots);
168static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700169
Tejun Heo3417ae12014-02-08 10:37:01 -0500170/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700171static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700172
Li Zefan794611a2013-06-18 18:53:53 +0800173/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400174 * Assign a monotonically increasing serial number to csses. It guarantees
175 * cgroups with bigger numbers are newer than those with smaller numbers.
176 * Also, as csses are always appended to the parent's ->children list, it
177 * guarantees that sibling csses are always sorted in the ascending serial
178 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800179 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400180static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800181
Paul Menageddbcc7e2007-10-18 23:39:30 -0700182/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800183 * check for fork/exit handlers to call. This avoids us having to do
184 * extra work in the fork/exit path if none of the subsystems need to
185 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700186 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700187static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700188
Tejun Heoa14c6872014-07-15 11:05:09 -0400189static struct cftype cgroup_dfl_base_files[];
190static struct cftype cgroup_legacy_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700191
Tejun Heo59f52962014-02-11 11:52:49 -0500192static void cgroup_put(struct cgroup *cgrp);
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400193static int rebind_subsystems(struct cgroup_root *dst_root,
Tejun Heo69dfa002014-05-04 15:09:13 -0400194 unsigned int ss_mask);
Tejun Heo42809dd2012-11-19 08:13:37 -0800195static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heof63070d2014-07-08 18:02:57 -0400196static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
197 bool visible);
Tejun Heo9d755d32014-05-14 09:15:02 -0400198static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400199static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400200static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
201 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500202static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800203
Tejun Heo6fa49182014-05-04 15:09:13 -0400204/* IDR wrappers which synchronize using cgroup_idr_lock */
205static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
206 gfp_t gfp_mask)
207{
208 int ret;
209
210 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400211 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400212 ret = idr_alloc(idr, ptr, start, end, gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400213 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400214 idr_preload_end();
215 return ret;
216}
217
218static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
219{
220 void *ret;
221
Tejun Heo54504e92014-05-13 12:10:59 -0400222 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400223 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400224 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400225 return ret;
226}
227
228static void cgroup_idr_remove(struct idr *idr, int id)
229{
Tejun Heo54504e92014-05-13 12:10:59 -0400230 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400231 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400232 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400233}
234
Tejun Heod51f39b2014-05-16 13:22:48 -0400235static struct cgroup *cgroup_parent(struct cgroup *cgrp)
236{
237 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
238
239 if (parent_css)
240 return container_of(parent_css, struct cgroup, self);
241 return NULL;
242}
243
Tejun Heo95109b62013-08-08 20:11:27 -0400244/**
245 * cgroup_css - obtain a cgroup's css for the specified subsystem
246 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400247 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400248 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400249 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
250 * function must be called either under cgroup_mutex or rcu_read_lock() and
251 * the caller is responsible for pinning the returned css if it wants to
252 * keep accessing it outside the said locks. This function may return
253 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400254 */
255static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400256 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400257{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400258 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500259 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500260 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400261 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400262 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400263}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700264
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400265/**
266 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
267 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400268 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400269 *
270 * Similar to cgroup_css() but returns the effctive css, which is defined
271 * as the matching css of the nearest ancestor including self which has @ss
272 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
273 * function is guaranteed to return non-NULL css.
274 */
275static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
276 struct cgroup_subsys *ss)
277{
278 lockdep_assert_held(&cgroup_mutex);
279
280 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400281 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400282
283 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
284 return NULL;
285
Tejun Heod51f39b2014-05-16 13:22:48 -0400286 while (cgroup_parent(cgrp) &&
287 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
288 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400289
290 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700291}
292
Paul Menageddbcc7e2007-10-18 23:39:30 -0700293/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700294static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700295{
Tejun Heo184faf32014-05-16 13:22:51 -0400296 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700297}
298
Tejun Heob4168642014-05-13 12:16:21 -0400299struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500300{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500301 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400302 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500303
304 /*
305 * This is open and unprotected implementation of cgroup_css().
306 * seq_css() is only called from a kernfs file operation which has
307 * an active reference on the file. Because all the subsystem
308 * files are drained before a css is disassociated with a cgroup,
309 * the matching css from the cgroup's subsys table is guaranteed to
310 * be and stay valid until the enclosing operation is complete.
311 */
312 if (cft->ss)
313 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
314 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400315 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500316}
Tejun Heob4168642014-05-13 12:16:21 -0400317EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500318
Li Zefan78574cf2013-04-08 19:00:38 -0700319/**
320 * cgroup_is_descendant - test ancestry
321 * @cgrp: the cgroup to be tested
322 * @ancestor: possible ancestor of @cgrp
323 *
324 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
325 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
326 * and @ancestor are accessible.
327 */
328bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
329{
330 while (cgrp) {
331 if (cgrp == ancestor)
332 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400333 cgrp = cgroup_parent(cgrp);
Li Zefan78574cf2013-04-08 19:00:38 -0700334 }
335 return false;
336}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700337
Adrian Bunke9685a02008-02-07 00:13:46 -0800338static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700339{
340 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700341 (1 << CGRP_RELEASABLE) |
342 (1 << CGRP_NOTIFY_ON_RELEASE);
343 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700344}
345
Adrian Bunke9685a02008-02-07 00:13:46 -0800346static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700347{
Paul Menagebd89aab2007-10-18 23:40:44 -0700348 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700349}
350
Tejun Heo30159ec2013-06-25 11:53:37 -0700351/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500352 * for_each_css - iterate all css's of a cgroup
353 * @css: the iteration cursor
354 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
355 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700356 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400357 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700358 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500359#define for_each_css(css, ssid, cgrp) \
360 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
361 if (!((css) = rcu_dereference_check( \
362 (cgrp)->subsys[(ssid)], \
363 lockdep_is_held(&cgroup_mutex)))) { } \
364 else
365
366/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400367 * for_each_e_css - iterate all effective css's of a cgroup
368 * @css: the iteration cursor
369 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
370 * @cgrp: the target cgroup to iterate css's of
371 *
372 * Should be called under cgroup_[tree_]mutex.
373 */
374#define for_each_e_css(css, ssid, cgrp) \
375 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
376 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
377 ; \
378 else
379
380/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500381 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700382 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500383 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700384 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500385#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500386 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
387 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700388
Tejun Heo985ed672014-03-19 10:23:53 -0400389/* iterate across the hierarchies */
390#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700391 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700392
Tejun Heof8f22e52014-04-23 11:13:16 -0400393/* iterate over child cgrps, lock should be held throughout iteration */
394#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400395 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400396 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400397 cgroup_is_dead(child); })) \
398 ; \
399 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700400
Paul Menage81a6a5c2007-10-18 23:39:38 -0700401/* the list of cgroups eligible for automatic release. Protected by
402 * release_list_lock */
403static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200404static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700405static void cgroup_release_agent(struct work_struct *work);
406static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700407static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700408
Tejun Heo69d02062013-06-12 21:04:50 -0700409/*
410 * A cgroup can be associated with multiple css_sets as different tasks may
411 * belong to different cgroups on different hierarchies. In the other
412 * direction, a css_set is naturally associated with multiple cgroups.
413 * This M:N relationship is represented by the following link structure
414 * which exists for each association and allows traversing the associations
415 * from both sides.
416 */
417struct cgrp_cset_link {
418 /* the cgroup and css_set this link associates */
419 struct cgroup *cgrp;
420 struct css_set *cset;
421
422 /* list of cgrp_cset_links anchored at cgrp->cset_links */
423 struct list_head cset_link;
424
425 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
426 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700427};
428
Tejun Heo172a2c062014-03-19 10:23:53 -0400429/*
430 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700431 * hierarchies being mounted. It contains a pointer to the root state
432 * for each subsystem. Also used to anchor the list of css_sets. Not
433 * reference-counted, to improve performance when child cgroups
434 * haven't been created.
435 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400436struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400437 .refcount = ATOMIC_INIT(1),
438 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
439 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
440 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
441 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
442 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
443};
Paul Menage817929e2007-10-18 23:39:36 -0700444
Tejun Heo172a2c062014-03-19 10:23:53 -0400445static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700446
Tejun Heo842b5972014-04-25 18:28:02 -0400447/**
448 * cgroup_update_populated - updated populated count of a cgroup
449 * @cgrp: the target cgroup
450 * @populated: inc or dec populated count
451 *
452 * @cgrp is either getting the first task (css_set) or losing the last.
453 * Update @cgrp->populated_cnt accordingly. The count is propagated
454 * towards root so that a given cgroup's populated_cnt is zero iff the
455 * cgroup and all its descendants are empty.
456 *
457 * @cgrp's interface file "cgroup.populated" is zero if
458 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
459 * changes from or to zero, userland is notified that the content of the
460 * interface file has changed. This can be used to detect when @cgrp and
461 * its descendants become populated or empty.
462 */
463static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
464{
465 lockdep_assert_held(&css_set_rwsem);
466
467 do {
468 bool trigger;
469
470 if (populated)
471 trigger = !cgrp->populated_cnt++;
472 else
473 trigger = !--cgrp->populated_cnt;
474
475 if (!trigger)
476 break;
477
478 if (cgrp->populated_kn)
479 kernfs_notify(cgrp->populated_kn);
Tejun Heod51f39b2014-05-16 13:22:48 -0400480 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400481 } while (cgrp);
482}
483
Paul Menage7717f7b2009-09-23 15:56:22 -0700484/*
485 * hash table for cgroup groups. This improves the performance to find
486 * an existing css_set. This hash doesn't (currently) take into
487 * account cgroups in empty hierarchies.
488 */
Li Zefan472b1052008-04-29 01:00:11 -0700489#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800490static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700491
Li Zefan0ac801f2013-01-10 11:49:27 +0800492static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700493{
Li Zefan0ac801f2013-01-10 11:49:27 +0800494 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700495 struct cgroup_subsys *ss;
496 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700497
Tejun Heo30159ec2013-06-25 11:53:37 -0700498 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800499 key += (unsigned long)css[i];
500 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700501
Li Zefan0ac801f2013-01-10 11:49:27 +0800502 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700503}
504
Tejun Heo89c55092014-02-13 06:58:40 -0500505static void put_css_set_locked(struct css_set *cset, bool taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700506{
Tejun Heo69d02062013-06-12 21:04:50 -0700507 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400508 struct cgroup_subsys *ss;
509 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700510
Tejun Heo89c55092014-02-13 06:58:40 -0500511 lockdep_assert_held(&css_set_rwsem);
512
513 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700514 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700515
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700516 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400517 for_each_subsys(ss, ssid)
518 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700519 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700520 css_set_count--;
521
Tejun Heo69d02062013-06-12 21:04:50 -0700522 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700523 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700524
Tejun Heo69d02062013-06-12 21:04:50 -0700525 list_del(&link->cset_link);
526 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800527
Tejun Heo96d365e2014-02-13 06:58:40 -0500528 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo842b5972014-04-25 18:28:02 -0400529 if (list_empty(&cgrp->cset_links)) {
530 cgroup_update_populated(cgrp, false);
531 if (notify_on_release(cgrp)) {
532 if (taskexit)
533 set_bit(CGRP_RELEASABLE, &cgrp->flags);
534 check_for_release(cgrp);
535 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700536 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700537
538 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700539 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700540
Tejun Heo5abb8852013-06-12 21:04:49 -0700541 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700542}
543
Tejun Heo89c55092014-02-13 06:58:40 -0500544static void put_css_set(struct css_set *cset, bool taskexit)
545{
546 /*
547 * Ensure that the refcount doesn't hit zero while any readers
548 * can see it. Similar to atomic_dec_and_lock(), but for an
549 * rwlock
550 */
551 if (atomic_add_unless(&cset->refcount, -1, 1))
552 return;
553
554 down_write(&css_set_rwsem);
555 put_css_set_locked(cset, taskexit);
556 up_write(&css_set_rwsem);
557}
558
Paul Menage817929e2007-10-18 23:39:36 -0700559/*
560 * refcounted get/put for css_set objects
561 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700562static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700563{
Tejun Heo5abb8852013-06-12 21:04:49 -0700564 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700565}
566
Tejun Heob326f9d2013-06-24 15:21:48 -0700567/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700568 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700569 * @cset: candidate css_set being tested
570 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700571 * @new_cgrp: cgroup that's being entered by the task
572 * @template: desired set of css pointers in css_set (pre-calculated)
573 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800574 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700575 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
576 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700577static bool compare_css_sets(struct css_set *cset,
578 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700579 struct cgroup *new_cgrp,
580 struct cgroup_subsys_state *template[])
581{
582 struct list_head *l1, *l2;
583
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400584 /*
585 * On the default hierarchy, there can be csets which are
586 * associated with the same set of cgroups but different csses.
587 * Let's first ensure that csses match.
588 */
589 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700590 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700591
592 /*
593 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400594 * different cgroups in hierarchies. As different cgroups may
595 * share the same effective css, this comparison is always
596 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700597 */
Tejun Heo69d02062013-06-12 21:04:50 -0700598 l1 = &cset->cgrp_links;
599 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700600 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700601 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700602 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700603
604 l1 = l1->next;
605 l2 = l2->next;
606 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700607 if (l1 == &cset->cgrp_links) {
608 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700609 break;
610 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700611 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700612 }
613 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700614 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
615 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
616 cgrp1 = link1->cgrp;
617 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700618 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700619 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700620
621 /*
622 * If this hierarchy is the hierarchy of the cgroup
623 * that's changing, then we need to check that this
624 * css_set points to the new cgroup; if it's any other
625 * hierarchy, then this css_set should point to the
626 * same cgroup as the old css_set.
627 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700628 if (cgrp1->root == new_cgrp->root) {
629 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700630 return false;
631 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700632 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700633 return false;
634 }
635 }
636 return true;
637}
638
Tejun Heob326f9d2013-06-24 15:21:48 -0700639/**
640 * find_existing_css_set - init css array and find the matching css_set
641 * @old_cset: the css_set that we're using before the cgroup transition
642 * @cgrp: the cgroup that we're moving into
643 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700644 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700645static struct css_set *find_existing_css_set(struct css_set *old_cset,
646 struct cgroup *cgrp,
647 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700648{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400649 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700650 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700651 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800652 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700653 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700654
Ben Blumaae8aab2010-03-10 15:22:07 -0800655 /*
656 * Build the set of subsystem state objects that we want to see in the
657 * new css_set. while subsystems can change globally, the entries here
658 * won't change, so no need for locking.
659 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700660 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400661 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400662 /*
663 * @ss is in this hierarchy, so we want the
664 * effective css from @cgrp.
665 */
666 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700667 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400668 /*
669 * @ss is not in this hierarchy, so we don't want
670 * to change the css.
671 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700672 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700673 }
674 }
675
Li Zefan0ac801f2013-01-10 11:49:27 +0800676 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700677 hash_for_each_possible(css_set_table, cset, hlist, key) {
678 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700679 continue;
680
681 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700682 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700683 }
Paul Menage817929e2007-10-18 23:39:36 -0700684
685 /* No existing cgroup group matched */
686 return NULL;
687}
688
Tejun Heo69d02062013-06-12 21:04:50 -0700689static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700690{
Tejun Heo69d02062013-06-12 21:04:50 -0700691 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700692
Tejun Heo69d02062013-06-12 21:04:50 -0700693 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
694 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700695 kfree(link);
696 }
697}
698
Tejun Heo69d02062013-06-12 21:04:50 -0700699/**
700 * allocate_cgrp_cset_links - allocate cgrp_cset_links
701 * @count: the number of links to allocate
702 * @tmp_links: list_head the allocated links are put on
703 *
704 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
705 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700706 */
Tejun Heo69d02062013-06-12 21:04:50 -0700707static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700708{
Tejun Heo69d02062013-06-12 21:04:50 -0700709 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700710 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700711
712 INIT_LIST_HEAD(tmp_links);
713
Li Zefan36553432008-07-29 22:33:19 -0700714 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700715 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700716 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700717 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700718 return -ENOMEM;
719 }
Tejun Heo69d02062013-06-12 21:04:50 -0700720 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700721 }
722 return 0;
723}
724
Li Zefanc12f65d2009-01-07 18:07:42 -0800725/**
726 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700727 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700728 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800729 * @cgrp: the destination cgroup
730 */
Tejun Heo69d02062013-06-12 21:04:50 -0700731static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
732 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800733{
Tejun Heo69d02062013-06-12 21:04:50 -0700734 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800735
Tejun Heo69d02062013-06-12 21:04:50 -0700736 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400737
738 if (cgroup_on_dfl(cgrp))
739 cset->dfl_cgrp = cgrp;
740
Tejun Heo69d02062013-06-12 21:04:50 -0700741 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
742 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700743 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400744
745 if (list_empty(&cgrp->cset_links))
746 cgroup_update_populated(cgrp, true);
Tejun Heo69d02062013-06-12 21:04:50 -0700747 list_move(&link->cset_link, &cgrp->cset_links);
Tejun Heo842b5972014-04-25 18:28:02 -0400748
Paul Menage7717f7b2009-09-23 15:56:22 -0700749 /*
750 * Always add links to the tail of the list so that the list
751 * is sorted by order of hierarchy creation
752 */
Tejun Heo69d02062013-06-12 21:04:50 -0700753 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800754}
755
Tejun Heob326f9d2013-06-24 15:21:48 -0700756/**
757 * find_css_set - return a new css_set with one cgroup updated
758 * @old_cset: the baseline css_set
759 * @cgrp: the cgroup to be updated
760 *
761 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
762 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700763 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700764static struct css_set *find_css_set(struct css_set *old_cset,
765 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700766{
Tejun Heob326f9d2013-06-24 15:21:48 -0700767 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700768 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700769 struct list_head tmp_links;
770 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400771 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800772 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400773 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700774
Tejun Heob326f9d2013-06-24 15:21:48 -0700775 lockdep_assert_held(&cgroup_mutex);
776
Paul Menage817929e2007-10-18 23:39:36 -0700777 /* First see if we already have a cgroup group that matches
778 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500779 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700780 cset = find_existing_css_set(old_cset, cgrp, template);
781 if (cset)
782 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500783 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700784
Tejun Heo5abb8852013-06-12 21:04:49 -0700785 if (cset)
786 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700787
Tejun Heof4f4be22013-06-12 21:04:51 -0700788 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700789 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700790 return NULL;
791
Tejun Heo69d02062013-06-12 21:04:50 -0700792 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700793 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700794 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700795 return NULL;
796 }
797
Tejun Heo5abb8852013-06-12 21:04:49 -0700798 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700799 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700800 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500801 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -0500802 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -0500803 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700804 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700805
806 /* Copy the set of subsystem state objects generated in
807 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700808 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700809
Tejun Heo96d365e2014-02-13 06:58:40 -0500810 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700811 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700812 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700813 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700814
Paul Menage7717f7b2009-09-23 15:56:22 -0700815 if (c->root == cgrp->root)
816 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700817 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700818 }
Paul Menage817929e2007-10-18 23:39:36 -0700819
Tejun Heo69d02062013-06-12 21:04:50 -0700820 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700821
Paul Menage817929e2007-10-18 23:39:36 -0700822 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700823
Tejun Heo2d8f2432014-04-23 11:13:15 -0400824 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700825 key = css_set_hash(cset->subsys);
826 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700827
Tejun Heo2d8f2432014-04-23 11:13:15 -0400828 for_each_subsys(ss, ssid)
829 list_add_tail(&cset->e_cset_node[ssid],
830 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
831
Tejun Heo96d365e2014-02-13 06:58:40 -0500832 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700833
Tejun Heo5abb8852013-06-12 21:04:49 -0700834 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700835}
836
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400837static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700838{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400839 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500840
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400841 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500842}
843
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400844static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500845{
846 int id;
847
848 lockdep_assert_held(&cgroup_mutex);
849
Tejun Heo985ed672014-03-19 10:23:53 -0400850 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -0500851 if (id < 0)
852 return id;
853
854 root->hierarchy_id = id;
855 return 0;
856}
857
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400858static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500859{
860 lockdep_assert_held(&cgroup_mutex);
861
862 if (root->hierarchy_id) {
863 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
864 root->hierarchy_id = 0;
865 }
866}
867
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400868static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500869{
870 if (root) {
871 /* hierarhcy ID shoulid already have been released */
872 WARN_ON_ONCE(root->hierarchy_id);
873
874 idr_destroy(&root->cgroup_idr);
875 kfree(root);
876 }
877}
878
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400879static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500880{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400881 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -0500882 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500883
Tejun Heo2bd59d42014-02-11 11:52:49 -0500884 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500885
Tejun Heo776f02f2014-02-12 09:29:50 -0500886 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -0400887 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -0500888
Tejun Heof2e85d52014-02-11 11:52:49 -0500889 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -0400890 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -0500891
892 /*
893 * Release all the links from cset_links to this hierarchy's
894 * root cgroup
895 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500896 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500897
898 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
899 list_del(&link->cset_link);
900 list_del(&link->cgrp_link);
901 kfree(link);
902 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500903 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500904
905 if (!list_empty(&root->root_list)) {
906 list_del(&root->root_list);
907 cgroup_root_count--;
908 }
909
910 cgroup_exit_root_id(root);
911
912 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500913
Tejun Heo2bd59d42014-02-11 11:52:49 -0500914 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500915 cgroup_free_root(root);
916}
917
Tejun Heoceb6a082014-02-25 10:04:02 -0500918/* look up cgroup associated with given css_set on the specified hierarchy */
919static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400920 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700921{
Paul Menage7717f7b2009-09-23 15:56:22 -0700922 struct cgroup *res = NULL;
923
Tejun Heo96d365e2014-02-13 06:58:40 -0500924 lockdep_assert_held(&cgroup_mutex);
925 lockdep_assert_held(&css_set_rwsem);
926
Tejun Heo5abb8852013-06-12 21:04:49 -0700927 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400928 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700929 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700930 struct cgrp_cset_link *link;
931
932 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700933 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700934
Paul Menage7717f7b2009-09-23 15:56:22 -0700935 if (c->root == root) {
936 res = c;
937 break;
938 }
939 }
940 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500941
Paul Menage7717f7b2009-09-23 15:56:22 -0700942 BUG_ON(!res);
943 return res;
944}
945
946/*
Tejun Heoceb6a082014-02-25 10:04:02 -0500947 * Return the cgroup for "task" from the given hierarchy. Must be
948 * called with cgroup_mutex and css_set_rwsem held.
949 */
950static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400951 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -0500952{
953 /*
954 * No need to lock the task - since we hold cgroup_mutex the
955 * task can't change groups, so the only thing that can happen
956 * is that it exits and its css is set back to init_css_set.
957 */
958 return cset_cgroup_from_root(task_css_set(task), root);
959}
960
961/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700962 * A task must hold cgroup_mutex to modify cgroups.
963 *
964 * Any task can increment and decrement the count field without lock.
965 * So in general, code holding cgroup_mutex can't rely on the count
966 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800967 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700968 * means that no tasks are currently attached, therefore there is no
969 * way a task attached to that cgroup can fork (the other way to
970 * increment the count). So code holding cgroup_mutex can safely
971 * assume that if the count is zero, it will stay zero. Similarly, if
972 * a task holds cgroup_mutex on a cgroup with zero count, it
973 * knows that the cgroup won't be removed, as cgroup_rmdir()
974 * needs that mutex.
975 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700976 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
977 * (usually) take cgroup_mutex. These are the two most performance
978 * critical pieces of code here. The exception occurs on cgroup_exit(),
979 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
980 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800981 * to the release agent with the name of the cgroup (path relative to
982 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983 *
984 * A cgroup can only be deleted if both its 'count' of using tasks
985 * is zero, and its list of 'children' cgroups is empty. Since all
986 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400987 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -0700988 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400989 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700990 *
991 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800992 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993 */
994
Tejun Heo69dfa002014-05-04 15:09:13 -0400995static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500996static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700997static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700998
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500999static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1000 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001001{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001002 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
1003 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
1004 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
1005 cft->ss->name, cft->name);
1006 else
1007 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1008 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001009}
1010
Tejun Heof2e85d52014-02-11 11:52:49 -05001011/**
1012 * cgroup_file_mode - deduce file mode of a control file
1013 * @cft: the control file in question
1014 *
1015 * returns cft->mode if ->mode is not 0
1016 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
1017 * returns S_IRUGO if it has only a read handler
1018 * returns S_IWUSR if it has only a write hander
1019 */
1020static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001021{
Tejun Heof2e85d52014-02-11 11:52:49 -05001022 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001023
Tejun Heof2e85d52014-02-11 11:52:49 -05001024 if (cft->mode)
1025 return cft->mode;
1026
1027 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1028 mode |= S_IRUGO;
1029
Tejun Heo6770c642014-05-13 12:16:21 -04001030 if (cft->write_u64 || cft->write_s64 || cft->write)
Tejun Heof2e85d52014-02-11 11:52:49 -05001031 mode |= S_IWUSR;
1032
1033 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001034}
1035
Tejun Heo59f52962014-02-11 11:52:49 -05001036static void cgroup_get(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001037{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001038 WARN_ON_ONCE(cgroup_is_dead(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04001039 css_get(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001040}
1041
Tejun Heo59f52962014-02-11 11:52:49 -05001042static void cgroup_put(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001043{
Tejun Heo9d755d32014-05-14 09:15:02 -04001044 css_put(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001045}
1046
Tejun Heoaf0ba672014-07-08 18:02:57 -04001047/**
1048 * cgroup_refresh_child_subsys_mask - update child_subsys_mask
1049 * @cgrp: the target cgroup
1050 *
1051 * On the default hierarchy, a subsystem may request other subsystems to be
1052 * enabled together through its ->depends_on mask. In such cases, more
1053 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1054 *
1055 * This function determines which subsystems need to be enabled given the
1056 * current @cgrp->subtree_control and records it in
1057 * @cgrp->child_subsys_mask. The resulting mask is always a superset of
1058 * @cgrp->subtree_control and follows the usual hierarchy rules.
1059 */
Tejun Heo667c2492014-07-08 18:02:56 -04001060static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1061{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001062 struct cgroup *parent = cgroup_parent(cgrp);
1063 unsigned int cur_ss_mask = cgrp->subtree_control;
1064 struct cgroup_subsys *ss;
1065 int ssid;
1066
1067 lockdep_assert_held(&cgroup_mutex);
1068
1069 if (!cgroup_on_dfl(cgrp)) {
1070 cgrp->child_subsys_mask = cur_ss_mask;
1071 return;
1072 }
1073
1074 while (true) {
1075 unsigned int new_ss_mask = cur_ss_mask;
1076
1077 for_each_subsys(ss, ssid)
1078 if (cur_ss_mask & (1 << ssid))
1079 new_ss_mask |= ss->depends_on;
1080
1081 /*
1082 * Mask out subsystems which aren't available. This can
1083 * happen only if some depended-upon subsystems were bound
1084 * to non-default hierarchies.
1085 */
1086 if (parent)
1087 new_ss_mask &= parent->child_subsys_mask;
1088 else
1089 new_ss_mask &= cgrp->root->subsys_mask;
1090
1091 if (new_ss_mask == cur_ss_mask)
1092 break;
1093 cur_ss_mask = new_ss_mask;
1094 }
1095
1096 cgrp->child_subsys_mask = cur_ss_mask;
Tejun Heo667c2492014-07-08 18:02:56 -04001097}
1098
Tejun Heoa9746d82014-05-13 12:19:22 -04001099/**
1100 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1101 * @kn: the kernfs_node being serviced
1102 *
1103 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1104 * the method finishes if locking succeeded. Note that once this function
1105 * returns the cgroup returned by cgroup_kn_lock_live() may become
1106 * inaccessible any time. If the caller intends to continue to access the
1107 * cgroup, it should pin it before invoking this function.
1108 */
1109static void cgroup_kn_unlock(struct kernfs_node *kn)
1110{
1111 struct cgroup *cgrp;
1112
1113 if (kernfs_type(kn) == KERNFS_DIR)
1114 cgrp = kn->priv;
1115 else
1116 cgrp = kn->parent->priv;
1117
1118 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001119
1120 kernfs_unbreak_active_protection(kn);
1121 cgroup_put(cgrp);
1122}
1123
1124/**
1125 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1126 * @kn: the kernfs_node being serviced
1127 *
1128 * This helper is to be used by a cgroup kernfs method currently servicing
1129 * @kn. It breaks the active protection, performs cgroup locking and
1130 * verifies that the associated cgroup is alive. Returns the cgroup if
1131 * alive; otherwise, %NULL. A successful return should be undone by a
1132 * matching cgroup_kn_unlock() invocation.
1133 *
1134 * Any cgroup kernfs method implementation which requires locking the
1135 * associated cgroup should use this helper. It avoids nesting cgroup
1136 * locking under kernfs active protection and allows all kernfs operations
1137 * including self-removal.
1138 */
1139static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1140{
1141 struct cgroup *cgrp;
1142
1143 if (kernfs_type(kn) == KERNFS_DIR)
1144 cgrp = kn->priv;
1145 else
1146 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001147
1148 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001149 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001150 * active_ref. cgroup liveliness check alone provides enough
1151 * protection against removal. Ensure @cgrp stays accessible and
1152 * break the active_ref protection.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001153 */
Tejun Heoa9746d82014-05-13 12:19:22 -04001154 cgroup_get(cgrp);
1155 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001156
Tejun Heoa9746d82014-05-13 12:19:22 -04001157 mutex_lock(&cgroup_mutex);
1158
1159 if (!cgroup_is_dead(cgrp))
1160 return cgrp;
1161
1162 cgroup_kn_unlock(kn);
1163 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001164}
1165
Li Zefan2739d3c2013-01-21 18:18:33 +08001166static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001167{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001168 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001169
Tejun Heo01f64742014-05-13 12:19:23 -04001170 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001171 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001172}
1173
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001174/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001175 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001176 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001177 * @subsys_mask: mask of the subsystem ids whose files should be removed
1178 */
Tejun Heo69dfa002014-05-04 15:09:13 -04001179static void cgroup_clear_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001180{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001181 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001182 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001183
Tejun Heob420ba72013-07-12 12:34:02 -07001184 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001185 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001186
Tejun Heo69dfa002014-05-04 15:09:13 -04001187 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001188 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001189 list_for_each_entry(cfts, &ss->cfts, node)
1190 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001191 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001192}
1193
Tejun Heo69dfa002014-05-04 15:09:13 -04001194static int rebind_subsystems(struct cgroup_root *dst_root, unsigned int ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001195{
Tejun Heo30159ec2013-06-25 11:53:37 -07001196 struct cgroup_subsys *ss;
Tejun Heo5533e012014-05-14 19:33:07 -04001197 unsigned int tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001198 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001199
Tejun Heoace2bee2014-02-11 11:52:47 -05001200 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001201
Tejun Heo5df36032014-03-19 10:23:54 -04001202 for_each_subsys(ss, ssid) {
1203 if (!(ss_mask & (1 << ssid)))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001204 continue;
Tejun Heo30159ec2013-06-25 11:53:37 -07001205
Tejun Heo7fd8c562014-04-23 11:13:16 -04001206 /* if @ss has non-root csses attached to it, can't move */
1207 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001208 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001209
Tejun Heo5df36032014-03-19 10:23:54 -04001210 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001211 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001212 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001213 }
1214
Tejun Heo5533e012014-05-14 19:33:07 -04001215 /* skip creating root files on dfl_root for inhibited subsystems */
1216 tmp_ss_mask = ss_mask;
1217 if (dst_root == &cgrp_dfl_root)
1218 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1219
1220 ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask);
Tejun Heoa2dd4242014-03-19 10:23:55 -04001221 if (ret) {
1222 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001223 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001224
Tejun Heoa2dd4242014-03-19 10:23:55 -04001225 /*
1226 * Rebinding back to the default root is not allowed to
1227 * fail. Using both default and non-default roots should
1228 * be rare. Moving subsystems back and forth even more so.
1229 * Just warn about it and continue.
1230 */
1231 if (cgrp_dfl_root_visible) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001232 pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001233 ret, ss_mask);
Joe Perchesed3d2612014-04-25 18:28:03 -04001234 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
Tejun Heoa2dd4242014-03-19 10:23:55 -04001235 }
Tejun Heo5df36032014-03-19 10:23:54 -04001236 }
Tejun Heo31261212013-06-28 17:07:30 -07001237
1238 /*
1239 * Nothing can fail from this point on. Remove files for the
1240 * removed subsystems and rebind each subsystem.
1241 */
Tejun Heo5df36032014-03-19 10:23:54 -04001242 for_each_subsys(ss, ssid)
Tejun Heoa2dd4242014-03-19 10:23:55 -04001243 if (ss_mask & (1 << ssid))
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001244 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo31261212013-06-28 17:07:30 -07001245
Tejun Heo5df36032014-03-19 10:23:54 -04001246 for_each_subsys(ss, ssid) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001247 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001248 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001249 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001250
Tejun Heo5df36032014-03-19 10:23:54 -04001251 if (!(ss_mask & (1 << ssid)))
1252 continue;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001253
Tejun Heo5df36032014-03-19 10:23:54 -04001254 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001255 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001256
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001257 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001258
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001259 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1260 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001261 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001262 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001263
Tejun Heo2d8f2432014-04-23 11:13:15 -04001264 down_write(&css_set_rwsem);
1265 hash_for_each(css_set_table, i, cset, hlist)
1266 list_move_tail(&cset->e_cset_node[ss->id],
1267 &dst_root->cgrp.e_csets[ss->id]);
1268 up_write(&css_set_rwsem);
1269
Tejun Heof392e512014-04-23 11:13:14 -04001270 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo667c2492014-07-08 18:02:56 -04001271 src_root->cgrp.subtree_control &= ~(1 << ssid);
1272 cgroup_refresh_child_subsys_mask(&src_root->cgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001273
Tejun Heobd53d612014-04-23 11:13:16 -04001274 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001275 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo667c2492014-07-08 18:02:56 -04001276 if (dst_root != &cgrp_dfl_root) {
1277 dst_root->cgrp.subtree_control |= 1 << ssid;
1278 cgroup_refresh_child_subsys_mask(&dst_root->cgrp);
1279 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001280
Tejun Heo5df36032014-03-19 10:23:54 -04001281 if (ss->bind)
1282 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001283 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001284
Tejun Heoa2dd4242014-03-19 10:23:55 -04001285 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001286 return 0;
1287}
1288
Tejun Heo2bd59d42014-02-11 11:52:49 -05001289static int cgroup_show_options(struct seq_file *seq,
1290 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001291{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001292 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001293 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001294 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001295
Tejun Heob85d2042013-12-06 15:11:57 -05001296 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04001297 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05001298 seq_printf(seq, ",%s", ss->name);
Tejun Heo93438622013-04-14 20:15:25 -07001299 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001300 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001301 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001302 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001303
1304 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001305 if (strlen(root->release_agent_path))
1306 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001307 spin_unlock(&release_agent_path_lock);
1308
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001309 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001310 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001311 if (strlen(root->name))
1312 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001313 return 0;
1314}
1315
1316struct cgroup_sb_opts {
Tejun Heo69dfa002014-05-04 15:09:13 -04001317 unsigned int subsys_mask;
1318 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001319 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001320 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001321 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001322 /* User explicitly requested empty subsystem */
1323 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001324};
1325
Ben Blumcf5d5942010-03-10 15:22:09 -08001326static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001327{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001328 char *token, *o = data;
1329 bool all_ss = false, one_ss = false;
Tejun Heo69dfa002014-05-04 15:09:13 -04001330 unsigned int mask = -1U;
Tejun Heo30159ec2013-06-25 11:53:37 -07001331 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001332 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001333 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001334
1335#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001336 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001337#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001338
Paul Menagec6d57f32009-09-23 15:56:19 -07001339 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001340
1341 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001342 nr_opts++;
1343
Paul Menageddbcc7e2007-10-18 23:39:30 -07001344 if (!*token)
1345 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001346 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001347 /* Explicitly have no subsystems */
1348 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001349 continue;
1350 }
1351 if (!strcmp(token, "all")) {
1352 /* Mutually exclusive option 'all' + subsystem name */
1353 if (one_ss)
1354 return -EINVAL;
1355 all_ss = true;
1356 continue;
1357 }
Tejun Heo873fe092013-04-14 20:15:26 -07001358 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1359 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1360 continue;
1361 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001362 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001363 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001364 continue;
1365 }
1366 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001367 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001368 continue;
1369 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001370 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001371 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001372 continue;
1373 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001374 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001375 /* Specifying two release agents is forbidden */
1376 if (opts->release_agent)
1377 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001378 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001379 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001380 if (!opts->release_agent)
1381 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001382 continue;
1383 }
1384 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001385 const char *name = token + 5;
1386 /* Can't specify an empty name */
1387 if (!strlen(name))
1388 return -EINVAL;
1389 /* Must match [\w.-]+ */
1390 for (i = 0; i < strlen(name); i++) {
1391 char c = name[i];
1392 if (isalnum(c))
1393 continue;
1394 if ((c == '.') || (c == '-') || (c == '_'))
1395 continue;
1396 return -EINVAL;
1397 }
1398 /* Specifying two names is forbidden */
1399 if (opts->name)
1400 return -EINVAL;
1401 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001402 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001403 GFP_KERNEL);
1404 if (!opts->name)
1405 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001406
1407 continue;
1408 }
1409
Tejun Heo30159ec2013-06-25 11:53:37 -07001410 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001411 if (strcmp(token, ss->name))
1412 continue;
1413 if (ss->disabled)
1414 continue;
1415
1416 /* Mutually exclusive option 'all' + subsystem name */
1417 if (all_ss)
1418 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001419 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001420 one_ss = true;
1421
1422 break;
1423 }
1424 if (i == CGROUP_SUBSYS_COUNT)
1425 return -ENOENT;
1426 }
1427
Tejun Heo873fe092013-04-14 20:15:26 -07001428 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001429 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 -04001430 if (nr_opts != 1) {
1431 pr_err("sane_behavior: no other mount options allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001432 return -EINVAL;
1433 }
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001434 return 0;
Tejun Heo873fe092013-04-14 20:15:26 -07001435 }
1436
Li Zefanf9ab5b52009-06-17 16:26:33 -07001437 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001438 * If the 'all' option was specified select all the subsystems,
1439 * otherwise if 'none', 'name=' and a subsystem name options were
1440 * not specified, let's default to 'all'
1441 */
1442 if (all_ss || (!one_ss && !opts->none && !opts->name))
1443 for_each_subsys(ss, i)
1444 if (!ss->disabled)
1445 opts->subsys_mask |= (1 << i);
1446
1447 /*
1448 * We either have to specify by name or by subsystems. (So all
1449 * empty hierarchies must have a name).
1450 */
1451 if (!opts->subsys_mask && !opts->name)
1452 return -EINVAL;
1453
1454 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001455 * Option noprefix was introduced just for backward compatibility
1456 * with the old cpuset, so we allow noprefix only if mounting just
1457 * the cpuset subsystem.
1458 */
Tejun Heo93438622013-04-14 20:15:25 -07001459 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001460 return -EINVAL;
1461
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001462 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001463 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001464 return -EINVAL;
1465
Paul Menageddbcc7e2007-10-18 23:39:30 -07001466 return 0;
1467}
1468
Tejun Heo2bd59d42014-02-11 11:52:49 -05001469static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001470{
1471 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001472 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001473 struct cgroup_sb_opts opts;
Tejun Heo69dfa002014-05-04 15:09:13 -04001474 unsigned int added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001475
Tejun Heoaa6ec292014-07-09 10:08:08 -04001476 if (root == &cgrp_dfl_root) {
1477 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001478 return -EINVAL;
1479 }
1480
Paul Menageddbcc7e2007-10-18 23:39:30 -07001481 mutex_lock(&cgroup_mutex);
1482
1483 /* See what subsystems are wanted */
1484 ret = parse_cgroupfs_options(data, &opts);
1485 if (ret)
1486 goto out_unlock;
1487
Tejun Heof392e512014-04-23 11:13:14 -04001488 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001489 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001490 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001491
Tejun Heof392e512014-04-23 11:13:14 -04001492 added_mask = opts.subsys_mask & ~root->subsys_mask;
1493 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001494
Ben Blumcf5d5942010-03-10 15:22:09 -08001495 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001496 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001497 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001498 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001499 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001500 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001501 goto out_unlock;
1502 }
1503
Tejun Heof172e672013-06-28 17:07:30 -07001504 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001505 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001506 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001507 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001508 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001509
Tejun Heo5df36032014-03-19 10:23:54 -04001510 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001511 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001512 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001513
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001514 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001515
Tejun Heo69e943b2014-02-08 10:36:58 -05001516 if (opts.release_agent) {
1517 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001518 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001519 spin_unlock(&release_agent_path_lock);
1520 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001521 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001522 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001523 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001524 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001525 return ret;
1526}
1527
Tejun Heoafeb0f92014-02-13 06:58:39 -05001528/*
1529 * To reduce the fork() overhead for systems that are not actually using
1530 * their cgroups capability, we don't maintain the lists running through
1531 * each css_set to its tasks until we see the list actually used - in other
1532 * words after the first mount.
1533 */
1534static bool use_task_css_set_links __read_mostly;
1535
1536static void cgroup_enable_task_cg_lists(void)
1537{
1538 struct task_struct *p, *g;
1539
Tejun Heo96d365e2014-02-13 06:58:40 -05001540 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001541
1542 if (use_task_css_set_links)
1543 goto out_unlock;
1544
1545 use_task_css_set_links = true;
1546
1547 /*
1548 * We need tasklist_lock because RCU is not safe against
1549 * while_each_thread(). Besides, a forking task that has passed
1550 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1551 * is not guaranteed to have its child immediately visible in the
1552 * tasklist if we walk through it with RCU.
1553 */
1554 read_lock(&tasklist_lock);
1555 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001556 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1557 task_css_set(p) != &init_css_set);
1558
1559 /*
1560 * We should check if the process is exiting, otherwise
1561 * it will race with cgroup_exit() in that the list
1562 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001563 * Do it while holding siglock so that we don't end up
1564 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001565 */
Tejun Heof153ad12014-02-25 09:56:49 -05001566 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001567 if (!(p->flags & PF_EXITING)) {
1568 struct css_set *cset = task_css_set(p);
1569
1570 list_add(&p->cg_list, &cset->tasks);
1571 get_css_set(cset);
1572 }
Tejun Heof153ad12014-02-25 09:56:49 -05001573 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001574 } while_each_thread(g, p);
1575 read_unlock(&tasklist_lock);
1576out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001577 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001578}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001579
Paul Menagecc31edc2008-10-18 20:28:04 -07001580static void init_cgroup_housekeeping(struct cgroup *cgrp)
1581{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001582 struct cgroup_subsys *ss;
1583 int ssid;
1584
Tejun Heod5c419b2014-05-16 13:22:48 -04001585 INIT_LIST_HEAD(&cgrp->self.sibling);
1586 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001587 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001588 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001589 INIT_LIST_HEAD(&cgrp->pidlists);
1590 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001591 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001592 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001593
1594 for_each_subsys(ss, ssid)
1595 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001596
1597 init_waitqueue_head(&cgrp->offline_waitq);
Paul Menagecc31edc2008-10-18 20:28:04 -07001598}
Paul Menagec6d57f32009-09-23 15:56:19 -07001599
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001600static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001601 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001602{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001603 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001604
Paul Menageddbcc7e2007-10-18 23:39:30 -07001605 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001606 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001607 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001608 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001609 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001610
Paul Menagec6d57f32009-09-23 15:56:19 -07001611 root->flags = opts->flags;
1612 if (opts->release_agent)
1613 strcpy(root->release_agent_path, opts->release_agent);
1614 if (opts->name)
1615 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001616 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001617 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001618}
1619
Tejun Heo69dfa002014-05-04 15:09:13 -04001620static int cgroup_setup_root(struct cgroup_root *root, unsigned int ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001621{
Tejun Heod427dfe2014-02-11 11:52:48 -05001622 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001623 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heoa14c6872014-07-15 11:05:09 -04001624 struct cftype *base_files;
Tejun Heod427dfe2014-02-11 11:52:48 -05001625 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001626 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001627
Tejun Heod427dfe2014-02-11 11:52:48 -05001628 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001629
Tejun Heo6fa49182014-05-04 15:09:13 -04001630 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_NOWAIT);
Tejun Heod427dfe2014-02-11 11:52:48 -05001631 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001632 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001633 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001634
Tejun Heo9d755d32014-05-14 09:15:02 -04001635 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release);
1636 if (ret)
1637 goto out;
1638
Tejun Heod427dfe2014-02-11 11:52:48 -05001639 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001640 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001641 * but that's OK - it can only be increased by someone holding
1642 * cgroup_lock, and that's us. The worst that can happen is that we
1643 * have some link structures left over
1644 */
1645 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001646 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001647 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001648
Tejun Heo985ed672014-03-19 10:23:53 -04001649 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001650 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001651 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001652
Tejun Heo2bd59d42014-02-11 11:52:49 -05001653 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1654 KERNFS_ROOT_CREATE_DEACTIVATED,
1655 root_cgrp);
1656 if (IS_ERR(root->kf_root)) {
1657 ret = PTR_ERR(root->kf_root);
1658 goto exit_root_id;
1659 }
1660 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001661
Tejun Heoa14c6872014-07-15 11:05:09 -04001662 if (root == &cgrp_dfl_root)
1663 base_files = cgroup_dfl_base_files;
1664 else
1665 base_files = cgroup_legacy_base_files;
1666
1667 ret = cgroup_addrm_files(root_cgrp, base_files, true);
Tejun Heod427dfe2014-02-11 11:52:48 -05001668 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001669 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001670
Tejun Heo5df36032014-03-19 10:23:54 -04001671 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001672 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001673 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001674
Tejun Heod427dfe2014-02-11 11:52:48 -05001675 /*
1676 * There must be no failure case after here, since rebinding takes
1677 * care of subsystems' refcounts, which are explicitly dropped in
1678 * the failure exit path.
1679 */
1680 list_add(&root->root_list, &cgroup_roots);
1681 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001682
Tejun Heod427dfe2014-02-11 11:52:48 -05001683 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001684 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001685 * objects.
1686 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001687 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001688 hash_for_each(css_set_table, i, cset, hlist)
1689 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001690 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001691
Tejun Heod5c419b2014-05-16 13:22:48 -04001692 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001693 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001694
Tejun Heo2bd59d42014-02-11 11:52:49 -05001695 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001696 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001697 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001698
Tejun Heo2bd59d42014-02-11 11:52:49 -05001699destroy_root:
1700 kernfs_destroy_root(root->kf_root);
1701 root->kf_root = NULL;
1702exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001703 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001704cancel_ref:
1705 percpu_ref_cancel_init(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001706out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001707 free_cgrp_cset_links(&tmp_links);
1708 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001709}
1710
Al Virof7e83572010-07-26 13:23:11 +04001711static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001712 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001713 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001714{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001715 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001716 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001717 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001718 int ret;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001719 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001720
1721 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001722 * The first time anyone tries to mount a cgroup, enable the list
1723 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001724 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001725 if (!use_task_css_set_links)
1726 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001727
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001728 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001729
Paul Menageddbcc7e2007-10-18 23:39:30 -07001730 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001731 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001732 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001733 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001734
Tejun Heo2bd59d42014-02-11 11:52:49 -05001735 /* look for a matching existing root */
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001736 if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) {
Tejun Heoa2dd4242014-03-19 10:23:55 -04001737 cgrp_dfl_root_visible = true;
1738 root = &cgrp_dfl_root;
1739 cgroup_get(&root->cgrp);
1740 ret = 0;
1741 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001742 }
1743
Tejun Heo985ed672014-03-19 10:23:53 -04001744 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001745 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001746
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001747 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001748 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001749
Paul Menage817929e2007-10-18 23:39:36 -07001750 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001751 * If we asked for a name then it must match. Also, if
1752 * name matches but sybsys_mask doesn't, we should fail.
1753 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001754 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001755 if (opts.name) {
1756 if (strcmp(opts.name, root->name))
1757 continue;
1758 name_match = true;
1759 }
Tejun Heo31261212013-06-28 17:07:30 -07001760
1761 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001762 * If we asked for subsystems (or explicitly for no
1763 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001764 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001765 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001766 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001767 if (!name_match)
1768 continue;
1769 ret = -EBUSY;
1770 goto out_unlock;
1771 }
Tejun Heo873fe092013-04-14 20:15:26 -07001772
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001773 if (root->flags ^ opts.flags)
1774 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05001775
Tejun Heo776f02f2014-02-12 09:29:50 -05001776 /*
Tejun Heo9d755d32014-05-14 09:15:02 -04001777 * A root's lifetime is governed by its root cgroup.
1778 * tryget_live failure indicate that the root is being
1779 * destroyed. Wait for destruction to complete so that the
1780 * subsystems are free. We can use wait_queue for the wait
1781 * but this path is super cold. Let's just sleep for a bit
1782 * and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001783 */
Tejun Heo9d755d32014-05-14 09:15:02 -04001784 if (!percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001785 mutex_unlock(&cgroup_mutex);
Tejun Heo776f02f2014-02-12 09:29:50 -05001786 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001787 ret = restart_syscall();
1788 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001789 }
1790
1791 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001792 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001793 }
1794
Tejun Heo172a2c062014-03-19 10:23:53 -04001795 /*
1796 * No such thing, create a new one. name= matching without subsys
1797 * specification is allowed for already existing hierarchies but we
1798 * can't create new one without subsys specification.
1799 */
1800 if (!opts.subsys_mask && !opts.none) {
1801 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001802 goto out_unlock;
1803 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001804
Tejun Heo172a2c062014-03-19 10:23:53 -04001805 root = kzalloc(sizeof(*root), GFP_KERNEL);
1806 if (!root) {
1807 ret = -ENOMEM;
1808 goto out_unlock;
1809 }
1810
1811 init_cgroup_root(root, &opts);
1812
Tejun Heo35585572014-02-13 06:58:38 -05001813 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001814 if (ret)
1815 cgroup_free_root(root);
1816
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001817out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001818 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001819out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001820 kfree(opts.release_agent);
1821 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001822
Tejun Heo2bd59d42014-02-11 11:52:49 -05001823 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001824 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001825
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001826 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1827 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001828 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001829 cgroup_put(&root->cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001830 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001831}
1832
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001833static void cgroup_kill_sb(struct super_block *sb)
1834{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001835 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001836 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001837
Tejun Heo9d755d32014-05-14 09:15:02 -04001838 /*
1839 * If @root doesn't have any mounts or children, start killing it.
1840 * This prevents new mounts by disabling percpu_ref_tryget_live().
1841 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001842 *
1843 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001844 */
Li Zefan1f779fb2014-06-04 16:48:15 +08001845 if (css_has_online_children(&root->cgrp.self) ||
1846 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001847 cgroup_put(&root->cgrp);
1848 else
1849 percpu_ref_kill(&root->cgrp.self.refcnt);
1850
Tejun Heo2bd59d42014-02-11 11:52:49 -05001851 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001852}
1853
1854static struct file_system_type cgroup_fs_type = {
1855 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001856 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001857 .kill_sb = cgroup_kill_sb,
1858};
1859
Greg KH676db4a2010-08-05 13:53:35 -07001860static struct kobject *cgroup_kobj;
1861
Li Zefana043e3b2008-02-23 15:24:09 -08001862/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001863 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001864 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001865 * @buf: the buffer to write the path into
1866 * @buflen: the length of the buffer
1867 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001868 * Determine @task's cgroup on the first (the one with the lowest non-zero
1869 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1870 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1871 * cgroup controller callbacks.
1872 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001873 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001874 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001875char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001876{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001877 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001878 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001879 int hierarchy_id = 1;
1880 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001881
1882 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001883 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001884
Tejun Heo913ffdb2013-07-11 16:34:48 -07001885 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1886
Tejun Heo857a2be2013-04-14 20:50:08 -07001887 if (root) {
1888 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001889 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001890 } else {
1891 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001892 if (strlcpy(buf, "/", buflen) < buflen)
1893 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001894 }
1895
Tejun Heo96d365e2014-02-13 06:58:40 -05001896 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001897 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001898 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001899}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001900EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001901
Tejun Heob3dc0942014-02-25 10:04:01 -05001902/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001903struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001904 /* the src and dst cset list running through cset->mg_node */
1905 struct list_head src_csets;
1906 struct list_head dst_csets;
1907
1908 /*
1909 * Fields for cgroup_taskset_*() iteration.
1910 *
1911 * Before migration is committed, the target migration tasks are on
1912 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1913 * the csets on ->dst_csets. ->csets point to either ->src_csets
1914 * or ->dst_csets depending on whether migration is committed.
1915 *
1916 * ->cur_csets and ->cur_task point to the current task position
1917 * during iteration.
1918 */
1919 struct list_head *csets;
1920 struct css_set *cur_cset;
1921 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001922};
1923
1924/**
1925 * cgroup_taskset_first - reset taskset and return the first task
1926 * @tset: taskset of interest
1927 *
1928 * @tset iteration is initialized and the first task is returned.
1929 */
1930struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1931{
Tejun Heob3dc0942014-02-25 10:04:01 -05001932 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
1933 tset->cur_task = NULL;
1934
1935 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001936}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001937
1938/**
1939 * cgroup_taskset_next - iterate to the next task in taskset
1940 * @tset: taskset of interest
1941 *
1942 * Return the next task in @tset. Iteration must have been initialized
1943 * with cgroup_taskset_first().
1944 */
1945struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1946{
Tejun Heob3dc0942014-02-25 10:04:01 -05001947 struct css_set *cset = tset->cur_cset;
1948 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001949
Tejun Heob3dc0942014-02-25 10:04:01 -05001950 while (&cset->mg_node != tset->csets) {
1951 if (!task)
1952 task = list_first_entry(&cset->mg_tasks,
1953 struct task_struct, cg_list);
1954 else
1955 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001956
Tejun Heob3dc0942014-02-25 10:04:01 -05001957 if (&task->cg_list != &cset->mg_tasks) {
1958 tset->cur_cset = cset;
1959 tset->cur_task = task;
1960 return task;
1961 }
1962
1963 cset = list_next_entry(cset, mg_node);
1964 task = NULL;
1965 }
1966
1967 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001968}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001969
1970/**
Ben Blum74a11662011-05-26 16:25:20 -07001971 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02001972 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001973 * @tsk: the task being migrated
1974 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001975 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001976 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001977 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001978static void cgroup_task_migrate(struct cgroup *old_cgrp,
1979 struct task_struct *tsk,
1980 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001981{
Tejun Heo5abb8852013-06-12 21:04:49 -07001982 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001983
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001984 lockdep_assert_held(&cgroup_mutex);
1985 lockdep_assert_held(&css_set_rwsem);
1986
Ben Blum74a11662011-05-26 16:25:20 -07001987 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001988 * We are synchronized through threadgroup_lock() against PF_EXITING
1989 * setting such that we can't race against cgroup_exit() changing the
1990 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001991 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001992 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001993 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001994
Tejun Heob3dc0942014-02-25 10:04:01 -05001995 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07001996 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001997
Tejun Heo1b9aba42014-03-19 17:43:21 -04001998 /*
1999 * Use move_tail so that cgroup_taskset_first() still returns the
2000 * leader after migration. This works because cgroup_migrate()
2001 * ensures that the dst_cset of the leader is the first on the
2002 * tset's dst_csets list.
2003 */
2004 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07002005
2006 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07002007 * We just gained a reference on old_cset by taking it from the
2008 * task. As trading it for new_cset is protected by cgroup_mutex,
2009 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07002010 */
Tejun Heo5abb8852013-06-12 21:04:49 -07002011 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002012 put_css_set_locked(old_cset, false);
Ben Blum74a11662011-05-26 16:25:20 -07002013}
2014
Li Zefana043e3b2008-02-23 15:24:09 -08002015/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002016 * cgroup_migrate_finish - cleanup after attach
2017 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002018 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002019 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2020 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002021 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002022static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002023{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002024 struct css_set *cset, *tmp_cset;
2025
2026 lockdep_assert_held(&cgroup_mutex);
2027
2028 down_write(&css_set_rwsem);
2029 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2030 cset->mg_src_cgrp = NULL;
2031 cset->mg_dst_cset = NULL;
2032 list_del_init(&cset->mg_preload_node);
2033 put_css_set_locked(cset, false);
2034 }
2035 up_write(&css_set_rwsem);
2036}
2037
2038/**
2039 * cgroup_migrate_add_src - add a migration source css_set
2040 * @src_cset: the source css_set to add
2041 * @dst_cgrp: the destination cgroup
2042 * @preloaded_csets: list of preloaded css_sets
2043 *
2044 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2045 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2046 * up by cgroup_migrate_finish().
2047 *
2048 * This function may be called without holding threadgroup_lock even if the
2049 * target is a process. Threads may be created and destroyed but as long
2050 * as cgroup_mutex is not dropped, no new css_set can be put into play and
2051 * the preloaded css_sets are guaranteed to cover all migrations.
2052 */
2053static void cgroup_migrate_add_src(struct css_set *src_cset,
2054 struct cgroup *dst_cgrp,
2055 struct list_head *preloaded_csets)
2056{
2057 struct cgroup *src_cgrp;
2058
2059 lockdep_assert_held(&cgroup_mutex);
2060 lockdep_assert_held(&css_set_rwsem);
2061
2062 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2063
Tejun Heo1958d2d2014-02-25 10:04:03 -05002064 if (!list_empty(&src_cset->mg_preload_node))
2065 return;
2066
2067 WARN_ON(src_cset->mg_src_cgrp);
2068 WARN_ON(!list_empty(&src_cset->mg_tasks));
2069 WARN_ON(!list_empty(&src_cset->mg_node));
2070
2071 src_cset->mg_src_cgrp = src_cgrp;
2072 get_css_set(src_cset);
2073 list_add(&src_cset->mg_preload_node, preloaded_csets);
2074}
2075
2076/**
2077 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002078 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002079 * @preloaded_csets: list of preloaded source css_sets
2080 *
2081 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2082 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002083 * pins all destination css_sets, links each to its source, and append them
2084 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2085 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002086 *
2087 * This function must be called after cgroup_migrate_add_src() has been
2088 * called on each migration source css_set. After migration is performed
2089 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2090 * @preloaded_csets.
2091 */
2092static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2093 struct list_head *preloaded_csets)
2094{
2095 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002096 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002097
2098 lockdep_assert_held(&cgroup_mutex);
2099
Tejun Heof8f22e52014-04-23 11:13:16 -04002100 /*
2101 * Except for the root, child_subsys_mask must be zero for a cgroup
2102 * with tasks so that child cgroups don't compete against tasks.
2103 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002104 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002105 dst_cgrp->child_subsys_mask)
2106 return -EBUSY;
2107
Tejun Heo1958d2d2014-02-25 10:04:03 -05002108 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002109 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002110 struct css_set *dst_cset;
2111
Tejun Heof817de92014-04-23 11:13:16 -04002112 dst_cset = find_css_set(src_cset,
2113 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002114 if (!dst_cset)
2115 goto err;
2116
2117 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002118
2119 /*
2120 * If src cset equals dst, it's noop. Drop the src.
2121 * cgroup_migrate() will skip the cset too. Note that we
2122 * can't handle src == dst as some nodes are used by both.
2123 */
2124 if (src_cset == dst_cset) {
2125 src_cset->mg_src_cgrp = NULL;
2126 list_del_init(&src_cset->mg_preload_node);
2127 put_css_set(src_cset, false);
2128 put_css_set(dst_cset, false);
2129 continue;
2130 }
2131
Tejun Heo1958d2d2014-02-25 10:04:03 -05002132 src_cset->mg_dst_cset = dst_cset;
2133
2134 if (list_empty(&dst_cset->mg_preload_node))
2135 list_add(&dst_cset->mg_preload_node, &csets);
2136 else
2137 put_css_set(dst_cset, false);
2138 }
2139
Tejun Heof817de92014-04-23 11:13:16 -04002140 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002141 return 0;
2142err:
2143 cgroup_migrate_finish(&csets);
2144 return -ENOMEM;
2145}
2146
2147/**
2148 * cgroup_migrate - migrate a process or task to a cgroup
2149 * @cgrp: the destination cgroup
2150 * @leader: the leader of the process or the task to migrate
2151 * @threadgroup: whether @leader points to the whole process or a single task
2152 *
2153 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
2154 * process, the caller must be holding threadgroup_lock of @leader. The
2155 * caller is also responsible for invoking cgroup_migrate_add_src() and
2156 * cgroup_migrate_prepare_dst() on the targets before invoking this
2157 * function and following up with cgroup_migrate_finish().
2158 *
2159 * As long as a controller's ->can_attach() doesn't fail, this function is
2160 * guaranteed to succeed. This means that, excluding ->can_attach()
2161 * failure, when migrating multiple targets, the success or failure can be
2162 * decided for all targets by invoking group_migrate_prepare_dst() before
2163 * actually starting migrating.
2164 */
2165static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2166 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002167{
Tejun Heob3dc0942014-02-25 10:04:01 -05002168 struct cgroup_taskset tset = {
2169 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2170 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2171 .csets = &tset.src_csets,
2172 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002173 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002174 struct css_set *cset, *tmp_cset;
2175 struct task_struct *task, *tmp_task;
2176 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002177
2178 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002179 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2180 * already PF_EXITING could be freed from underneath us unless we
2181 * take an rcu_read_lock.
2182 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002183 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002184 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002185 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002186 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002187 /* @task either already exited or can't exit until the end */
2188 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002189 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002190
Tejun Heoeaf797a2014-02-25 10:04:03 -05002191 /* leave @task alone if post_fork() hasn't linked it yet */
2192 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002193 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002194
Tejun Heob3dc0942014-02-25 10:04:01 -05002195 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002196 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002197 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002198
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002199 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002200 * cgroup_taskset_first() must always return the leader.
2201 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002202 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002203 list_move_tail(&task->cg_list, &cset->mg_tasks);
2204 if (list_empty(&cset->mg_node))
2205 list_add_tail(&cset->mg_node, &tset.src_csets);
2206 if (list_empty(&cset->mg_dst_cset->mg_node))
2207 list_move_tail(&cset->mg_dst_cset->mg_node,
2208 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002209 next:
Li Zefan081aa452013-03-13 09:17:09 +08002210 if (!threadgroup)
2211 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002212 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002213 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002214 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002215
Tejun Heo134d3372011-12-12 18:12:21 -08002216 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002217 if (list_empty(&tset.src_csets))
2218 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002219
Tejun Heo1958d2d2014-02-25 10:04:03 -05002220 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002221 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002222 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002223 ret = css->ss->can_attach(css, &tset);
2224 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002225 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002226 goto out_cancel_attach;
2227 }
2228 }
Ben Blum74a11662011-05-26 16:25:20 -07002229 }
2230
2231 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002232 * Now that we're guaranteed success, proceed to move all tasks to
2233 * the new cgroup. There are no failure cases after here, so this
2234 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002235 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002236 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002237 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2238 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2239 cgroup_task_migrate(cset->mg_src_cgrp, task,
2240 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002241 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002242 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002243
2244 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002245 * Migration is committed, all target tasks are now on dst_csets.
2246 * Nothing is sensitive to fork() after this point. Notify
2247 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002248 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002249 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002250
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002251 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002252 if (css->ss->attach)
2253 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002254
Tejun Heo9db8de32014-02-13 06:58:43 -05002255 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002256 goto out_release_tset;
2257
Ben Blum74a11662011-05-26 16:25:20 -07002258out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002259 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002260 if (css == failed_css)
2261 break;
2262 if (css->ss->cancel_attach)
2263 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002264 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002265out_release_tset:
2266 down_write(&css_set_rwsem);
2267 list_splice_init(&tset.dst_csets, &tset.src_csets);
2268 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002269 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002270 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002271 }
2272 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002273 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002274}
2275
Tejun Heo1958d2d2014-02-25 10:04:03 -05002276/**
2277 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2278 * @dst_cgrp: the cgroup to attach to
2279 * @leader: the task or the leader of the threadgroup to be attached
2280 * @threadgroup: attach the whole threadgroup?
2281 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05002282 * Call holding cgroup_mutex and threadgroup_lock of @leader.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002283 */
2284static int cgroup_attach_task(struct cgroup *dst_cgrp,
2285 struct task_struct *leader, bool threadgroup)
2286{
2287 LIST_HEAD(preloaded_csets);
2288 struct task_struct *task;
2289 int ret;
2290
2291 /* look up all src csets */
2292 down_read(&css_set_rwsem);
2293 rcu_read_lock();
2294 task = leader;
2295 do {
2296 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2297 &preloaded_csets);
2298 if (!threadgroup)
2299 break;
2300 } while_each_thread(leader, task);
2301 rcu_read_unlock();
2302 up_read(&css_set_rwsem);
2303
2304 /* prepare dst csets and commit */
2305 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2306 if (!ret)
2307 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2308
2309 cgroup_migrate_finish(&preloaded_csets);
2310 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002311}
2312
2313/*
2314 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002315 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002316 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002317 */
Tejun Heoacbef752014-05-13 12:16:22 -04002318static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2319 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002320{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002321 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002322 const struct cred *cred = current_cred(), *tcred;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002323 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002324 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002325 int ret;
2326
Tejun Heoacbef752014-05-13 12:16:22 -04002327 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2328 return -EINVAL;
2329
Tejun Heoe76ecae2014-05-13 12:19:23 -04002330 cgrp = cgroup_kn_lock_live(of->kn);
2331 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002332 return -ENODEV;
2333
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002334retry_find_task:
2335 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002336 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002337 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002338 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002339 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002340 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002341 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002342 }
Ben Blum74a11662011-05-26 16:25:20 -07002343 /*
2344 * even if we're attaching all tasks in the thread group, we
2345 * only need to check permissions on one of them.
2346 */
David Howellsc69e8d92008-11-14 10:39:19 +11002347 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002348 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2349 !uid_eq(cred->euid, tcred->uid) &&
2350 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002351 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002352 ret = -EACCES;
2353 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002354 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002355 } else
2356 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002357
2358 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002359 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002360
2361 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002362 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002363 * trapped in a cpuset, or RT worker may be born in a cgroup
2364 * with no rt_runtime allocated. Just say no.
2365 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002366 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002367 ret = -EINVAL;
2368 rcu_read_unlock();
2369 goto out_unlock_cgroup;
2370 }
2371
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002372 get_task_struct(tsk);
2373 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002374
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002375 threadgroup_lock(tsk);
2376 if (threadgroup) {
2377 if (!thread_group_leader(tsk)) {
2378 /*
2379 * a race with de_thread from another thread's exec()
2380 * may strip us of our leadership, if this happens,
2381 * there is no choice but to throw this task away and
2382 * try again; this is
2383 * "double-double-toil-and-trouble-check locking".
2384 */
2385 threadgroup_unlock(tsk);
2386 put_task_struct(tsk);
2387 goto retry_find_task;
2388 }
Li Zefan081aa452013-03-13 09:17:09 +08002389 }
2390
2391 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2392
Tejun Heocd3d0952011-12-12 18:12:21 -08002393 threadgroup_unlock(tsk);
2394
Paul Menagebbcb81d2007-10-18 23:39:32 -07002395 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002396out_unlock_cgroup:
Tejun Heoe76ecae2014-05-13 12:19:23 -04002397 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002398 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002399}
2400
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002401/**
2402 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2403 * @from: attach to all cgroups of a given task
2404 * @tsk: the task to be attached
2405 */
2406int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2407{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002408 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002409 int retval = 0;
2410
Tejun Heo47cfcd02013-04-07 09:29:51 -07002411 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002412 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002413 struct cgroup *from_cgrp;
2414
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002415 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002416 continue;
2417
Tejun Heo96d365e2014-02-13 06:58:40 -05002418 down_read(&css_set_rwsem);
2419 from_cgrp = task_cgroup_from_root(from, root);
2420 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002421
Li Zefan6f4b7e62013-07-31 16:18:36 +08002422 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002423 if (retval)
2424 break;
2425 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002426 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002427
2428 return retval;
2429}
2430EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2431
Tejun Heoacbef752014-05-13 12:16:22 -04002432static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2433 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002434{
Tejun Heoacbef752014-05-13 12:16:22 -04002435 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002436}
2437
Tejun Heoacbef752014-05-13 12:16:22 -04002438static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2439 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002440{
Tejun Heoacbef752014-05-13 12:16:22 -04002441 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002442}
2443
Tejun Heo451af502014-05-13 12:16:21 -04002444static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2445 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002446{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002447 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002448
Tejun Heoe76ecae2014-05-13 12:19:23 -04002449 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2450
2451 cgrp = cgroup_kn_lock_live(of->kn);
2452 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002453 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002454 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002455 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2456 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002457 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002458 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002459 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002460}
2461
Tejun Heo2da8ca82013-12-05 12:28:04 -05002462static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002463{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002464 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002465
Tejun Heo46cfeb02014-05-13 12:11:00 -04002466 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002467 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002468 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002469 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002470 return 0;
2471}
2472
Tejun Heo2da8ca82013-12-05 12:28:04 -05002473static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002474{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002475 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002476 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002477}
2478
Tejun Heof8f22e52014-04-23 11:13:16 -04002479static void cgroup_print_ss_mask(struct seq_file *seq, unsigned int ss_mask)
2480{
2481 struct cgroup_subsys *ss;
2482 bool printed = false;
2483 int ssid;
2484
2485 for_each_subsys(ss, ssid) {
2486 if (ss_mask & (1 << ssid)) {
2487 if (printed)
2488 seq_putc(seq, ' ');
2489 seq_printf(seq, "%s", ss->name);
2490 printed = true;
2491 }
2492 }
2493 if (printed)
2494 seq_putc(seq, '\n');
2495}
2496
2497/* show controllers which are currently attached to the default hierarchy */
2498static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2499{
2500 struct cgroup *cgrp = seq_css(seq)->cgroup;
2501
Tejun Heo5533e012014-05-14 19:33:07 -04002502 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2503 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002504 return 0;
2505}
2506
2507/* show controllers which are enabled from the parent */
2508static int cgroup_controllers_show(struct seq_file *seq, void *v)
2509{
2510 struct cgroup *cgrp = seq_css(seq)->cgroup;
2511
Tejun Heo667c2492014-07-08 18:02:56 -04002512 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002513 return 0;
2514}
2515
2516/* show controllers which are enabled for a given cgroup's children */
2517static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2518{
2519 struct cgroup *cgrp = seq_css(seq)->cgroup;
2520
Tejun Heo667c2492014-07-08 18:02:56 -04002521 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002522 return 0;
2523}
2524
2525/**
2526 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2527 * @cgrp: root of the subtree to update csses for
2528 *
2529 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2530 * css associations need to be updated accordingly. This function looks up
2531 * all css_sets which are attached to the subtree, creates the matching
2532 * updated css_sets and migrates the tasks to the new ones.
2533 */
2534static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2535{
2536 LIST_HEAD(preloaded_csets);
2537 struct cgroup_subsys_state *css;
2538 struct css_set *src_cset;
2539 int ret;
2540
Tejun Heof8f22e52014-04-23 11:13:16 -04002541 lockdep_assert_held(&cgroup_mutex);
2542
2543 /* look up all csses currently attached to @cgrp's subtree */
2544 down_read(&css_set_rwsem);
2545 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2546 struct cgrp_cset_link *link;
2547
2548 /* self is not affected by child_subsys_mask change */
2549 if (css->cgroup == cgrp)
2550 continue;
2551
2552 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2553 cgroup_migrate_add_src(link->cset, cgrp,
2554 &preloaded_csets);
2555 }
2556 up_read(&css_set_rwsem);
2557
2558 /* NULL dst indicates self on default hierarchy */
2559 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2560 if (ret)
2561 goto out_finish;
2562
2563 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2564 struct task_struct *last_task = NULL, *task;
2565
2566 /* src_csets precede dst_csets, break on the first dst_cset */
2567 if (!src_cset->mg_src_cgrp)
2568 break;
2569
2570 /*
2571 * All tasks in src_cset need to be migrated to the
2572 * matching dst_cset. Empty it process by process. We
2573 * walk tasks but migrate processes. The leader might even
2574 * belong to a different cset but such src_cset would also
2575 * be among the target src_csets because the default
2576 * hierarchy enforces per-process membership.
2577 */
2578 while (true) {
2579 down_read(&css_set_rwsem);
2580 task = list_first_entry_or_null(&src_cset->tasks,
2581 struct task_struct, cg_list);
2582 if (task) {
2583 task = task->group_leader;
2584 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2585 get_task_struct(task);
2586 }
2587 up_read(&css_set_rwsem);
2588
2589 if (!task)
2590 break;
2591
2592 /* guard against possible infinite loop */
2593 if (WARN(last_task == task,
2594 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2595 goto out_finish;
2596 last_task = task;
2597
2598 threadgroup_lock(task);
2599 /* raced against de_thread() from another thread? */
2600 if (!thread_group_leader(task)) {
2601 threadgroup_unlock(task);
2602 put_task_struct(task);
2603 continue;
2604 }
2605
2606 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2607
2608 threadgroup_unlock(task);
2609 put_task_struct(task);
2610
2611 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2612 goto out_finish;
2613 }
2614 }
2615
2616out_finish:
2617 cgroup_migrate_finish(&preloaded_csets);
2618 return ret;
2619}
2620
2621/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002622static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2623 char *buf, size_t nbytes,
2624 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002625{
Tejun Heo7d331fa2014-05-13 12:11:00 -04002626 unsigned int enable = 0, disable = 0;
Tejun Heof63070d2014-07-08 18:02:57 -04002627 unsigned int css_enable, css_disable, old_ctrl, new_ctrl;
Tejun Heoa9746d82014-05-13 12:19:22 -04002628 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002629 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002630 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002631 int ssid, ret;
2632
2633 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002634 * Parse input - space separated list of subsystem names prefixed
2635 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002636 */
Tejun Heo451af502014-05-13 12:16:21 -04002637 buf = strstrip(buf);
2638 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04002639 if (tok[0] == '\0')
2640 continue;
Tejun Heof8f22e52014-04-23 11:13:16 -04002641 for_each_subsys(ss, ssid) {
Tejun Heo5533e012014-05-14 19:33:07 -04002642 if (ss->disabled || strcmp(tok + 1, ss->name) ||
2643 ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask))
Tejun Heof8f22e52014-04-23 11:13:16 -04002644 continue;
2645
2646 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002647 enable |= 1 << ssid;
2648 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002649 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002650 disable |= 1 << ssid;
2651 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002652 } else {
2653 return -EINVAL;
2654 }
2655 break;
2656 }
2657 if (ssid == CGROUP_SUBSYS_COUNT)
2658 return -EINVAL;
2659 }
2660
Tejun Heoa9746d82014-05-13 12:19:22 -04002661 cgrp = cgroup_kn_lock_live(of->kn);
2662 if (!cgrp)
2663 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002664
2665 for_each_subsys(ss, ssid) {
2666 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002667 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002668 enable &= ~(1 << ssid);
2669 continue;
2670 }
2671
Tejun Heoc29adf22014-07-08 18:02:56 -04002672 /* unavailable or not enabled on the parent? */
2673 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2674 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002675 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002676 ret = -ENOENT;
2677 goto out_unlock;
2678 }
2679
Tejun Heof8f22e52014-04-23 11:13:16 -04002680 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002681 * @ss is already enabled through dependency and
2682 * we'll just make it visible. Skip draining.
2683 */
2684 if (cgrp->child_subsys_mask & (1 << ssid))
2685 continue;
2686
2687 /*
Tejun Heof8f22e52014-04-23 11:13:16 -04002688 * Because css offlining is asynchronous, userland
2689 * might try to re-enable the same controller while
2690 * the previous instance is still around. In such
2691 * cases, wait till it's gone using offline_waitq.
2692 */
2693 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo0cee8b72014-05-13 12:10:59 -04002694 DEFINE_WAIT(wait);
Tejun Heof8f22e52014-04-23 11:13:16 -04002695
2696 if (!cgroup_css(child, ss))
2697 continue;
2698
Tejun Heo0cee8b72014-05-13 12:10:59 -04002699 cgroup_get(child);
Tejun Heof8f22e52014-04-23 11:13:16 -04002700 prepare_to_wait(&child->offline_waitq, &wait,
2701 TASK_UNINTERRUPTIBLE);
Tejun Heoa9746d82014-05-13 12:19:22 -04002702 cgroup_kn_unlock(of->kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002703 schedule();
2704 finish_wait(&child->offline_waitq, &wait);
Tejun Heo0cee8b72014-05-13 12:10:59 -04002705 cgroup_put(child);
Tejun Heo7d331fa2014-05-13 12:11:00 -04002706
Tejun Heoa9746d82014-05-13 12:19:22 -04002707 return restart_syscall();
Tejun Heof8f22e52014-04-23 11:13:16 -04002708 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002709 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002710 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002711 disable &= ~(1 << ssid);
2712 continue;
2713 }
2714
2715 /* a child has it enabled? */
2716 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002717 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002718 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002719 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002720 }
2721 }
2722 }
2723 }
2724
2725 if (!enable && !disable) {
2726 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002727 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002728 }
2729
2730 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002731 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002732 * with tasks so that child cgroups don't compete against tasks.
2733 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002734 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002735 ret = -EBUSY;
2736 goto out_unlock;
2737 }
2738
Tejun Heof63070d2014-07-08 18:02:57 -04002739 /*
2740 * Update subsys masks and calculate what needs to be done. More
2741 * subsystems than specified may need to be enabled or disabled
2742 * depending on subsystem dependencies.
2743 */
Tejun Heo667c2492014-07-08 18:02:56 -04002744 cgrp->subtree_control |= enable;
2745 cgrp->subtree_control &= ~disable;
Tejun Heoc29adf22014-07-08 18:02:56 -04002746
Tejun Heof63070d2014-07-08 18:02:57 -04002747 old_ctrl = cgrp->child_subsys_mask;
2748 cgroup_refresh_child_subsys_mask(cgrp);
2749 new_ctrl = cgrp->child_subsys_mask;
2750
2751 css_enable = ~old_ctrl & new_ctrl;
2752 css_disable = old_ctrl & ~new_ctrl;
2753 enable |= css_enable;
2754 disable |= css_disable;
2755
2756 /*
2757 * Create new csses or make the existing ones visible. A css is
2758 * created invisible if it's being implicitly enabled through
2759 * dependency. An invisible css is made visible when the userland
2760 * explicitly enables it.
2761 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002762 for_each_subsys(ss, ssid) {
2763 if (!(enable & (1 << ssid)))
2764 continue;
2765
2766 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04002767 if (css_enable & (1 << ssid))
2768 ret = create_css(child, ss,
2769 cgrp->subtree_control & (1 << ssid));
2770 else
2771 ret = cgroup_populate_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002772 if (ret)
2773 goto err_undo_css;
2774 }
2775 }
2776
Tejun Heoc29adf22014-07-08 18:02:56 -04002777 /*
2778 * At this point, cgroup_e_css() results reflect the new csses
2779 * making the following cgroup_update_dfl_csses() properly update
2780 * css associations of all tasks in the subtree.
2781 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002782 ret = cgroup_update_dfl_csses(cgrp);
2783 if (ret)
2784 goto err_undo_css;
2785
Tejun Heof63070d2014-07-08 18:02:57 -04002786 /*
2787 * All tasks are migrated out of disabled csses. Kill or hide
2788 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002789 * disabled while other subsystems are still depending on it. The
2790 * css must not actively control resources and be in the vanilla
2791 * state if it's made visible again later. Controllers which may
2792 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04002793 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002794 for_each_subsys(ss, ssid) {
2795 if (!(disable & (1 << ssid)))
2796 continue;
2797
Tejun Heof63070d2014-07-08 18:02:57 -04002798 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002799 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2800
2801 if (css_disable & (1 << ssid)) {
2802 kill_css(css);
2803 } else {
Tejun Heof63070d2014-07-08 18:02:57 -04002804 cgroup_clear_dir(child, 1 << ssid);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002805 if (ss->css_reset)
2806 ss->css_reset(css);
2807 }
Tejun Heof63070d2014-07-08 18:02:57 -04002808 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002809 }
2810
2811 kernfs_activate(cgrp->kn);
2812 ret = 0;
2813out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002814 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002815 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002816
2817err_undo_css:
Tejun Heo667c2492014-07-08 18:02:56 -04002818 cgrp->subtree_control &= ~enable;
2819 cgrp->subtree_control |= disable;
2820 cgroup_refresh_child_subsys_mask(cgrp);
Tejun Heof8f22e52014-04-23 11:13:16 -04002821
2822 for_each_subsys(ss, ssid) {
2823 if (!(enable & (1 << ssid)))
2824 continue;
2825
2826 cgroup_for_each_live_child(child, cgrp) {
2827 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04002828
2829 if (!css)
2830 continue;
2831
2832 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04002833 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04002834 else
2835 cgroup_clear_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002836 }
2837 }
2838 goto out_unlock;
2839}
2840
Tejun Heo842b5972014-04-25 18:28:02 -04002841static int cgroup_populated_show(struct seq_file *seq, void *v)
2842{
2843 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2844 return 0;
2845}
2846
Tejun Heo2bd59d42014-02-11 11:52:49 -05002847static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2848 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002849{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002850 struct cgroup *cgrp = of->kn->parent->priv;
2851 struct cftype *cft = of->kn->priv;
2852 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002853 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002854
Tejun Heob4168642014-05-13 12:16:21 -04002855 if (cft->write)
2856 return cft->write(of, buf, nbytes, off);
2857
Tejun Heo2bd59d42014-02-11 11:52:49 -05002858 /*
2859 * kernfs guarantees that a file isn't deleted with operations in
2860 * flight, which means that the matching css is and stays alive and
2861 * doesn't need to be pinned. The RCU locking is not necessary
2862 * either. It's just for the convenience of using cgroup_css().
2863 */
2864 rcu_read_lock();
2865 css = cgroup_css(cgrp, cft->ss);
2866 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002867
Tejun Heo451af502014-05-13 12:16:21 -04002868 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002869 unsigned long long v;
2870 ret = kstrtoull(buf, 0, &v);
2871 if (!ret)
2872 ret = cft->write_u64(css, cft, v);
2873 } else if (cft->write_s64) {
2874 long long v;
2875 ret = kstrtoll(buf, 0, &v);
2876 if (!ret)
2877 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002878 } else {
2879 ret = -EINVAL;
2880 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002881
Tejun Heoa742c592013-12-05 12:28:03 -05002882 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002883}
2884
Tejun Heo6612f052013-12-05 12:28:04 -05002885static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002886{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002887 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002888}
2889
2890static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2891{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002892 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002893}
2894
2895static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2896{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002897 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002898}
2899
2900static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2901{
Tejun Heo7da11272013-12-05 12:28:04 -05002902 struct cftype *cft = seq_cft(m);
2903 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002904
Tejun Heo2da8ca82013-12-05 12:28:04 -05002905 if (cft->seq_show)
2906 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002907
Tejun Heo896f5192013-12-05 12:28:04 -05002908 if (cft->read_u64)
2909 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2910 else if (cft->read_s64)
2911 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2912 else
2913 return -EINVAL;
2914 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002915}
2916
Tejun Heo2bd59d42014-02-11 11:52:49 -05002917static struct kernfs_ops cgroup_kf_single_ops = {
2918 .atomic_write_len = PAGE_SIZE,
2919 .write = cgroup_file_write,
2920 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002921};
2922
Tejun Heo2bd59d42014-02-11 11:52:49 -05002923static struct kernfs_ops cgroup_kf_ops = {
2924 .atomic_write_len = PAGE_SIZE,
2925 .write = cgroup_file_write,
2926 .seq_start = cgroup_seqfile_start,
2927 .seq_next = cgroup_seqfile_next,
2928 .seq_stop = cgroup_seqfile_stop,
2929 .seq_show = cgroup_seqfile_show,
2930};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002931
2932/*
2933 * cgroup_rename - Only allow simple rename of directories in place.
2934 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002935static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2936 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002937{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002938 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08002939 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002940
Tejun Heo2bd59d42014-02-11 11:52:49 -05002941 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002942 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002943 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002944 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002945
Tejun Heo6db8e852013-06-14 11:18:22 -07002946 /*
2947 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04002948 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07002949 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04002950 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07002951 return -EPERM;
2952
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002953 /*
Tejun Heo8353da12014-05-13 12:19:23 -04002954 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002955 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04002956 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002957 */
2958 kernfs_break_active_protection(new_parent);
2959 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08002960
Tejun Heo2bd59d42014-02-11 11:52:49 -05002961 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08002962
Tejun Heo2bd59d42014-02-11 11:52:49 -05002963 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002964
Tejun Heo2bd59d42014-02-11 11:52:49 -05002965 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002966
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002967 kernfs_unbreak_active_protection(kn);
2968 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002969 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07002970}
2971
Tejun Heo49957f82014-04-07 16:44:47 -04002972/* set uid and gid of cgroup dirs and files to that of the creator */
2973static int cgroup_kn_set_ugid(struct kernfs_node *kn)
2974{
2975 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
2976 .ia_uid = current_fsuid(),
2977 .ia_gid = current_fsgid(), };
2978
2979 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
2980 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
2981 return 0;
2982
2983 return kernfs_setattr(kn, &iattr);
2984}
2985
Tejun Heo2bb566c2013-08-08 20:11:23 -04002986static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002987{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002988 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002989 struct kernfs_node *kn;
2990 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04002991 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002992
Tejun Heo2bd59d42014-02-11 11:52:49 -05002993#ifdef CONFIG_DEBUG_LOCK_ALLOC
2994 key = &cft->lockdep_key;
2995#endif
2996 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2997 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2998 NULL, false, key);
Tejun Heo49957f82014-04-07 16:44:47 -04002999 if (IS_ERR(kn))
3000 return PTR_ERR(kn);
3001
3002 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003003 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003004 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003005 return ret;
3006 }
3007
Tejun Heob7fc5ad2014-05-13 12:16:22 -04003008 if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04003009 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04003010 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003011}
3012
Tejun Heob1f28d32013-06-28 16:24:10 -07003013/**
3014 * cgroup_addrm_files - add or remove files to a cgroup directory
3015 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07003016 * @cfts: array of cftypes to be added
3017 * @is_add: whether to add or remove
3018 *
3019 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04003020 * For removals, this function never fails. If addition fails, this
3021 * function doesn't remove files already added. The caller is responsible
3022 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07003023 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04003024static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
3025 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003026{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003027 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07003028 int ret;
3029
Tejun Heo01f64742014-05-13 12:19:23 -04003030 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003031
3032 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003033 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003034 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003035 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003036 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003037 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003038 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003039 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003040 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003041 continue;
3042
Li Zefan2739d3c2013-01-21 18:18:33 +08003043 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04003044 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003045 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003046 pr_warn("%s: failed to add %s, err=%d\n",
3047 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07003048 return ret;
3049 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003050 } else {
3051 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003052 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003053 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003054 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003055}
3056
Tejun Heo21a2d342014-02-12 09:29:49 -05003057static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003058{
3059 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003060 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003061 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003062 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003063 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003064
Tejun Heo01f64742014-05-13 12:19:23 -04003065 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003066
Li Zefane8c82d22013-06-18 18:48:37 +08003067 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003068 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003069 struct cgroup *cgrp = css->cgroup;
3070
Li Zefane8c82d22013-06-18 18:48:37 +08003071 if (cgroup_is_dead(cgrp))
3072 continue;
3073
Tejun Heo21a2d342014-02-12 09:29:49 -05003074 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003075 if (ret)
3076 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003077 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003078
3079 if (is_add && !ret)
3080 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003081 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003082}
3083
Tejun Heo2da440a2014-02-11 11:52:48 -05003084static void cgroup_exit_cftypes(struct cftype *cfts)
3085{
3086 struct cftype *cft;
3087
Tejun Heo2bd59d42014-02-11 11:52:49 -05003088 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3089 /* free copy for custom atomic_write_len, see init_cftypes() */
3090 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3091 kfree(cft->kf_ops);
3092 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003093 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003094
3095 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003096 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003097 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003098}
3099
Tejun Heo2bd59d42014-02-11 11:52:49 -05003100static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003101{
3102 struct cftype *cft;
3103
Tejun Heo2bd59d42014-02-11 11:52:49 -05003104 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3105 struct kernfs_ops *kf_ops;
3106
Tejun Heo0adb0702014-02-12 09:29:48 -05003107 WARN_ON(cft->ss || cft->kf_ops);
3108
Tejun Heo2bd59d42014-02-11 11:52:49 -05003109 if (cft->seq_start)
3110 kf_ops = &cgroup_kf_ops;
3111 else
3112 kf_ops = &cgroup_kf_single_ops;
3113
3114 /*
3115 * Ugh... if @cft wants a custom max_write_len, we need to
3116 * make a copy of kf_ops to set its atomic_write_len.
3117 */
3118 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3119 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3120 if (!kf_ops) {
3121 cgroup_exit_cftypes(cfts);
3122 return -ENOMEM;
3123 }
3124 kf_ops->atomic_write_len = cft->max_write_len;
3125 }
3126
3127 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003128 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003129 }
3130
3131 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003132}
3133
Tejun Heo21a2d342014-02-12 09:29:49 -05003134static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3135{
Tejun Heo01f64742014-05-13 12:19:23 -04003136 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003137
3138 if (!cfts || !cfts[0].ss)
3139 return -ENOENT;
3140
3141 list_del(&cfts->node);
3142 cgroup_apply_cftypes(cfts, false);
3143 cgroup_exit_cftypes(cfts);
3144 return 0;
3145}
3146
Tejun Heo8e3f6542012-04-01 12:09:55 -07003147/**
Tejun Heo80b13582014-02-12 09:29:48 -05003148 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3149 * @cfts: zero-length name terminated array of cftypes
3150 *
3151 * Unregister @cfts. Files described by @cfts are removed from all
3152 * existing cgroups and all future cgroups won't have them either. This
3153 * function can be called anytime whether @cfts' subsys is attached or not.
3154 *
3155 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3156 * registered.
3157 */
3158int cgroup_rm_cftypes(struct cftype *cfts)
3159{
Tejun Heo21a2d342014-02-12 09:29:49 -05003160 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003161
Tejun Heo01f64742014-05-13 12:19:23 -04003162 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003163 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003164 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003165 return ret;
3166}
3167
3168/**
3169 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3170 * @ss: target cgroup subsystem
3171 * @cfts: zero-length name terminated array of cftypes
3172 *
3173 * Register @cfts to @ss. Files described by @cfts are created for all
3174 * existing cgroups to which @ss is attached and all future cgroups will
3175 * have them too. This function can be called anytime whether @ss is
3176 * attached or not.
3177 *
3178 * Returns 0 on successful registration, -errno on failure. Note that this
3179 * function currently returns 0 as long as @cfts registration is successful
3180 * even if some file creation attempts on existing cgroups fail.
3181 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003182static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003183{
Tejun Heo9ccece82013-06-28 16:24:11 -07003184 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003185
Li Zefanc731ae12014-06-05 17:16:30 +08003186 if (ss->disabled)
3187 return 0;
3188
Li Zefandc5736e2014-02-17 10:41:50 +08003189 if (!cfts || cfts[0].name[0] == '\0')
3190 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003191
Tejun Heo2bd59d42014-02-11 11:52:49 -05003192 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003193 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003194 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003195
Tejun Heo01f64742014-05-13 12:19:23 -04003196 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003197
Tejun Heo0adb0702014-02-12 09:29:48 -05003198 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003199 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003200 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003201 cgroup_rm_cftypes_locked(cfts);
3202
Tejun Heo01f64742014-05-13 12:19:23 -04003203 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003204 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003205}
Tejun Heo79578622012-04-01 12:09:56 -07003206
Tejun Heoa8ddc822014-07-15 11:05:10 -04003207/**
3208 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3209 * @ss: target cgroup subsystem
3210 * @cfts: zero-length name terminated array of cftypes
3211 *
3212 * Similar to cgroup_add_cftypes() but the added files are only used for
3213 * the default hierarchy.
3214 */
3215int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3216{
3217 struct cftype *cft;
3218
3219 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003220 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003221 return cgroup_add_cftypes(ss, cfts);
3222}
3223
3224/**
3225 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3226 * @ss: target cgroup subsystem
3227 * @cfts: zero-length name terminated array of cftypes
3228 *
3229 * Similar to cgroup_add_cftypes() but the added files are only used for
3230 * the legacy hierarchies.
3231 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003232int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3233{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003234 struct cftype *cft;
3235
3236 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003237 cft->flags |= __CFTYPE_NOT_ON_DFL;
Tejun Heo2cf669a2014-07-15 11:05:09 -04003238 return cgroup_add_cftypes(ss, cfts);
3239}
3240
Tejun Heo79578622012-04-01 12:09:56 -07003241/**
Li Zefana043e3b2008-02-23 15:24:09 -08003242 * cgroup_task_count - count the number of tasks in a cgroup.
3243 * @cgrp: the cgroup in question
3244 *
3245 * Return the number of tasks in the cgroup.
3246 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003247static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003248{
3249 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003250 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003251
Tejun Heo96d365e2014-02-13 06:58:40 -05003252 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003253 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3254 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003255 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003256 return count;
3257}
3258
Tejun Heo574bd9f2012-11-09 09:12:29 -08003259/**
Tejun Heo492eb212013-08-08 20:11:25 -04003260 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003261 * @pos: the current position (%NULL to initiate traversal)
3262 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003263 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003264 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003265 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003266 * that @parent and @pos are accessible. The next sibling is guaranteed to
3267 * be returned regardless of their states.
3268 *
3269 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3270 * css which finished ->css_online() is guaranteed to be visible in the
3271 * future iterations and will stay visible until the last reference is put.
3272 * A css which hasn't finished ->css_online() or already finished
3273 * ->css_offline() may show up during traversal. It's each subsystem's
3274 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003275 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003276struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3277 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003278{
Tejun Heoc2931b72014-05-16 13:22:51 -04003279 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003280
Tejun Heo8353da12014-05-13 12:19:23 -04003281 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003282
3283 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003284 * @pos could already have been unlinked from the sibling list.
3285 * Once a cgroup is removed, its ->sibling.next is no longer
3286 * updated when its next sibling changes. CSS_RELEASED is set when
3287 * @pos is taken off list, at which time its next pointer is valid,
3288 * and, as releases are serialized, the one pointed to by the next
3289 * pointer is guaranteed to not have started release yet. This
3290 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3291 * critical section, the one pointed to by its next pointer is
3292 * guaranteed to not have finished its RCU grace period even if we
3293 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003294 *
Tejun Heode3f0342014-05-16 13:22:49 -04003295 * If @pos has CSS_RELEASED set, its next pointer can't be
3296 * dereferenced; however, as each css is given a monotonically
3297 * increasing unique serial number and always appended to the
3298 * sibling list, the next one can be found by walking the parent's
3299 * children until the first css with higher serial number than
3300 * @pos's. While this path can be slower, it happens iff iteration
3301 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003302 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003303 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003304 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3305 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3306 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003307 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003308 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003309 if (next->serial_nr > pos->serial_nr)
3310 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003311 }
3312
Tejun Heo3b281af2014-04-23 11:13:15 -04003313 /*
3314 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003315 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003316 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003317 if (&next->sibling != &parent->children)
3318 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003319 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003320}
Tejun Heo53fa5262013-05-24 10:55:38 +09003321
3322/**
Tejun Heo492eb212013-08-08 20:11:25 -04003323 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003324 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003325 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003326 *
Tejun Heo492eb212013-08-08 20:11:25 -04003327 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003328 * to visit for pre-order traversal of @root's descendants. @root is
3329 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003330 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003331 * While this function requires cgroup_mutex or RCU read locking, it
3332 * doesn't require the whole traversal to be contained in a single critical
3333 * section. This function will return the correct next descendant as long
3334 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003335 *
3336 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3337 * css which finished ->css_online() is guaranteed to be visible in the
3338 * future iterations and will stay visible until the last reference is put.
3339 * A css which hasn't finished ->css_online() or already finished
3340 * ->css_offline() may show up during traversal. It's each subsystem's
3341 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003342 */
Tejun Heo492eb212013-08-08 20:11:25 -04003343struct cgroup_subsys_state *
3344css_next_descendant_pre(struct cgroup_subsys_state *pos,
3345 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003346{
Tejun Heo492eb212013-08-08 20:11:25 -04003347 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003348
Tejun Heo8353da12014-05-13 12:19:23 -04003349 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003350
Tejun Heobd8815a2013-08-08 20:11:27 -04003351 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003352 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003353 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003354
3355 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003356 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003357 if (next)
3358 return next;
3359
3360 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003361 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003362 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003363 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003364 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003365 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003366 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003367
3368 return NULL;
3369}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003370
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003371/**
Tejun Heo492eb212013-08-08 20:11:25 -04003372 * css_rightmost_descendant - return the rightmost descendant of a css
3373 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003374 *
Tejun Heo492eb212013-08-08 20:11:25 -04003375 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3376 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003377 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003378 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003379 * While this function requires cgroup_mutex or RCU read locking, it
3380 * doesn't require the whole traversal to be contained in a single critical
3381 * section. This function will return the correct rightmost descendant as
3382 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003383 */
Tejun Heo492eb212013-08-08 20:11:25 -04003384struct cgroup_subsys_state *
3385css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003386{
Tejun Heo492eb212013-08-08 20:11:25 -04003387 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003388
Tejun Heo8353da12014-05-13 12:19:23 -04003389 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003390
3391 do {
3392 last = pos;
3393 /* ->prev isn't RCU safe, walk ->next till the end */
3394 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003395 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003396 pos = tmp;
3397 } while (pos);
3398
3399 return last;
3400}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003401
Tejun Heo492eb212013-08-08 20:11:25 -04003402static struct cgroup_subsys_state *
3403css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003404{
Tejun Heo492eb212013-08-08 20:11:25 -04003405 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003406
3407 do {
3408 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003409 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003410 } while (pos);
3411
3412 return last;
3413}
3414
3415/**
Tejun Heo492eb212013-08-08 20:11:25 -04003416 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003417 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003418 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003419 *
Tejun Heo492eb212013-08-08 20:11:25 -04003420 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003421 * to visit for post-order traversal of @root's descendants. @root is
3422 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003423 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003424 * While this function requires cgroup_mutex or RCU read locking, it
3425 * doesn't require the whole traversal to be contained in a single critical
3426 * section. This function will return the correct next descendant as long
3427 * as both @pos and @cgroup are accessible and @pos is a descendant of
3428 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003429 *
3430 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3431 * css which finished ->css_online() is guaranteed to be visible in the
3432 * future iterations and will stay visible until the last reference is put.
3433 * A css which hasn't finished ->css_online() or already finished
3434 * ->css_offline() may show up during traversal. It's each subsystem's
3435 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003436 */
Tejun Heo492eb212013-08-08 20:11:25 -04003437struct cgroup_subsys_state *
3438css_next_descendant_post(struct cgroup_subsys_state *pos,
3439 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003440{
Tejun Heo492eb212013-08-08 20:11:25 -04003441 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003442
Tejun Heo8353da12014-05-13 12:19:23 -04003443 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003444
Tejun Heo58b79a92013-09-06 15:31:08 -04003445 /* if first iteration, visit leftmost descendant which may be @root */
3446 if (!pos)
3447 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003448
Tejun Heobd8815a2013-08-08 20:11:27 -04003449 /* if we visited @root, we're done */
3450 if (pos == root)
3451 return NULL;
3452
Tejun Heo574bd9f2012-11-09 09:12:29 -08003453 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003454 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003455 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003456 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003457
3458 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003459 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003460}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003461
Tejun Heof3d46502014-05-16 13:22:52 -04003462/**
3463 * css_has_online_children - does a css have online children
3464 * @css: the target css
3465 *
3466 * Returns %true if @css has any online children; otherwise, %false. This
3467 * function can be called from any context but the caller is responsible
3468 * for synchronizing against on/offlining as necessary.
3469 */
3470bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003471{
Tejun Heof3d46502014-05-16 13:22:52 -04003472 struct cgroup_subsys_state *child;
3473 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003474
3475 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003476 css_for_each_child(child, css) {
3477 if (css->flags & CSS_ONLINE) {
3478 ret = true;
3479 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003480 }
3481 }
3482 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003483 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003484}
3485
Tejun Heo0942eee2013-08-08 20:11:26 -04003486/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003487 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003488 * @it: the iterator to advance
3489 *
3490 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003491 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003492static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003493{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003494 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003495 struct cgrp_cset_link *link;
3496 struct css_set *cset;
3497
3498 /* Advance to the next non-empty css_set */
3499 do {
3500 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003501 if (l == it->cset_head) {
3502 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003503 return;
3504 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003505
3506 if (it->ss) {
3507 cset = container_of(l, struct css_set,
3508 e_cset_node[it->ss->id]);
3509 } else {
3510 link = list_entry(l, struct cgrp_cset_link, cset_link);
3511 cset = link->cset;
3512 }
Tejun Heoc7561122014-02-25 10:04:01 -05003513 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3514
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003515 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003516
3517 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003518 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003519 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003520 it->task_pos = cset->mg_tasks.next;
3521
3522 it->tasks_head = &cset->tasks;
3523 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003524}
3525
Tejun Heo0942eee2013-08-08 20:11:26 -04003526/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003527 * css_task_iter_start - initiate task iteration
3528 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003529 * @it: the task iterator to use
3530 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003531 * Initiate iteration through the tasks of @css. The caller can call
3532 * css_task_iter_next() to walk through the tasks until the function
3533 * returns NULL. On completion of iteration, css_task_iter_end() must be
3534 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003535 *
3536 * Note that this function acquires a lock which is released when the
3537 * iteration finishes. The caller can't sleep while iteration is in
3538 * progress.
3539 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003540void css_task_iter_start(struct cgroup_subsys_state *css,
3541 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003542 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003543{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003544 /* no one should try to iterate before mounting cgroups */
3545 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003546
Tejun Heo96d365e2014-02-13 06:58:40 -05003547 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003548
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003549 it->ss = css->ss;
3550
3551 if (it->ss)
3552 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3553 else
3554 it->cset_pos = &css->cgroup->cset_links;
3555
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003556 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003557
Tejun Heo72ec7022013-08-08 20:11:26 -04003558 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003559}
Paul Menage817929e2007-10-18 23:39:36 -07003560
Tejun Heo0942eee2013-08-08 20:11:26 -04003561/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003562 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003563 * @it: the task iterator being iterated
3564 *
3565 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003566 * initialized via css_task_iter_start(). Returns NULL when the iteration
3567 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003568 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003569struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003570{
3571 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003572 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003573
3574 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003575 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003576 return NULL;
3577 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003578
3579 /*
3580 * Advance iterator to find next entry. cset->tasks is consumed
3581 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3582 * next cset.
3583 */
Paul Menage817929e2007-10-18 23:39:36 -07003584 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003585
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003586 if (l == it->tasks_head)
3587 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003588
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003589 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003590 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003591 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003592 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003593
Paul Menage817929e2007-10-18 23:39:36 -07003594 return res;
3595}
3596
Tejun Heo0942eee2013-08-08 20:11:26 -04003597/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003598 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003599 * @it: the task iterator to finish
3600 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003601 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003602 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003603void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003604 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003605{
Tejun Heo96d365e2014-02-13 06:58:40 -05003606 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003607}
3608
3609/**
3610 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3611 * @to: cgroup to which the tasks will be moved
3612 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003613 *
3614 * Locking rules between cgroup_post_fork() and the migration path
3615 * guarantee that, if a task is forking while being migrated, the new child
3616 * is guaranteed to be either visible in the source cgroup after the
3617 * parent's migration is complete or put into the target cgroup. No task
3618 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003619 */
3620int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3621{
Tejun Heo952aaa12014-02-25 10:04:03 -05003622 LIST_HEAD(preloaded_csets);
3623 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003624 struct css_task_iter it;
3625 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003626 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003627
Tejun Heo952aaa12014-02-25 10:04:03 -05003628 mutex_lock(&cgroup_mutex);
3629
3630 /* all tasks in @from are being moved, all csets are source */
3631 down_read(&css_set_rwsem);
3632 list_for_each_entry(link, &from->cset_links, cset_link)
3633 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3634 up_read(&css_set_rwsem);
3635
3636 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3637 if (ret)
3638 goto out_err;
3639
3640 /*
3641 * Migrate tasks one-by-one until @form is empty. This fails iff
3642 * ->can_attach() fails.
3643 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003644 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003645 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003646 task = css_task_iter_next(&it);
3647 if (task)
3648 get_task_struct(task);
3649 css_task_iter_end(&it);
3650
3651 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003652 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003653 put_task_struct(task);
3654 }
3655 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003656out_err:
3657 cgroup_migrate_finish(&preloaded_csets);
3658 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003659 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003660}
3661
Paul Menage817929e2007-10-18 23:39:36 -07003662/*
Ben Blum102a7752009-09-23 15:56:26 -07003663 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003664 *
3665 * Reading this file can return large amounts of data if a cgroup has
3666 * *lots* of attached tasks. So it may need several calls to read(),
3667 * but we cannot guarantee that the information we produce is correct
3668 * unless we produce it entirely atomically.
3669 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003670 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003671
Li Zefan24528252012-01-20 11:58:43 +08003672/* which pidlist file are we talking about? */
3673enum cgroup_filetype {
3674 CGROUP_FILE_PROCS,
3675 CGROUP_FILE_TASKS,
3676};
3677
3678/*
3679 * A pidlist is a list of pids that virtually represents the contents of one
3680 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3681 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3682 * to the cgroup.
3683 */
3684struct cgroup_pidlist {
3685 /*
3686 * used to find which pidlist is wanted. doesn't change as long as
3687 * this particular list stays in the list.
3688 */
3689 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3690 /* array of xids */
3691 pid_t *list;
3692 /* how many elements the above list has */
3693 int length;
Li Zefan24528252012-01-20 11:58:43 +08003694 /* each of these stored in a list by its cgroup */
3695 struct list_head links;
3696 /* pointer to the cgroup we belong to, for list removal purposes */
3697 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003698 /* for delayed destruction */
3699 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003700};
3701
Paul Menagebbcb81d2007-10-18 23:39:32 -07003702/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003703 * The following two functions "fix" the issue where there are more pids
3704 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3705 * TODO: replace with a kernel-wide solution to this problem
3706 */
3707#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3708static void *pidlist_allocate(int count)
3709{
3710 if (PIDLIST_TOO_LARGE(count))
3711 return vmalloc(count * sizeof(pid_t));
3712 else
3713 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3714}
Tejun Heob1a21362013-11-29 10:42:58 -05003715
Ben Blumd1d9fd32009-09-23 15:56:28 -07003716static void pidlist_free(void *p)
3717{
3718 if (is_vmalloc_addr(p))
3719 vfree(p);
3720 else
3721 kfree(p);
3722}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003723
3724/*
Tejun Heob1a21362013-11-29 10:42:58 -05003725 * Used to destroy all pidlists lingering waiting for destroy timer. None
3726 * should be left afterwards.
3727 */
3728static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3729{
3730 struct cgroup_pidlist *l, *tmp_l;
3731
3732 mutex_lock(&cgrp->pidlist_mutex);
3733 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3734 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3735 mutex_unlock(&cgrp->pidlist_mutex);
3736
3737 flush_workqueue(cgroup_pidlist_destroy_wq);
3738 BUG_ON(!list_empty(&cgrp->pidlists));
3739}
3740
3741static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3742{
3743 struct delayed_work *dwork = to_delayed_work(work);
3744 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3745 destroy_dwork);
3746 struct cgroup_pidlist *tofree = NULL;
3747
3748 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003749
3750 /*
Tejun Heo04502362013-11-29 10:42:59 -05003751 * Destroy iff we didn't get queued again. The state won't change
3752 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003753 */
Tejun Heo04502362013-11-29 10:42:59 -05003754 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003755 list_del(&l->links);
3756 pidlist_free(l->list);
3757 put_pid_ns(l->key.ns);
3758 tofree = l;
3759 }
3760
Tejun Heob1a21362013-11-29 10:42:58 -05003761 mutex_unlock(&l->owner->pidlist_mutex);
3762 kfree(tofree);
3763}
3764
3765/*
Ben Blum102a7752009-09-23 15:56:26 -07003766 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003767 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003768 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003769static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003770{
Ben Blum102a7752009-09-23 15:56:26 -07003771 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003772
3773 /*
3774 * we presume the 0th element is unique, so i starts at 1. trivial
3775 * edge cases first; no work needs to be done for either
3776 */
3777 if (length == 0 || length == 1)
3778 return length;
3779 /* src and dest walk down the list; dest counts unique elements */
3780 for (src = 1; src < length; src++) {
3781 /* find next unique element */
3782 while (list[src] == list[src-1]) {
3783 src++;
3784 if (src == length)
3785 goto after;
3786 }
3787 /* dest always points to where the next unique element goes */
3788 list[dest] = list[src];
3789 dest++;
3790 }
3791after:
Ben Blum102a7752009-09-23 15:56:26 -07003792 return dest;
3793}
3794
Tejun Heoafb2bc12013-11-29 10:42:59 -05003795/*
3796 * The two pid files - task and cgroup.procs - guaranteed that the result
3797 * is sorted, which forced this whole pidlist fiasco. As pid order is
3798 * different per namespace, each namespace needs differently sorted list,
3799 * making it impossible to use, for example, single rbtree of member tasks
3800 * sorted by task pointer. As pidlists can be fairly large, allocating one
3801 * per open file is dangerous, so cgroup had to implement shared pool of
3802 * pidlists keyed by cgroup and namespace.
3803 *
3804 * All this extra complexity was caused by the original implementation
3805 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04003806 * want to do away with it. Explicitly scramble sort order if on the
3807 * default hierarchy so that no such expectation exists in the new
3808 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05003809 *
3810 * Scrambling is done by swapping every two consecutive bits, which is
3811 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3812 */
3813static pid_t pid_fry(pid_t pid)
3814{
3815 unsigned a = pid & 0x55555555;
3816 unsigned b = pid & 0xAAAAAAAA;
3817
3818 return (a << 1) | (b >> 1);
3819}
3820
3821static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3822{
Tejun Heoaa6ec292014-07-09 10:08:08 -04003823 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05003824 return pid_fry(pid);
3825 else
3826 return pid;
3827}
3828
Ben Blum102a7752009-09-23 15:56:26 -07003829static int cmppid(const void *a, const void *b)
3830{
3831 return *(pid_t *)a - *(pid_t *)b;
3832}
3833
Tejun Heoafb2bc12013-11-29 10:42:59 -05003834static int fried_cmppid(const void *a, const void *b)
3835{
3836 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3837}
3838
Ben Blum72a8cb32009-09-23 15:56:27 -07003839static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3840 enum cgroup_filetype type)
3841{
3842 struct cgroup_pidlist *l;
3843 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003844 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003845
Tejun Heoe6b81712013-11-29 10:42:59 -05003846 lockdep_assert_held(&cgrp->pidlist_mutex);
3847
3848 list_for_each_entry(l, &cgrp->pidlists, links)
3849 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003850 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003851 return NULL;
3852}
3853
Ben Blum72a8cb32009-09-23 15:56:27 -07003854/*
3855 * find the appropriate pidlist for our purpose (given procs vs tasks)
3856 * returns with the lock on that pidlist already held, and takes care
3857 * of the use count, or returns NULL with no locks held if we're out of
3858 * memory.
3859 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003860static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3861 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003862{
3863 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003864
Tejun Heoe6b81712013-11-29 10:42:59 -05003865 lockdep_assert_held(&cgrp->pidlist_mutex);
3866
3867 l = cgroup_pidlist_find(cgrp, type);
3868 if (l)
3869 return l;
3870
Ben Blum72a8cb32009-09-23 15:56:27 -07003871 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003872 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003873 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003874 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003875
Tejun Heob1a21362013-11-29 10:42:58 -05003876 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003877 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003878 /* don't need task_nsproxy() if we're looking at ourself */
3879 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003880 l->owner = cgrp;
3881 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003882 return l;
3883}
3884
3885/*
Ben Blum102a7752009-09-23 15:56:26 -07003886 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3887 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003888static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3889 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003890{
3891 pid_t *array;
3892 int length;
3893 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003894 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003895 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003896 struct cgroup_pidlist *l;
3897
Tejun Heo4bac00d2013-11-29 10:42:59 -05003898 lockdep_assert_held(&cgrp->pidlist_mutex);
3899
Ben Blum102a7752009-09-23 15:56:26 -07003900 /*
3901 * If cgroup gets more users after we read count, we won't have
3902 * enough space - tough. This race is indistinguishable to the
3903 * caller from the case that the additional cgroup users didn't
3904 * show up until sometime later on.
3905 */
3906 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003907 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003908 if (!array)
3909 return -ENOMEM;
3910 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04003911 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003912 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003913 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003914 break;
Ben Blum102a7752009-09-23 15:56:26 -07003915 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003916 if (type == CGROUP_FILE_PROCS)
3917 pid = task_tgid_vnr(tsk);
3918 else
3919 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003920 if (pid > 0) /* make sure to only use valid results */
3921 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003922 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003923 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003924 length = n;
3925 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003926 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05003927 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3928 else
3929 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003930 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003931 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003932
Tejun Heoe6b81712013-11-29 10:42:59 -05003933 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003934 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003935 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003936 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003937 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003938 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003939
3940 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003941 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003942 l->list = array;
3943 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003944 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003945 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003946}
3947
Balbir Singh846c7bb2007-10-18 23:39:44 -07003948/**
Li Zefana043e3b2008-02-23 15:24:09 -08003949 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003950 * @stats: cgroupstats to fill information into
3951 * @dentry: A dentry entry belonging to the cgroup for which stats have
3952 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003953 *
3954 * Build and fill cgroupstats so that taskstats can export it to user
3955 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003956 */
3957int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3958{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003959 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003960 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003961 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003962 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003963
Tejun Heo2bd59d42014-02-11 11:52:49 -05003964 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3965 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3966 kernfs_type(kn) != KERNFS_DIR)
3967 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003968
Li Zefanbad34662014-02-14 16:54:28 +08003969 mutex_lock(&cgroup_mutex);
3970
Tejun Heo2bd59d42014-02-11 11:52:49 -05003971 /*
3972 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04003973 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05003974 * @kn->priv is RCU safe. Let's do the RCU dancing.
3975 */
3976 rcu_read_lock();
3977 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08003978 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05003979 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08003980 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003981 return -ENOENT;
3982 }
Li Zefanbad34662014-02-14 16:54:28 +08003983 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07003984
Tejun Heo9d800df2014-05-14 09:15:00 -04003985 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003986 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003987 switch (tsk->state) {
3988 case TASK_RUNNING:
3989 stats->nr_running++;
3990 break;
3991 case TASK_INTERRUPTIBLE:
3992 stats->nr_sleeping++;
3993 break;
3994 case TASK_UNINTERRUPTIBLE:
3995 stats->nr_uninterruptible++;
3996 break;
3997 case TASK_STOPPED:
3998 stats->nr_stopped++;
3999 break;
4000 default:
4001 if (delayacct_is_task_waiting_on_io(tsk))
4002 stats->nr_io_wait++;
4003 break;
4004 }
4005 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004006 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004007
Li Zefanbad34662014-02-14 16:54:28 +08004008 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004009 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004010}
4011
Paul Menage8f3ff202009-09-23 15:56:25 -07004012
Paul Menagecc31edc2008-10-18 20:28:04 -07004013/*
Ben Blum102a7752009-09-23 15:56:26 -07004014 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004015 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004016 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004017 */
4018
Ben Blum102a7752009-09-23 15:56:26 -07004019static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004020{
4021 /*
4022 * Initially we receive a position value that corresponds to
4023 * one more than the last pid shown (or 0 on the first call or
4024 * after a seek to the start). Use a binary-search to find the
4025 * next pid to display, if any
4026 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004027 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004028 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004029 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004030 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004031 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004032 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004033
Tejun Heo4bac00d2013-11-29 10:42:59 -05004034 mutex_lock(&cgrp->pidlist_mutex);
4035
4036 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004037 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004038 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004039 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004040 * could already have been destroyed.
4041 */
Tejun Heo5d224442013-12-05 12:28:04 -05004042 if (of->priv)
4043 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004044
4045 /*
4046 * Either this is the first start() after open or the matching
4047 * pidlist has been destroyed inbetween. Create a new one.
4048 */
Tejun Heo5d224442013-12-05 12:28:04 -05004049 if (!of->priv) {
4050 ret = pidlist_array_load(cgrp, type,
4051 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004052 if (ret)
4053 return ERR_PTR(ret);
4054 }
Tejun Heo5d224442013-12-05 12:28:04 -05004055 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004056
Paul Menagecc31edc2008-10-18 20:28:04 -07004057 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004058 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004059
Paul Menagecc31edc2008-10-18 20:28:04 -07004060 while (index < end) {
4061 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004062 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004063 index = mid;
4064 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004065 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004066 index = mid + 1;
4067 else
4068 end = mid;
4069 }
4070 }
4071 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004072 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004073 return NULL;
4074 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004075 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004076 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004077 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004078}
4079
Ben Blum102a7752009-09-23 15:56:26 -07004080static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004081{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004082 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004083 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004084
Tejun Heo5d224442013-12-05 12:28:04 -05004085 if (l)
4086 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004087 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004088 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004089}
4090
Ben Blum102a7752009-09-23 15:56:26 -07004091static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004092{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004093 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004094 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004095 pid_t *p = v;
4096 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004097 /*
4098 * Advance to the next pid in the array. If this goes off the
4099 * end, we're done
4100 */
4101 p++;
4102 if (p >= end) {
4103 return NULL;
4104 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004105 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004106 return p;
4107 }
4108}
4109
Ben Blum102a7752009-09-23 15:56:26 -07004110static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004111{
4112 return seq_printf(s, "%d\n", *(int *)v);
4113}
4114
Tejun Heo182446d2013-08-08 20:11:24 -04004115static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4116 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004117{
Tejun Heo182446d2013-08-08 20:11:24 -04004118 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004119}
4120
Tejun Heo182446d2013-08-08 20:11:24 -04004121static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4122 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004123{
Tejun Heo182446d2013-08-08 20:11:24 -04004124 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004125 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004126 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004127 else
Tejun Heo182446d2013-08-08 20:11:24 -04004128 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004129 return 0;
4130}
4131
Tejun Heo182446d2013-08-08 20:11:24 -04004132static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4133 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004134{
Tejun Heo182446d2013-08-08 20:11:24 -04004135 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004136}
4137
Tejun Heo182446d2013-08-08 20:11:24 -04004138static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4139 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004140{
4141 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004142 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004143 else
Tejun Heo182446d2013-08-08 20:11:24 -04004144 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004145 return 0;
4146}
4147
Tejun Heoa14c6872014-07-15 11:05:09 -04004148/* cgroup core interface files for the default hierarchy */
4149static struct cftype cgroup_dfl_base_files[] = {
4150 {
4151 .name = "cgroup.procs",
4152 .seq_start = cgroup_pidlist_start,
4153 .seq_next = cgroup_pidlist_next,
4154 .seq_stop = cgroup_pidlist_stop,
4155 .seq_show = cgroup_pidlist_show,
4156 .private = CGROUP_FILE_PROCS,
4157 .write = cgroup_procs_write,
4158 .mode = S_IRUGO | S_IWUSR,
4159 },
4160 {
4161 .name = "cgroup.controllers",
4162 .flags = CFTYPE_ONLY_ON_ROOT,
4163 .seq_show = cgroup_root_controllers_show,
4164 },
4165 {
4166 .name = "cgroup.controllers",
4167 .flags = CFTYPE_NOT_ON_ROOT,
4168 .seq_show = cgroup_controllers_show,
4169 },
4170 {
4171 .name = "cgroup.subtree_control",
4172 .seq_show = cgroup_subtree_control_show,
4173 .write = cgroup_subtree_control_write,
4174 },
4175 {
4176 .name = "cgroup.populated",
4177 .flags = CFTYPE_NOT_ON_ROOT,
4178 .seq_show = cgroup_populated_show,
4179 },
4180 { } /* terminate */
4181};
4182
4183/* cgroup core interface files for the legacy hierarchies */
4184static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004185 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004186 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004187 .seq_start = cgroup_pidlist_start,
4188 .seq_next = cgroup_pidlist_next,
4189 .seq_stop = cgroup_pidlist_stop,
4190 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004191 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004192 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004193 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004194 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004195 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004196 .name = "cgroup.clone_children",
4197 .read_u64 = cgroup_clone_children_read,
4198 .write_u64 = cgroup_clone_children_write,
4199 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004200 {
Tejun Heo873fe092013-04-14 20:15:26 -07004201 .name = "cgroup.sane_behavior",
Tejun Heoa14c6872014-07-15 11:05:09 -04004202 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004203 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004204 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004205 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004206 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004207 .seq_start = cgroup_pidlist_start,
4208 .seq_next = cgroup_pidlist_next,
4209 .seq_stop = cgroup_pidlist_stop,
4210 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004211 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004212 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004213 .mode = S_IRUGO | S_IWUSR,
4214 },
4215 {
4216 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004217 .read_u64 = cgroup_read_notify_on_release,
4218 .write_u64 = cgroup_write_notify_on_release,
4219 },
Tejun Heo873fe092013-04-14 20:15:26 -07004220 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004221 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004222 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004223 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004224 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004225 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004226 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004227 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004228};
4229
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004230/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004231 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004232 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004233 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004234 *
4235 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004236 */
Tejun Heo69dfa002014-05-04 15:09:13 -04004237static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004238{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004239 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004240 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004241
Tejun Heo8e3f6542012-04-01 12:09:55 -07004242 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004243 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004244 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004245
Tejun Heo69dfa002014-05-04 15:09:13 -04004246 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004247 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004248
Tejun Heo0adb0702014-02-12 09:29:48 -05004249 list_for_each_entry(cfts, &ss->cfts, node) {
4250 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004251 if (ret < 0)
4252 goto err;
4253 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004254 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004255 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004256err:
4257 cgroup_clear_dir(cgrp, subsys_mask);
4258 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004259}
4260
Tejun Heo0c21ead2013-08-13 20:22:51 -04004261/*
4262 * css destruction is four-stage process.
4263 *
4264 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4265 * Implemented in kill_css().
4266 *
4267 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004268 * and thus css_tryget_online() is guaranteed to fail, the css can be
4269 * offlined by invoking offline_css(). After offlining, the base ref is
4270 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004271 *
4272 * 3. When the percpu_ref reaches zero, the only possible remaining
4273 * accessors are inside RCU read sections. css_release() schedules the
4274 * RCU callback.
4275 *
4276 * 4. After the grace period, the css can be freed. Implemented in
4277 * css_free_work_fn().
4278 *
4279 * It is actually hairier because both step 2 and 4 require process context
4280 * and thus involve punting to css->destroy_work adding two additional
4281 * steps to the already complex sequence.
4282 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004283static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004284{
4285 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004286 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04004287 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004288
Tejun Heo9d755d32014-05-14 09:15:02 -04004289 if (css->ss) {
4290 /* css free path */
4291 if (css->parent)
4292 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004293
Tejun Heo9d755d32014-05-14 09:15:02 -04004294 css->ss->css_free(css);
4295 cgroup_put(cgrp);
4296 } else {
4297 /* cgroup free path */
4298 atomic_dec(&cgrp->root->nr_cgrps);
4299 cgroup_pidlist_destroy_all(cgrp);
4300
Tejun Heod51f39b2014-05-16 13:22:48 -04004301 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004302 /*
4303 * We get a ref to the parent, and put the ref when
4304 * this cgroup is being freed, so it's guaranteed
4305 * that the parent won't be destroyed before its
4306 * children.
4307 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004308 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004309 kernfs_put(cgrp->kn);
4310 kfree(cgrp);
4311 } else {
4312 /*
4313 * This is root cgroup's refcnt reaching zero,
4314 * which indicates that the root should be
4315 * released.
4316 */
4317 cgroup_destroy_root(cgrp->root);
4318 }
4319 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004320}
4321
4322static void css_free_rcu_fn(struct rcu_head *rcu_head)
4323{
4324 struct cgroup_subsys_state *css =
4325 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4326
Tejun Heo0c21ead2013-08-13 20:22:51 -04004327 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004328 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004329}
4330
Tejun Heo25e15d82014-05-14 09:15:02 -04004331static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004332{
4333 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004334 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004335 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004336 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004337
Tejun Heo1fed1b22014-05-16 13:22:49 -04004338 mutex_lock(&cgroup_mutex);
4339
Tejun Heode3f0342014-05-16 13:22:49 -04004340 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004341 list_del_rcu(&css->sibling);
4342
Tejun Heo9d755d32014-05-14 09:15:02 -04004343 if (ss) {
4344 /* css release path */
4345 cgroup_idr_remove(&ss->css_idr, css->id);
4346 } else {
4347 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004348 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4349 cgrp->id = -1;
4350 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004351
Tejun Heo1fed1b22014-05-16 13:22:49 -04004352 mutex_unlock(&cgroup_mutex);
4353
Tejun Heo0c21ead2013-08-13 20:22:51 -04004354 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004355}
4356
Paul Menageddbcc7e2007-10-18 23:39:30 -07004357static void css_release(struct percpu_ref *ref)
4358{
4359 struct cgroup_subsys_state *css =
4360 container_of(ref, struct cgroup_subsys_state, refcnt);
4361
Tejun Heo25e15d82014-05-14 09:15:02 -04004362 INIT_WORK(&css->destroy_work, css_release_work_fn);
4363 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004364}
4365
Tejun Heoddfcada2014-05-04 15:09:14 -04004366static void init_and_link_css(struct cgroup_subsys_state *css,
4367 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004368{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004369 lockdep_assert_held(&cgroup_mutex);
4370
Tejun Heoddfcada2014-05-04 15:09:14 -04004371 cgroup_get(cgrp);
4372
Tejun Heod5c419b2014-05-16 13:22:48 -04004373 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004374 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004375 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004376 INIT_LIST_HEAD(&css->sibling);
4377 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004378 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004379
Tejun Heod51f39b2014-05-16 13:22:48 -04004380 if (cgroup_parent(cgrp)) {
4381 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004382 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004383 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004384
Tejun Heoca8bdca2013-08-26 18:40:56 -04004385 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004386}
4387
Li Zefan2a4ac632013-07-31 16:16:40 +08004388/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004389static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004390{
Tejun Heo623f9262013-08-13 11:01:55 -04004391 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004392 int ret = 0;
4393
Tejun Heoa31f2d32012-11-19 08:13:37 -08004394 lockdep_assert_held(&cgroup_mutex);
4395
Tejun Heo92fb9742012-11-19 08:13:38 -08004396 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004397 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004398 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004399 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004400 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004401 }
Tejun Heob1929db2012-11-19 08:13:38 -08004402 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004403}
4404
Li Zefan2a4ac632013-07-31 16:16:40 +08004405/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004406static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004407{
Tejun Heo623f9262013-08-13 11:01:55 -04004408 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004409
4410 lockdep_assert_held(&cgroup_mutex);
4411
4412 if (!(css->flags & CSS_ONLINE))
4413 return;
4414
Li Zefand7eeac12013-03-12 15:35:59 -07004415 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004416 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004417
Tejun Heoeb954192013-08-08 20:11:23 -04004418 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004419 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004420
4421 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004422}
4423
Tejun Heoc81c925a2013-12-06 15:11:56 -05004424/**
4425 * create_css - create a cgroup_subsys_state
4426 * @cgrp: the cgroup new css will be associated with
4427 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004428 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004429 *
4430 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004431 * css is online and installed in @cgrp with all interface files created if
4432 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004433 */
Tejun Heof63070d2014-07-08 18:02:57 -04004434static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4435 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004436{
Tejun Heod51f39b2014-05-16 13:22:48 -04004437 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004438 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004439 struct cgroup_subsys_state *css;
4440 int err;
4441
Tejun Heoc81c925a2013-12-06 15:11:56 -05004442 lockdep_assert_held(&cgroup_mutex);
4443
Tejun Heo1fed1b22014-05-16 13:22:49 -04004444 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004445 if (IS_ERR(css))
4446 return PTR_ERR(css);
4447
Tejun Heoddfcada2014-05-04 15:09:14 -04004448 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004449
Tejun Heoc81c925a2013-12-06 15:11:56 -05004450 err = percpu_ref_init(&css->refcnt, css_release);
4451 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004452 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004453
Tejun Heo15a4c832014-05-04 15:09:14 -04004454 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT);
4455 if (err < 0)
4456 goto err_free_percpu_ref;
4457 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004458
Tejun Heof63070d2014-07-08 18:02:57 -04004459 if (visible) {
4460 err = cgroup_populate_dir(cgrp, 1 << ss->id);
4461 if (err)
4462 goto err_free_id;
4463 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004464
4465 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004466 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004467 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004468
4469 err = online_css(css);
4470 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004471 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004472
Tejun Heoc81c925a2013-12-06 15:11:56 -05004473 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004474 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004475 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 -04004476 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004477 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004478 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004479 ss->warned_broken_hierarchy = true;
4480 }
4481
4482 return 0;
4483
Tejun Heo1fed1b22014-05-16 13:22:49 -04004484err_list_del:
4485 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004486 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004487err_free_id:
4488 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004489err_free_percpu_ref:
Tejun Heoc81c925a2013-12-06 15:11:56 -05004490 percpu_ref_cancel_init(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004491err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004492 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004493 return err;
4494}
4495
Tejun Heob3bfd982014-05-13 12:19:22 -04004496static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4497 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004498{
Tejun Heoa9746d82014-05-13 12:19:22 -04004499 struct cgroup *parent, *cgrp;
4500 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004501 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004502 struct kernfs_node *kn;
Tejun Heoa14c6872014-07-15 11:05:09 -04004503 struct cftype *base_files;
Tejun Heob3bfd982014-05-13 12:19:22 -04004504 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004505
Tejun Heoa9746d82014-05-13 12:19:22 -04004506 parent = cgroup_kn_lock_live(parent_kn);
4507 if (!parent)
4508 return -ENODEV;
4509 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004510
Tejun Heo0a950f62012-11-19 09:02:12 -08004511 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004512 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004513 if (!cgrp) {
4514 ret = -ENOMEM;
4515 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004516 }
4517
Tejun Heo9d755d32014-05-14 09:15:02 -04004518 ret = percpu_ref_init(&cgrp->self.refcnt, css_release);
4519 if (ret)
4520 goto out_free_cgrp;
4521
Li Zefan0ab02ca2014-02-11 16:05:46 +08004522 /*
4523 * Temporarily set the pointer to NULL, so idr_find() won't return
4524 * a half-baked cgroup.
4525 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004526 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_NOWAIT);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004527 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004528 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004529 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004530 }
4531
Paul Menagecc31edc2008-10-18 20:28:04 -07004532 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004533
Tejun Heo9d800df2014-05-14 09:15:00 -04004534 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004535 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004536
Li Zefanb6abdb02008-03-04 14:28:19 -08004537 if (notify_on_release(parent))
4538 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4539
Tejun Heo2260e7f2012-11-19 08:13:38 -08004540 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4541 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004542
Tejun Heo2bd59d42014-02-11 11:52:49 -05004543 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004544 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004545 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004546 ret = PTR_ERR(kn);
4547 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004548 }
4549 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004550
Tejun Heo6f305582014-02-12 09:29:50 -05004551 /*
4552 * This extra ref will be put in cgroup_free_fn() and guarantees
4553 * that @cgrp->kn is always accessible.
4554 */
4555 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004556
Tejun Heo0cb51d72014-05-16 13:22:49 -04004557 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004558
Tejun Heo4e139af2012-11-19 08:13:36 -08004559 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004560 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004561 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004562 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004563
Tejun Heo0d802552013-12-06 15:11:56 -05004564 /*
4565 * @cgrp is now fully operational. If something fails after this
4566 * point, it'll be released via the normal destruction path.
4567 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004568 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004569
Tejun Heoba0f4d72014-05-13 12:19:22 -04004570 ret = cgroup_kn_set_ugid(kn);
4571 if (ret)
4572 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004573
Tejun Heoa14c6872014-07-15 11:05:09 -04004574 if (cgroup_on_dfl(cgrp))
4575 base_files = cgroup_dfl_base_files;
4576 else
4577 base_files = cgroup_legacy_base_files;
4578
4579 ret = cgroup_addrm_files(cgrp, base_files, true);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004580 if (ret)
4581 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004582
Tejun Heo9d403e92013-12-06 15:11:56 -05004583 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004584 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004585 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004586 ret = create_css(cgrp, ss,
4587 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004588 if (ret)
4589 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004590 }
Tejun Heoa8638032012-11-09 09:12:29 -08004591 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004592
Tejun Heobd53d612014-04-23 11:13:16 -04004593 /*
4594 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004595 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004596 */
Tejun Heo667c2492014-07-08 18:02:56 -04004597 if (!cgroup_on_dfl(cgrp)) {
4598 cgrp->subtree_control = parent->subtree_control;
4599 cgroup_refresh_child_subsys_mask(cgrp);
4600 }
Tejun Heof392e512014-04-23 11:13:14 -04004601
Tejun Heo2bd59d42014-02-11 11:52:49 -05004602 kernfs_activate(kn);
4603
Tejun Heoba0f4d72014-05-13 12:19:22 -04004604 ret = 0;
4605 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004606
Tejun Heoba0f4d72014-05-13 12:19:22 -04004607out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004608 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004609out_cancel_ref:
4610 percpu_ref_cancel_init(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004611out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004612 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004613out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004614 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004615 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004616
4617out_destroy:
4618 cgroup_destroy_locked(cgrp);
4619 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004620}
4621
Tejun Heo223dbc32013-08-13 20:22:50 -04004622/*
4623 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004624 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4625 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004626 */
4627static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004628{
Tejun Heo223dbc32013-08-13 20:22:50 -04004629 struct cgroup_subsys_state *css =
4630 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004631
Tejun Heof20104d2013-08-13 20:22:50 -04004632 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004633 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004634 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004635
Tejun Heo09a503ea2013-08-13 20:22:50 -04004636 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004637}
4638
Tejun Heo223dbc32013-08-13 20:22:50 -04004639/* css kill confirmation processing requires process context, bounce */
4640static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004641{
4642 struct cgroup_subsys_state *css =
4643 container_of(ref, struct cgroup_subsys_state, refcnt);
4644
Tejun Heo223dbc32013-08-13 20:22:50 -04004645 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004646 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004647}
4648
Tejun Heof392e512014-04-23 11:13:14 -04004649/**
4650 * kill_css - destroy a css
4651 * @css: css to destroy
4652 *
4653 * This function initiates destruction of @css by removing cgroup interface
4654 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004655 * asynchronously once css_tryget_online() is guaranteed to fail and when
4656 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004657 */
4658static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004659{
Tejun Heo01f64742014-05-13 12:19:23 -04004660 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004661
Tejun Heo2bd59d42014-02-11 11:52:49 -05004662 /*
4663 * This must happen before css is disassociated with its cgroup.
4664 * See seq_css() for details.
4665 */
Tejun Heoaec25022014-02-08 10:36:58 -05004666 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004667
Tejun Heoedae0c32013-08-13 20:22:51 -04004668 /*
4669 * Killing would put the base ref, but we need to keep it alive
4670 * until after ->css_offline().
4671 */
4672 css_get(css);
4673
4674 /*
4675 * cgroup core guarantees that, by the time ->css_offline() is
4676 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004677 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004678 * proceed to offlining css's because percpu_ref_kill() doesn't
4679 * guarantee that the ref is seen as killed on all CPUs on return.
4680 *
4681 * Use percpu_ref_kill_and_confirm() to get notifications as each
4682 * css is confirmed to be seen as killed on all CPUs.
4683 */
4684 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004685}
4686
4687/**
4688 * cgroup_destroy_locked - the first stage of cgroup destruction
4689 * @cgrp: cgroup to be destroyed
4690 *
4691 * css's make use of percpu refcnts whose killing latency shouldn't be
4692 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004693 * guarantee that css_tryget_online() won't succeed by the time
4694 * ->css_offline() is invoked. To satisfy all the requirements,
4695 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004696 *
4697 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4698 * userland visible parts and start killing the percpu refcnts of
4699 * css's. Set up so that the next stage will be kicked off once all
4700 * the percpu refcnts are confirmed to be killed.
4701 *
4702 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4703 * rest of destruction. Once all cgroup references are gone, the
4704 * cgroup is RCU-freed.
4705 *
4706 * This function implements s1. After this step, @cgrp is gone as far as
4707 * the userland is concerned and a new cgroup with the same name may be
4708 * created. As cgroup doesn't care about the names internally, this
4709 * doesn't cause any problem.
4710 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004711static int cgroup_destroy_locked(struct cgroup *cgrp)
4712 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004713{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004714 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004715 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004716 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004717
Tejun Heo42809dd2012-11-19 08:13:37 -08004718 lockdep_assert_held(&cgroup_mutex);
4719
Tejun Heoddd69142013-06-12 21:04:54 -07004720 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004721 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004722 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004723 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004724 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004725 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004726 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004727 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004728 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004729
Tejun Heo1a90dd52012-11-05 09:16:59 -08004730 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004731 * Make sure there's no live children. We can't test emptiness of
4732 * ->self.children as dead children linger on it while being
4733 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004734 */
Tejun Heof3d46502014-05-16 13:22:52 -04004735 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004736 return -EBUSY;
4737
4738 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004739 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004740 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004741 */
Tejun Heo184faf32014-05-16 13:22:51 -04004742 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004743
Tejun Heo249f3462014-05-14 09:15:01 -04004744 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004745 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004746 kill_css(css);
4747
Tejun Heo184faf32014-05-16 13:22:51 -04004748 /* CSS_ONLINE is clear, remove from ->release_list for the last time */
Tejun Heo455050d2013-06-13 19:27:41 -07004749 raw_spin_lock(&release_list_lock);
4750 if (!list_empty(&cgrp->release_list))
4751 list_del_init(&cgrp->release_list);
4752 raw_spin_unlock(&release_list_lock);
4753
4754 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004755 * Remove @cgrp directory along with the base files. @cgrp has an
4756 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004757 */
Tejun Heo01f64742014-05-13 12:19:23 -04004758 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004759
Tejun Heod51f39b2014-05-16 13:22:48 -04004760 set_bit(CGRP_RELEASABLE, &cgroup_parent(cgrp)->flags);
4761 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004762
Tejun Heo249f3462014-05-14 09:15:01 -04004763 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004764 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004765
Tejun Heoea15f8c2013-06-13 19:27:42 -07004766 return 0;
4767};
4768
Tejun Heo2bd59d42014-02-11 11:52:49 -05004769static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004770{
Tejun Heoa9746d82014-05-13 12:19:22 -04004771 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004772 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004773
Tejun Heoa9746d82014-05-13 12:19:22 -04004774 cgrp = cgroup_kn_lock_live(kn);
4775 if (!cgrp)
4776 return 0;
4777 cgroup_get(cgrp); /* for @kn->priv clearing */
Tejun Heo42809dd2012-11-19 08:13:37 -08004778
Tejun Heoa9746d82014-05-13 12:19:22 -04004779 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004780
Tejun Heoa9746d82014-05-13 12:19:22 -04004781 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004782
Tejun Heo2bd59d42014-02-11 11:52:49 -05004783 /*
Tejun Heocfc79d52014-05-13 12:19:22 -04004784 * There are two control paths which try to determine cgroup from
4785 * dentry without going through kernfs - cgroupstats_build() and
4786 * css_tryget_online_from_dir(). Those are supported by RCU
4787 * protecting clearing of cgrp->kn->priv backpointer, which should
4788 * happen after all files under it have been removed.
Tejun Heo2bd59d42014-02-11 11:52:49 -05004789 */
Tejun Heocfc79d52014-05-13 12:19:22 -04004790 if (!ret)
4791 RCU_INIT_POINTER(*(void __rcu __force **)&kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004792
Tejun Heo2bd59d42014-02-11 11:52:49 -05004793 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004794 return ret;
4795}
4796
Tejun Heo2bd59d42014-02-11 11:52:49 -05004797static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4798 .remount_fs = cgroup_remount,
4799 .show_options = cgroup_show_options,
4800 .mkdir = cgroup_mkdir,
4801 .rmdir = cgroup_rmdir,
4802 .rename = cgroup_rename,
4803};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004804
Tejun Heo15a4c832014-05-04 15:09:14 -04004805static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004806{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004807 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004808
4809 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004810
Tejun Heo648bb562012-11-19 08:13:36 -08004811 mutex_lock(&cgroup_mutex);
4812
Tejun Heo15a4c832014-05-04 15:09:14 -04004813 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004814 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004815
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004816 /* Create the root cgroup state for this subsystem */
4817 ss->root = &cgrp_dfl_root;
4818 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004819 /* We don't handle early failures gracefully */
4820 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004821 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004822
4823 /*
4824 * Root csses are never destroyed and we can't initialize
4825 * percpu_ref during early init. Disable refcnting.
4826 */
4827 css->flags |= CSS_NO_REF;
4828
Tejun Heo15a4c832014-05-04 15:09:14 -04004829 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004830 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004831 css->id = 1;
4832 } else {
4833 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4834 BUG_ON(css->id < 0);
4835 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004836
Li Zefane8d55fd2008-04-29 01:00:13 -07004837 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004838 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004839 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004840 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004841 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004842
4843 need_forkexit_callback |= ss->fork || ss->exit;
4844
Li Zefane8d55fd2008-04-29 01:00:13 -07004845 /* At system boot, before all subsystems have been
4846 * registered, no tasks have been forked, so we don't
4847 * need to invoke fork callbacks here. */
4848 BUG_ON(!list_empty(&init_task.tasks));
4849
Tejun Heoae7f1642013-08-13 20:22:50 -04004850 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004851
Tejun Heo648bb562012-11-19 08:13:36 -08004852 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004853}
4854
4855/**
Li Zefana043e3b2008-02-23 15:24:09 -08004856 * cgroup_init_early - cgroup initialization at system boot
4857 *
4858 * Initialize cgroups at system boot, and initialize any
4859 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004860 */
4861int __init cgroup_init_early(void)
4862{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04004863 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07004864 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004865 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004866
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004867 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004868 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4869
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004870 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004871
Tejun Heo3ed80a62014-02-08 10:36:58 -05004872 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004873 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004874 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4875 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004876 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004877 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4878 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004879
Tejun Heoaec25022014-02-08 10:36:58 -05004880 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004881 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004882
4883 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04004884 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004885 }
4886 return 0;
4887}
4888
4889/**
Li Zefana043e3b2008-02-23 15:24:09 -08004890 * cgroup_init - cgroup initialization
4891 *
4892 * Register cgroup filesystem and /proc file, and initialize
4893 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004894 */
4895int __init cgroup_init(void)
4896{
Tejun Heo30159ec2013-06-25 11:53:37 -07004897 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004898 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04004899 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07004900
Tejun Heoa14c6872014-07-15 11:05:09 -04004901 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
4902 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004903
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004904 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004905
Tejun Heo82fe9b02013-06-25 11:53:37 -07004906 /* Add init_css_set to the hash table */
4907 key = css_set_hash(init_css_set.subsys);
4908 hash_add(css_set_table, &init_css_set.hlist, key);
4909
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004910 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07004911
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004912 mutex_unlock(&cgroup_mutex);
4913
Tejun Heo172a2c062014-03-19 10:23:53 -04004914 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04004915 if (ss->early_init) {
4916 struct cgroup_subsys_state *css =
4917 init_css_set.subsys[ss->id];
4918
4919 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
4920 GFP_KERNEL);
4921 BUG_ON(css->id < 0);
4922 } else {
4923 cgroup_init_subsys(ss, false);
4924 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004925
Tejun Heo2d8f2432014-04-23 11:13:15 -04004926 list_add_tail(&init_css_set.e_cset_node[ssid],
4927 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04004928
4929 /*
Li Zefanc731ae12014-06-05 17:16:30 +08004930 * Setting dfl_root subsys_mask needs to consider the
4931 * disabled flag and cftype registration needs kmalloc,
4932 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04004933 */
Tejun Heoa8ddc822014-07-15 11:05:10 -04004934 if (ss->disabled)
4935 continue;
4936
4937 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
4938
4939 if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes)
4940 ss->dfl_cftypes = ss->legacy_cftypes;
4941
4942 if (ss->dfl_cftypes == ss->legacy_cftypes) {
4943 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
4944 } else {
4945 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
4946 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08004947 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004948 }
Greg KH676db4a2010-08-05 13:53:35 -07004949
Paul Menageddbcc7e2007-10-18 23:39:30 -07004950 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004951 if (!cgroup_kobj)
4952 return -ENOMEM;
Paul Menagea4243162007-10-18 23:39:35 -07004953
4954 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004955 if (err < 0) {
4956 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004957 return err;
Paul Menagea4243162007-10-18 23:39:35 -07004958 }
4959
4960 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004961 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004962}
Paul Menageb4f48b62007-10-18 23:39:33 -07004963
Tejun Heoe5fca242013-11-22 17:14:39 -05004964static int __init cgroup_wq_init(void)
4965{
4966 /*
4967 * There isn't much point in executing destruction path in
4968 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05004969 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05004970 *
4971 * We would prefer to do this in cgroup_init() above, but that
4972 * is called before init_workqueues(): so leave this until after.
4973 */
Tejun Heo1a115332014-02-12 19:06:19 -05004974 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05004975 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004976
4977 /*
4978 * Used to destroy pidlists and separate to serve as flush domain.
4979 * Cap @max_active to 1 too.
4980 */
4981 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4982 0, 1);
4983 BUG_ON(!cgroup_pidlist_destroy_wq);
4984
Tejun Heoe5fca242013-11-22 17:14:39 -05004985 return 0;
4986}
4987core_initcall(cgroup_wq_init);
4988
Paul Menagea4243162007-10-18 23:39:35 -07004989/*
4990 * proc_cgroup_show()
4991 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4992 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07004993 */
4994
4995/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004996int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004997{
4998 struct pid *pid;
4999 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05005000 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005001 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005002 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005003
5004 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005005 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005006 if (!buf)
5007 goto out;
5008
5009 retval = -ESRCH;
5010 pid = m->private;
5011 tsk = get_pid_task(pid, PIDTYPE_PID);
5012 if (!tsk)
5013 goto out_free;
5014
5015 retval = 0;
5016
5017 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05005018 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005019
Tejun Heo985ed672014-03-19 10:23:53 -04005020 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005021 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005022 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005023 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005024
Tejun Heoa2dd4242014-03-19 10:23:55 -04005025 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005026 continue;
5027
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005028 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05005029 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04005030 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05005031 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005032 if (strlen(root->name))
5033 seq_printf(m, "%sname=%s", count ? "," : "",
5034 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005035 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07005036 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05005037 path = cgroup_path(cgrp, buf, PATH_MAX);
5038 if (!path) {
5039 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07005040 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05005041 }
5042 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07005043 seq_putc(m, '\n');
5044 }
5045
5046out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05005047 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005048 mutex_unlock(&cgroup_mutex);
5049 put_task_struct(tsk);
5050out_free:
5051 kfree(buf);
5052out:
5053 return retval;
5054}
5055
Paul Menagea4243162007-10-18 23:39:35 -07005056/* Display information about each subsystem and each hierarchy */
5057static int proc_cgroupstats_show(struct seq_file *m, void *v)
5058{
Tejun Heo30159ec2013-06-25 11:53:37 -07005059 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005060 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005061
Paul Menage8bab8dd2008-04-04 14:29:57 -07005062 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005063 /*
5064 * ideally we don't want subsystems moving around while we do this.
5065 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5066 * subsys/hierarchy state.
5067 */
Paul Menagea4243162007-10-18 23:39:35 -07005068 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005069
5070 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005071 seq_printf(m, "%s\t%d\t%d\t%d\n",
5072 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05005073 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07005074
Paul Menagea4243162007-10-18 23:39:35 -07005075 mutex_unlock(&cgroup_mutex);
5076 return 0;
5077}
5078
5079static int cgroupstats_open(struct inode *inode, struct file *file)
5080{
Al Viro9dce07f2008-03-29 03:07:28 +00005081 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005082}
5083
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005084static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005085 .open = cgroupstats_open,
5086 .read = seq_read,
5087 .llseek = seq_lseek,
5088 .release = single_release,
5089};
5090
Paul Menageb4f48b62007-10-18 23:39:33 -07005091/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005092 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005093 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005094 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005095 * A task is associated with the init_css_set until cgroup_post_fork()
5096 * attaches it to the parent's css_set. Empty cg_list indicates that
5097 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005098 */
5099void cgroup_fork(struct task_struct *child)
5100{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005101 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005102 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005103}
5104
5105/**
Li Zefana043e3b2008-02-23 15:24:09 -08005106 * cgroup_post_fork - called on a new task after adding it to the task list
5107 * @child: the task in question
5108 *
Tejun Heo5edee612012-10-16 15:03:14 -07005109 * Adds the task to the list running through its css_set if necessary and
5110 * call the subsystem fork() callbacks. Has to be after the task is
5111 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005112 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005113 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005114 */
Paul Menage817929e2007-10-18 23:39:36 -07005115void cgroup_post_fork(struct task_struct *child)
5116{
Tejun Heo30159ec2013-06-25 11:53:37 -07005117 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005118 int i;
5119
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005120 /*
Tejun Heoeaf797a2014-02-25 10:04:03 -05005121 * This may race against cgroup_enable_task_cg_links(). As that
5122 * function sets use_task_css_set_links before grabbing
5123 * tasklist_lock and we just went through tasklist_lock to add
5124 * @child, it's guaranteed that either we see the set
5125 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5126 * @child during its iteration.
5127 *
5128 * If we won the race, @child is associated with %current's
5129 * css_set. Grabbing css_set_rwsem guarantees both that the
5130 * association is stable, and, on completion of the parent's
5131 * migration, @child is visible in the source of migration or
5132 * already in the destination cgroup. This guarantee is necessary
5133 * when implementing operations which need to migrate all tasks of
5134 * a cgroup to another.
5135 *
5136 * Note that if we lose to cgroup_enable_task_cg_links(), @child
5137 * will remain in init_css_set. This is safe because all tasks are
5138 * in the init_css_set before cg_links is enabled and there's no
5139 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005140 */
Paul Menage817929e2007-10-18 23:39:36 -07005141 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005142 struct css_set *cset;
5143
Tejun Heo96d365e2014-02-13 06:58:40 -05005144 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005145 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005146 if (list_empty(&child->cg_list)) {
5147 rcu_assign_pointer(child->cgroups, cset);
5148 list_add(&child->cg_list, &cset->tasks);
5149 get_css_set(cset);
5150 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005151 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07005152 }
Tejun Heo5edee612012-10-16 15:03:14 -07005153
5154 /*
5155 * Call ss->fork(). This must happen after @child is linked on
5156 * css_set; otherwise, @child might change state between ->fork()
5157 * and addition to css_set.
5158 */
5159 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005160 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07005161 if (ss->fork)
5162 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07005163 }
Paul Menage817929e2007-10-18 23:39:36 -07005164}
Tejun Heo5edee612012-10-16 15:03:14 -07005165
Paul Menage817929e2007-10-18 23:39:36 -07005166/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005167 * cgroup_exit - detach cgroup from exiting task
5168 * @tsk: pointer to task_struct of exiting process
5169 *
5170 * Description: Detach cgroup from @tsk and release it.
5171 *
5172 * Note that cgroups marked notify_on_release force every task in
5173 * them to take the global cgroup_mutex mutex when exiting.
5174 * This could impact scaling on very large systems. Be reluctant to
5175 * use notify_on_release cgroups where very high task exit scaling
5176 * is required on large systems.
5177 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005178 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5179 * call cgroup_exit() while the task is still competent to handle
5180 * notify_on_release(), then leave the task attached to the root cgroup in
5181 * each hierarchy for the remainder of its exit. No need to bother with
5182 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005183 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005184 */
Li Zefan1ec41832014-03-28 15:22:19 +08005185void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005186{
Tejun Heo30159ec2013-06-25 11:53:37 -07005187 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005188 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005189 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005190 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005191
5192 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005193 * Unlink from @tsk from its css_set. As migration path can't race
5194 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005195 */
5196 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005197 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005198 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005199 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005200 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005201 }
5202
Paul Menageb4f48b62007-10-18 23:39:33 -07005203 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005204 cset = task_css_set(tsk);
5205 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005206
Li Zefan1ec41832014-03-28 15:22:19 +08005207 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005208 /* see cgroup_post_fork() for details */
5209 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005210 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04005211 struct cgroup_subsys_state *old_css = cset->subsys[i];
5212 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005213
Tejun Heoeb954192013-08-08 20:11:23 -04005214 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005215 }
5216 }
5217 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005218
Tejun Heoeaf797a2014-02-25 10:04:03 -05005219 if (put_cset)
5220 put_css_set(cset, true);
Paul Menageb4f48b62007-10-18 23:39:33 -07005221}
Paul Menage697f4162007-10-18 23:39:34 -07005222
Paul Menagebd89aab2007-10-18 23:40:44 -07005223static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005224{
Tejun Heof3d46502014-05-16 13:22:52 -04005225 if (cgroup_is_releasable(cgrp) && list_empty(&cgrp->cset_links) &&
5226 !css_has_online_children(&cgrp->self)) {
Li Zefanf50daa72013-03-01 15:06:07 +08005227 /*
5228 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07005229 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08005230 * it now
5231 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005232 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08005233
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005234 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07005235 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07005236 list_empty(&cgrp->release_list)) {
5237 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005238 need_schedule_work = 1;
5239 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005240 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005241 if (need_schedule_work)
5242 schedule_work(&release_agent_work);
5243 }
5244}
5245
Paul Menage81a6a5c2007-10-18 23:39:38 -07005246/*
5247 * Notify userspace when a cgroup is released, by running the
5248 * configured release agent with the name of the cgroup (path
5249 * relative to the root of cgroup file system) as the argument.
5250 *
5251 * Most likely, this user command will try to rmdir this cgroup.
5252 *
5253 * This races with the possibility that some other task will be
5254 * attached to this cgroup before it is removed, or that some other
5255 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5256 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5257 * unused, and this cgroup will be reprieved from its death sentence,
5258 * to continue to serve a useful existence. Next time it's released,
5259 * we will get notified again, if it still has 'notify_on_release' set.
5260 *
5261 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5262 * means only wait until the task is successfully execve()'d. The
5263 * separate release agent task is forked by call_usermodehelper(),
5264 * then control in this thread returns here, without waiting for the
5265 * release agent task. We don't bother to wait because the caller of
5266 * this routine has no use for the exit status of the release agent
5267 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005268 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005269static void cgroup_release_agent(struct work_struct *work)
5270{
5271 BUG_ON(work != &release_agent_work);
5272 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005273 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005274 while (!list_empty(&release_list)) {
5275 char *argv[3], *envp[3];
5276 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05005277 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07005278 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07005279 struct cgroup,
5280 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07005281 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005282 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05005283 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07005284 if (!pathbuf)
5285 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05005286 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5287 if (!path)
Paul Menagee788e062008-07-25 01:46:59 -07005288 goto continue_free;
5289 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5290 if (!agentbuf)
5291 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005292
5293 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07005294 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05005295 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005296 argv[i] = NULL;
5297
5298 i = 0;
5299 /* minimal command environment */
5300 envp[i++] = "HOME=/";
5301 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5302 envp[i] = NULL;
5303
5304 /* Drop the lock while we invoke the usermode helper,
5305 * since the exec could involve hitting disk and hence
5306 * be a slow process */
5307 mutex_unlock(&cgroup_mutex);
5308 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005309 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07005310 continue_free:
5311 kfree(pathbuf);
5312 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005313 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005314 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005315 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005316 mutex_unlock(&cgroup_mutex);
5317}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005318
5319static int __init cgroup_disable(char *str)
5320{
Tejun Heo30159ec2013-06-25 11:53:37 -07005321 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005322 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005323 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005324
5325 while ((token = strsep(&str, ",")) != NULL) {
5326 if (!*token)
5327 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005328
Tejun Heo3ed80a62014-02-08 10:36:58 -05005329 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005330 if (!strcmp(token, ss->name)) {
5331 ss->disabled = 1;
5332 printk(KERN_INFO "Disabling %s control group"
5333 " subsystem\n", ss->name);
5334 break;
5335 }
5336 }
5337 }
5338 return 1;
5339}
5340__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005341
Tejun Heoa8ddc822014-07-15 11:05:10 -04005342static int __init cgroup_set_legacy_files_on_dfl(char *str)
5343{
5344 printk("cgroup: using legacy files on the default hierarchy\n");
5345 cgroup_legacy_files_on_dfl = true;
5346 return 0;
5347}
5348__setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl);
5349
Tejun Heob77d7b62013-08-13 11:01:54 -04005350/**
Tejun Heoec903c02014-05-13 12:11:01 -04005351 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005352 * @dentry: directory dentry of interest
5353 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005354 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005355 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5356 * to get the corresponding css and return it. If such css doesn't exist
5357 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005358 */
Tejun Heoec903c02014-05-13 12:11:01 -04005359struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5360 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005361{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005362 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5363 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005364 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005365
Tejun Heo35cf0832013-08-26 18:40:56 -04005366 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005367 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5368 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005369 return ERR_PTR(-EBADF);
5370
Tejun Heo5a17f542014-02-11 11:52:47 -05005371 rcu_read_lock();
5372
Tejun Heo2bd59d42014-02-11 11:52:49 -05005373 /*
5374 * This path doesn't originate from kernfs and @kn could already
5375 * have been or be removed at any point. @kn->priv is RCU
Tejun Heocfc79d52014-05-13 12:19:22 -04005376 * protected for this access. See cgroup_rmdir() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005377 */
5378 cgrp = rcu_dereference(kn->priv);
5379 if (cgrp)
5380 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005381
Tejun Heoec903c02014-05-13 12:11:01 -04005382 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005383 css = ERR_PTR(-ENOENT);
5384
5385 rcu_read_unlock();
5386 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005387}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005388
Li Zefan1cb650b2013-08-19 10:05:24 +08005389/**
5390 * css_from_id - lookup css by id
5391 * @id: the cgroup id
5392 * @ss: cgroup subsys to be looked into
5393 *
5394 * Returns the css if there's valid one with @id, otherwise returns NULL.
5395 * Should be called under rcu_read_lock().
5396 */
5397struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5398{
Tejun Heo6fa49182014-05-04 15:09:13 -04005399 WARN_ON_ONCE(!rcu_read_lock_held());
Tejun Heo15a4c832014-05-04 15:09:14 -04005400 return idr_find(&ss->css_idr, id);
Stephane Eraniane5d13672011-02-14 11:20:01 +02005401}
5402
Paul Menagefe693432009-09-23 15:56:20 -07005403#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005404static struct cgroup_subsys_state *
5405debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005406{
5407 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5408
5409 if (!css)
5410 return ERR_PTR(-ENOMEM);
5411
5412 return css;
5413}
5414
Tejun Heoeb954192013-08-08 20:11:23 -04005415static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005416{
Tejun Heoeb954192013-08-08 20:11:23 -04005417 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005418}
5419
Tejun Heo182446d2013-08-08 20:11:24 -04005420static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5421 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005422{
Tejun Heo182446d2013-08-08 20:11:24 -04005423 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005424}
5425
Tejun Heo182446d2013-08-08 20:11:24 -04005426static u64 current_css_set_read(struct cgroup_subsys_state *css,
5427 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005428{
5429 return (u64)(unsigned long)current->cgroups;
5430}
5431
Tejun Heo182446d2013-08-08 20:11:24 -04005432static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005433 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005434{
5435 u64 count;
5436
5437 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005438 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005439 rcu_read_unlock();
5440 return count;
5441}
5442
Tejun Heo2da8ca82013-12-05 12:28:04 -05005443static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005444{
Tejun Heo69d02062013-06-12 21:04:50 -07005445 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005446 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005447 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005448
Tejun Heoe61734c2014-02-12 09:29:50 -05005449 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5450 if (!name_buf)
5451 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005452
Tejun Heo96d365e2014-02-13 06:58:40 -05005453 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005454 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005455 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005456 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005457 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005458
Tejun Heoa2dd4242014-03-19 10:23:55 -04005459 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005460 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005461 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005462 }
5463 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005464 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005465 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005466 return 0;
5467}
5468
5469#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005470static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005471{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005472 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005473 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005474
Tejun Heo96d365e2014-02-13 06:58:40 -05005475 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005476 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005477 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005478 struct task_struct *task;
5479 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005480
Tejun Heo5abb8852013-06-12 21:04:49 -07005481 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005482
Tejun Heo5abb8852013-06-12 21:04:49 -07005483 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005484 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5485 goto overflow;
5486 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005487 }
Tejun Heoc7561122014-02-25 10:04:01 -05005488
5489 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5490 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5491 goto overflow;
5492 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5493 }
5494 continue;
5495 overflow:
5496 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005497 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005498 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005499 return 0;
5500}
5501
Tejun Heo182446d2013-08-08 20:11:24 -04005502static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005503{
Tejun Heo182446d2013-08-08 20:11:24 -04005504 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07005505}
5506
5507static struct cftype debug_files[] = {
5508 {
Paul Menagefe693432009-09-23 15:56:20 -07005509 .name = "taskcount",
5510 .read_u64 = debug_taskcount_read,
5511 },
5512
5513 {
5514 .name = "current_css_set",
5515 .read_u64 = current_css_set_read,
5516 },
5517
5518 {
5519 .name = "current_css_set_refcount",
5520 .read_u64 = current_css_set_refcount_read,
5521 },
5522
5523 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005524 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005525 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005526 },
5527
5528 {
5529 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005530 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005531 },
5532
5533 {
Paul Menagefe693432009-09-23 15:56:20 -07005534 .name = "releasable",
5535 .read_u64 = releasable_read,
5536 },
Paul Menagefe693432009-09-23 15:56:20 -07005537
Tejun Heo4baf6e32012-04-01 12:09:55 -07005538 { } /* terminate */
5539};
Paul Menagefe693432009-09-23 15:56:20 -07005540
Tejun Heo073219e2014-02-08 10:36:58 -05005541struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005542 .css_alloc = debug_css_alloc,
5543 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04005544 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005545};
5546#endif /* CONFIG_CGROUP_DEBUG */