blob: 136eceadeed138b71fd55dfed22a9850b38dd776 [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 */
Tejun Heo5de4fa12014-07-15 11:05:10 -0400159static unsigned int cgrp_dfl_root_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -0400160
Paul Menageddbcc7e2007-10-18 23:39:30 -0700161/* The list of hierarchy roots */
162
Tejun Heo9871bf92013-06-24 15:21:47 -0700163static LIST_HEAD(cgroup_roots);
164static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700165
Tejun Heo3417ae12014-02-08 10:37:01 -0500166/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700167static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700168
Li Zefan794611a2013-06-18 18:53:53 +0800169/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400170 * Assign a monotonically increasing serial number to csses. It guarantees
171 * cgroups with bigger numbers are newer than those with smaller numbers.
172 * Also, as csses are always appended to the parent's ->children list, it
173 * guarantees that sibling csses are always sorted in the ascending serial
174 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800175 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400176static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800177
Paul Menageddbcc7e2007-10-18 23:39:30 -0700178/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800179 * check for fork/exit handlers to call. This avoids us having to do
180 * extra work in the fork/exit path if none of the subsystems need to
181 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700182 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700183static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700184
Tejun Heoa14c6872014-07-15 11:05:09 -0400185static struct cftype cgroup_dfl_base_files[];
186static struct cftype cgroup_legacy_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700187
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400188static int rebind_subsystems(struct cgroup_root *dst_root,
Tejun Heo69dfa002014-05-04 15:09:13 -0400189 unsigned int ss_mask);
Tejun Heo42809dd2012-11-19 08:13:37 -0800190static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heof63070d2014-07-08 18:02:57 -0400191static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
192 bool visible);
Tejun Heo9d755d32014-05-14 09:15:02 -0400193static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400194static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400195static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
196 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800197
Tejun Heo6fa49182014-05-04 15:09:13 -0400198/* IDR wrappers which synchronize using cgroup_idr_lock */
199static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
200 gfp_t gfp_mask)
201{
202 int ret;
203
204 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400205 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400206 ret = idr_alloc(idr, ptr, start, end, gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400207 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400208 idr_preload_end();
209 return ret;
210}
211
212static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
213{
214 void *ret;
215
Tejun Heo54504e92014-05-13 12:10:59 -0400216 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400217 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400218 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400219 return ret;
220}
221
222static void cgroup_idr_remove(struct idr *idr, int id)
223{
Tejun Heo54504e92014-05-13 12:10:59 -0400224 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400225 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400226 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400227}
228
Tejun Heod51f39b2014-05-16 13:22:48 -0400229static struct cgroup *cgroup_parent(struct cgroup *cgrp)
230{
231 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
232
233 if (parent_css)
234 return container_of(parent_css, struct cgroup, self);
235 return NULL;
236}
237
Tejun Heo95109b62013-08-08 20:11:27 -0400238/**
239 * cgroup_css - obtain a cgroup's css for the specified subsystem
240 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400241 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400242 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400243 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
244 * function must be called either under cgroup_mutex or rcu_read_lock() and
245 * the caller is responsible for pinning the returned css if it wants to
246 * keep accessing it outside the said locks. This function may return
247 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400248 */
249static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400250 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400251{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400252 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500253 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500254 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400255 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400256 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400257}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700258
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400259/**
260 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
261 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400262 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400263 *
264 * Similar to cgroup_css() but returns the effctive css, which is defined
265 * as the matching css of the nearest ancestor including self which has @ss
266 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
267 * function is guaranteed to return non-NULL css.
268 */
269static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
270 struct cgroup_subsys *ss)
271{
272 lockdep_assert_held(&cgroup_mutex);
273
274 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400275 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400276
277 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
278 return NULL;
279
Tejun Heod51f39b2014-05-16 13:22:48 -0400280 while (cgroup_parent(cgrp) &&
281 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
282 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400283
284 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700285}
286
Paul Menageddbcc7e2007-10-18 23:39:30 -0700287/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700288static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700289{
Tejun Heo184faf32014-05-16 13:22:51 -0400290 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700291}
292
Tejun Heob4168642014-05-13 12:16:21 -0400293struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500294{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500295 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400296 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500297
298 /*
299 * This is open and unprotected implementation of cgroup_css().
300 * seq_css() is only called from a kernfs file operation which has
301 * an active reference on the file. Because all the subsystem
302 * files are drained before a css is disassociated with a cgroup,
303 * the matching css from the cgroup's subsys table is guaranteed to
304 * be and stay valid until the enclosing operation is complete.
305 */
306 if (cft->ss)
307 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
308 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400309 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500310}
Tejun Heob4168642014-05-13 12:16:21 -0400311EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500312
Li Zefan78574cf2013-04-08 19:00:38 -0700313/**
314 * cgroup_is_descendant - test ancestry
315 * @cgrp: the cgroup to be tested
316 * @ancestor: possible ancestor of @cgrp
317 *
318 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
319 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
320 * and @ancestor are accessible.
321 */
322bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
323{
324 while (cgrp) {
325 if (cgrp == ancestor)
326 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400327 cgrp = cgroup_parent(cgrp);
Li Zefan78574cf2013-04-08 19:00:38 -0700328 }
329 return false;
330}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700331
Adrian Bunke9685a02008-02-07 00:13:46 -0800332static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700333{
Paul Menagebd89aab2007-10-18 23:40:44 -0700334 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700335}
336
Tejun Heo30159ec2013-06-25 11:53:37 -0700337/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500338 * for_each_css - iterate all css's of a cgroup
339 * @css: the iteration cursor
340 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
341 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700342 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400343 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700344 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500345#define for_each_css(css, ssid, cgrp) \
346 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
347 if (!((css) = rcu_dereference_check( \
348 (cgrp)->subsys[(ssid)], \
349 lockdep_is_held(&cgroup_mutex)))) { } \
350 else
351
352/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400353 * for_each_e_css - iterate all effective css's of a cgroup
354 * @css: the iteration cursor
355 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
356 * @cgrp: the target cgroup to iterate css's of
357 *
358 * Should be called under cgroup_[tree_]mutex.
359 */
360#define for_each_e_css(css, ssid, cgrp) \
361 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
362 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
363 ; \
364 else
365
366/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500367 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700368 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500369 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700370 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500371#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500372 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
373 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700374
Tejun Heo985ed672014-03-19 10:23:53 -0400375/* iterate across the hierarchies */
376#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700377 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700378
Tejun Heof8f22e52014-04-23 11:13:16 -0400379/* iterate over child cgrps, lock should be held throughout iteration */
380#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400381 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400382 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400383 cgroup_is_dead(child); })) \
384 ; \
385 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700386
Paul Menage81a6a5c2007-10-18 23:39:38 -0700387static void cgroup_release_agent(struct work_struct *work);
Paul Menagebd89aab2007-10-18 23:40:44 -0700388static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700389
Tejun Heo69d02062013-06-12 21:04:50 -0700390/*
391 * A cgroup can be associated with multiple css_sets as different tasks may
392 * belong to different cgroups on different hierarchies. In the other
393 * direction, a css_set is naturally associated with multiple cgroups.
394 * This M:N relationship is represented by the following link structure
395 * which exists for each association and allows traversing the associations
396 * from both sides.
397 */
398struct cgrp_cset_link {
399 /* the cgroup and css_set this link associates */
400 struct cgroup *cgrp;
401 struct css_set *cset;
402
403 /* list of cgrp_cset_links anchored at cgrp->cset_links */
404 struct list_head cset_link;
405
406 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
407 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700408};
409
Tejun Heo172a2c062014-03-19 10:23:53 -0400410/*
411 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700412 * hierarchies being mounted. It contains a pointer to the root state
413 * for each subsystem. Also used to anchor the list of css_sets. Not
414 * reference-counted, to improve performance when child cgroups
415 * haven't been created.
416 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400417struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400418 .refcount = ATOMIC_INIT(1),
419 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
420 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
421 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
422 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
423 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
424};
Paul Menage817929e2007-10-18 23:39:36 -0700425
Tejun Heo172a2c062014-03-19 10:23:53 -0400426static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700427
Tejun Heo842b5972014-04-25 18:28:02 -0400428/**
429 * cgroup_update_populated - updated populated count of a cgroup
430 * @cgrp: the target cgroup
431 * @populated: inc or dec populated count
432 *
433 * @cgrp is either getting the first task (css_set) or losing the last.
434 * Update @cgrp->populated_cnt accordingly. The count is propagated
435 * towards root so that a given cgroup's populated_cnt is zero iff the
436 * cgroup and all its descendants are empty.
437 *
438 * @cgrp's interface file "cgroup.populated" is zero if
439 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
440 * changes from or to zero, userland is notified that the content of the
441 * interface file has changed. This can be used to detect when @cgrp and
442 * its descendants become populated or empty.
443 */
444static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
445{
446 lockdep_assert_held(&css_set_rwsem);
447
448 do {
449 bool trigger;
450
451 if (populated)
452 trigger = !cgrp->populated_cnt++;
453 else
454 trigger = !--cgrp->populated_cnt;
455
456 if (!trigger)
457 break;
458
459 if (cgrp->populated_kn)
460 kernfs_notify(cgrp->populated_kn);
Tejun Heod51f39b2014-05-16 13:22:48 -0400461 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400462 } while (cgrp);
463}
464
Paul Menage7717f7b2009-09-23 15:56:22 -0700465/*
466 * hash table for cgroup groups. This improves the performance to find
467 * an existing css_set. This hash doesn't (currently) take into
468 * account cgroups in empty hierarchies.
469 */
Li Zefan472b1052008-04-29 01:00:11 -0700470#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800471static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700472
Li Zefan0ac801f2013-01-10 11:49:27 +0800473static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700474{
Li Zefan0ac801f2013-01-10 11:49:27 +0800475 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700476 struct cgroup_subsys *ss;
477 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700478
Tejun Heo30159ec2013-06-25 11:53:37 -0700479 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800480 key += (unsigned long)css[i];
481 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700482
Li Zefan0ac801f2013-01-10 11:49:27 +0800483 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700484}
485
Zefan Lia25eb522014-09-19 16:51:00 +0800486static void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700487{
Tejun Heo69d02062013-06-12 21:04:50 -0700488 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400489 struct cgroup_subsys *ss;
490 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700491
Tejun Heo89c55092014-02-13 06:58:40 -0500492 lockdep_assert_held(&css_set_rwsem);
493
494 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700495 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700496
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700497 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400498 for_each_subsys(ss, ssid)
499 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700500 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700501 css_set_count--;
502
Tejun Heo69d02062013-06-12 21:04:50 -0700503 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700504 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700505
Tejun Heo69d02062013-06-12 21:04:50 -0700506 list_del(&link->cset_link);
507 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800508
Tejun Heo96d365e2014-02-13 06:58:40 -0500509 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo842b5972014-04-25 18:28:02 -0400510 if (list_empty(&cgrp->cset_links)) {
511 cgroup_update_populated(cgrp, false);
Zefan Lia25eb522014-09-19 16:51:00 +0800512 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700513 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700514
515 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700516 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700517
Tejun Heo5abb8852013-06-12 21:04:49 -0700518 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700519}
520
Zefan Lia25eb522014-09-19 16:51:00 +0800521static void put_css_set(struct css_set *cset)
Tejun Heo89c55092014-02-13 06:58:40 -0500522{
523 /*
524 * Ensure that the refcount doesn't hit zero while any readers
525 * can see it. Similar to atomic_dec_and_lock(), but for an
526 * rwlock
527 */
528 if (atomic_add_unless(&cset->refcount, -1, 1))
529 return;
530
531 down_write(&css_set_rwsem);
Zefan Lia25eb522014-09-19 16:51:00 +0800532 put_css_set_locked(cset);
Tejun Heo89c55092014-02-13 06:58:40 -0500533 up_write(&css_set_rwsem);
534}
535
Paul Menage817929e2007-10-18 23:39:36 -0700536/*
537 * refcounted get/put for css_set objects
538 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700539static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700540{
Tejun Heo5abb8852013-06-12 21:04:49 -0700541 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700542}
543
Tejun Heob326f9d2013-06-24 15:21:48 -0700544/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700545 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700546 * @cset: candidate css_set being tested
547 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700548 * @new_cgrp: cgroup that's being entered by the task
549 * @template: desired set of css pointers in css_set (pre-calculated)
550 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800551 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700552 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
553 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700554static bool compare_css_sets(struct css_set *cset,
555 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700556 struct cgroup *new_cgrp,
557 struct cgroup_subsys_state *template[])
558{
559 struct list_head *l1, *l2;
560
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400561 /*
562 * On the default hierarchy, there can be csets which are
563 * associated with the same set of cgroups but different csses.
564 * Let's first ensure that csses match.
565 */
566 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700567 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700568
569 /*
570 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400571 * different cgroups in hierarchies. As different cgroups may
572 * share the same effective css, this comparison is always
573 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700574 */
Tejun Heo69d02062013-06-12 21:04:50 -0700575 l1 = &cset->cgrp_links;
576 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700577 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700578 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700579 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700580
581 l1 = l1->next;
582 l2 = l2->next;
583 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700584 if (l1 == &cset->cgrp_links) {
585 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700586 break;
587 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700588 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700589 }
590 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700591 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
592 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
593 cgrp1 = link1->cgrp;
594 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700595 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700596 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700597
598 /*
599 * If this hierarchy is the hierarchy of the cgroup
600 * that's changing, then we need to check that this
601 * css_set points to the new cgroup; if it's any other
602 * hierarchy, then this css_set should point to the
603 * same cgroup as the old css_set.
604 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700605 if (cgrp1->root == new_cgrp->root) {
606 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700607 return false;
608 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700609 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700610 return false;
611 }
612 }
613 return true;
614}
615
Tejun Heob326f9d2013-06-24 15:21:48 -0700616/**
617 * find_existing_css_set - init css array and find the matching css_set
618 * @old_cset: the css_set that we're using before the cgroup transition
619 * @cgrp: the cgroup that we're moving into
620 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700621 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700622static struct css_set *find_existing_css_set(struct css_set *old_cset,
623 struct cgroup *cgrp,
624 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700625{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400626 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700627 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700628 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800629 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700630 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700631
Ben Blumaae8aab2010-03-10 15:22:07 -0800632 /*
633 * Build the set of subsystem state objects that we want to see in the
634 * new css_set. while subsystems can change globally, the entries here
635 * won't change, so no need for locking.
636 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700637 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400638 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400639 /*
640 * @ss is in this hierarchy, so we want the
641 * effective css from @cgrp.
642 */
643 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700644 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400645 /*
646 * @ss is not in this hierarchy, so we don't want
647 * to change the css.
648 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700649 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700650 }
651 }
652
Li Zefan0ac801f2013-01-10 11:49:27 +0800653 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700654 hash_for_each_possible(css_set_table, cset, hlist, key) {
655 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700656 continue;
657
658 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700659 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700660 }
Paul Menage817929e2007-10-18 23:39:36 -0700661
662 /* No existing cgroup group matched */
663 return NULL;
664}
665
Tejun Heo69d02062013-06-12 21:04:50 -0700666static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700667{
Tejun Heo69d02062013-06-12 21:04:50 -0700668 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700669
Tejun Heo69d02062013-06-12 21:04:50 -0700670 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
671 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700672 kfree(link);
673 }
674}
675
Tejun Heo69d02062013-06-12 21:04:50 -0700676/**
677 * allocate_cgrp_cset_links - allocate cgrp_cset_links
678 * @count: the number of links to allocate
679 * @tmp_links: list_head the allocated links are put on
680 *
681 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
682 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700683 */
Tejun Heo69d02062013-06-12 21:04:50 -0700684static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700685{
Tejun Heo69d02062013-06-12 21:04:50 -0700686 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700687 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700688
689 INIT_LIST_HEAD(tmp_links);
690
Li Zefan36553432008-07-29 22:33:19 -0700691 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700692 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700693 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700694 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700695 return -ENOMEM;
696 }
Tejun Heo69d02062013-06-12 21:04:50 -0700697 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700698 }
699 return 0;
700}
701
Li Zefanc12f65d2009-01-07 18:07:42 -0800702/**
703 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700704 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700705 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800706 * @cgrp: the destination cgroup
707 */
Tejun Heo69d02062013-06-12 21:04:50 -0700708static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
709 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800710{
Tejun Heo69d02062013-06-12 21:04:50 -0700711 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800712
Tejun Heo69d02062013-06-12 21:04:50 -0700713 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400714
715 if (cgroup_on_dfl(cgrp))
716 cset->dfl_cgrp = cgrp;
717
Tejun Heo69d02062013-06-12 21:04:50 -0700718 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
719 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700720 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400721
722 if (list_empty(&cgrp->cset_links))
723 cgroup_update_populated(cgrp, true);
Tejun Heo69d02062013-06-12 21:04:50 -0700724 list_move(&link->cset_link, &cgrp->cset_links);
Tejun Heo842b5972014-04-25 18:28:02 -0400725
Paul Menage7717f7b2009-09-23 15:56:22 -0700726 /*
727 * Always add links to the tail of the list so that the list
728 * is sorted by order of hierarchy creation
729 */
Tejun Heo69d02062013-06-12 21:04:50 -0700730 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800731}
732
Tejun Heob326f9d2013-06-24 15:21:48 -0700733/**
734 * find_css_set - return a new css_set with one cgroup updated
735 * @old_cset: the baseline css_set
736 * @cgrp: the cgroup to be updated
737 *
738 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
739 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700740 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700741static struct css_set *find_css_set(struct css_set *old_cset,
742 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700743{
Tejun Heob326f9d2013-06-24 15:21:48 -0700744 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700745 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700746 struct list_head tmp_links;
747 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400748 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800749 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400750 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700751
Tejun Heob326f9d2013-06-24 15:21:48 -0700752 lockdep_assert_held(&cgroup_mutex);
753
Paul Menage817929e2007-10-18 23:39:36 -0700754 /* First see if we already have a cgroup group that matches
755 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500756 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700757 cset = find_existing_css_set(old_cset, cgrp, template);
758 if (cset)
759 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500760 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700761
Tejun Heo5abb8852013-06-12 21:04:49 -0700762 if (cset)
763 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700764
Tejun Heof4f4be22013-06-12 21:04:51 -0700765 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700766 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700767 return NULL;
768
Tejun Heo69d02062013-06-12 21:04:50 -0700769 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700770 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700771 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700772 return NULL;
773 }
774
Tejun Heo5abb8852013-06-12 21:04:49 -0700775 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700776 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700777 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500778 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -0500779 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -0500780 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700781 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700782
783 /* Copy the set of subsystem state objects generated in
784 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700785 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700786
Tejun Heo96d365e2014-02-13 06:58:40 -0500787 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700788 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700789 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700790 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700791
Paul Menage7717f7b2009-09-23 15:56:22 -0700792 if (c->root == cgrp->root)
793 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700794 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700795 }
Paul Menage817929e2007-10-18 23:39:36 -0700796
Tejun Heo69d02062013-06-12 21:04:50 -0700797 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700798
Paul Menage817929e2007-10-18 23:39:36 -0700799 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700800
Tejun Heo2d8f2432014-04-23 11:13:15 -0400801 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700802 key = css_set_hash(cset->subsys);
803 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700804
Tejun Heo2d8f2432014-04-23 11:13:15 -0400805 for_each_subsys(ss, ssid)
806 list_add_tail(&cset->e_cset_node[ssid],
807 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
808
Tejun Heo96d365e2014-02-13 06:58:40 -0500809 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700810
Tejun Heo5abb8852013-06-12 21:04:49 -0700811 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700812}
813
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400814static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700815{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400816 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500817
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400818 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500819}
820
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400821static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500822{
823 int id;
824
825 lockdep_assert_held(&cgroup_mutex);
826
Tejun Heo985ed672014-03-19 10:23:53 -0400827 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -0500828 if (id < 0)
829 return id;
830
831 root->hierarchy_id = id;
832 return 0;
833}
834
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400835static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500836{
837 lockdep_assert_held(&cgroup_mutex);
838
839 if (root->hierarchy_id) {
840 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
841 root->hierarchy_id = 0;
842 }
843}
844
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400845static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500846{
847 if (root) {
848 /* hierarhcy ID shoulid already have been released */
849 WARN_ON_ONCE(root->hierarchy_id);
850
851 idr_destroy(&root->cgroup_idr);
852 kfree(root);
853 }
854}
855
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400856static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500857{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400858 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -0500859 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500860
Tejun Heo2bd59d42014-02-11 11:52:49 -0500861 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500862
Tejun Heo776f02f2014-02-12 09:29:50 -0500863 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -0400864 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -0500865
Tejun Heof2e85d52014-02-11 11:52:49 -0500866 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -0400867 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -0500868
869 /*
870 * Release all the links from cset_links to this hierarchy's
871 * root cgroup
872 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500873 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500874
875 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
876 list_del(&link->cset_link);
877 list_del(&link->cgrp_link);
878 kfree(link);
879 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500880 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500881
882 if (!list_empty(&root->root_list)) {
883 list_del(&root->root_list);
884 cgroup_root_count--;
885 }
886
887 cgroup_exit_root_id(root);
888
889 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500890
Tejun Heo2bd59d42014-02-11 11:52:49 -0500891 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500892 cgroup_free_root(root);
893}
894
Tejun Heoceb6a082014-02-25 10:04:02 -0500895/* look up cgroup associated with given css_set on the specified hierarchy */
896static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400897 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700898{
Paul Menage7717f7b2009-09-23 15:56:22 -0700899 struct cgroup *res = NULL;
900
Tejun Heo96d365e2014-02-13 06:58:40 -0500901 lockdep_assert_held(&cgroup_mutex);
902 lockdep_assert_held(&css_set_rwsem);
903
Tejun Heo5abb8852013-06-12 21:04:49 -0700904 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400905 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700906 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700907 struct cgrp_cset_link *link;
908
909 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700910 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700911
Paul Menage7717f7b2009-09-23 15:56:22 -0700912 if (c->root == root) {
913 res = c;
914 break;
915 }
916 }
917 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500918
Paul Menage7717f7b2009-09-23 15:56:22 -0700919 BUG_ON(!res);
920 return res;
921}
922
923/*
Tejun Heoceb6a082014-02-25 10:04:02 -0500924 * Return the cgroup for "task" from the given hierarchy. Must be
925 * called with cgroup_mutex and css_set_rwsem held.
926 */
927static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400928 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -0500929{
930 /*
931 * No need to lock the task - since we hold cgroup_mutex the
932 * task can't change groups, so the only thing that can happen
933 * is that it exits and its css is set back to init_css_set.
934 */
935 return cset_cgroup_from_root(task_css_set(task), root);
936}
937
938/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700939 * A task must hold cgroup_mutex to modify cgroups.
940 *
941 * Any task can increment and decrement the count field without lock.
942 * So in general, code holding cgroup_mutex can't rely on the count
943 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800944 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700945 * means that no tasks are currently attached, therefore there is no
946 * way a task attached to that cgroup can fork (the other way to
947 * increment the count). So code holding cgroup_mutex can safely
948 * assume that if the count is zero, it will stay zero. Similarly, if
949 * a task holds cgroup_mutex on a cgroup with zero count, it
950 * knows that the cgroup won't be removed, as cgroup_rmdir()
951 * needs that mutex.
952 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700953 * A cgroup can only be deleted if both its 'count' of using tasks
954 * is zero, and its list of 'children' cgroups is empty. Since all
955 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400956 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -0700957 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400958 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700959 *
960 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800961 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700962 */
963
Tejun Heo69dfa002014-05-04 15:09:13 -0400964static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500965static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700966static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700967
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500968static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
969 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700970{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500971 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
972 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
973 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
974 cft->ss->name, cft->name);
975 else
976 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
977 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700978}
979
Tejun Heof2e85d52014-02-11 11:52:49 -0500980/**
981 * cgroup_file_mode - deduce file mode of a control file
982 * @cft: the control file in question
983 *
984 * returns cft->mode if ->mode is not 0
985 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
986 * returns S_IRUGO if it has only a read handler
987 * returns S_IWUSR if it has only a write hander
988 */
989static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +0800990{
Tejun Heof2e85d52014-02-11 11:52:49 -0500991 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +0800992
Tejun Heof2e85d52014-02-11 11:52:49 -0500993 if (cft->mode)
994 return cft->mode;
995
996 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
997 mode |= S_IRUGO;
998
Tejun Heo6770c642014-05-13 12:16:21 -0400999 if (cft->write_u64 || cft->write_s64 || cft->write)
Tejun Heof2e85d52014-02-11 11:52:49 -05001000 mode |= S_IWUSR;
1001
1002 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001003}
1004
Tejun Heo59f52962014-02-11 11:52:49 -05001005static void cgroup_get(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001006{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001007 WARN_ON_ONCE(cgroup_is_dead(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04001008 css_get(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001009}
1010
Li Zefanaa323622014-09-04 14:43:38 +08001011static bool cgroup_tryget(struct cgroup *cgrp)
1012{
1013 return css_tryget(&cgrp->self);
1014}
1015
Tejun Heo59f52962014-02-11 11:52:49 -05001016static void cgroup_put(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001017{
Tejun Heo9d755d32014-05-14 09:15:02 -04001018 css_put(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001019}
1020
Tejun Heoa9746d82014-05-13 12:19:22 -04001021/**
Tejun Heoaf0ba672014-07-08 18:02:57 -04001022 * cgroup_refresh_child_subsys_mask - update child_subsys_mask
1023 * @cgrp: the target cgroup
1024 *
1025 * On the default hierarchy, a subsystem may request other subsystems to be
1026 * enabled together through its ->depends_on mask. In such cases, more
1027 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1028 *
1029 * This function determines which subsystems need to be enabled given the
1030 * current @cgrp->subtree_control and records it in
1031 * @cgrp->child_subsys_mask. The resulting mask is always a superset of
1032 * @cgrp->subtree_control and follows the usual hierarchy rules.
1033 */
Tejun Heo667c2492014-07-08 18:02:56 -04001034static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1035{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001036 struct cgroup *parent = cgroup_parent(cgrp);
1037 unsigned int cur_ss_mask = cgrp->subtree_control;
1038 struct cgroup_subsys *ss;
1039 int ssid;
1040
1041 lockdep_assert_held(&cgroup_mutex);
1042
1043 if (!cgroup_on_dfl(cgrp)) {
1044 cgrp->child_subsys_mask = cur_ss_mask;
1045 return;
1046 }
1047
1048 while (true) {
1049 unsigned int new_ss_mask = cur_ss_mask;
1050
1051 for_each_subsys(ss, ssid)
1052 if (cur_ss_mask & (1 << ssid))
1053 new_ss_mask |= ss->depends_on;
1054
1055 /*
1056 * Mask out subsystems which aren't available. This can
1057 * happen only if some depended-upon subsystems were bound
1058 * to non-default hierarchies.
1059 */
1060 if (parent)
1061 new_ss_mask &= parent->child_subsys_mask;
1062 else
1063 new_ss_mask &= cgrp->root->subsys_mask;
1064
1065 if (new_ss_mask == cur_ss_mask)
1066 break;
1067 cur_ss_mask = new_ss_mask;
1068 }
1069
1070 cgrp->child_subsys_mask = cur_ss_mask;
Tejun Heo667c2492014-07-08 18:02:56 -04001071}
1072
Tejun Heoa9746d82014-05-13 12:19:22 -04001073/**
1074 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1075 * @kn: the kernfs_node being serviced
1076 *
1077 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1078 * the method finishes if locking succeeded. Note that once this function
1079 * returns the cgroup returned by cgroup_kn_lock_live() may become
1080 * inaccessible any time. If the caller intends to continue to access the
1081 * cgroup, it should pin it before invoking this function.
1082 */
1083static void cgroup_kn_unlock(struct kernfs_node *kn)
1084{
1085 struct cgroup *cgrp;
1086
1087 if (kernfs_type(kn) == KERNFS_DIR)
1088 cgrp = kn->priv;
1089 else
1090 cgrp = kn->parent->priv;
1091
1092 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001093
1094 kernfs_unbreak_active_protection(kn);
1095 cgroup_put(cgrp);
1096}
1097
1098/**
1099 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1100 * @kn: the kernfs_node being serviced
1101 *
1102 * This helper is to be used by a cgroup kernfs method currently servicing
1103 * @kn. It breaks the active protection, performs cgroup locking and
1104 * verifies that the associated cgroup is alive. Returns the cgroup if
1105 * alive; otherwise, %NULL. A successful return should be undone by a
1106 * matching cgroup_kn_unlock() invocation.
1107 *
1108 * Any cgroup kernfs method implementation which requires locking the
1109 * associated cgroup should use this helper. It avoids nesting cgroup
1110 * locking under kernfs active protection and allows all kernfs operations
1111 * including self-removal.
1112 */
1113static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1114{
1115 struct cgroup *cgrp;
1116
1117 if (kernfs_type(kn) == KERNFS_DIR)
1118 cgrp = kn->priv;
1119 else
1120 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001121
1122 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001123 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001124 * active_ref. cgroup liveliness check alone provides enough
1125 * protection against removal. Ensure @cgrp stays accessible and
1126 * break the active_ref protection.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001127 */
Li Zefanaa323622014-09-04 14:43:38 +08001128 if (!cgroup_tryget(cgrp))
1129 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001130 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001131
Tejun Heoa9746d82014-05-13 12:19:22 -04001132 mutex_lock(&cgroup_mutex);
1133
1134 if (!cgroup_is_dead(cgrp))
1135 return cgrp;
1136
1137 cgroup_kn_unlock(kn);
1138 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001139}
1140
Li Zefan2739d3c2013-01-21 18:18:33 +08001141static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001142{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001143 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001144
Tejun Heo01f64742014-05-13 12:19:23 -04001145 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001146 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001147}
1148
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001149/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001150 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001151 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001152 * @subsys_mask: mask of the subsystem ids whose files should be removed
1153 */
Tejun Heo69dfa002014-05-04 15:09:13 -04001154static void cgroup_clear_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001155{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001156 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001157 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001158
Tejun Heob420ba72013-07-12 12:34:02 -07001159 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001160 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001161
Tejun Heo69dfa002014-05-04 15:09:13 -04001162 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001163 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001164 list_for_each_entry(cfts, &ss->cfts, node)
1165 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001166 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001167}
1168
Tejun Heo69dfa002014-05-04 15:09:13 -04001169static int rebind_subsystems(struct cgroup_root *dst_root, unsigned int ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001170{
Tejun Heo30159ec2013-06-25 11:53:37 -07001171 struct cgroup_subsys *ss;
Tejun Heo5533e012014-05-14 19:33:07 -04001172 unsigned int tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001173 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001174
Tejun Heoace2bee2014-02-11 11:52:47 -05001175 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001176
Tejun Heo5df36032014-03-19 10:23:54 -04001177 for_each_subsys(ss, ssid) {
1178 if (!(ss_mask & (1 << ssid)))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001179 continue;
Tejun Heo30159ec2013-06-25 11:53:37 -07001180
Tejun Heo7fd8c562014-04-23 11:13:16 -04001181 /* if @ss has non-root csses attached to it, can't move */
1182 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001183 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001184
Tejun Heo5df36032014-03-19 10:23:54 -04001185 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001186 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001187 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001188 }
1189
Tejun Heo5533e012014-05-14 19:33:07 -04001190 /* skip creating root files on dfl_root for inhibited subsystems */
1191 tmp_ss_mask = ss_mask;
1192 if (dst_root == &cgrp_dfl_root)
1193 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1194
1195 ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask);
Tejun Heoa2dd4242014-03-19 10:23:55 -04001196 if (ret) {
1197 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001198 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001199
Tejun Heoa2dd4242014-03-19 10:23:55 -04001200 /*
1201 * Rebinding back to the default root is not allowed to
1202 * fail. Using both default and non-default roots should
1203 * be rare. Moving subsystems back and forth even more so.
1204 * Just warn about it and continue.
1205 */
1206 if (cgrp_dfl_root_visible) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001207 pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001208 ret, ss_mask);
Joe Perchesed3d2612014-04-25 18:28:03 -04001209 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
Tejun Heoa2dd4242014-03-19 10:23:55 -04001210 }
Tejun Heo5df36032014-03-19 10:23:54 -04001211 }
Tejun Heo31261212013-06-28 17:07:30 -07001212
1213 /*
1214 * Nothing can fail from this point on. Remove files for the
1215 * removed subsystems and rebind each subsystem.
1216 */
Tejun Heo5df36032014-03-19 10:23:54 -04001217 for_each_subsys(ss, ssid)
Tejun Heoa2dd4242014-03-19 10:23:55 -04001218 if (ss_mask & (1 << ssid))
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001219 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo31261212013-06-28 17:07:30 -07001220
Tejun Heo5df36032014-03-19 10:23:54 -04001221 for_each_subsys(ss, ssid) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001222 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001223 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001224 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001225
Tejun Heo5df36032014-03-19 10:23:54 -04001226 if (!(ss_mask & (1 << ssid)))
1227 continue;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001228
Tejun Heo5df36032014-03-19 10:23:54 -04001229 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001230 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001231
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001232 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001233
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001234 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1235 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001236 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001237 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001238
Tejun Heo2d8f2432014-04-23 11:13:15 -04001239 down_write(&css_set_rwsem);
1240 hash_for_each(css_set_table, i, cset, hlist)
1241 list_move_tail(&cset->e_cset_node[ss->id],
1242 &dst_root->cgrp.e_csets[ss->id]);
1243 up_write(&css_set_rwsem);
1244
Tejun Heof392e512014-04-23 11:13:14 -04001245 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo667c2492014-07-08 18:02:56 -04001246 src_root->cgrp.subtree_control &= ~(1 << ssid);
1247 cgroup_refresh_child_subsys_mask(&src_root->cgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001248
Tejun Heobd53d612014-04-23 11:13:16 -04001249 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001250 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo667c2492014-07-08 18:02:56 -04001251 if (dst_root != &cgrp_dfl_root) {
1252 dst_root->cgrp.subtree_control |= 1 << ssid;
1253 cgroup_refresh_child_subsys_mask(&dst_root->cgrp);
1254 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001255
Tejun Heo5df36032014-03-19 10:23:54 -04001256 if (ss->bind)
1257 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001258 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001259
Tejun Heoa2dd4242014-03-19 10:23:55 -04001260 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001261 return 0;
1262}
1263
Tejun Heo2bd59d42014-02-11 11:52:49 -05001264static int cgroup_show_options(struct seq_file *seq,
1265 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001266{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001267 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001268 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001269 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001270
Tejun Heob85d2042013-12-06 15:11:57 -05001271 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04001272 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05001273 seq_printf(seq, ",%s", ss->name);
Tejun Heo93438622013-04-14 20:15:25 -07001274 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001275 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001276 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001277 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001278
1279 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001280 if (strlen(root->release_agent_path))
1281 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001282 spin_unlock(&release_agent_path_lock);
1283
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001284 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001285 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001286 if (strlen(root->name))
1287 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001288 return 0;
1289}
1290
1291struct cgroup_sb_opts {
Tejun Heo69dfa002014-05-04 15:09:13 -04001292 unsigned int subsys_mask;
1293 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001294 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001295 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001296 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001297 /* User explicitly requested empty subsystem */
1298 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001299};
1300
Ben Blumcf5d5942010-03-10 15:22:09 -08001301static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001302{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001303 char *token, *o = data;
1304 bool all_ss = false, one_ss = false;
Tejun Heo69dfa002014-05-04 15:09:13 -04001305 unsigned int mask = -1U;
Tejun Heo30159ec2013-06-25 11:53:37 -07001306 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001307 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001308 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001309
1310#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001311 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001312#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001313
Paul Menagec6d57f32009-09-23 15:56:19 -07001314 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001315
1316 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001317 nr_opts++;
1318
Paul Menageddbcc7e2007-10-18 23:39:30 -07001319 if (!*token)
1320 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001321 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001322 /* Explicitly have no subsystems */
1323 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001324 continue;
1325 }
1326 if (!strcmp(token, "all")) {
1327 /* Mutually exclusive option 'all' + subsystem name */
1328 if (one_ss)
1329 return -EINVAL;
1330 all_ss = true;
1331 continue;
1332 }
Tejun Heo873fe092013-04-14 20:15:26 -07001333 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1334 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1335 continue;
1336 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001337 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001338 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001339 continue;
1340 }
1341 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001342 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001343 continue;
1344 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001345 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001346 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001347 continue;
1348 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001349 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001350 /* Specifying two release agents is forbidden */
1351 if (opts->release_agent)
1352 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001353 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001354 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001355 if (!opts->release_agent)
1356 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001357 continue;
1358 }
1359 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001360 const char *name = token + 5;
1361 /* Can't specify an empty name */
1362 if (!strlen(name))
1363 return -EINVAL;
1364 /* Must match [\w.-]+ */
1365 for (i = 0; i < strlen(name); i++) {
1366 char c = name[i];
1367 if (isalnum(c))
1368 continue;
1369 if ((c == '.') || (c == '-') || (c == '_'))
1370 continue;
1371 return -EINVAL;
1372 }
1373 /* Specifying two names is forbidden */
1374 if (opts->name)
1375 return -EINVAL;
1376 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001377 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001378 GFP_KERNEL);
1379 if (!opts->name)
1380 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001381
1382 continue;
1383 }
1384
Tejun Heo30159ec2013-06-25 11:53:37 -07001385 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001386 if (strcmp(token, ss->name))
1387 continue;
1388 if (ss->disabled)
1389 continue;
1390
1391 /* Mutually exclusive option 'all' + subsystem name */
1392 if (all_ss)
1393 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001394 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001395 one_ss = true;
1396
1397 break;
1398 }
1399 if (i == CGROUP_SUBSYS_COUNT)
1400 return -ENOENT;
1401 }
1402
Tejun Heo873fe092013-04-14 20:15:26 -07001403 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001404 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 -04001405 if (nr_opts != 1) {
1406 pr_err("sane_behavior: no other mount options allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001407 return -EINVAL;
1408 }
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001409 return 0;
Tejun Heo873fe092013-04-14 20:15:26 -07001410 }
1411
Li Zefanf9ab5b52009-06-17 16:26:33 -07001412 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001413 * If the 'all' option was specified select all the subsystems,
1414 * otherwise if 'none', 'name=' and a subsystem name options were
1415 * not specified, let's default to 'all'
1416 */
1417 if (all_ss || (!one_ss && !opts->none && !opts->name))
1418 for_each_subsys(ss, i)
1419 if (!ss->disabled)
1420 opts->subsys_mask |= (1 << i);
1421
1422 /*
1423 * We either have to specify by name or by subsystems. (So all
1424 * empty hierarchies must have a name).
1425 */
1426 if (!opts->subsys_mask && !opts->name)
1427 return -EINVAL;
1428
1429 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001430 * Option noprefix was introduced just for backward compatibility
1431 * with the old cpuset, so we allow noprefix only if mounting just
1432 * the cpuset subsystem.
1433 */
Tejun Heo93438622013-04-14 20:15:25 -07001434 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001435 return -EINVAL;
1436
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001437 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001438 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001439 return -EINVAL;
1440
Paul Menageddbcc7e2007-10-18 23:39:30 -07001441 return 0;
1442}
1443
Tejun Heo2bd59d42014-02-11 11:52:49 -05001444static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001445{
1446 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001447 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001448 struct cgroup_sb_opts opts;
Tejun Heo69dfa002014-05-04 15:09:13 -04001449 unsigned int added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001450
Tejun Heoaa6ec292014-07-09 10:08:08 -04001451 if (root == &cgrp_dfl_root) {
1452 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001453 return -EINVAL;
1454 }
1455
Paul Menageddbcc7e2007-10-18 23:39:30 -07001456 mutex_lock(&cgroup_mutex);
1457
1458 /* See what subsystems are wanted */
1459 ret = parse_cgroupfs_options(data, &opts);
1460 if (ret)
1461 goto out_unlock;
1462
Tejun Heof392e512014-04-23 11:13:14 -04001463 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001464 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001465 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001466
Tejun Heof392e512014-04-23 11:13:14 -04001467 added_mask = opts.subsys_mask & ~root->subsys_mask;
1468 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001469
Ben Blumcf5d5942010-03-10 15:22:09 -08001470 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001471 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001472 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001473 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001474 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001475 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001476 goto out_unlock;
1477 }
1478
Tejun Heof172e672013-06-28 17:07:30 -07001479 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001480 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001481 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001482 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001483 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001484
Tejun Heo5df36032014-03-19 10:23:54 -04001485 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001486 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001487 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001488
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001489 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001490
Tejun Heo69e943b2014-02-08 10:36:58 -05001491 if (opts.release_agent) {
1492 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001493 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001494 spin_unlock(&release_agent_path_lock);
1495 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001496 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001497 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001498 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001499 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001500 return ret;
1501}
1502
Tejun Heoafeb0f92014-02-13 06:58:39 -05001503/*
1504 * To reduce the fork() overhead for systems that are not actually using
1505 * their cgroups capability, we don't maintain the lists running through
1506 * each css_set to its tasks until we see the list actually used - in other
1507 * words after the first mount.
1508 */
1509static bool use_task_css_set_links __read_mostly;
1510
1511static void cgroup_enable_task_cg_lists(void)
1512{
1513 struct task_struct *p, *g;
1514
Tejun Heo96d365e2014-02-13 06:58:40 -05001515 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001516
1517 if (use_task_css_set_links)
1518 goto out_unlock;
1519
1520 use_task_css_set_links = true;
1521
1522 /*
1523 * We need tasklist_lock because RCU is not safe against
1524 * while_each_thread(). Besides, a forking task that has passed
1525 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1526 * is not guaranteed to have its child immediately visible in the
1527 * tasklist if we walk through it with RCU.
1528 */
1529 read_lock(&tasklist_lock);
1530 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001531 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1532 task_css_set(p) != &init_css_set);
1533
1534 /*
1535 * We should check if the process is exiting, otherwise
1536 * it will race with cgroup_exit() in that the list
1537 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001538 * Do it while holding siglock so that we don't end up
1539 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001540 */
Tejun Heof153ad12014-02-25 09:56:49 -05001541 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001542 if (!(p->flags & PF_EXITING)) {
1543 struct css_set *cset = task_css_set(p);
1544
1545 list_add(&p->cg_list, &cset->tasks);
1546 get_css_set(cset);
1547 }
Tejun Heof153ad12014-02-25 09:56:49 -05001548 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001549 } while_each_thread(g, p);
1550 read_unlock(&tasklist_lock);
1551out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001552 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001553}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001554
Paul Menagecc31edc2008-10-18 20:28:04 -07001555static void init_cgroup_housekeeping(struct cgroup *cgrp)
1556{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001557 struct cgroup_subsys *ss;
1558 int ssid;
1559
Tejun Heod5c419b2014-05-16 13:22:48 -04001560 INIT_LIST_HEAD(&cgrp->self.sibling);
1561 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001562 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001563 INIT_LIST_HEAD(&cgrp->pidlists);
1564 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001565 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001566 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001567
1568 for_each_subsys(ss, ssid)
1569 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001570
1571 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001572 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001573}
Paul Menagec6d57f32009-09-23 15:56:19 -07001574
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001575static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001576 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001577{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001578 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001579
Paul Menageddbcc7e2007-10-18 23:39:30 -07001580 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001581 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001582 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001583 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001584 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001585
Paul Menagec6d57f32009-09-23 15:56:19 -07001586 root->flags = opts->flags;
1587 if (opts->release_agent)
1588 strcpy(root->release_agent_path, opts->release_agent);
1589 if (opts->name)
1590 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001591 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001592 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001593}
1594
Tejun Heo69dfa002014-05-04 15:09:13 -04001595static int cgroup_setup_root(struct cgroup_root *root, unsigned int ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001596{
Tejun Heod427dfe2014-02-11 11:52:48 -05001597 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001598 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heoa14c6872014-07-15 11:05:09 -04001599 struct cftype *base_files;
Tejun Heod427dfe2014-02-11 11:52:48 -05001600 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001601 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001602
Tejun Heod427dfe2014-02-11 11:52:48 -05001603 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001604
Tejun Heo6fa49182014-05-04 15:09:13 -04001605 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_NOWAIT);
Tejun Heod427dfe2014-02-11 11:52:48 -05001606 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001607 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001608 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001609
Tejun Heo2aad2a82014-09-24 13:31:50 -04001610 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1611 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001612 if (ret)
1613 goto out;
1614
Tejun Heod427dfe2014-02-11 11:52:48 -05001615 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001616 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001617 * but that's OK - it can only be increased by someone holding
1618 * cgroup_lock, and that's us. The worst that can happen is that we
1619 * have some link structures left over
1620 */
1621 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001622 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001623 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001624
Tejun Heo985ed672014-03-19 10:23:53 -04001625 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001626 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001627 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001628
Tejun Heo2bd59d42014-02-11 11:52:49 -05001629 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1630 KERNFS_ROOT_CREATE_DEACTIVATED,
1631 root_cgrp);
1632 if (IS_ERR(root->kf_root)) {
1633 ret = PTR_ERR(root->kf_root);
1634 goto exit_root_id;
1635 }
1636 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001637
Tejun Heoa14c6872014-07-15 11:05:09 -04001638 if (root == &cgrp_dfl_root)
1639 base_files = cgroup_dfl_base_files;
1640 else
1641 base_files = cgroup_legacy_base_files;
1642
1643 ret = cgroup_addrm_files(root_cgrp, base_files, true);
Tejun Heod427dfe2014-02-11 11:52:48 -05001644 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001645 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001646
Tejun Heo5df36032014-03-19 10:23:54 -04001647 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001648 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001649 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001650
Tejun Heod427dfe2014-02-11 11:52:48 -05001651 /*
1652 * There must be no failure case after here, since rebinding takes
1653 * care of subsystems' refcounts, which are explicitly dropped in
1654 * the failure exit path.
1655 */
1656 list_add(&root->root_list, &cgroup_roots);
1657 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001658
Tejun Heod427dfe2014-02-11 11:52:48 -05001659 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001660 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001661 * objects.
1662 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001663 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001664 hash_for_each(css_set_table, i, cset, hlist)
1665 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001666 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001667
Tejun Heod5c419b2014-05-16 13:22:48 -04001668 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001669 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001670
Tejun Heo2bd59d42014-02-11 11:52:49 -05001671 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001672 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001673 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001674
Tejun Heo2bd59d42014-02-11 11:52:49 -05001675destroy_root:
1676 kernfs_destroy_root(root->kf_root);
1677 root->kf_root = NULL;
1678exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001679 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001680cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001681 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001682out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001683 free_cgrp_cset_links(&tmp_links);
1684 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001685}
1686
Al Virof7e83572010-07-26 13:23:11 +04001687static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001688 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001689 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001690{
Li Zefan3a32bd72014-06-30 11:50:59 +08001691 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08001692 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001693 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001694 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001695 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001696 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08001697 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001698 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001699
1700 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001701 * The first time anyone tries to mount a cgroup, enable the list
1702 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001703 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001704 if (!use_task_css_set_links)
1705 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001706
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001707 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001708
Paul Menageddbcc7e2007-10-18 23:39:30 -07001709 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001710 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001711 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001712 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001713
Tejun Heo2bd59d42014-02-11 11:52:49 -05001714 /* look for a matching existing root */
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001715 if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) {
Tejun Heoa2dd4242014-03-19 10:23:55 -04001716 cgrp_dfl_root_visible = true;
1717 root = &cgrp_dfl_root;
1718 cgroup_get(&root->cgrp);
1719 ret = 0;
1720 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001721 }
1722
Li Zefan970317a2014-06-30 11:49:58 +08001723 /*
1724 * Destruction of cgroup root is asynchronous, so subsystems may
1725 * still be dying after the previous unmount. Let's drain the
1726 * dying subsystems. We just need to ensure that the ones
1727 * unmounted previously finish dying and don't care about new ones
1728 * starting. Testing ref liveliness is good enough.
1729 */
1730 for_each_subsys(ss, i) {
1731 if (!(opts.subsys_mask & (1 << i)) ||
1732 ss->root == &cgrp_dfl_root)
1733 continue;
1734
1735 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
1736 mutex_unlock(&cgroup_mutex);
1737 msleep(10);
1738 ret = restart_syscall();
1739 goto out_free;
1740 }
1741 cgroup_put(&ss->root->cgrp);
1742 }
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 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08001777 * We want to reuse @root whose lifetime is governed by its
1778 * ->cgrp. Let's check whether @root is alive and keep it
1779 * that way. As cgroup_kill_sb() can happen anytime, we
1780 * want to block it by pinning the sb so that @root doesn't
1781 * get killed before mount is complete.
1782 *
1783 * With the sb pinned, tryget_live can reliably indicate
1784 * whether @root can be reused. If it's being killed,
1785 * drain it. We can use wait_queue for the wait but this
1786 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001787 */
Li Zefan3a32bd72014-06-30 11:50:59 +08001788 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
1789 if (IS_ERR(pinned_sb) ||
1790 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001791 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08001792 if (!IS_ERR_OR_NULL(pinned_sb))
1793 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05001794 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001795 ret = restart_syscall();
1796 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001797 }
1798
1799 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001800 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001801 }
1802
Tejun Heo172a2c062014-03-19 10:23:53 -04001803 /*
1804 * No such thing, create a new one. name= matching without subsys
1805 * specification is allowed for already existing hierarchies but we
1806 * can't create new one without subsys specification.
1807 */
1808 if (!opts.subsys_mask && !opts.none) {
1809 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001810 goto out_unlock;
1811 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001812
Tejun Heo172a2c062014-03-19 10:23:53 -04001813 root = kzalloc(sizeof(*root), GFP_KERNEL);
1814 if (!root) {
1815 ret = -ENOMEM;
1816 goto out_unlock;
1817 }
1818
1819 init_cgroup_root(root, &opts);
1820
Tejun Heo35585572014-02-13 06:58:38 -05001821 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001822 if (ret)
1823 cgroup_free_root(root);
1824
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001825out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001826 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001827out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001828 kfree(opts.release_agent);
1829 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001830
Tejun Heo2bd59d42014-02-11 11:52:49 -05001831 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001832 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001833
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001834 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1835 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001836 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001837 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08001838
1839 /*
1840 * If @pinned_sb, we're reusing an existing root and holding an
1841 * extra ref on its sb. Mount is complete. Put the extra ref.
1842 */
1843 if (pinned_sb) {
1844 WARN_ON(new_sb);
1845 deactivate_super(pinned_sb);
1846 }
1847
Tejun Heo2bd59d42014-02-11 11:52:49 -05001848 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001849}
1850
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001851static void cgroup_kill_sb(struct super_block *sb)
1852{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001853 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001854 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001855
Tejun Heo9d755d32014-05-14 09:15:02 -04001856 /*
1857 * If @root doesn't have any mounts or children, start killing it.
1858 * This prevents new mounts by disabling percpu_ref_tryget_live().
1859 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001860 *
1861 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001862 */
Li Zefan1f779fb2014-06-04 16:48:15 +08001863 if (css_has_online_children(&root->cgrp.self) ||
1864 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001865 cgroup_put(&root->cgrp);
1866 else
1867 percpu_ref_kill(&root->cgrp.self.refcnt);
1868
Tejun Heo2bd59d42014-02-11 11:52:49 -05001869 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001870}
1871
1872static struct file_system_type cgroup_fs_type = {
1873 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001874 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001875 .kill_sb = cgroup_kill_sb,
1876};
1877
Greg KH676db4a2010-08-05 13:53:35 -07001878static struct kobject *cgroup_kobj;
1879
Li Zefana043e3b2008-02-23 15:24:09 -08001880/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001881 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001882 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001883 * @buf: the buffer to write the path into
1884 * @buflen: the length of the buffer
1885 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001886 * Determine @task's cgroup on the first (the one with the lowest non-zero
1887 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1888 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1889 * cgroup controller callbacks.
1890 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001891 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001892 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001893char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001894{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001895 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001896 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001897 int hierarchy_id = 1;
1898 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001899
1900 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001901 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001902
Tejun Heo913ffdb2013-07-11 16:34:48 -07001903 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1904
Tejun Heo857a2be2013-04-14 20:50:08 -07001905 if (root) {
1906 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001907 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001908 } else {
1909 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001910 if (strlcpy(buf, "/", buflen) < buflen)
1911 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001912 }
1913
Tejun Heo96d365e2014-02-13 06:58:40 -05001914 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001915 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001916 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001917}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001918EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001919
Tejun Heob3dc0942014-02-25 10:04:01 -05001920/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001921struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001922 /* the src and dst cset list running through cset->mg_node */
1923 struct list_head src_csets;
1924 struct list_head dst_csets;
1925
1926 /*
1927 * Fields for cgroup_taskset_*() iteration.
1928 *
1929 * Before migration is committed, the target migration tasks are on
1930 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1931 * the csets on ->dst_csets. ->csets point to either ->src_csets
1932 * or ->dst_csets depending on whether migration is committed.
1933 *
1934 * ->cur_csets and ->cur_task point to the current task position
1935 * during iteration.
1936 */
1937 struct list_head *csets;
1938 struct css_set *cur_cset;
1939 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001940};
1941
1942/**
1943 * cgroup_taskset_first - reset taskset and return the first task
1944 * @tset: taskset of interest
1945 *
1946 * @tset iteration is initialized and the first task is returned.
1947 */
1948struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1949{
Tejun Heob3dc0942014-02-25 10:04:01 -05001950 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
1951 tset->cur_task = NULL;
1952
1953 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001954}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001955
1956/**
1957 * cgroup_taskset_next - iterate to the next task in taskset
1958 * @tset: taskset of interest
1959 *
1960 * Return the next task in @tset. Iteration must have been initialized
1961 * with cgroup_taskset_first().
1962 */
1963struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1964{
Tejun Heob3dc0942014-02-25 10:04:01 -05001965 struct css_set *cset = tset->cur_cset;
1966 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001967
Tejun Heob3dc0942014-02-25 10:04:01 -05001968 while (&cset->mg_node != tset->csets) {
1969 if (!task)
1970 task = list_first_entry(&cset->mg_tasks,
1971 struct task_struct, cg_list);
1972 else
1973 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001974
Tejun Heob3dc0942014-02-25 10:04:01 -05001975 if (&task->cg_list != &cset->mg_tasks) {
1976 tset->cur_cset = cset;
1977 tset->cur_task = task;
1978 return task;
1979 }
1980
1981 cset = list_next_entry(cset, mg_node);
1982 task = NULL;
1983 }
1984
1985 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001986}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001987
1988/**
Ben Blum74a11662011-05-26 16:25:20 -07001989 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02001990 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001991 * @tsk: the task being migrated
1992 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001993 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001994 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001995 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001996static void cgroup_task_migrate(struct cgroup *old_cgrp,
1997 struct task_struct *tsk,
1998 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001999{
Tejun Heo5abb8852013-06-12 21:04:49 -07002000 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07002001
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002002 lockdep_assert_held(&cgroup_mutex);
2003 lockdep_assert_held(&css_set_rwsem);
2004
Ben Blum74a11662011-05-26 16:25:20 -07002005 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08002006 * We are synchronized through threadgroup_lock() against PF_EXITING
2007 * setting such that we can't race against cgroup_exit() changing the
2008 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07002009 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01002010 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07002011 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07002012
Tejun Heob3dc0942014-02-25 10:04:01 -05002013 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07002014 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002015
Tejun Heo1b9aba42014-03-19 17:43:21 -04002016 /*
2017 * Use move_tail so that cgroup_taskset_first() still returns the
2018 * leader after migration. This works because cgroup_migrate()
2019 * ensures that the dst_cset of the leader is the first on the
2020 * tset's dst_csets list.
2021 */
2022 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07002023
2024 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07002025 * We just gained a reference on old_cset by taking it from the
2026 * task. As trading it for new_cset is protected by cgroup_mutex,
2027 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07002028 */
Zefan Lia25eb522014-09-19 16:51:00 +08002029 put_css_set_locked(old_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002030}
2031
Li Zefana043e3b2008-02-23 15:24:09 -08002032/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002033 * cgroup_migrate_finish - cleanup after attach
2034 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002035 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002036 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2037 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002038 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002039static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002040{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002041 struct css_set *cset, *tmp_cset;
2042
2043 lockdep_assert_held(&cgroup_mutex);
2044
2045 down_write(&css_set_rwsem);
2046 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2047 cset->mg_src_cgrp = NULL;
2048 cset->mg_dst_cset = NULL;
2049 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002050 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002051 }
2052 up_write(&css_set_rwsem);
2053}
2054
2055/**
2056 * cgroup_migrate_add_src - add a migration source css_set
2057 * @src_cset: the source css_set to add
2058 * @dst_cgrp: the destination cgroup
2059 * @preloaded_csets: list of preloaded css_sets
2060 *
2061 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2062 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2063 * up by cgroup_migrate_finish().
2064 *
2065 * This function may be called without holding threadgroup_lock even if the
2066 * target is a process. Threads may be created and destroyed but as long
2067 * as cgroup_mutex is not dropped, no new css_set can be put into play and
2068 * the preloaded css_sets are guaranteed to cover all migrations.
2069 */
2070static void cgroup_migrate_add_src(struct css_set *src_cset,
2071 struct cgroup *dst_cgrp,
2072 struct list_head *preloaded_csets)
2073{
2074 struct cgroup *src_cgrp;
2075
2076 lockdep_assert_held(&cgroup_mutex);
2077 lockdep_assert_held(&css_set_rwsem);
2078
2079 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2080
Tejun Heo1958d2d2014-02-25 10:04:03 -05002081 if (!list_empty(&src_cset->mg_preload_node))
2082 return;
2083
2084 WARN_ON(src_cset->mg_src_cgrp);
2085 WARN_ON(!list_empty(&src_cset->mg_tasks));
2086 WARN_ON(!list_empty(&src_cset->mg_node));
2087
2088 src_cset->mg_src_cgrp = src_cgrp;
2089 get_css_set(src_cset);
2090 list_add(&src_cset->mg_preload_node, preloaded_csets);
2091}
2092
2093/**
2094 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002095 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002096 * @preloaded_csets: list of preloaded source css_sets
2097 *
2098 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2099 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002100 * pins all destination css_sets, links each to its source, and append them
2101 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2102 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002103 *
2104 * This function must be called after cgroup_migrate_add_src() has been
2105 * called on each migration source css_set. After migration is performed
2106 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2107 * @preloaded_csets.
2108 */
2109static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2110 struct list_head *preloaded_csets)
2111{
2112 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002113 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002114
2115 lockdep_assert_held(&cgroup_mutex);
2116
Tejun Heof8f22e52014-04-23 11:13:16 -04002117 /*
2118 * Except for the root, child_subsys_mask must be zero for a cgroup
2119 * with tasks so that child cgroups don't compete against tasks.
2120 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002121 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002122 dst_cgrp->child_subsys_mask)
2123 return -EBUSY;
2124
Tejun Heo1958d2d2014-02-25 10:04:03 -05002125 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002126 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002127 struct css_set *dst_cset;
2128
Tejun Heof817de92014-04-23 11:13:16 -04002129 dst_cset = find_css_set(src_cset,
2130 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002131 if (!dst_cset)
2132 goto err;
2133
2134 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002135
2136 /*
2137 * If src cset equals dst, it's noop. Drop the src.
2138 * cgroup_migrate() will skip the cset too. Note that we
2139 * can't handle src == dst as some nodes are used by both.
2140 */
2141 if (src_cset == dst_cset) {
2142 src_cset->mg_src_cgrp = NULL;
2143 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002144 put_css_set(src_cset);
2145 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002146 continue;
2147 }
2148
Tejun Heo1958d2d2014-02-25 10:04:03 -05002149 src_cset->mg_dst_cset = dst_cset;
2150
2151 if (list_empty(&dst_cset->mg_preload_node))
2152 list_add(&dst_cset->mg_preload_node, &csets);
2153 else
Zefan Lia25eb522014-09-19 16:51:00 +08002154 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002155 }
2156
Tejun Heof817de92014-04-23 11:13:16 -04002157 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002158 return 0;
2159err:
2160 cgroup_migrate_finish(&csets);
2161 return -ENOMEM;
2162}
2163
2164/**
2165 * cgroup_migrate - migrate a process or task to a cgroup
2166 * @cgrp: the destination cgroup
2167 * @leader: the leader of the process or the task to migrate
2168 * @threadgroup: whether @leader points to the whole process or a single task
2169 *
2170 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
2171 * process, the caller must be holding threadgroup_lock of @leader. The
2172 * caller is also responsible for invoking cgroup_migrate_add_src() and
2173 * cgroup_migrate_prepare_dst() on the targets before invoking this
2174 * function and following up with cgroup_migrate_finish().
2175 *
2176 * As long as a controller's ->can_attach() doesn't fail, this function is
2177 * guaranteed to succeed. This means that, excluding ->can_attach()
2178 * failure, when migrating multiple targets, the success or failure can be
2179 * decided for all targets by invoking group_migrate_prepare_dst() before
2180 * actually starting migrating.
2181 */
2182static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2183 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002184{
Tejun Heob3dc0942014-02-25 10:04:01 -05002185 struct cgroup_taskset tset = {
2186 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2187 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2188 .csets = &tset.src_csets,
2189 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002190 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002191 struct css_set *cset, *tmp_cset;
2192 struct task_struct *task, *tmp_task;
2193 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002194
2195 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002196 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2197 * already PF_EXITING could be freed from underneath us unless we
2198 * take an rcu_read_lock.
2199 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002200 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002201 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002202 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002203 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002204 /* @task either already exited or can't exit until the end */
2205 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002206 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002207
Tejun Heoeaf797a2014-02-25 10:04:03 -05002208 /* leave @task alone if post_fork() hasn't linked it yet */
2209 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002210 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002211
Tejun Heob3dc0942014-02-25 10:04:01 -05002212 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002213 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002214 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002215
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002216 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002217 * cgroup_taskset_first() must always return the leader.
2218 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002219 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002220 list_move_tail(&task->cg_list, &cset->mg_tasks);
2221 if (list_empty(&cset->mg_node))
2222 list_add_tail(&cset->mg_node, &tset.src_csets);
2223 if (list_empty(&cset->mg_dst_cset->mg_node))
2224 list_move_tail(&cset->mg_dst_cset->mg_node,
2225 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002226 next:
Li Zefan081aa452013-03-13 09:17:09 +08002227 if (!threadgroup)
2228 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002229 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002230 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002231 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002232
Tejun Heo134d3372011-12-12 18:12:21 -08002233 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002234 if (list_empty(&tset.src_csets))
2235 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002236
Tejun Heo1958d2d2014-02-25 10:04:03 -05002237 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002238 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002239 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002240 ret = css->ss->can_attach(css, &tset);
2241 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002242 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002243 goto out_cancel_attach;
2244 }
2245 }
Ben Blum74a11662011-05-26 16:25:20 -07002246 }
2247
2248 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002249 * Now that we're guaranteed success, proceed to move all tasks to
2250 * the new cgroup. There are no failure cases after here, so this
2251 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002252 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002253 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002254 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2255 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2256 cgroup_task_migrate(cset->mg_src_cgrp, task,
2257 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002258 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002259 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002260
2261 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002262 * Migration is committed, all target tasks are now on dst_csets.
2263 * Nothing is sensitive to fork() after this point. Notify
2264 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002265 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002266 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002267
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002268 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002269 if (css->ss->attach)
2270 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002271
Tejun Heo9db8de32014-02-13 06:58:43 -05002272 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002273 goto out_release_tset;
2274
Ben Blum74a11662011-05-26 16:25:20 -07002275out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002276 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002277 if (css == failed_css)
2278 break;
2279 if (css->ss->cancel_attach)
2280 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002281 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002282out_release_tset:
2283 down_write(&css_set_rwsem);
2284 list_splice_init(&tset.dst_csets, &tset.src_csets);
2285 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002286 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002287 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002288 }
2289 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002290 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002291}
2292
Tejun Heo1958d2d2014-02-25 10:04:03 -05002293/**
2294 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2295 * @dst_cgrp: the cgroup to attach to
2296 * @leader: the task or the leader of the threadgroup to be attached
2297 * @threadgroup: attach the whole threadgroup?
2298 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05002299 * Call holding cgroup_mutex and threadgroup_lock of @leader.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002300 */
2301static int cgroup_attach_task(struct cgroup *dst_cgrp,
2302 struct task_struct *leader, bool threadgroup)
2303{
2304 LIST_HEAD(preloaded_csets);
2305 struct task_struct *task;
2306 int ret;
2307
2308 /* look up all src csets */
2309 down_read(&css_set_rwsem);
2310 rcu_read_lock();
2311 task = leader;
2312 do {
2313 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2314 &preloaded_csets);
2315 if (!threadgroup)
2316 break;
2317 } while_each_thread(leader, task);
2318 rcu_read_unlock();
2319 up_read(&css_set_rwsem);
2320
2321 /* prepare dst csets and commit */
2322 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2323 if (!ret)
2324 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2325
2326 cgroup_migrate_finish(&preloaded_csets);
2327 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002328}
2329
2330/*
2331 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002332 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002333 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002334 */
Tejun Heoacbef752014-05-13 12:16:22 -04002335static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2336 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002337{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002338 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002339 const struct cred *cred = current_cred(), *tcred;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002340 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002341 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002342 int ret;
2343
Tejun Heoacbef752014-05-13 12:16:22 -04002344 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2345 return -EINVAL;
2346
Tejun Heoe76ecae2014-05-13 12:19:23 -04002347 cgrp = cgroup_kn_lock_live(of->kn);
2348 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002349 return -ENODEV;
2350
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002351retry_find_task:
2352 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002353 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002354 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002355 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002356 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002357 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002358 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002359 }
Ben Blum74a11662011-05-26 16:25:20 -07002360 /*
2361 * even if we're attaching all tasks in the thread group, we
2362 * only need to check permissions on one of them.
2363 */
David Howellsc69e8d92008-11-14 10:39:19 +11002364 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002365 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2366 !uid_eq(cred->euid, tcred->uid) &&
2367 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002368 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002369 ret = -EACCES;
2370 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002371 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002372 } else
2373 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002374
2375 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002376 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002377
2378 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002379 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002380 * trapped in a cpuset, or RT worker may be born in a cgroup
2381 * with no rt_runtime allocated. Just say no.
2382 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002383 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002384 ret = -EINVAL;
2385 rcu_read_unlock();
2386 goto out_unlock_cgroup;
2387 }
2388
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002389 get_task_struct(tsk);
2390 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002391
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002392 threadgroup_lock(tsk);
2393 if (threadgroup) {
2394 if (!thread_group_leader(tsk)) {
2395 /*
2396 * a race with de_thread from another thread's exec()
2397 * may strip us of our leadership, if this happens,
2398 * there is no choice but to throw this task away and
2399 * try again; this is
2400 * "double-double-toil-and-trouble-check locking".
2401 */
2402 threadgroup_unlock(tsk);
2403 put_task_struct(tsk);
2404 goto retry_find_task;
2405 }
Li Zefan081aa452013-03-13 09:17:09 +08002406 }
2407
2408 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2409
Tejun Heocd3d0952011-12-12 18:12:21 -08002410 threadgroup_unlock(tsk);
2411
Paul Menagebbcb81d2007-10-18 23:39:32 -07002412 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002413out_unlock_cgroup:
Tejun Heoe76ecae2014-05-13 12:19:23 -04002414 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002415 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002416}
2417
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002418/**
2419 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2420 * @from: attach to all cgroups of a given task
2421 * @tsk: the task to be attached
2422 */
2423int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2424{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002425 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002426 int retval = 0;
2427
Tejun Heo47cfcd02013-04-07 09:29:51 -07002428 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002429 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002430 struct cgroup *from_cgrp;
2431
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002432 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002433 continue;
2434
Tejun Heo96d365e2014-02-13 06:58:40 -05002435 down_read(&css_set_rwsem);
2436 from_cgrp = task_cgroup_from_root(from, root);
2437 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002438
Li Zefan6f4b7e62013-07-31 16:18:36 +08002439 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002440 if (retval)
2441 break;
2442 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002443 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002444
2445 return retval;
2446}
2447EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2448
Tejun Heoacbef752014-05-13 12:16:22 -04002449static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2450 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002451{
Tejun Heoacbef752014-05-13 12:16:22 -04002452 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002453}
2454
Tejun Heoacbef752014-05-13 12:16:22 -04002455static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2456 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002457{
Tejun Heoacbef752014-05-13 12:16:22 -04002458 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002459}
2460
Tejun Heo451af502014-05-13 12:16:21 -04002461static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2462 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002463{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002464 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002465
Tejun Heoe76ecae2014-05-13 12:19:23 -04002466 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2467
2468 cgrp = cgroup_kn_lock_live(of->kn);
2469 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002470 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002471 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002472 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2473 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002474 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002475 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002476 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002477}
2478
Tejun Heo2da8ca82013-12-05 12:28:04 -05002479static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002480{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002481 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002482
Tejun Heo46cfeb02014-05-13 12:11:00 -04002483 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002484 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002485 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002486 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002487 return 0;
2488}
2489
Tejun Heo2da8ca82013-12-05 12:28:04 -05002490static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002491{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002492 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002493 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002494}
2495
Tejun Heof8f22e52014-04-23 11:13:16 -04002496static void cgroup_print_ss_mask(struct seq_file *seq, unsigned int ss_mask)
2497{
2498 struct cgroup_subsys *ss;
2499 bool printed = false;
2500 int ssid;
2501
2502 for_each_subsys(ss, ssid) {
2503 if (ss_mask & (1 << ssid)) {
2504 if (printed)
2505 seq_putc(seq, ' ');
2506 seq_printf(seq, "%s", ss->name);
2507 printed = true;
2508 }
2509 }
2510 if (printed)
2511 seq_putc(seq, '\n');
2512}
2513
2514/* show controllers which are currently attached to the default hierarchy */
2515static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2516{
2517 struct cgroup *cgrp = seq_css(seq)->cgroup;
2518
Tejun Heo5533e012014-05-14 19:33:07 -04002519 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2520 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002521 return 0;
2522}
2523
2524/* show controllers which are enabled from the parent */
2525static int cgroup_controllers_show(struct seq_file *seq, void *v)
2526{
2527 struct cgroup *cgrp = seq_css(seq)->cgroup;
2528
Tejun Heo667c2492014-07-08 18:02:56 -04002529 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002530 return 0;
2531}
2532
2533/* show controllers which are enabled for a given cgroup's children */
2534static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2535{
2536 struct cgroup *cgrp = seq_css(seq)->cgroup;
2537
Tejun Heo667c2492014-07-08 18:02:56 -04002538 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002539 return 0;
2540}
2541
2542/**
2543 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2544 * @cgrp: root of the subtree to update csses for
2545 *
2546 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2547 * css associations need to be updated accordingly. This function looks up
2548 * all css_sets which are attached to the subtree, creates the matching
2549 * updated css_sets and migrates the tasks to the new ones.
2550 */
2551static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2552{
2553 LIST_HEAD(preloaded_csets);
2554 struct cgroup_subsys_state *css;
2555 struct css_set *src_cset;
2556 int ret;
2557
Tejun Heof8f22e52014-04-23 11:13:16 -04002558 lockdep_assert_held(&cgroup_mutex);
2559
2560 /* look up all csses currently attached to @cgrp's subtree */
2561 down_read(&css_set_rwsem);
2562 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2563 struct cgrp_cset_link *link;
2564
2565 /* self is not affected by child_subsys_mask change */
2566 if (css->cgroup == cgrp)
2567 continue;
2568
2569 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2570 cgroup_migrate_add_src(link->cset, cgrp,
2571 &preloaded_csets);
2572 }
2573 up_read(&css_set_rwsem);
2574
2575 /* NULL dst indicates self on default hierarchy */
2576 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2577 if (ret)
2578 goto out_finish;
2579
2580 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2581 struct task_struct *last_task = NULL, *task;
2582
2583 /* src_csets precede dst_csets, break on the first dst_cset */
2584 if (!src_cset->mg_src_cgrp)
2585 break;
2586
2587 /*
2588 * All tasks in src_cset need to be migrated to the
2589 * matching dst_cset. Empty it process by process. We
2590 * walk tasks but migrate processes. The leader might even
2591 * belong to a different cset but such src_cset would also
2592 * be among the target src_csets because the default
2593 * hierarchy enforces per-process membership.
2594 */
2595 while (true) {
2596 down_read(&css_set_rwsem);
2597 task = list_first_entry_or_null(&src_cset->tasks,
2598 struct task_struct, cg_list);
2599 if (task) {
2600 task = task->group_leader;
2601 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2602 get_task_struct(task);
2603 }
2604 up_read(&css_set_rwsem);
2605
2606 if (!task)
2607 break;
2608
2609 /* guard against possible infinite loop */
2610 if (WARN(last_task == task,
2611 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2612 goto out_finish;
2613 last_task = task;
2614
2615 threadgroup_lock(task);
2616 /* raced against de_thread() from another thread? */
2617 if (!thread_group_leader(task)) {
2618 threadgroup_unlock(task);
2619 put_task_struct(task);
2620 continue;
2621 }
2622
2623 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2624
2625 threadgroup_unlock(task);
2626 put_task_struct(task);
2627
2628 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2629 goto out_finish;
2630 }
2631 }
2632
2633out_finish:
2634 cgroup_migrate_finish(&preloaded_csets);
2635 return ret;
2636}
2637
2638/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002639static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2640 char *buf, size_t nbytes,
2641 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002642{
Tejun Heo7d331fa2014-05-13 12:11:00 -04002643 unsigned int enable = 0, disable = 0;
Tejun Heof63070d2014-07-08 18:02:57 -04002644 unsigned int css_enable, css_disable, old_ctrl, new_ctrl;
Tejun Heoa9746d82014-05-13 12:19:22 -04002645 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002646 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002647 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002648 int ssid, ret;
2649
2650 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002651 * Parse input - space separated list of subsystem names prefixed
2652 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002653 */
Tejun Heo451af502014-05-13 12:16:21 -04002654 buf = strstrip(buf);
2655 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04002656 if (tok[0] == '\0')
2657 continue;
Tejun Heof8f22e52014-04-23 11:13:16 -04002658 for_each_subsys(ss, ssid) {
Tejun Heo5533e012014-05-14 19:33:07 -04002659 if (ss->disabled || strcmp(tok + 1, ss->name) ||
2660 ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask))
Tejun Heof8f22e52014-04-23 11:13:16 -04002661 continue;
2662
2663 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002664 enable |= 1 << ssid;
2665 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002666 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002667 disable |= 1 << ssid;
2668 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002669 } else {
2670 return -EINVAL;
2671 }
2672 break;
2673 }
2674 if (ssid == CGROUP_SUBSYS_COUNT)
2675 return -EINVAL;
2676 }
2677
Tejun Heoa9746d82014-05-13 12:19:22 -04002678 cgrp = cgroup_kn_lock_live(of->kn);
2679 if (!cgrp)
2680 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002681
2682 for_each_subsys(ss, ssid) {
2683 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002684 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002685 enable &= ~(1 << ssid);
2686 continue;
2687 }
2688
Tejun Heoc29adf22014-07-08 18:02:56 -04002689 /* unavailable or not enabled on the parent? */
2690 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2691 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002692 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002693 ret = -ENOENT;
2694 goto out_unlock;
2695 }
2696
Tejun Heof8f22e52014-04-23 11:13:16 -04002697 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002698 * @ss is already enabled through dependency and
2699 * we'll just make it visible. Skip draining.
2700 */
2701 if (cgrp->child_subsys_mask & (1 << ssid))
2702 continue;
2703
Tejun Heof8f22e52014-04-23 11:13:16 -04002704 /*
2705 * Because css offlining is asynchronous, userland
2706 * might try to re-enable the same controller while
2707 * the previous instance is still around. In such
2708 * cases, wait till it's gone using offline_waitq.
2709 */
2710 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo0cee8b72014-05-13 12:10:59 -04002711 DEFINE_WAIT(wait);
Tejun Heof8f22e52014-04-23 11:13:16 -04002712
2713 if (!cgroup_css(child, ss))
2714 continue;
2715
Tejun Heo0cee8b72014-05-13 12:10:59 -04002716 cgroup_get(child);
Tejun Heof8f22e52014-04-23 11:13:16 -04002717 prepare_to_wait(&child->offline_waitq, &wait,
2718 TASK_UNINTERRUPTIBLE);
Tejun Heoa9746d82014-05-13 12:19:22 -04002719 cgroup_kn_unlock(of->kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002720 schedule();
2721 finish_wait(&child->offline_waitq, &wait);
Tejun Heo0cee8b72014-05-13 12:10:59 -04002722 cgroup_put(child);
Tejun Heo7d331fa2014-05-13 12:11:00 -04002723
Tejun Heoa9746d82014-05-13 12:19:22 -04002724 return restart_syscall();
Tejun Heof8f22e52014-04-23 11:13:16 -04002725 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002726 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002727 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002728 disable &= ~(1 << ssid);
2729 continue;
2730 }
2731
2732 /* a child has it enabled? */
2733 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002734 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002735 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002736 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002737 }
2738 }
2739 }
2740 }
2741
2742 if (!enable && !disable) {
2743 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002744 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002745 }
2746
2747 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002748 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002749 * with tasks so that child cgroups don't compete against tasks.
2750 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002751 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002752 ret = -EBUSY;
2753 goto out_unlock;
2754 }
2755
2756 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002757 * Update subsys masks and calculate what needs to be done. More
2758 * subsystems than specified may need to be enabled or disabled
2759 * depending on subsystem dependencies.
2760 */
Tejun Heo667c2492014-07-08 18:02:56 -04002761 cgrp->subtree_control |= enable;
2762 cgrp->subtree_control &= ~disable;
Tejun Heoc29adf22014-07-08 18:02:56 -04002763
Tejun Heof63070d2014-07-08 18:02:57 -04002764 old_ctrl = cgrp->child_subsys_mask;
2765 cgroup_refresh_child_subsys_mask(cgrp);
2766 new_ctrl = cgrp->child_subsys_mask;
2767
2768 css_enable = ~old_ctrl & new_ctrl;
2769 css_disable = old_ctrl & ~new_ctrl;
2770 enable |= css_enable;
2771 disable |= css_disable;
2772
2773 /*
2774 * Create new csses or make the existing ones visible. A css is
2775 * created invisible if it's being implicitly enabled through
2776 * dependency. An invisible css is made visible when the userland
2777 * explicitly enables it.
Tejun Heof8f22e52014-04-23 11:13:16 -04002778 */
2779 for_each_subsys(ss, ssid) {
2780 if (!(enable & (1 << ssid)))
2781 continue;
2782
2783 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04002784 if (css_enable & (1 << ssid))
2785 ret = create_css(child, ss,
2786 cgrp->subtree_control & (1 << ssid));
2787 else
2788 ret = cgroup_populate_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002789 if (ret)
2790 goto err_undo_css;
2791 }
2792 }
2793
Tejun Heoc29adf22014-07-08 18:02:56 -04002794 /*
2795 * At this point, cgroup_e_css() results reflect the new csses
2796 * making the following cgroup_update_dfl_csses() properly update
2797 * css associations of all tasks in the subtree.
2798 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002799 ret = cgroup_update_dfl_csses(cgrp);
2800 if (ret)
2801 goto err_undo_css;
2802
Tejun Heof63070d2014-07-08 18:02:57 -04002803 /*
2804 * All tasks are migrated out of disabled csses. Kill or hide
2805 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002806 * disabled while other subsystems are still depending on it. The
2807 * css must not actively control resources and be in the vanilla
2808 * state if it's made visible again later. Controllers which may
2809 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04002810 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002811 for_each_subsys(ss, ssid) {
2812 if (!(disable & (1 << ssid)))
2813 continue;
2814
Tejun Heof63070d2014-07-08 18:02:57 -04002815 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002816 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2817
2818 if (css_disable & (1 << ssid)) {
2819 kill_css(css);
2820 } else {
Tejun Heof63070d2014-07-08 18:02:57 -04002821 cgroup_clear_dir(child, 1 << ssid);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002822 if (ss->css_reset)
2823 ss->css_reset(css);
2824 }
Tejun Heof63070d2014-07-08 18:02:57 -04002825 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002826 }
2827
2828 kernfs_activate(cgrp->kn);
2829 ret = 0;
2830out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002831 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002832 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002833
2834err_undo_css:
Tejun Heo667c2492014-07-08 18:02:56 -04002835 cgrp->subtree_control &= ~enable;
2836 cgrp->subtree_control |= disable;
2837 cgroup_refresh_child_subsys_mask(cgrp);
Tejun Heof8f22e52014-04-23 11:13:16 -04002838
2839 for_each_subsys(ss, ssid) {
2840 if (!(enable & (1 << ssid)))
2841 continue;
2842
2843 cgroup_for_each_live_child(child, cgrp) {
2844 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04002845
2846 if (!css)
2847 continue;
2848
2849 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04002850 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04002851 else
2852 cgroup_clear_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002853 }
2854 }
2855 goto out_unlock;
2856}
2857
Tejun Heo842b5972014-04-25 18:28:02 -04002858static int cgroup_populated_show(struct seq_file *seq, void *v)
2859{
2860 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2861 return 0;
2862}
2863
Tejun Heo2bd59d42014-02-11 11:52:49 -05002864static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2865 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002866{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002867 struct cgroup *cgrp = of->kn->parent->priv;
2868 struct cftype *cft = of->kn->priv;
2869 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002870 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002871
Tejun Heob4168642014-05-13 12:16:21 -04002872 if (cft->write)
2873 return cft->write(of, buf, nbytes, off);
2874
Tejun Heo2bd59d42014-02-11 11:52:49 -05002875 /*
2876 * kernfs guarantees that a file isn't deleted with operations in
2877 * flight, which means that the matching css is and stays alive and
2878 * doesn't need to be pinned. The RCU locking is not necessary
2879 * either. It's just for the convenience of using cgroup_css().
2880 */
2881 rcu_read_lock();
2882 css = cgroup_css(cgrp, cft->ss);
2883 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002884
Tejun Heo451af502014-05-13 12:16:21 -04002885 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002886 unsigned long long v;
2887 ret = kstrtoull(buf, 0, &v);
2888 if (!ret)
2889 ret = cft->write_u64(css, cft, v);
2890 } else if (cft->write_s64) {
2891 long long v;
2892 ret = kstrtoll(buf, 0, &v);
2893 if (!ret)
2894 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002895 } else {
2896 ret = -EINVAL;
2897 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002898
Tejun Heoa742c592013-12-05 12:28:03 -05002899 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002900}
2901
Tejun Heo6612f052013-12-05 12:28:04 -05002902static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002903{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002904 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002905}
2906
2907static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2908{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002909 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002910}
2911
2912static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2913{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002914 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002915}
2916
2917static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2918{
Tejun Heo7da11272013-12-05 12:28:04 -05002919 struct cftype *cft = seq_cft(m);
2920 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002921
Tejun Heo2da8ca82013-12-05 12:28:04 -05002922 if (cft->seq_show)
2923 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002924
Tejun Heo896f5192013-12-05 12:28:04 -05002925 if (cft->read_u64)
2926 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2927 else if (cft->read_s64)
2928 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2929 else
2930 return -EINVAL;
2931 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002932}
2933
Tejun Heo2bd59d42014-02-11 11:52:49 -05002934static struct kernfs_ops cgroup_kf_single_ops = {
2935 .atomic_write_len = PAGE_SIZE,
2936 .write = cgroup_file_write,
2937 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002938};
2939
Tejun Heo2bd59d42014-02-11 11:52:49 -05002940static struct kernfs_ops cgroup_kf_ops = {
2941 .atomic_write_len = PAGE_SIZE,
2942 .write = cgroup_file_write,
2943 .seq_start = cgroup_seqfile_start,
2944 .seq_next = cgroup_seqfile_next,
2945 .seq_stop = cgroup_seqfile_stop,
2946 .seq_show = cgroup_seqfile_show,
2947};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002948
2949/*
2950 * cgroup_rename - Only allow simple rename of directories in place.
2951 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002952static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2953 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002954{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002955 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08002956 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002957
Tejun Heo2bd59d42014-02-11 11:52:49 -05002958 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002959 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002960 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002961 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002962
Tejun Heo6db8e852013-06-14 11:18:22 -07002963 /*
2964 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04002965 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07002966 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04002967 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07002968 return -EPERM;
2969
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002970 /*
Tejun Heo8353da12014-05-13 12:19:23 -04002971 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002972 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04002973 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002974 */
2975 kernfs_break_active_protection(new_parent);
2976 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08002977
Tejun Heo2bd59d42014-02-11 11:52:49 -05002978 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08002979
Tejun Heo2bd59d42014-02-11 11:52:49 -05002980 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002981
Tejun Heo2bd59d42014-02-11 11:52:49 -05002982 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002983
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002984 kernfs_unbreak_active_protection(kn);
2985 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002986 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07002987}
2988
Tejun Heo49957f82014-04-07 16:44:47 -04002989/* set uid and gid of cgroup dirs and files to that of the creator */
2990static int cgroup_kn_set_ugid(struct kernfs_node *kn)
2991{
2992 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
2993 .ia_uid = current_fsuid(),
2994 .ia_gid = current_fsgid(), };
2995
2996 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
2997 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
2998 return 0;
2999
3000 return kernfs_setattr(kn, &iattr);
3001}
3002
Tejun Heo2bb566c2013-08-08 20:11:23 -04003003static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003004{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003005 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003006 struct kernfs_node *kn;
3007 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003008 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003009
Tejun Heo2bd59d42014-02-11 11:52:49 -05003010#ifdef CONFIG_DEBUG_LOCK_ALLOC
3011 key = &cft->lockdep_key;
3012#endif
3013 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3014 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
3015 NULL, false, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003016 if (IS_ERR(kn))
3017 return PTR_ERR(kn);
3018
3019 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003020 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003021 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003022 return ret;
3023 }
3024
Tejun Heob7fc5ad2014-05-13 12:16:22 -04003025 if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04003026 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04003027 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003028}
3029
Tejun Heob1f28d32013-06-28 16:24:10 -07003030/**
3031 * cgroup_addrm_files - add or remove files to a cgroup directory
3032 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07003033 * @cfts: array of cftypes to be added
3034 * @is_add: whether to add or remove
3035 *
3036 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04003037 * For removals, this function never fails. If addition fails, this
3038 * function doesn't remove files already added. The caller is responsible
3039 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07003040 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04003041static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
3042 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003043{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003044 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07003045 int ret;
3046
Tejun Heo01f64742014-05-13 12:19:23 -04003047 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003048
3049 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003050 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003051 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003052 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003053 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003054 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003055 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003056 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003057 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003058 continue;
3059
Li Zefan2739d3c2013-01-21 18:18:33 +08003060 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04003061 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003062 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003063 pr_warn("%s: failed to add %s, err=%d\n",
3064 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07003065 return ret;
3066 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003067 } else {
3068 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003069 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003070 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003071 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003072}
3073
Tejun Heo21a2d342014-02-12 09:29:49 -05003074static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003075{
3076 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003077 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003078 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003079 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003080 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003081
Tejun Heo01f64742014-05-13 12:19:23 -04003082 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003083
Li Zefane8c82d22013-06-18 18:48:37 +08003084 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003085 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003086 struct cgroup *cgrp = css->cgroup;
3087
Li Zefane8c82d22013-06-18 18:48:37 +08003088 if (cgroup_is_dead(cgrp))
3089 continue;
3090
Tejun Heo21a2d342014-02-12 09:29:49 -05003091 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003092 if (ret)
3093 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003094 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003095
3096 if (is_add && !ret)
3097 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003098 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003099}
3100
Tejun Heo2da440a2014-02-11 11:52:48 -05003101static void cgroup_exit_cftypes(struct cftype *cfts)
3102{
3103 struct cftype *cft;
3104
Tejun Heo2bd59d42014-02-11 11:52:49 -05003105 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3106 /* free copy for custom atomic_write_len, see init_cftypes() */
3107 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3108 kfree(cft->kf_ops);
3109 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003110 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003111
3112 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003113 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003114 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003115}
3116
Tejun Heo2bd59d42014-02-11 11:52:49 -05003117static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003118{
3119 struct cftype *cft;
3120
Tejun Heo2bd59d42014-02-11 11:52:49 -05003121 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3122 struct kernfs_ops *kf_ops;
3123
Tejun Heo0adb0702014-02-12 09:29:48 -05003124 WARN_ON(cft->ss || cft->kf_ops);
3125
Tejun Heo2bd59d42014-02-11 11:52:49 -05003126 if (cft->seq_start)
3127 kf_ops = &cgroup_kf_ops;
3128 else
3129 kf_ops = &cgroup_kf_single_ops;
3130
3131 /*
3132 * Ugh... if @cft wants a custom max_write_len, we need to
3133 * make a copy of kf_ops to set its atomic_write_len.
3134 */
3135 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3136 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3137 if (!kf_ops) {
3138 cgroup_exit_cftypes(cfts);
3139 return -ENOMEM;
3140 }
3141 kf_ops->atomic_write_len = cft->max_write_len;
3142 }
3143
3144 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003145 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003146 }
3147
3148 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003149}
3150
Tejun Heo21a2d342014-02-12 09:29:49 -05003151static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3152{
Tejun Heo01f64742014-05-13 12:19:23 -04003153 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003154
3155 if (!cfts || !cfts[0].ss)
3156 return -ENOENT;
3157
3158 list_del(&cfts->node);
3159 cgroup_apply_cftypes(cfts, false);
3160 cgroup_exit_cftypes(cfts);
3161 return 0;
3162}
3163
Tejun Heo8e3f6542012-04-01 12:09:55 -07003164/**
Tejun Heo80b13582014-02-12 09:29:48 -05003165 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3166 * @cfts: zero-length name terminated array of cftypes
3167 *
3168 * Unregister @cfts. Files described by @cfts are removed from all
3169 * existing cgroups and all future cgroups won't have them either. This
3170 * function can be called anytime whether @cfts' subsys is attached or not.
3171 *
3172 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3173 * registered.
3174 */
3175int cgroup_rm_cftypes(struct cftype *cfts)
3176{
Tejun Heo21a2d342014-02-12 09:29:49 -05003177 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003178
Tejun Heo01f64742014-05-13 12:19:23 -04003179 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003180 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003181 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003182 return ret;
3183}
3184
3185/**
3186 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3187 * @ss: target cgroup subsystem
3188 * @cfts: zero-length name terminated array of cftypes
3189 *
3190 * Register @cfts to @ss. Files described by @cfts are created for all
3191 * existing cgroups to which @ss is attached and all future cgroups will
3192 * have them too. This function can be called anytime whether @ss is
3193 * attached or not.
3194 *
3195 * Returns 0 on successful registration, -errno on failure. Note that this
3196 * function currently returns 0 as long as @cfts registration is successful
3197 * even if some file creation attempts on existing cgroups fail.
3198 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003199static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003200{
Tejun Heo9ccece82013-06-28 16:24:11 -07003201 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003202
Li Zefanc731ae12014-06-05 17:16:30 +08003203 if (ss->disabled)
3204 return 0;
3205
Li Zefandc5736e2014-02-17 10:41:50 +08003206 if (!cfts || cfts[0].name[0] == '\0')
3207 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003208
Tejun Heo2bd59d42014-02-11 11:52:49 -05003209 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003210 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003211 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003212
Tejun Heo01f64742014-05-13 12:19:23 -04003213 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003214
Tejun Heo0adb0702014-02-12 09:29:48 -05003215 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003216 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003217 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003218 cgroup_rm_cftypes_locked(cfts);
3219
Tejun Heo01f64742014-05-13 12:19:23 -04003220 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003221 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003222}
Tejun Heo79578622012-04-01 12:09:56 -07003223
3224/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003225 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
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 default hierarchy.
3231 */
3232int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3233{
3234 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_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003238 return cgroup_add_cftypes(ss, cfts);
3239}
3240
3241/**
3242 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3243 * @ss: target cgroup subsystem
3244 * @cfts: zero-length name terminated array of cftypes
3245 *
3246 * Similar to cgroup_add_cftypes() but the added files are only used for
3247 * the legacy hierarchies.
3248 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003249int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3250{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003251 struct cftype *cft;
3252
Vivek Goyalfa8137b2014-08-08 11:44:03 -04003253 /*
3254 * If legacy_flies_on_dfl, we want to show the legacy files on the
3255 * dfl hierarchy but iff the target subsystem hasn't been updated
3256 * for the dfl hierarchy yet.
3257 */
3258 if (!cgroup_legacy_files_on_dfl ||
3259 ss->dfl_cftypes != ss->legacy_cftypes) {
3260 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3261 cft->flags |= __CFTYPE_NOT_ON_DFL;
3262 }
3263
Tejun Heo2cf669a2014-07-15 11:05:09 -04003264 return cgroup_add_cftypes(ss, cfts);
3265}
3266
Li Zefana043e3b2008-02-23 15:24:09 -08003267/**
3268 * cgroup_task_count - count the number of tasks in a cgroup.
3269 * @cgrp: the cgroup in question
3270 *
3271 * Return the number of tasks in the cgroup.
3272 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003273static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003274{
3275 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003276 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003277
Tejun Heo96d365e2014-02-13 06:58:40 -05003278 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003279 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3280 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003281 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003282 return count;
3283}
3284
Tejun Heo574bd9f2012-11-09 09:12:29 -08003285/**
Tejun Heo492eb212013-08-08 20:11:25 -04003286 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003287 * @pos: the current position (%NULL to initiate traversal)
3288 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003289 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003290 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003291 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003292 * that @parent and @pos are accessible. The next sibling is guaranteed to
3293 * be returned regardless of their states.
3294 *
3295 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3296 * css which finished ->css_online() is guaranteed to be visible in the
3297 * future iterations and will stay visible until the last reference is put.
3298 * A css which hasn't finished ->css_online() or already finished
3299 * ->css_offline() may show up during traversal. It's each subsystem's
3300 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003301 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003302struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3303 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003304{
Tejun Heoc2931b72014-05-16 13:22:51 -04003305 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003306
Tejun Heo8353da12014-05-13 12:19:23 -04003307 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003308
3309 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003310 * @pos could already have been unlinked from the sibling list.
3311 * Once a cgroup is removed, its ->sibling.next is no longer
3312 * updated when its next sibling changes. CSS_RELEASED is set when
3313 * @pos is taken off list, at which time its next pointer is valid,
3314 * and, as releases are serialized, the one pointed to by the next
3315 * pointer is guaranteed to not have started release yet. This
3316 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3317 * critical section, the one pointed to by its next pointer is
3318 * guaranteed to not have finished its RCU grace period even if we
3319 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003320 *
Tejun Heode3f0342014-05-16 13:22:49 -04003321 * If @pos has CSS_RELEASED set, its next pointer can't be
3322 * dereferenced; however, as each css is given a monotonically
3323 * increasing unique serial number and always appended to the
3324 * sibling list, the next one can be found by walking the parent's
3325 * children until the first css with higher serial number than
3326 * @pos's. While this path can be slower, it happens iff iteration
3327 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003328 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003329 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003330 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3331 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3332 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003333 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003334 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003335 if (next->serial_nr > pos->serial_nr)
3336 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003337 }
3338
Tejun Heo3b281af2014-04-23 11:13:15 -04003339 /*
3340 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003341 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003342 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003343 if (&next->sibling != &parent->children)
3344 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003345 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003346}
Tejun Heo53fa5262013-05-24 10:55:38 +09003347
3348/**
Tejun Heo492eb212013-08-08 20:11:25 -04003349 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003350 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003351 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003352 *
Tejun Heo492eb212013-08-08 20:11:25 -04003353 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003354 * to visit for pre-order traversal of @root's descendants. @root is
3355 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003356 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003357 * While this function requires cgroup_mutex or RCU read locking, it
3358 * doesn't require the whole traversal to be contained in a single critical
3359 * section. This function will return the correct next descendant as long
3360 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003361 *
3362 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3363 * css which finished ->css_online() is guaranteed to be visible in the
3364 * future iterations and will stay visible until the last reference is put.
3365 * A css which hasn't finished ->css_online() or already finished
3366 * ->css_offline() may show up during traversal. It's each subsystem's
3367 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003368 */
Tejun Heo492eb212013-08-08 20:11:25 -04003369struct cgroup_subsys_state *
3370css_next_descendant_pre(struct cgroup_subsys_state *pos,
3371 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003372{
Tejun Heo492eb212013-08-08 20:11:25 -04003373 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003374
Tejun Heo8353da12014-05-13 12:19:23 -04003375 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003376
Tejun Heobd8815a2013-08-08 20:11:27 -04003377 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003378 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003379 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003380
3381 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003382 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003383 if (next)
3384 return next;
3385
3386 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003387 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003388 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003389 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003390 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003391 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003392 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003393
3394 return NULL;
3395}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003396
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003397/**
Tejun Heo492eb212013-08-08 20:11:25 -04003398 * css_rightmost_descendant - return the rightmost descendant of a css
3399 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003400 *
Tejun Heo492eb212013-08-08 20:11:25 -04003401 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3402 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003403 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003404 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003405 * While this function requires cgroup_mutex or RCU read locking, it
3406 * doesn't require the whole traversal to be contained in a single critical
3407 * section. This function will return the correct rightmost descendant as
3408 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003409 */
Tejun Heo492eb212013-08-08 20:11:25 -04003410struct cgroup_subsys_state *
3411css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003412{
Tejun Heo492eb212013-08-08 20:11:25 -04003413 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003414
Tejun Heo8353da12014-05-13 12:19:23 -04003415 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003416
3417 do {
3418 last = pos;
3419 /* ->prev isn't RCU safe, walk ->next till the end */
3420 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003421 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003422 pos = tmp;
3423 } while (pos);
3424
3425 return last;
3426}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003427
Tejun Heo492eb212013-08-08 20:11:25 -04003428static struct cgroup_subsys_state *
3429css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003430{
Tejun Heo492eb212013-08-08 20:11:25 -04003431 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003432
3433 do {
3434 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003435 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003436 } while (pos);
3437
3438 return last;
3439}
3440
3441/**
Tejun Heo492eb212013-08-08 20:11:25 -04003442 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003443 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003444 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003445 *
Tejun Heo492eb212013-08-08 20:11:25 -04003446 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003447 * to visit for post-order traversal of @root's descendants. @root is
3448 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003449 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003450 * While this function requires cgroup_mutex or RCU read locking, it
3451 * doesn't require the whole traversal to be contained in a single critical
3452 * section. This function will return the correct next descendant as long
3453 * as both @pos and @cgroup are accessible and @pos is a descendant of
3454 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003455 *
3456 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3457 * css which finished ->css_online() is guaranteed to be visible in the
3458 * future iterations and will stay visible until the last reference is put.
3459 * A css which hasn't finished ->css_online() or already finished
3460 * ->css_offline() may show up during traversal. It's each subsystem's
3461 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003462 */
Tejun Heo492eb212013-08-08 20:11:25 -04003463struct cgroup_subsys_state *
3464css_next_descendant_post(struct cgroup_subsys_state *pos,
3465 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003466{
Tejun Heo492eb212013-08-08 20:11:25 -04003467 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003468
Tejun Heo8353da12014-05-13 12:19:23 -04003469 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003470
Tejun Heo58b79a92013-09-06 15:31:08 -04003471 /* if first iteration, visit leftmost descendant which may be @root */
3472 if (!pos)
3473 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003474
Tejun Heobd8815a2013-08-08 20:11:27 -04003475 /* if we visited @root, we're done */
3476 if (pos == root)
3477 return NULL;
3478
Tejun Heo574bd9f2012-11-09 09:12:29 -08003479 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003480 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003481 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003482 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003483
3484 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003485 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003486}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003487
Tejun Heof3d46502014-05-16 13:22:52 -04003488/**
3489 * css_has_online_children - does a css have online children
3490 * @css: the target css
3491 *
3492 * Returns %true if @css has any online children; otherwise, %false. This
3493 * function can be called from any context but the caller is responsible
3494 * for synchronizing against on/offlining as necessary.
3495 */
3496bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003497{
Tejun Heof3d46502014-05-16 13:22:52 -04003498 struct cgroup_subsys_state *child;
3499 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003500
3501 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003502 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003503 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003504 ret = true;
3505 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003506 }
3507 }
3508 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003509 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003510}
3511
Tejun Heo0942eee2013-08-08 20:11:26 -04003512/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003513 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003514 * @it: the iterator to advance
3515 *
3516 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003517 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003518static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003519{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003520 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003521 struct cgrp_cset_link *link;
3522 struct css_set *cset;
3523
3524 /* Advance to the next non-empty css_set */
3525 do {
3526 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003527 if (l == it->cset_head) {
3528 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003529 return;
3530 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003531
3532 if (it->ss) {
3533 cset = container_of(l, struct css_set,
3534 e_cset_node[it->ss->id]);
3535 } else {
3536 link = list_entry(l, struct cgrp_cset_link, cset_link);
3537 cset = link->cset;
3538 }
Tejun Heoc7561122014-02-25 10:04:01 -05003539 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3540
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003541 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003542
3543 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003544 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003545 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003546 it->task_pos = cset->mg_tasks.next;
3547
3548 it->tasks_head = &cset->tasks;
3549 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003550}
3551
Tejun Heo0942eee2013-08-08 20:11:26 -04003552/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003553 * css_task_iter_start - initiate task iteration
3554 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003555 * @it: the task iterator to use
3556 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003557 * Initiate iteration through the tasks of @css. The caller can call
3558 * css_task_iter_next() to walk through the tasks until the function
3559 * returns NULL. On completion of iteration, css_task_iter_end() must be
3560 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003561 *
3562 * Note that this function acquires a lock which is released when the
3563 * iteration finishes. The caller can't sleep while iteration is in
3564 * progress.
3565 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003566void css_task_iter_start(struct cgroup_subsys_state *css,
3567 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003568 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003569{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003570 /* no one should try to iterate before mounting cgroups */
3571 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003572
Tejun Heo96d365e2014-02-13 06:58:40 -05003573 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003574
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003575 it->ss = css->ss;
3576
3577 if (it->ss)
3578 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3579 else
3580 it->cset_pos = &css->cgroup->cset_links;
3581
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003582 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003583
Tejun Heo72ec7022013-08-08 20:11:26 -04003584 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003585}
Paul Menage817929e2007-10-18 23:39:36 -07003586
Tejun Heo0942eee2013-08-08 20:11:26 -04003587/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003588 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003589 * @it: the task iterator being iterated
3590 *
3591 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003592 * initialized via css_task_iter_start(). Returns NULL when the iteration
3593 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003594 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003595struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003596{
3597 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003598 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003599
3600 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003601 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003602 return NULL;
3603 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003604
3605 /*
3606 * Advance iterator to find next entry. cset->tasks is consumed
3607 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3608 * next cset.
3609 */
Paul Menage817929e2007-10-18 23:39:36 -07003610 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003611
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003612 if (l == it->tasks_head)
3613 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003614
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003615 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003616 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003617 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003618 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003619
Paul Menage817929e2007-10-18 23:39:36 -07003620 return res;
3621}
3622
Tejun Heo0942eee2013-08-08 20:11:26 -04003623/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003624 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003625 * @it: the task iterator to finish
3626 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003627 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003628 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003629void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003630 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003631{
Tejun Heo96d365e2014-02-13 06:58:40 -05003632 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003633}
3634
3635/**
3636 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3637 * @to: cgroup to which the tasks will be moved
3638 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003639 *
3640 * Locking rules between cgroup_post_fork() and the migration path
3641 * guarantee that, if a task is forking while being migrated, the new child
3642 * is guaranteed to be either visible in the source cgroup after the
3643 * parent's migration is complete or put into the target cgroup. No task
3644 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003645 */
3646int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3647{
Tejun Heo952aaa12014-02-25 10:04:03 -05003648 LIST_HEAD(preloaded_csets);
3649 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003650 struct css_task_iter it;
3651 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003652 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003653
Tejun Heo952aaa12014-02-25 10:04:03 -05003654 mutex_lock(&cgroup_mutex);
3655
3656 /* all tasks in @from are being moved, all csets are source */
3657 down_read(&css_set_rwsem);
3658 list_for_each_entry(link, &from->cset_links, cset_link)
3659 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3660 up_read(&css_set_rwsem);
3661
3662 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3663 if (ret)
3664 goto out_err;
3665
3666 /*
3667 * Migrate tasks one-by-one until @form is empty. This fails iff
3668 * ->can_attach() fails.
3669 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003670 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003671 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003672 task = css_task_iter_next(&it);
3673 if (task)
3674 get_task_struct(task);
3675 css_task_iter_end(&it);
3676
3677 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003678 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003679 put_task_struct(task);
3680 }
3681 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003682out_err:
3683 cgroup_migrate_finish(&preloaded_csets);
3684 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003685 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003686}
3687
Paul Menage817929e2007-10-18 23:39:36 -07003688/*
Ben Blum102a7752009-09-23 15:56:26 -07003689 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003690 *
3691 * Reading this file can return large amounts of data if a cgroup has
3692 * *lots* of attached tasks. So it may need several calls to read(),
3693 * but we cannot guarantee that the information we produce is correct
3694 * unless we produce it entirely atomically.
3695 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003696 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003697
Li Zefan24528252012-01-20 11:58:43 +08003698/* which pidlist file are we talking about? */
3699enum cgroup_filetype {
3700 CGROUP_FILE_PROCS,
3701 CGROUP_FILE_TASKS,
3702};
3703
3704/*
3705 * A pidlist is a list of pids that virtually represents the contents of one
3706 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3707 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3708 * to the cgroup.
3709 */
3710struct cgroup_pidlist {
3711 /*
3712 * used to find which pidlist is wanted. doesn't change as long as
3713 * this particular list stays in the list.
3714 */
3715 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3716 /* array of xids */
3717 pid_t *list;
3718 /* how many elements the above list has */
3719 int length;
Li Zefan24528252012-01-20 11:58:43 +08003720 /* each of these stored in a list by its cgroup */
3721 struct list_head links;
3722 /* pointer to the cgroup we belong to, for list removal purposes */
3723 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003724 /* for delayed destruction */
3725 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003726};
3727
Paul Menagebbcb81d2007-10-18 23:39:32 -07003728/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003729 * The following two functions "fix" the issue where there are more pids
3730 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3731 * TODO: replace with a kernel-wide solution to this problem
3732 */
3733#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3734static void *pidlist_allocate(int count)
3735{
3736 if (PIDLIST_TOO_LARGE(count))
3737 return vmalloc(count * sizeof(pid_t));
3738 else
3739 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3740}
Tejun Heob1a21362013-11-29 10:42:58 -05003741
Ben Blumd1d9fd32009-09-23 15:56:28 -07003742static void pidlist_free(void *p)
3743{
3744 if (is_vmalloc_addr(p))
3745 vfree(p);
3746 else
3747 kfree(p);
3748}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003749
3750/*
Tejun Heob1a21362013-11-29 10:42:58 -05003751 * Used to destroy all pidlists lingering waiting for destroy timer. None
3752 * should be left afterwards.
3753 */
3754static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3755{
3756 struct cgroup_pidlist *l, *tmp_l;
3757
3758 mutex_lock(&cgrp->pidlist_mutex);
3759 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3760 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3761 mutex_unlock(&cgrp->pidlist_mutex);
3762
3763 flush_workqueue(cgroup_pidlist_destroy_wq);
3764 BUG_ON(!list_empty(&cgrp->pidlists));
3765}
3766
3767static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3768{
3769 struct delayed_work *dwork = to_delayed_work(work);
3770 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3771 destroy_dwork);
3772 struct cgroup_pidlist *tofree = NULL;
3773
3774 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003775
3776 /*
Tejun Heo04502362013-11-29 10:42:59 -05003777 * Destroy iff we didn't get queued again. The state won't change
3778 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003779 */
Tejun Heo04502362013-11-29 10:42:59 -05003780 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003781 list_del(&l->links);
3782 pidlist_free(l->list);
3783 put_pid_ns(l->key.ns);
3784 tofree = l;
3785 }
3786
Tejun Heob1a21362013-11-29 10:42:58 -05003787 mutex_unlock(&l->owner->pidlist_mutex);
3788 kfree(tofree);
3789}
3790
3791/*
Ben Blum102a7752009-09-23 15:56:26 -07003792 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003793 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003794 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003795static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003796{
Ben Blum102a7752009-09-23 15:56:26 -07003797 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003798
3799 /*
3800 * we presume the 0th element is unique, so i starts at 1. trivial
3801 * edge cases first; no work needs to be done for either
3802 */
3803 if (length == 0 || length == 1)
3804 return length;
3805 /* src and dest walk down the list; dest counts unique elements */
3806 for (src = 1; src < length; src++) {
3807 /* find next unique element */
3808 while (list[src] == list[src-1]) {
3809 src++;
3810 if (src == length)
3811 goto after;
3812 }
3813 /* dest always points to where the next unique element goes */
3814 list[dest] = list[src];
3815 dest++;
3816 }
3817after:
Ben Blum102a7752009-09-23 15:56:26 -07003818 return dest;
3819}
3820
Tejun Heoafb2bc12013-11-29 10:42:59 -05003821/*
3822 * The two pid files - task and cgroup.procs - guaranteed that the result
3823 * is sorted, which forced this whole pidlist fiasco. As pid order is
3824 * different per namespace, each namespace needs differently sorted list,
3825 * making it impossible to use, for example, single rbtree of member tasks
3826 * sorted by task pointer. As pidlists can be fairly large, allocating one
3827 * per open file is dangerous, so cgroup had to implement shared pool of
3828 * pidlists keyed by cgroup and namespace.
3829 *
3830 * All this extra complexity was caused by the original implementation
3831 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04003832 * want to do away with it. Explicitly scramble sort order if on the
3833 * default hierarchy so that no such expectation exists in the new
3834 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05003835 *
3836 * Scrambling is done by swapping every two consecutive bits, which is
3837 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3838 */
3839static pid_t pid_fry(pid_t pid)
3840{
3841 unsigned a = pid & 0x55555555;
3842 unsigned b = pid & 0xAAAAAAAA;
3843
3844 return (a << 1) | (b >> 1);
3845}
3846
3847static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3848{
Tejun Heoaa6ec292014-07-09 10:08:08 -04003849 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05003850 return pid_fry(pid);
3851 else
3852 return pid;
3853}
3854
Ben Blum102a7752009-09-23 15:56:26 -07003855static int cmppid(const void *a, const void *b)
3856{
3857 return *(pid_t *)a - *(pid_t *)b;
3858}
3859
Tejun Heoafb2bc12013-11-29 10:42:59 -05003860static int fried_cmppid(const void *a, const void *b)
3861{
3862 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3863}
3864
Ben Blum72a8cb32009-09-23 15:56:27 -07003865static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3866 enum cgroup_filetype type)
3867{
3868 struct cgroup_pidlist *l;
3869 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003870 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003871
Tejun Heoe6b81712013-11-29 10:42:59 -05003872 lockdep_assert_held(&cgrp->pidlist_mutex);
3873
3874 list_for_each_entry(l, &cgrp->pidlists, links)
3875 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003876 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003877 return NULL;
3878}
3879
Ben Blum72a8cb32009-09-23 15:56:27 -07003880/*
3881 * find the appropriate pidlist for our purpose (given procs vs tasks)
3882 * returns with the lock on that pidlist already held, and takes care
3883 * of the use count, or returns NULL with no locks held if we're out of
3884 * memory.
3885 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003886static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3887 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003888{
3889 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003890
Tejun Heoe6b81712013-11-29 10:42:59 -05003891 lockdep_assert_held(&cgrp->pidlist_mutex);
3892
3893 l = cgroup_pidlist_find(cgrp, type);
3894 if (l)
3895 return l;
3896
Ben Blum72a8cb32009-09-23 15:56:27 -07003897 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003898 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003899 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003900 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003901
Tejun Heob1a21362013-11-29 10:42:58 -05003902 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003903 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003904 /* don't need task_nsproxy() if we're looking at ourself */
3905 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003906 l->owner = cgrp;
3907 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003908 return l;
3909}
3910
3911/*
Ben Blum102a7752009-09-23 15:56:26 -07003912 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3913 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003914static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3915 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003916{
3917 pid_t *array;
3918 int length;
3919 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003920 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003921 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003922 struct cgroup_pidlist *l;
3923
Tejun Heo4bac00d2013-11-29 10:42:59 -05003924 lockdep_assert_held(&cgrp->pidlist_mutex);
3925
Ben Blum102a7752009-09-23 15:56:26 -07003926 /*
3927 * If cgroup gets more users after we read count, we won't have
3928 * enough space - tough. This race is indistinguishable to the
3929 * caller from the case that the additional cgroup users didn't
3930 * show up until sometime later on.
3931 */
3932 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003933 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003934 if (!array)
3935 return -ENOMEM;
3936 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04003937 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003938 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003939 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003940 break;
Ben Blum102a7752009-09-23 15:56:26 -07003941 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003942 if (type == CGROUP_FILE_PROCS)
3943 pid = task_tgid_vnr(tsk);
3944 else
3945 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003946 if (pid > 0) /* make sure to only use valid results */
3947 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003948 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003949 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003950 length = n;
3951 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003952 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05003953 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3954 else
3955 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003956 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003957 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003958
Tejun Heoe6b81712013-11-29 10:42:59 -05003959 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003960 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003961 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003962 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003963 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003964
3965 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003966 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003967 l->list = array;
3968 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003969 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003970 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003971}
3972
Balbir Singh846c7bb2007-10-18 23:39:44 -07003973/**
Li Zefana043e3b2008-02-23 15:24:09 -08003974 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003975 * @stats: cgroupstats to fill information into
3976 * @dentry: A dentry entry belonging to the cgroup for which stats have
3977 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003978 *
3979 * Build and fill cgroupstats so that taskstats can export it to user
3980 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003981 */
3982int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3983{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003984 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003985 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003986 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003987 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003988
Tejun Heo2bd59d42014-02-11 11:52:49 -05003989 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3990 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3991 kernfs_type(kn) != KERNFS_DIR)
3992 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003993
Li Zefanbad34662014-02-14 16:54:28 +08003994 mutex_lock(&cgroup_mutex);
3995
Tejun Heo2bd59d42014-02-11 11:52:49 -05003996 /*
3997 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04003998 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05003999 * @kn->priv is RCU safe. Let's do the RCU dancing.
4000 */
4001 rcu_read_lock();
4002 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004003 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004004 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004005 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004006 return -ENOENT;
4007 }
Li Zefanbad34662014-02-14 16:54:28 +08004008 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004009
Tejun Heo9d800df2014-05-14 09:15:00 -04004010 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004011 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004012 switch (tsk->state) {
4013 case TASK_RUNNING:
4014 stats->nr_running++;
4015 break;
4016 case TASK_INTERRUPTIBLE:
4017 stats->nr_sleeping++;
4018 break;
4019 case TASK_UNINTERRUPTIBLE:
4020 stats->nr_uninterruptible++;
4021 break;
4022 case TASK_STOPPED:
4023 stats->nr_stopped++;
4024 break;
4025 default:
4026 if (delayacct_is_task_waiting_on_io(tsk))
4027 stats->nr_io_wait++;
4028 break;
4029 }
4030 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004031 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004032
Li Zefanbad34662014-02-14 16:54:28 +08004033 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004034 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004035}
4036
Paul Menage8f3ff202009-09-23 15:56:25 -07004037
Paul Menagecc31edc2008-10-18 20:28:04 -07004038/*
Ben Blum102a7752009-09-23 15:56:26 -07004039 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004040 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004041 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004042 */
4043
Ben Blum102a7752009-09-23 15:56:26 -07004044static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004045{
4046 /*
4047 * Initially we receive a position value that corresponds to
4048 * one more than the last pid shown (or 0 on the first call or
4049 * after a seek to the start). Use a binary-search to find the
4050 * next pid to display, if any
4051 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004052 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004053 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004054 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004055 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004056 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004057 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004058
Tejun Heo4bac00d2013-11-29 10:42:59 -05004059 mutex_lock(&cgrp->pidlist_mutex);
4060
4061 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004062 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004063 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004064 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004065 * could already have been destroyed.
4066 */
Tejun Heo5d224442013-12-05 12:28:04 -05004067 if (of->priv)
4068 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004069
4070 /*
4071 * Either this is the first start() after open or the matching
4072 * pidlist has been destroyed inbetween. Create a new one.
4073 */
Tejun Heo5d224442013-12-05 12:28:04 -05004074 if (!of->priv) {
4075 ret = pidlist_array_load(cgrp, type,
4076 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004077 if (ret)
4078 return ERR_PTR(ret);
4079 }
Tejun Heo5d224442013-12-05 12:28:04 -05004080 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004081
Paul Menagecc31edc2008-10-18 20:28:04 -07004082 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004083 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004084
Paul Menagecc31edc2008-10-18 20:28:04 -07004085 while (index < end) {
4086 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004087 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004088 index = mid;
4089 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004090 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004091 index = mid + 1;
4092 else
4093 end = mid;
4094 }
4095 }
4096 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004097 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004098 return NULL;
4099 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004100 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004101 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004102 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004103}
4104
Ben Blum102a7752009-09-23 15:56:26 -07004105static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004106{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004107 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004108 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004109
Tejun Heo5d224442013-12-05 12:28:04 -05004110 if (l)
4111 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004112 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004113 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004114}
4115
Ben Blum102a7752009-09-23 15:56:26 -07004116static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004117{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004118 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004119 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004120 pid_t *p = v;
4121 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004122 /*
4123 * Advance to the next pid in the array. If this goes off the
4124 * end, we're done
4125 */
4126 p++;
4127 if (p >= end) {
4128 return NULL;
4129 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004130 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004131 return p;
4132 }
4133}
4134
Ben Blum102a7752009-09-23 15:56:26 -07004135static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004136{
4137 return seq_printf(s, "%d\n", *(int *)v);
4138}
4139
Tejun Heo182446d2013-08-08 20:11:24 -04004140static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4141 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004142{
Tejun Heo182446d2013-08-08 20:11:24 -04004143 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004144}
4145
Tejun Heo182446d2013-08-08 20:11:24 -04004146static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4147 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004148{
Paul Menage6379c102008-07-25 01:47:01 -07004149 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004150 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004151 else
Tejun Heo182446d2013-08-08 20:11:24 -04004152 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004153 return 0;
4154}
4155
Tejun Heo182446d2013-08-08 20:11:24 -04004156static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4157 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004158{
Tejun Heo182446d2013-08-08 20:11:24 -04004159 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004160}
4161
Tejun Heo182446d2013-08-08 20:11:24 -04004162static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4163 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004164{
4165 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004166 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004167 else
Tejun Heo182446d2013-08-08 20:11:24 -04004168 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004169 return 0;
4170}
4171
Tejun Heoa14c6872014-07-15 11:05:09 -04004172/* cgroup core interface files for the default hierarchy */
4173static struct cftype cgroup_dfl_base_files[] = {
4174 {
4175 .name = "cgroup.procs",
4176 .seq_start = cgroup_pidlist_start,
4177 .seq_next = cgroup_pidlist_next,
4178 .seq_stop = cgroup_pidlist_stop,
4179 .seq_show = cgroup_pidlist_show,
4180 .private = CGROUP_FILE_PROCS,
4181 .write = cgroup_procs_write,
4182 .mode = S_IRUGO | S_IWUSR,
4183 },
4184 {
4185 .name = "cgroup.controllers",
4186 .flags = CFTYPE_ONLY_ON_ROOT,
4187 .seq_show = cgroup_root_controllers_show,
4188 },
4189 {
4190 .name = "cgroup.controllers",
4191 .flags = CFTYPE_NOT_ON_ROOT,
4192 .seq_show = cgroup_controllers_show,
4193 },
4194 {
4195 .name = "cgroup.subtree_control",
4196 .seq_show = cgroup_subtree_control_show,
4197 .write = cgroup_subtree_control_write,
4198 },
4199 {
4200 .name = "cgroup.populated",
4201 .flags = CFTYPE_NOT_ON_ROOT,
4202 .seq_show = cgroup_populated_show,
4203 },
4204 { } /* terminate */
4205};
4206
4207/* cgroup core interface files for the legacy hierarchies */
4208static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004209 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004210 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004211 .seq_start = cgroup_pidlist_start,
4212 .seq_next = cgroup_pidlist_next,
4213 .seq_stop = cgroup_pidlist_stop,
4214 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004215 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004216 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004217 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004218 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004219 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004220 .name = "cgroup.clone_children",
4221 .read_u64 = cgroup_clone_children_read,
4222 .write_u64 = cgroup_clone_children_write,
4223 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004224 {
Tejun Heo873fe092013-04-14 20:15:26 -07004225 .name = "cgroup.sane_behavior",
4226 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004227 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004228 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004229 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004230 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004231 .seq_start = cgroup_pidlist_start,
4232 .seq_next = cgroup_pidlist_next,
4233 .seq_stop = cgroup_pidlist_stop,
4234 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004235 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004236 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004237 .mode = S_IRUGO | S_IWUSR,
4238 },
4239 {
4240 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004241 .read_u64 = cgroup_read_notify_on_release,
4242 .write_u64 = cgroup_write_notify_on_release,
4243 },
Tejun Heo873fe092013-04-14 20:15:26 -07004244 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004245 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004246 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004247 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004248 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004249 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004250 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004251 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004252};
4253
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004254/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004255 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004256 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004257 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004258 *
4259 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004260 */
Tejun Heo69dfa002014-05-04 15:09:13 -04004261static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004262{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004263 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004264 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004265
Tejun Heo8e3f6542012-04-01 12:09:55 -07004266 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004267 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004268 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004269
Tejun Heo69dfa002014-05-04 15:09:13 -04004270 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004271 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004272
Tejun Heo0adb0702014-02-12 09:29:48 -05004273 list_for_each_entry(cfts, &ss->cfts, node) {
4274 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004275 if (ret < 0)
4276 goto err;
4277 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004278 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004279 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004280err:
4281 cgroup_clear_dir(cgrp, subsys_mask);
4282 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004283}
4284
Tejun Heo0c21ead2013-08-13 20:22:51 -04004285/*
4286 * css destruction is four-stage process.
4287 *
4288 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4289 * Implemented in kill_css().
4290 *
4291 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004292 * and thus css_tryget_online() is guaranteed to fail, the css can be
4293 * offlined by invoking offline_css(). After offlining, the base ref is
4294 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004295 *
4296 * 3. When the percpu_ref reaches zero, the only possible remaining
4297 * accessors are inside RCU read sections. css_release() schedules the
4298 * RCU callback.
4299 *
4300 * 4. After the grace period, the css can be freed. Implemented in
4301 * css_free_work_fn().
4302 *
4303 * It is actually hairier because both step 2 and 4 require process context
4304 * and thus involve punting to css->destroy_work adding two additional
4305 * steps to the already complex sequence.
4306 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004307static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004308{
4309 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004310 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04004311 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004312
Tejun Heo9a1049d2014-06-28 08:10:14 -04004313 percpu_ref_exit(&css->refcnt);
4314
Tejun Heo9d755d32014-05-14 09:15:02 -04004315 if (css->ss) {
4316 /* css free path */
4317 if (css->parent)
4318 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004319
Tejun Heo9d755d32014-05-14 09:15:02 -04004320 css->ss->css_free(css);
4321 cgroup_put(cgrp);
4322 } else {
4323 /* cgroup free path */
4324 atomic_dec(&cgrp->root->nr_cgrps);
4325 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004326 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004327
Tejun Heod51f39b2014-05-16 13:22:48 -04004328 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004329 /*
4330 * We get a ref to the parent, and put the ref when
4331 * this cgroup is being freed, so it's guaranteed
4332 * that the parent won't be destroyed before its
4333 * children.
4334 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004335 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004336 kernfs_put(cgrp->kn);
4337 kfree(cgrp);
4338 } else {
4339 /*
4340 * This is root cgroup's refcnt reaching zero,
4341 * which indicates that the root should be
4342 * released.
4343 */
4344 cgroup_destroy_root(cgrp->root);
4345 }
4346 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004347}
4348
4349static void css_free_rcu_fn(struct rcu_head *rcu_head)
4350{
4351 struct cgroup_subsys_state *css =
4352 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4353
Tejun Heo0c21ead2013-08-13 20:22:51 -04004354 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004355 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004356}
4357
Tejun Heo25e15d82014-05-14 09:15:02 -04004358static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004359{
4360 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004361 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004362 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004363 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004364
Tejun Heo1fed1b22014-05-16 13:22:49 -04004365 mutex_lock(&cgroup_mutex);
4366
Tejun Heode3f0342014-05-16 13:22:49 -04004367 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004368 list_del_rcu(&css->sibling);
4369
Tejun Heo9d755d32014-05-14 09:15:02 -04004370 if (ss) {
4371 /* css release path */
4372 cgroup_idr_remove(&ss->css_idr, css->id);
4373 } else {
4374 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004375 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4376 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004377
4378 /*
4379 * There are two control paths which try to determine
4380 * cgroup from dentry without going through kernfs -
4381 * cgroupstats_build() and css_tryget_online_from_dir().
4382 * Those are supported by RCU protecting clearing of
4383 * cgrp->kn->priv backpointer.
4384 */
4385 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004386 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004387
Tejun Heo1fed1b22014-05-16 13:22:49 -04004388 mutex_unlock(&cgroup_mutex);
4389
Tejun Heo0c21ead2013-08-13 20:22:51 -04004390 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004391}
4392
Paul Menageddbcc7e2007-10-18 23:39:30 -07004393static void css_release(struct percpu_ref *ref)
4394{
4395 struct cgroup_subsys_state *css =
4396 container_of(ref, struct cgroup_subsys_state, refcnt);
4397
Tejun Heo25e15d82014-05-14 09:15:02 -04004398 INIT_WORK(&css->destroy_work, css_release_work_fn);
4399 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004400}
4401
Tejun Heoddfcada2014-05-04 15:09:14 -04004402static void init_and_link_css(struct cgroup_subsys_state *css,
4403 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004404{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004405 lockdep_assert_held(&cgroup_mutex);
4406
Tejun Heoddfcada2014-05-04 15:09:14 -04004407 cgroup_get(cgrp);
4408
Tejun Heod5c419b2014-05-16 13:22:48 -04004409 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004410 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004411 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004412 INIT_LIST_HEAD(&css->sibling);
4413 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004414 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004415
Tejun Heod51f39b2014-05-16 13:22:48 -04004416 if (cgroup_parent(cgrp)) {
4417 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004418 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004419 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004420
Tejun Heoca8bdca2013-08-26 18:40:56 -04004421 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004422}
4423
Li Zefan2a4ac632013-07-31 16:16:40 +08004424/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004425static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004426{
Tejun Heo623f9262013-08-13 11:01:55 -04004427 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004428 int ret = 0;
4429
Tejun Heoa31f2d32012-11-19 08:13:37 -08004430 lockdep_assert_held(&cgroup_mutex);
4431
Tejun Heo92fb9742012-11-19 08:13:38 -08004432 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004433 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004434 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004435 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004436 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004437 }
Tejun Heob1929db2012-11-19 08:13:38 -08004438 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004439}
4440
Li Zefan2a4ac632013-07-31 16:16:40 +08004441/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004442static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004443{
Tejun Heo623f9262013-08-13 11:01:55 -04004444 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004445
4446 lockdep_assert_held(&cgroup_mutex);
4447
4448 if (!(css->flags & CSS_ONLINE))
4449 return;
4450
Li Zefand7eeac12013-03-12 15:35:59 -07004451 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004452 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004453
Tejun Heoeb954192013-08-08 20:11:23 -04004454 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004455 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004456
4457 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004458}
4459
Tejun Heoc81c925a2013-12-06 15:11:56 -05004460/**
4461 * create_css - create a cgroup_subsys_state
4462 * @cgrp: the cgroup new css will be associated with
4463 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004464 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004465 *
4466 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004467 * css is online and installed in @cgrp with all interface files created if
4468 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004469 */
Tejun Heof63070d2014-07-08 18:02:57 -04004470static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4471 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004472{
Tejun Heod51f39b2014-05-16 13:22:48 -04004473 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004474 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004475 struct cgroup_subsys_state *css;
4476 int err;
4477
Tejun Heoc81c925a2013-12-06 15:11:56 -05004478 lockdep_assert_held(&cgroup_mutex);
4479
Tejun Heo1fed1b22014-05-16 13:22:49 -04004480 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004481 if (IS_ERR(css))
4482 return PTR_ERR(css);
4483
Tejun Heoddfcada2014-05-04 15:09:14 -04004484 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004485
Tejun Heo2aad2a82014-09-24 13:31:50 -04004486 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004487 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004488 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004489
Tejun Heo15a4c832014-05-04 15:09:14 -04004490 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT);
4491 if (err < 0)
4492 goto err_free_percpu_ref;
4493 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004494
Tejun Heof63070d2014-07-08 18:02:57 -04004495 if (visible) {
4496 err = cgroup_populate_dir(cgrp, 1 << ss->id);
4497 if (err)
4498 goto err_free_id;
4499 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004500
4501 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004502 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004503 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004504
4505 err = online_css(css);
4506 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004507 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004508
Tejun Heoc81c925a2013-12-06 15:11:56 -05004509 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004510 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004511 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 -04004512 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004513 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004514 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004515 ss->warned_broken_hierarchy = true;
4516 }
4517
4518 return 0;
4519
Tejun Heo1fed1b22014-05-16 13:22:49 -04004520err_list_del:
4521 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004522 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004523err_free_id:
4524 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004525err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004526 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004527err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004528 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004529 return err;
4530}
4531
Tejun Heob3bfd982014-05-13 12:19:22 -04004532static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4533 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004534{
Tejun Heoa9746d82014-05-13 12:19:22 -04004535 struct cgroup *parent, *cgrp;
4536 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004537 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004538 struct kernfs_node *kn;
Tejun Heoa14c6872014-07-15 11:05:09 -04004539 struct cftype *base_files;
Tejun Heob3bfd982014-05-13 12:19:22 -04004540 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004541
Alban Crequy71b1fb52014-08-18 12:20:20 +01004542 /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable.
4543 */
4544 if (strchr(name, '\n'))
4545 return -EINVAL;
4546
Tejun Heoa9746d82014-05-13 12:19:22 -04004547 parent = cgroup_kn_lock_live(parent_kn);
4548 if (!parent)
4549 return -ENODEV;
4550 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004551
Tejun Heo0a950f62012-11-19 09:02:12 -08004552 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004553 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004554 if (!cgrp) {
4555 ret = -ENOMEM;
4556 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004557 }
4558
Tejun Heo2aad2a82014-09-24 13:31:50 -04004559 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004560 if (ret)
4561 goto out_free_cgrp;
4562
Li Zefan0ab02ca2014-02-11 16:05:46 +08004563 /*
4564 * Temporarily set the pointer to NULL, so idr_find() won't return
4565 * a half-baked cgroup.
4566 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004567 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_NOWAIT);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004568 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004569 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004570 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004571 }
4572
Paul Menagecc31edc2008-10-18 20:28:04 -07004573 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004574
Tejun Heo9d800df2014-05-14 09:15:00 -04004575 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004576 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004577
Li Zefanb6abdb02008-03-04 14:28:19 -08004578 if (notify_on_release(parent))
4579 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4580
Tejun Heo2260e7f2012-11-19 08:13:38 -08004581 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4582 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004583
Tejun Heo2bd59d42014-02-11 11:52:49 -05004584 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004585 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004586 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004587 ret = PTR_ERR(kn);
4588 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004589 }
4590 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004591
Tejun Heo6f305582014-02-12 09:29:50 -05004592 /*
4593 * This extra ref will be put in cgroup_free_fn() and guarantees
4594 * that @cgrp->kn is always accessible.
4595 */
4596 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004597
Tejun Heo0cb51d72014-05-16 13:22:49 -04004598 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004599
Tejun Heo4e139af2012-11-19 08:13:36 -08004600 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004601 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004602 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004603 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004604
Tejun Heo0d802552013-12-06 15:11:56 -05004605 /*
4606 * @cgrp is now fully operational. If something fails after this
4607 * point, it'll be released via the normal destruction path.
4608 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004609 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004610
Tejun Heoba0f4d72014-05-13 12:19:22 -04004611 ret = cgroup_kn_set_ugid(kn);
4612 if (ret)
4613 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004614
Tejun Heoa14c6872014-07-15 11:05:09 -04004615 if (cgroup_on_dfl(cgrp))
4616 base_files = cgroup_dfl_base_files;
4617 else
4618 base_files = cgroup_legacy_base_files;
4619
4620 ret = cgroup_addrm_files(cgrp, base_files, true);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004621 if (ret)
4622 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004623
Tejun Heo9d403e92013-12-06 15:11:56 -05004624 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004625 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004626 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004627 ret = create_css(cgrp, ss,
4628 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004629 if (ret)
4630 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004631 }
Tejun Heoa8638032012-11-09 09:12:29 -08004632 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004633
Tejun Heobd53d612014-04-23 11:13:16 -04004634 /*
4635 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004636 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004637 */
Tejun Heo667c2492014-07-08 18:02:56 -04004638 if (!cgroup_on_dfl(cgrp)) {
4639 cgrp->subtree_control = parent->subtree_control;
4640 cgroup_refresh_child_subsys_mask(cgrp);
4641 }
Tejun Heof392e512014-04-23 11:13:14 -04004642
Tejun Heo2bd59d42014-02-11 11:52:49 -05004643 kernfs_activate(kn);
4644
Tejun Heoba0f4d72014-05-13 12:19:22 -04004645 ret = 0;
4646 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004647
Tejun Heoba0f4d72014-05-13 12:19:22 -04004648out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004649 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004650out_cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004651 percpu_ref_exit(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004652out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004653 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004654out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004655 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004656 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004657
4658out_destroy:
4659 cgroup_destroy_locked(cgrp);
4660 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004661}
4662
Tejun Heo223dbc32013-08-13 20:22:50 -04004663/*
4664 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004665 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4666 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004667 */
4668static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004669{
Tejun Heo223dbc32013-08-13 20:22:50 -04004670 struct cgroup_subsys_state *css =
4671 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004672
Tejun Heof20104d2013-08-13 20:22:50 -04004673 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004674 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004675 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004676
Tejun Heo09a503ea2013-08-13 20:22:50 -04004677 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004678}
4679
Tejun Heo223dbc32013-08-13 20:22:50 -04004680/* css kill confirmation processing requires process context, bounce */
4681static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004682{
4683 struct cgroup_subsys_state *css =
4684 container_of(ref, struct cgroup_subsys_state, refcnt);
4685
Tejun Heo223dbc32013-08-13 20:22:50 -04004686 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004687 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004688}
4689
Tejun Heof392e512014-04-23 11:13:14 -04004690/**
4691 * kill_css - destroy a css
4692 * @css: css to destroy
4693 *
4694 * This function initiates destruction of @css by removing cgroup interface
4695 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004696 * asynchronously once css_tryget_online() is guaranteed to fail and when
4697 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004698 */
4699static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004700{
Tejun Heo01f64742014-05-13 12:19:23 -04004701 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004702
Tejun Heo2bd59d42014-02-11 11:52:49 -05004703 /*
4704 * This must happen before css is disassociated with its cgroup.
4705 * See seq_css() for details.
4706 */
Tejun Heoaec25022014-02-08 10:36:58 -05004707 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004708
Tejun Heoedae0c32013-08-13 20:22:51 -04004709 /*
4710 * Killing would put the base ref, but we need to keep it alive
4711 * until after ->css_offline().
4712 */
4713 css_get(css);
4714
4715 /*
4716 * cgroup core guarantees that, by the time ->css_offline() is
4717 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004718 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004719 * proceed to offlining css's because percpu_ref_kill() doesn't
4720 * guarantee that the ref is seen as killed on all CPUs on return.
4721 *
4722 * Use percpu_ref_kill_and_confirm() to get notifications as each
4723 * css is confirmed to be seen as killed on all CPUs.
4724 */
4725 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004726}
4727
4728/**
4729 * cgroup_destroy_locked - the first stage of cgroup destruction
4730 * @cgrp: cgroup to be destroyed
4731 *
4732 * css's make use of percpu refcnts whose killing latency shouldn't be
4733 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004734 * guarantee that css_tryget_online() won't succeed by the time
4735 * ->css_offline() is invoked. To satisfy all the requirements,
4736 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004737 *
4738 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4739 * userland visible parts and start killing the percpu refcnts of
4740 * css's. Set up so that the next stage will be kicked off once all
4741 * the percpu refcnts are confirmed to be killed.
4742 *
4743 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4744 * rest of destruction. Once all cgroup references are gone, the
4745 * cgroup is RCU-freed.
4746 *
4747 * This function implements s1. After this step, @cgrp is gone as far as
4748 * the userland is concerned and a new cgroup with the same name may be
4749 * created. As cgroup doesn't care about the names internally, this
4750 * doesn't cause any problem.
4751 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004752static int cgroup_destroy_locked(struct cgroup *cgrp)
4753 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004754{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004755 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004756 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004757 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004758
Tejun Heo42809dd2012-11-19 08:13:37 -08004759 lockdep_assert_held(&cgroup_mutex);
4760
Tejun Heoddd69142013-06-12 21:04:54 -07004761 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004762 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004763 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004764 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004765 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004766 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004767 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004768 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004769 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004770
Tejun Heo1a90dd52012-11-05 09:16:59 -08004771 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004772 * Make sure there's no live children. We can't test emptiness of
4773 * ->self.children as dead children linger on it while being
4774 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004775 */
Tejun Heof3d46502014-05-16 13:22:52 -04004776 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004777 return -EBUSY;
4778
4779 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004780 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004781 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004782 */
Tejun Heo184faf32014-05-16 13:22:51 -04004783 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004784
Tejun Heo249f3462014-05-14 09:15:01 -04004785 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004786 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004787 kill_css(css);
4788
Tejun Heo455050d2013-06-13 19:27:41 -07004789 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004790 * Remove @cgrp directory along with the base files. @cgrp has an
4791 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004792 */
Tejun Heo01f64742014-05-13 12:19:23 -04004793 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004794
Tejun Heod51f39b2014-05-16 13:22:48 -04004795 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004796
Tejun Heo249f3462014-05-14 09:15:01 -04004797 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004798 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004799
Tejun Heoea15f8c2013-06-13 19:27:42 -07004800 return 0;
4801};
4802
Tejun Heo2bd59d42014-02-11 11:52:49 -05004803static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004804{
Tejun Heoa9746d82014-05-13 12:19:22 -04004805 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004806 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004807
Tejun Heoa9746d82014-05-13 12:19:22 -04004808 cgrp = cgroup_kn_lock_live(kn);
4809 if (!cgrp)
4810 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004811
Tejun Heoa9746d82014-05-13 12:19:22 -04004812 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004813
Tejun Heoa9746d82014-05-13 12:19:22 -04004814 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004815 return ret;
4816}
4817
Tejun Heo2bd59d42014-02-11 11:52:49 -05004818static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4819 .remount_fs = cgroup_remount,
4820 .show_options = cgroup_show_options,
4821 .mkdir = cgroup_mkdir,
4822 .rmdir = cgroup_rmdir,
4823 .rename = cgroup_rename,
4824};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004825
Tejun Heo15a4c832014-05-04 15:09:14 -04004826static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004827{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004828 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004829
4830 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004831
Tejun Heo648bb562012-11-19 08:13:36 -08004832 mutex_lock(&cgroup_mutex);
4833
Tejun Heo15a4c832014-05-04 15:09:14 -04004834 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004835 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004836
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004837 /* Create the root cgroup state for this subsystem */
4838 ss->root = &cgrp_dfl_root;
4839 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004840 /* We don't handle early failures gracefully */
4841 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004842 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004843
4844 /*
4845 * Root csses are never destroyed and we can't initialize
4846 * percpu_ref during early init. Disable refcnting.
4847 */
4848 css->flags |= CSS_NO_REF;
4849
Tejun Heo15a4c832014-05-04 15:09:14 -04004850 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004851 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004852 css->id = 1;
4853 } else {
4854 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4855 BUG_ON(css->id < 0);
4856 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004857
Li Zefane8d55fd2008-04-29 01:00:13 -07004858 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004859 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004860 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004861 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004862 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004863
4864 need_forkexit_callback |= ss->fork || ss->exit;
4865
Li Zefane8d55fd2008-04-29 01:00:13 -07004866 /* At system boot, before all subsystems have been
4867 * registered, no tasks have been forked, so we don't
4868 * need to invoke fork callbacks here. */
4869 BUG_ON(!list_empty(&init_task.tasks));
4870
Tejun Heoae7f1642013-08-13 20:22:50 -04004871 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004872
Tejun Heo648bb562012-11-19 08:13:36 -08004873 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004874}
4875
4876/**
Li Zefana043e3b2008-02-23 15:24:09 -08004877 * cgroup_init_early - cgroup initialization at system boot
4878 *
4879 * Initialize cgroups at system boot, and initialize any
4880 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004881 */
4882int __init cgroup_init_early(void)
4883{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04004884 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07004885 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004886 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004887
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004888 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004889 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4890
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004891 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004892
Tejun Heo3ed80a62014-02-08 10:36:58 -05004893 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004894 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004895 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4896 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004897 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004898 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4899 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004900
Tejun Heoaec25022014-02-08 10:36:58 -05004901 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004902 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004903
4904 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04004905 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004906 }
4907 return 0;
4908}
4909
4910/**
Li Zefana043e3b2008-02-23 15:24:09 -08004911 * cgroup_init - cgroup initialization
4912 *
4913 * Register cgroup filesystem and /proc file, and initialize
4914 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004915 */
4916int __init cgroup_init(void)
4917{
Tejun Heo30159ec2013-06-25 11:53:37 -07004918 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004919 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04004920 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07004921
Tejun Heoa14c6872014-07-15 11:05:09 -04004922 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
4923 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004924
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004925 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004926
Tejun Heo82fe9b02013-06-25 11:53:37 -07004927 /* Add init_css_set to the hash table */
4928 key = css_set_hash(init_css_set.subsys);
4929 hash_add(css_set_table, &init_css_set.hlist, key);
4930
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004931 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07004932
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004933 mutex_unlock(&cgroup_mutex);
4934
Tejun Heo172a2c062014-03-19 10:23:53 -04004935 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04004936 if (ss->early_init) {
4937 struct cgroup_subsys_state *css =
4938 init_css_set.subsys[ss->id];
4939
4940 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
4941 GFP_KERNEL);
4942 BUG_ON(css->id < 0);
4943 } else {
4944 cgroup_init_subsys(ss, false);
4945 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004946
Tejun Heo2d8f2432014-04-23 11:13:15 -04004947 list_add_tail(&init_css_set.e_cset_node[ssid],
4948 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04004949
4950 /*
Li Zefanc731ae12014-06-05 17:16:30 +08004951 * Setting dfl_root subsys_mask needs to consider the
4952 * disabled flag and cftype registration needs kmalloc,
4953 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04004954 */
Tejun Heoa8ddc822014-07-15 11:05:10 -04004955 if (ss->disabled)
4956 continue;
4957
4958 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
4959
4960 if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes)
4961 ss->dfl_cftypes = ss->legacy_cftypes;
4962
Tejun Heo5de4fa12014-07-15 11:05:10 -04004963 if (!ss->dfl_cftypes)
4964 cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id;
4965
Tejun Heoa8ddc822014-07-15 11:05:10 -04004966 if (ss->dfl_cftypes == ss->legacy_cftypes) {
4967 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
4968 } else {
4969 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
4970 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08004971 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004972 }
Greg KH676db4a2010-08-05 13:53:35 -07004973
Paul Menageddbcc7e2007-10-18 23:39:30 -07004974 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004975 if (!cgroup_kobj)
4976 return -ENOMEM;
Paul Menagea4243162007-10-18 23:39:35 -07004977
4978 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004979 if (err < 0) {
4980 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004981 return err;
Paul Menagea4243162007-10-18 23:39:35 -07004982 }
4983
4984 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004985 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004986}
Paul Menageb4f48b62007-10-18 23:39:33 -07004987
Tejun Heoe5fca242013-11-22 17:14:39 -05004988static int __init cgroup_wq_init(void)
4989{
4990 /*
4991 * There isn't much point in executing destruction path in
4992 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05004993 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05004994 *
4995 * We would prefer to do this in cgroup_init() above, but that
4996 * is called before init_workqueues(): so leave this until after.
4997 */
Tejun Heo1a115332014-02-12 19:06:19 -05004998 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05004999 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005000
5001 /*
5002 * Used to destroy pidlists and separate to serve as flush domain.
5003 * Cap @max_active to 1 too.
5004 */
5005 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5006 0, 1);
5007 BUG_ON(!cgroup_pidlist_destroy_wq);
5008
Tejun Heoe5fca242013-11-22 17:14:39 -05005009 return 0;
5010}
5011core_initcall(cgroup_wq_init);
5012
Paul Menagea4243162007-10-18 23:39:35 -07005013/*
5014 * proc_cgroup_show()
5015 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5016 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005017 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005018int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5019 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005020{
Tejun Heoe61734c2014-02-12 09:29:50 -05005021 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005022 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005023 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005024
5025 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005026 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005027 if (!buf)
5028 goto out;
5029
Paul Menagea4243162007-10-18 23:39:35 -07005030 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05005031 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005032
Tejun Heo985ed672014-03-19 10:23:53 -04005033 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005034 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005035 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005036 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005037
Tejun Heoa2dd4242014-03-19 10:23:55 -04005038 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005039 continue;
5040
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005041 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05005042 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04005043 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05005044 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005045 if (strlen(root->name))
5046 seq_printf(m, "%sname=%s", count ? "," : "",
5047 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005048 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07005049 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05005050 path = cgroup_path(cgrp, buf, PATH_MAX);
5051 if (!path) {
5052 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07005053 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05005054 }
5055 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07005056 seq_putc(m, '\n');
5057 }
5058
Zefan Li006f4ac2014-09-18 16:03:15 +08005059 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005060out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05005061 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005062 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005063 kfree(buf);
5064out:
5065 return retval;
5066}
5067
Paul Menagea4243162007-10-18 23:39:35 -07005068/* Display information about each subsystem and each hierarchy */
5069static int proc_cgroupstats_show(struct seq_file *m, void *v)
5070{
Tejun Heo30159ec2013-06-25 11:53:37 -07005071 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005072 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005073
Paul Menage8bab8dd2008-04-04 14:29:57 -07005074 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005075 /*
5076 * ideally we don't want subsystems moving around while we do this.
5077 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5078 * subsys/hierarchy state.
5079 */
Paul Menagea4243162007-10-18 23:39:35 -07005080 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005081
5082 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005083 seq_printf(m, "%s\t%d\t%d\t%d\n",
5084 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05005085 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07005086
Paul Menagea4243162007-10-18 23:39:35 -07005087 mutex_unlock(&cgroup_mutex);
5088 return 0;
5089}
5090
5091static int cgroupstats_open(struct inode *inode, struct file *file)
5092{
Al Viro9dce07f2008-03-29 03:07:28 +00005093 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005094}
5095
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005096static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005097 .open = cgroupstats_open,
5098 .read = seq_read,
5099 .llseek = seq_lseek,
5100 .release = single_release,
5101};
5102
Paul Menageb4f48b62007-10-18 23:39:33 -07005103/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005104 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005105 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005106 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005107 * A task is associated with the init_css_set until cgroup_post_fork()
5108 * attaches it to the parent's css_set. Empty cg_list indicates that
5109 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005110 */
5111void cgroup_fork(struct task_struct *child)
5112{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005113 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005114 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005115}
5116
5117/**
Li Zefana043e3b2008-02-23 15:24:09 -08005118 * cgroup_post_fork - called on a new task after adding it to the task list
5119 * @child: the task in question
5120 *
Tejun Heo5edee612012-10-16 15:03:14 -07005121 * Adds the task to the list running through its css_set if necessary and
5122 * call the subsystem fork() callbacks. Has to be after the task is
5123 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005124 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005125 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005126 */
Paul Menage817929e2007-10-18 23:39:36 -07005127void cgroup_post_fork(struct task_struct *child)
5128{
Tejun Heo30159ec2013-06-25 11:53:37 -07005129 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005130 int i;
5131
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005132 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005133 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005134 * function sets use_task_css_set_links before grabbing
5135 * tasklist_lock and we just went through tasklist_lock to add
5136 * @child, it's guaranteed that either we see the set
5137 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5138 * @child during its iteration.
5139 *
5140 * If we won the race, @child is associated with %current's
5141 * css_set. Grabbing css_set_rwsem guarantees both that the
5142 * association is stable, and, on completion of the parent's
5143 * migration, @child is visible in the source of migration or
5144 * already in the destination cgroup. This guarantee is necessary
5145 * when implementing operations which need to migrate all tasks of
5146 * a cgroup to another.
5147 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005148 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005149 * will remain in init_css_set. This is safe because all tasks are
5150 * in the init_css_set before cg_links is enabled and there's no
5151 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005152 */
Paul Menage817929e2007-10-18 23:39:36 -07005153 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005154 struct css_set *cset;
5155
Tejun Heo96d365e2014-02-13 06:58:40 -05005156 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005157 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005158 if (list_empty(&child->cg_list)) {
5159 rcu_assign_pointer(child->cgroups, cset);
5160 list_add(&child->cg_list, &cset->tasks);
5161 get_css_set(cset);
5162 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005163 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07005164 }
Tejun Heo5edee612012-10-16 15:03:14 -07005165
5166 /*
5167 * Call ss->fork(). This must happen after @child is linked on
5168 * css_set; otherwise, @child might change state between ->fork()
5169 * and addition to css_set.
5170 */
5171 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005172 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07005173 if (ss->fork)
5174 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07005175 }
Paul Menage817929e2007-10-18 23:39:36 -07005176}
Tejun Heo5edee612012-10-16 15:03:14 -07005177
Paul Menage817929e2007-10-18 23:39:36 -07005178/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005179 * cgroup_exit - detach cgroup from exiting task
5180 * @tsk: pointer to task_struct of exiting process
5181 *
5182 * Description: Detach cgroup from @tsk and release it.
5183 *
5184 * Note that cgroups marked notify_on_release force every task in
5185 * them to take the global cgroup_mutex mutex when exiting.
5186 * This could impact scaling on very large systems. Be reluctant to
5187 * use notify_on_release cgroups where very high task exit scaling
5188 * is required on large systems.
5189 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005190 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5191 * call cgroup_exit() while the task is still competent to handle
5192 * notify_on_release(), then leave the task attached to the root cgroup in
5193 * each hierarchy for the remainder of its exit. No need to bother with
5194 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005195 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005196 */
Li Zefan1ec41832014-03-28 15:22:19 +08005197void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005198{
Tejun Heo30159ec2013-06-25 11:53:37 -07005199 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005200 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005201 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005202 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005203
5204 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005205 * Unlink from @tsk from its css_set. As migration path can't race
5206 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005207 */
5208 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005209 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005210 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005211 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005212 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005213 }
5214
Paul Menageb4f48b62007-10-18 23:39:33 -07005215 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005216 cset = task_css_set(tsk);
5217 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005218
Li Zefan1ec41832014-03-28 15:22:19 +08005219 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005220 /* see cgroup_post_fork() for details */
5221 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005222 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04005223 struct cgroup_subsys_state *old_css = cset->subsys[i];
5224 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005225
Tejun Heoeb954192013-08-08 20:11:23 -04005226 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005227 }
5228 }
5229 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005230
Tejun Heoeaf797a2014-02-25 10:04:03 -05005231 if (put_cset)
Zefan Lia25eb522014-09-19 16:51:00 +08005232 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005233}
Paul Menage697f4162007-10-18 23:39:34 -07005234
Paul Menagebd89aab2007-10-18 23:40:44 -07005235static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005236{
Zefan Lia25eb522014-09-19 16:51:00 +08005237 if (notify_on_release(cgrp) && !cgroup_has_tasks(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005238 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5239 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005240}
5241
Paul Menage81a6a5c2007-10-18 23:39:38 -07005242/*
5243 * Notify userspace when a cgroup is released, by running the
5244 * configured release agent with the name of the cgroup (path
5245 * relative to the root of cgroup file system) as the argument.
5246 *
5247 * Most likely, this user command will try to rmdir this cgroup.
5248 *
5249 * This races with the possibility that some other task will be
5250 * attached to this cgroup before it is removed, or that some other
5251 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5252 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5253 * unused, and this cgroup will be reprieved from its death sentence,
5254 * to continue to serve a useful existence. Next time it's released,
5255 * we will get notified again, if it still has 'notify_on_release' set.
5256 *
5257 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5258 * means only wait until the task is successfully execve()'d. The
5259 * separate release agent task is forked by call_usermodehelper(),
5260 * then control in this thread returns here, without waiting for the
5261 * release agent task. We don't bother to wait because the caller of
5262 * this routine has no use for the exit status of the release agent
5263 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005264 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005265static void cgroup_release_agent(struct work_struct *work)
5266{
Zefan Li971ff492014-09-18 16:06:19 +08005267 struct cgroup *cgrp =
5268 container_of(work, struct cgroup, release_agent_work);
5269 char *pathbuf = NULL, *agentbuf = NULL, *path;
5270 char *argv[3], *envp[3];
5271
Paul Menage81a6a5c2007-10-18 23:39:38 -07005272 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005273
Zefan Li971ff492014-09-18 16:06:19 +08005274 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5275 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5276 if (!pathbuf || !agentbuf)
5277 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005278
Zefan Li971ff492014-09-18 16:06:19 +08005279 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5280 if (!path)
5281 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005282
Zefan Li971ff492014-09-18 16:06:19 +08005283 argv[0] = agentbuf;
5284 argv[1] = path;
5285 argv[2] = NULL;
5286
5287 /* minimal command environment */
5288 envp[0] = "HOME=/";
5289 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5290 envp[2] = NULL;
5291
Paul Menage81a6a5c2007-10-18 23:39:38 -07005292 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005293 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005294 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005295out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005296 mutex_unlock(&cgroup_mutex);
5297out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005298 kfree(agentbuf);
5299 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005300}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005301
5302static int __init cgroup_disable(char *str)
5303{
Tejun Heo30159ec2013-06-25 11:53:37 -07005304 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005305 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005306 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005307
5308 while ((token = strsep(&str, ",")) != NULL) {
5309 if (!*token)
5310 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005311
Tejun Heo3ed80a62014-02-08 10:36:58 -05005312 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005313 if (!strcmp(token, ss->name)) {
5314 ss->disabled = 1;
5315 printk(KERN_INFO "Disabling %s control group"
5316 " subsystem\n", ss->name);
5317 break;
5318 }
5319 }
5320 }
5321 return 1;
5322}
5323__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005324
Tejun Heoa8ddc822014-07-15 11:05:10 -04005325static int __init cgroup_set_legacy_files_on_dfl(char *str)
5326{
5327 printk("cgroup: using legacy files on the default hierarchy\n");
5328 cgroup_legacy_files_on_dfl = true;
5329 return 0;
5330}
5331__setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl);
5332
Tejun Heob77d7b62013-08-13 11:01:54 -04005333/**
Tejun Heoec903c02014-05-13 12:11:01 -04005334 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005335 * @dentry: directory dentry of interest
5336 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005337 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005338 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5339 * to get the corresponding css and return it. If such css doesn't exist
5340 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005341 */
Tejun Heoec903c02014-05-13 12:11:01 -04005342struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5343 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005344{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005345 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5346 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005347 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005348
Tejun Heo35cf0832013-08-26 18:40:56 -04005349 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005350 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5351 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005352 return ERR_PTR(-EBADF);
5353
Tejun Heo5a17f542014-02-11 11:52:47 -05005354 rcu_read_lock();
5355
Tejun Heo2bd59d42014-02-11 11:52:49 -05005356 /*
5357 * This path doesn't originate from kernfs and @kn could already
5358 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005359 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005360 */
5361 cgrp = rcu_dereference(kn->priv);
5362 if (cgrp)
5363 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005364
Tejun Heoec903c02014-05-13 12:11:01 -04005365 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005366 css = ERR_PTR(-ENOENT);
5367
5368 rcu_read_unlock();
5369 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005370}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005371
Li Zefan1cb650b2013-08-19 10:05:24 +08005372/**
5373 * css_from_id - lookup css by id
5374 * @id: the cgroup id
5375 * @ss: cgroup subsys to be looked into
5376 *
5377 * Returns the css if there's valid one with @id, otherwise returns NULL.
5378 * Should be called under rcu_read_lock().
5379 */
5380struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5381{
Tejun Heo6fa49182014-05-04 15:09:13 -04005382 WARN_ON_ONCE(!rcu_read_lock_held());
Tejun Heo15a4c832014-05-04 15:09:14 -04005383 return idr_find(&ss->css_idr, id);
Stephane Eraniane5d13672011-02-14 11:20:01 +02005384}
5385
Paul Menagefe693432009-09-23 15:56:20 -07005386#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005387static struct cgroup_subsys_state *
5388debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005389{
5390 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5391
5392 if (!css)
5393 return ERR_PTR(-ENOMEM);
5394
5395 return css;
5396}
5397
Tejun Heoeb954192013-08-08 20:11:23 -04005398static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005399{
Tejun Heoeb954192013-08-08 20:11:23 -04005400 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005401}
5402
Tejun Heo182446d2013-08-08 20:11:24 -04005403static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5404 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005405{
Tejun Heo182446d2013-08-08 20:11:24 -04005406 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005407}
5408
Tejun Heo182446d2013-08-08 20:11:24 -04005409static u64 current_css_set_read(struct cgroup_subsys_state *css,
5410 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005411{
5412 return (u64)(unsigned long)current->cgroups;
5413}
5414
Tejun Heo182446d2013-08-08 20:11:24 -04005415static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005416 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005417{
5418 u64 count;
5419
5420 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005421 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005422 rcu_read_unlock();
5423 return count;
5424}
5425
Tejun Heo2da8ca82013-12-05 12:28:04 -05005426static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005427{
Tejun Heo69d02062013-06-12 21:04:50 -07005428 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005429 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005430 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005431
Tejun Heoe61734c2014-02-12 09:29:50 -05005432 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5433 if (!name_buf)
5434 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005435
Tejun Heo96d365e2014-02-13 06:58:40 -05005436 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005437 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005438 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005439 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005440 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005441
Tejun Heoa2dd4242014-03-19 10:23:55 -04005442 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005443 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005444 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005445 }
5446 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005447 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005448 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005449 return 0;
5450}
5451
5452#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005453static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005454{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005455 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005456 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005457
Tejun Heo96d365e2014-02-13 06:58:40 -05005458 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005459 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005460 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005461 struct task_struct *task;
5462 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005463
Tejun Heo5abb8852013-06-12 21:04:49 -07005464 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005465
Tejun Heo5abb8852013-06-12 21:04:49 -07005466 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005467 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5468 goto overflow;
5469 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005470 }
Tejun Heoc7561122014-02-25 10:04:01 -05005471
5472 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5473 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5474 goto overflow;
5475 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5476 }
5477 continue;
5478 overflow:
5479 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005480 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005481 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005482 return 0;
5483}
5484
Tejun Heo182446d2013-08-08 20:11:24 -04005485static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005486{
Zefan Lia25eb522014-09-19 16:51:00 +08005487 return (!cgroup_has_tasks(css->cgroup) &&
5488 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07005489}
5490
5491static struct cftype debug_files[] = {
5492 {
Paul Menagefe693432009-09-23 15:56:20 -07005493 .name = "taskcount",
5494 .read_u64 = debug_taskcount_read,
5495 },
5496
5497 {
5498 .name = "current_css_set",
5499 .read_u64 = current_css_set_read,
5500 },
5501
5502 {
5503 .name = "current_css_set_refcount",
5504 .read_u64 = current_css_set_refcount_read,
5505 },
5506
5507 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005508 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005509 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005510 },
5511
5512 {
5513 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005514 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005515 },
5516
5517 {
Paul Menagefe693432009-09-23 15:56:20 -07005518 .name = "releasable",
5519 .read_u64 = releasable_read,
5520 },
Paul Menagefe693432009-09-23 15:56:20 -07005521
Tejun Heo4baf6e32012-04-01 12:09:55 -07005522 { } /* terminate */
5523};
Paul Menagefe693432009-09-23 15:56:20 -07005524
Tejun Heo073219e2014-02-08 10:36:58 -05005525struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005526 .css_alloc = debug_css_alloc,
5527 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04005528 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005529};
5530#endif /* CONFIG_CGROUP_DEBUG */