blob: ad28866ed44c6acc0556e74157e83ce6c5fc8b27 [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
29#include <linux/cgroup.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100030#include <linux/cred.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070031#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070032#include <linux/errno.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100033#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070034#include <linux/kernel.h>
35#include <linux/list.h>
36#include <linux/mm.h>
37#include <linux/mutex.h>
38#include <linux/mount.h>
39#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070040#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070041#include <linux/rcupdate.h>
42#include <linux/sched.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070043#include <linux/slab.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070044#include <linux/spinlock.h>
Tejun Heo96d365e2014-02-13 06:58:40 -050045#include <linux/rwsem.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070046#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070047#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070048#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070049#include <linux/delayacct.h>
50#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080051#include <linux/hashtable.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070052#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070053#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070054#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020055#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050056#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070057
Arun Sharma600634972011-07-26 16:09:06 -070058#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070059
Tejun Heoe25e2cb2011-12-12 18:12:21 -080060/*
Tejun Heob1a21362013-11-29 10:42:58 -050061 * pidlists linger the following amount before being destroyed. The goal
62 * is avoiding frequent destruction in the middle of consecutive read calls
63 * Expiring in the middle is a performance problem not a correctness one.
64 * 1 sec should be enough.
65 */
66#define CGROUP_PIDLIST_DESTROY_DELAY HZ
67
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050068#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
69 MAX_CFTYPE_NAME + 2)
70
Tejun Heob1a21362013-11-29 10:42:58 -050071/*
Tejun Heoace2bee2014-02-11 11:52:47 -050072 * cgroup_tree_mutex nests above cgroup_mutex and protects cftypes, file
73 * creation/removal and hierarchy changing operations including cgroup
74 * creation, removal, css association and controller rebinding. This outer
75 * lock is needed mainly to resolve the circular dependency between kernfs
76 * active ref and cgroup_mutex. cgroup_tree_mutex nests above both.
77 */
78static DEFINE_MUTEX(cgroup_tree_mutex);
79
Tejun Heoe25e2cb2011-12-12 18:12:21 -080080/*
81 * cgroup_mutex is the master lock. Any modification to cgroup or its
82 * hierarchy must be performed while holding it.
83 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050084 * css_set_rwsem protects task->cgroups pointer, the list of css_set
85 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080086 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050087 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
88 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080089 */
Tejun Heo22194492013-04-07 09:29:51 -070090#ifdef CONFIG_PROVE_RCU
91DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050092DECLARE_RWSEM(css_set_rwsem);
93EXPORT_SYMBOL_GPL(cgroup_mutex);
94EXPORT_SYMBOL_GPL(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070095#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070096static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050097static DECLARE_RWSEM(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070098#endif
99
Tejun Heo69e943b2014-02-08 10:36:58 -0500100/*
101 * 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 Heoace2bee2014-02-11 11:52:47 -0500106#define cgroup_assert_mutexes_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500107 rcu_lockdep_assert(rcu_read_lock_held() || \
Tejun Heoace2bee2014-02-11 11:52:47 -0500108 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500109 lockdep_is_held(&cgroup_mutex), \
Tejun Heoace2bee2014-02-11 11:52:47 -0500110 "cgroup_[tree_]mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500111
Ben Blumaae8aab2010-03-10 15:22:07 -0800112/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500113 * cgroup destruction makes heavy use of work items and there can be a lot
114 * of concurrent destructions. Use a separate workqueue so that cgroup
115 * destruction work items don't end up filling up max_active of system_wq
116 * which may lead to deadlock.
117 */
118static struct workqueue_struct *cgroup_destroy_wq;
119
120/*
Tejun Heob1a21362013-11-29 10:42:58 -0500121 * pidlist destructions need to be flushed on cgroup destruction. Use a
122 * separate workqueue as flush domain.
123 */
124static struct workqueue_struct *cgroup_pidlist_destroy_wq;
125
Tejun Heo3ed80a62014-02-08 10:36:58 -0500126/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500127#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500128static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700129#include <linux/cgroup_subsys.h>
130};
Tejun Heo073219e2014-02-08 10:36:58 -0500131#undef SUBSYS
132
133/* array of cgroup subsystem names */
134#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
135static const char *cgroup_subsys_name[] = {
136#include <linux/cgroup_subsys.h>
137};
138#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700139
Paul Menageddbcc7e2007-10-18 23:39:30 -0700140/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400141 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700142 * unattached - it never has more than a single cgroup, and all tasks are
143 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700144 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400145struct cgroup_root cgrp_dfl_root;
Tejun Heo9871bf92013-06-24 15:21:47 -0700146
Tejun Heoa2dd4242014-03-19 10:23:55 -0400147/*
148 * The default hierarchy always exists but is hidden until mounted for the
149 * first time. This is for backward compatibility.
150 */
151static bool cgrp_dfl_root_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700152
153/* The list of hierarchy roots */
154
Tejun Heo9871bf92013-06-24 15:21:47 -0700155static LIST_HEAD(cgroup_roots);
156static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700157
Tejun Heo3417ae12014-02-08 10:37:01 -0500158/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700159static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700160
Li Zefan794611a2013-06-18 18:53:53 +0800161/*
162 * Assign a monotonically increasing serial number to cgroups. It
163 * guarantees cgroups with bigger numbers are newer than those with smaller
164 * numbers. Also, as cgroups are always appended to the parent's
165 * ->children list, it guarantees that sibling cgroups are always sorted in
Tejun Heo00356bd2013-06-18 11:14:22 -0700166 * the ascending serial number order on the list. Protected by
167 * cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800168 */
Tejun Heo00356bd2013-06-18 11:14:22 -0700169static u64 cgroup_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800170
Paul Menageddbcc7e2007-10-18 23:39:30 -0700171/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800172 * check for fork/exit handlers to call. This avoids us having to do
173 * extra work in the fork/exit path if none of the subsystems need to
174 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700175 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700176static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700177
Tejun Heo628f7cd2013-06-28 16:24:11 -0700178static struct cftype cgroup_base_files[];
179
Tejun Heo59f52962014-02-11 11:52:49 -0500180static void cgroup_put(struct cgroup *cgrp);
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400181static int rebind_subsystems(struct cgroup_root *dst_root,
Tejun Heo5df36032014-03-19 10:23:54 -0400182 unsigned long ss_mask);
Tejun Heof20104d2013-08-13 20:22:50 -0400183static void cgroup_destroy_css_killed(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800184static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400185static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
186 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500187static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800188
Tejun Heo95109b62013-08-08 20:11:27 -0400189/**
190 * cgroup_css - obtain a cgroup's css for the specified subsystem
191 * @cgrp: the cgroup of interest
Tejun Heoca8bdca2013-08-26 18:40:56 -0400192 * @ss: the subsystem of interest (%NULL returns the dummy_css)
Tejun Heo95109b62013-08-08 20:11:27 -0400193 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400194 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
195 * function must be called either under cgroup_mutex or rcu_read_lock() and
196 * the caller is responsible for pinning the returned css if it wants to
197 * keep accessing it outside the said locks. This function may return
198 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400199 */
200static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400201 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400202{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400203 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500204 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500205 lockdep_is_held(&cgroup_tree_mutex) ||
206 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400207 else
208 return &cgrp->dummy_css;
Tejun Heo95109b62013-08-08 20:11:27 -0400209}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700210
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400211/**
212 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
213 * @cgrp: the cgroup of interest
214 * @ss: the subsystem of interest (%NULL returns the dummy_css)
215 *
216 * Similar to cgroup_css() but returns the effctive css, which is defined
217 * as the matching css of the nearest ancestor including self which has @ss
218 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
219 * function is guaranteed to return non-NULL css.
220 */
221static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
222 struct cgroup_subsys *ss)
223{
224 lockdep_assert_held(&cgroup_mutex);
225
226 if (!ss)
227 return &cgrp->dummy_css;
228
229 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
230 return NULL;
231
232 while (cgrp->parent &&
233 !(cgrp->parent->child_subsys_mask & (1 << ss->id)))
234 cgrp = cgrp->parent;
235
236 return cgroup_css(cgrp, ss);
237}
238
Paul Menageddbcc7e2007-10-18 23:39:30 -0700239/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700240static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700241{
Tejun Heo54766d42013-06-12 21:04:53 -0700242 return test_bit(CGRP_DEAD, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700243}
244
Tejun Heo59f52962014-02-11 11:52:49 -0500245struct cgroup_subsys_state *seq_css(struct seq_file *seq)
246{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500247 struct kernfs_open_file *of = seq->private;
248 struct cgroup *cgrp = of->kn->parent->priv;
249 struct cftype *cft = seq_cft(seq);
250
251 /*
252 * This is open and unprotected implementation of cgroup_css().
253 * seq_css() is only called from a kernfs file operation which has
254 * an active reference on the file. Because all the subsystem
255 * files are drained before a css is disassociated with a cgroup,
256 * the matching css from the cgroup's subsys table is guaranteed to
257 * be and stay valid until the enclosing operation is complete.
258 */
259 if (cft->ss)
260 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
261 else
262 return &cgrp->dummy_css;
Tejun Heo59f52962014-02-11 11:52:49 -0500263}
264EXPORT_SYMBOL_GPL(seq_css);
265
Li Zefan78574cf2013-04-08 19:00:38 -0700266/**
267 * cgroup_is_descendant - test ancestry
268 * @cgrp: the cgroup to be tested
269 * @ancestor: possible ancestor of @cgrp
270 *
271 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
272 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
273 * and @ancestor are accessible.
274 */
275bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
276{
277 while (cgrp) {
278 if (cgrp == ancestor)
279 return true;
280 cgrp = cgrp->parent;
281 }
282 return false;
283}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700284
Adrian Bunke9685a02008-02-07 00:13:46 -0800285static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700286{
287 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700288 (1 << CGRP_RELEASABLE) |
289 (1 << CGRP_NOTIFY_ON_RELEASE);
290 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700291}
292
Adrian Bunke9685a02008-02-07 00:13:46 -0800293static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700294{
Paul Menagebd89aab2007-10-18 23:40:44 -0700295 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700296}
297
Tejun Heo30159ec2013-06-25 11:53:37 -0700298/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500299 * for_each_css - iterate all css's of a cgroup
300 * @css: the iteration cursor
301 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
302 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700303 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400304 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700305 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500306#define for_each_css(css, ssid, cgrp) \
307 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
308 if (!((css) = rcu_dereference_check( \
309 (cgrp)->subsys[(ssid)], \
Tejun Heoace2bee2014-02-11 11:52:47 -0500310 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo1c6727a2013-12-06 15:11:56 -0500311 lockdep_is_held(&cgroup_mutex)))) { } \
312 else
313
314/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400315 * for_each_e_css - iterate all effective css's of a cgroup
316 * @css: the iteration cursor
317 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
318 * @cgrp: the target cgroup to iterate css's of
319 *
320 * Should be called under cgroup_[tree_]mutex.
321 */
322#define for_each_e_css(css, ssid, cgrp) \
323 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
324 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
325 ; \
326 else
327
328/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500329 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700330 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500331 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700332 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500333#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500334 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
335 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700336
Tejun Heo985ed672014-03-19 10:23:53 -0400337/* iterate across the hierarchies */
338#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700339 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700340
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700341/**
342 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
343 * @cgrp: the cgroup to be checked for liveness
344 *
Tejun Heo47cfcd02013-04-07 09:29:51 -0700345 * On success, returns true; the mutex should be later unlocked. On
346 * failure returns false with no lock held.
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700347 */
Tejun Heob9777cf2013-04-07 09:29:51 -0700348static bool cgroup_lock_live_group(struct cgroup *cgrp)
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700349{
350 mutex_lock(&cgroup_mutex);
Tejun Heo54766d42013-06-12 21:04:53 -0700351 if (cgroup_is_dead(cgrp)) {
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700352 mutex_unlock(&cgroup_mutex);
353 return false;
354 }
355 return true;
356}
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700357
Paul Menage81a6a5c2007-10-18 23:39:38 -0700358/* the list of cgroups eligible for automatic release. Protected by
359 * release_list_lock */
360static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200361static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700362static void cgroup_release_agent(struct work_struct *work);
363static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700364static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700365
Tejun Heo69d02062013-06-12 21:04:50 -0700366/*
367 * A cgroup can be associated with multiple css_sets as different tasks may
368 * belong to different cgroups on different hierarchies. In the other
369 * direction, a css_set is naturally associated with multiple cgroups.
370 * This M:N relationship is represented by the following link structure
371 * which exists for each association and allows traversing the associations
372 * from both sides.
373 */
374struct cgrp_cset_link {
375 /* the cgroup and css_set this link associates */
376 struct cgroup *cgrp;
377 struct css_set *cset;
378
379 /* list of cgrp_cset_links anchored at cgrp->cset_links */
380 struct list_head cset_link;
381
382 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
383 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700384};
385
Tejun Heo172a2c062014-03-19 10:23:53 -0400386/*
387 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700388 * hierarchies being mounted. It contains a pointer to the root state
389 * for each subsystem. Also used to anchor the list of css_sets. Not
390 * reference-counted, to improve performance when child cgroups
391 * haven't been created.
392 */
Tejun Heo172a2c062014-03-19 10:23:53 -0400393static struct css_set init_css_set = {
394 .refcount = ATOMIC_INIT(1),
395 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
396 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
397 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
398 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
399 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
400};
Paul Menage817929e2007-10-18 23:39:36 -0700401
Tejun Heo172a2c062014-03-19 10:23:53 -0400402static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700403
Paul Menage7717f7b2009-09-23 15:56:22 -0700404/*
405 * hash table for cgroup groups. This improves the performance to find
406 * an existing css_set. This hash doesn't (currently) take into
407 * account cgroups in empty hierarchies.
408 */
Li Zefan472b1052008-04-29 01:00:11 -0700409#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800410static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700411
Li Zefan0ac801f2013-01-10 11:49:27 +0800412static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700413{
Li Zefan0ac801f2013-01-10 11:49:27 +0800414 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700415 struct cgroup_subsys *ss;
416 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700417
Tejun Heo30159ec2013-06-25 11:53:37 -0700418 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800419 key += (unsigned long)css[i];
420 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700421
Li Zefan0ac801f2013-01-10 11:49:27 +0800422 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700423}
424
Tejun Heo89c55092014-02-13 06:58:40 -0500425static void put_css_set_locked(struct css_set *cset, bool taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700426{
Tejun Heo69d02062013-06-12 21:04:50 -0700427 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400428 struct cgroup_subsys *ss;
429 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700430
Tejun Heo89c55092014-02-13 06:58:40 -0500431 lockdep_assert_held(&css_set_rwsem);
432
433 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700434 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700435
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700436 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400437 for_each_subsys(ss, ssid)
438 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700439 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700440 css_set_count--;
441
Tejun Heo69d02062013-06-12 21:04:50 -0700442 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700443 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700444
Tejun Heo69d02062013-06-12 21:04:50 -0700445 list_del(&link->cset_link);
446 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800447
Tejun Heo96d365e2014-02-13 06:58:40 -0500448 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo6f3d828f02013-06-12 21:04:55 -0700449 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700450 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700451 set_bit(CGRP_RELEASABLE, &cgrp->flags);
452 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700453 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700454
455 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700456 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700457
Tejun Heo5abb8852013-06-12 21:04:49 -0700458 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700459}
460
Tejun Heo89c55092014-02-13 06:58:40 -0500461static void put_css_set(struct css_set *cset, bool taskexit)
462{
463 /*
464 * Ensure that the refcount doesn't hit zero while any readers
465 * can see it. Similar to atomic_dec_and_lock(), but for an
466 * rwlock
467 */
468 if (atomic_add_unless(&cset->refcount, -1, 1))
469 return;
470
471 down_write(&css_set_rwsem);
472 put_css_set_locked(cset, taskexit);
473 up_write(&css_set_rwsem);
474}
475
Paul Menage817929e2007-10-18 23:39:36 -0700476/*
477 * refcounted get/put for css_set objects
478 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700479static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700480{
Tejun Heo5abb8852013-06-12 21:04:49 -0700481 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700482}
483
Tejun Heob326f9d2013-06-24 15:21:48 -0700484/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700485 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700486 * @cset: candidate css_set being tested
487 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700488 * @new_cgrp: cgroup that's being entered by the task
489 * @template: desired set of css pointers in css_set (pre-calculated)
490 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800491 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700492 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
493 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700494static bool compare_css_sets(struct css_set *cset,
495 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700496 struct cgroup *new_cgrp,
497 struct cgroup_subsys_state *template[])
498{
499 struct list_head *l1, *l2;
500
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400501 /*
502 * On the default hierarchy, there can be csets which are
503 * associated with the same set of cgroups but different csses.
504 * Let's first ensure that csses match.
505 */
506 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700507 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700508
509 /*
510 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400511 * different cgroups in hierarchies. As different cgroups may
512 * share the same effective css, this comparison is always
513 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700514 */
Tejun Heo69d02062013-06-12 21:04:50 -0700515 l1 = &cset->cgrp_links;
516 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700517 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700518 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700519 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700520
521 l1 = l1->next;
522 l2 = l2->next;
523 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700524 if (l1 == &cset->cgrp_links) {
525 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700526 break;
527 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700528 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700529 }
530 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700531 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
532 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
533 cgrp1 = link1->cgrp;
534 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700535 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700536 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700537
538 /*
539 * If this hierarchy is the hierarchy of the cgroup
540 * that's changing, then we need to check that this
541 * css_set points to the new cgroup; if it's any other
542 * hierarchy, then this css_set should point to the
543 * same cgroup as the old css_set.
544 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700545 if (cgrp1->root == new_cgrp->root) {
546 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700547 return false;
548 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700549 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700550 return false;
551 }
552 }
553 return true;
554}
555
Tejun Heob326f9d2013-06-24 15:21:48 -0700556/**
557 * find_existing_css_set - init css array and find the matching css_set
558 * @old_cset: the css_set that we're using before the cgroup transition
559 * @cgrp: the cgroup that we're moving into
560 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700561 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700562static struct css_set *find_existing_css_set(struct css_set *old_cset,
563 struct cgroup *cgrp,
564 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700565{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400566 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700567 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700568 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800569 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700570 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700571
Ben Blumaae8aab2010-03-10 15:22:07 -0800572 /*
573 * Build the set of subsystem state objects that we want to see in the
574 * new css_set. while subsystems can change globally, the entries here
575 * won't change, so no need for locking.
576 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700577 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400578 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400579 /*
580 * @ss is in this hierarchy, so we want the
581 * effective css from @cgrp.
582 */
583 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700584 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400585 /*
586 * @ss is not in this hierarchy, so we don't want
587 * to change the css.
588 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700589 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700590 }
591 }
592
Li Zefan0ac801f2013-01-10 11:49:27 +0800593 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700594 hash_for_each_possible(css_set_table, cset, hlist, key) {
595 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700596 continue;
597
598 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700599 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700600 }
Paul Menage817929e2007-10-18 23:39:36 -0700601
602 /* No existing cgroup group matched */
603 return NULL;
604}
605
Tejun Heo69d02062013-06-12 21:04:50 -0700606static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700607{
Tejun Heo69d02062013-06-12 21:04:50 -0700608 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700609
Tejun Heo69d02062013-06-12 21:04:50 -0700610 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
611 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700612 kfree(link);
613 }
614}
615
Tejun Heo69d02062013-06-12 21:04:50 -0700616/**
617 * allocate_cgrp_cset_links - allocate cgrp_cset_links
618 * @count: the number of links to allocate
619 * @tmp_links: list_head the allocated links are put on
620 *
621 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
622 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700623 */
Tejun Heo69d02062013-06-12 21:04:50 -0700624static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700625{
Tejun Heo69d02062013-06-12 21:04:50 -0700626 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700627 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700628
629 INIT_LIST_HEAD(tmp_links);
630
Li Zefan36553432008-07-29 22:33:19 -0700631 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700632 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700633 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700634 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700635 return -ENOMEM;
636 }
Tejun Heo69d02062013-06-12 21:04:50 -0700637 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700638 }
639 return 0;
640}
641
Li Zefanc12f65d2009-01-07 18:07:42 -0800642/**
643 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700644 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700645 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800646 * @cgrp: the destination cgroup
647 */
Tejun Heo69d02062013-06-12 21:04:50 -0700648static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
649 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800650{
Tejun Heo69d02062013-06-12 21:04:50 -0700651 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800652
Tejun Heo69d02062013-06-12 21:04:50 -0700653 BUG_ON(list_empty(tmp_links));
654 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
655 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700656 link->cgrp = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700657 list_move(&link->cset_link, &cgrp->cset_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700658 /*
659 * Always add links to the tail of the list so that the list
660 * is sorted by order of hierarchy creation
661 */
Tejun Heo69d02062013-06-12 21:04:50 -0700662 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800663}
664
Tejun Heob326f9d2013-06-24 15:21:48 -0700665/**
666 * find_css_set - return a new css_set with one cgroup updated
667 * @old_cset: the baseline css_set
668 * @cgrp: the cgroup to be updated
669 *
670 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
671 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700672 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700673static struct css_set *find_css_set(struct css_set *old_cset,
674 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700675{
Tejun Heob326f9d2013-06-24 15:21:48 -0700676 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700677 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700678 struct list_head tmp_links;
679 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400680 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800681 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400682 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700683
Tejun Heob326f9d2013-06-24 15:21:48 -0700684 lockdep_assert_held(&cgroup_mutex);
685
Paul Menage817929e2007-10-18 23:39:36 -0700686 /* First see if we already have a cgroup group that matches
687 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500688 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700689 cset = find_existing_css_set(old_cset, cgrp, template);
690 if (cset)
691 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500692 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700693
Tejun Heo5abb8852013-06-12 21:04:49 -0700694 if (cset)
695 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700696
Tejun Heof4f4be22013-06-12 21:04:51 -0700697 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700698 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700699 return NULL;
700
Tejun Heo69d02062013-06-12 21:04:50 -0700701 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700702 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700703 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700704 return NULL;
705 }
706
Tejun Heo5abb8852013-06-12 21:04:49 -0700707 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700708 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700709 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500710 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -0500711 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -0500712 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700713 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700714
715 /* Copy the set of subsystem state objects generated in
716 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700717 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700718
Tejun Heo96d365e2014-02-13 06:58:40 -0500719 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700720 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700721 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700722 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700723
Paul Menage7717f7b2009-09-23 15:56:22 -0700724 if (c->root == cgrp->root)
725 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700726 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700727 }
Paul Menage817929e2007-10-18 23:39:36 -0700728
Tejun Heo69d02062013-06-12 21:04:50 -0700729 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700730
Paul Menage817929e2007-10-18 23:39:36 -0700731 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700732
Tejun Heo2d8f2432014-04-23 11:13:15 -0400733 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700734 key = css_set_hash(cset->subsys);
735 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700736
Tejun Heo2d8f2432014-04-23 11:13:15 -0400737 for_each_subsys(ss, ssid)
738 list_add_tail(&cset->e_cset_node[ssid],
739 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
740
Tejun Heo96d365e2014-02-13 06:58:40 -0500741 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700742
Tejun Heo5abb8852013-06-12 21:04:49 -0700743 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700744}
745
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400746static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700747{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400748 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500749
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400750 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500751}
752
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400753static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500754{
755 int id;
756
757 lockdep_assert_held(&cgroup_mutex);
758
Tejun Heo985ed672014-03-19 10:23:53 -0400759 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -0500760 if (id < 0)
761 return id;
762
763 root->hierarchy_id = id;
764 return 0;
765}
766
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400767static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500768{
769 lockdep_assert_held(&cgroup_mutex);
770
771 if (root->hierarchy_id) {
772 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
773 root->hierarchy_id = 0;
774 }
775}
776
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400777static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500778{
779 if (root) {
780 /* hierarhcy ID shoulid already have been released */
781 WARN_ON_ONCE(root->hierarchy_id);
782
783 idr_destroy(&root->cgroup_idr);
784 kfree(root);
785 }
786}
787
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400788static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500789{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400790 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -0500791 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500792
Tejun Heo2bd59d42014-02-11 11:52:49 -0500793 mutex_lock(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500794 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500795
Tejun Heo776f02f2014-02-12 09:29:50 -0500796 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heof2e85d52014-02-11 11:52:49 -0500797 BUG_ON(!list_empty(&cgrp->children));
798
Tejun Heof2e85d52014-02-11 11:52:49 -0500799 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -0400800 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -0500801
802 /*
803 * Release all the links from cset_links to this hierarchy's
804 * root cgroup
805 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500806 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500807
808 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
809 list_del(&link->cset_link);
810 list_del(&link->cgrp_link);
811 kfree(link);
812 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500813 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500814
815 if (!list_empty(&root->root_list)) {
816 list_del(&root->root_list);
817 cgroup_root_count--;
818 }
819
820 cgroup_exit_root_id(root);
821
822 mutex_unlock(&cgroup_mutex);
823 mutex_unlock(&cgroup_tree_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500824
Tejun Heo2bd59d42014-02-11 11:52:49 -0500825 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500826 cgroup_free_root(root);
827}
828
Tejun Heoceb6a082014-02-25 10:04:02 -0500829/* look up cgroup associated with given css_set on the specified hierarchy */
830static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400831 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700832{
Paul Menage7717f7b2009-09-23 15:56:22 -0700833 struct cgroup *res = NULL;
834
Tejun Heo96d365e2014-02-13 06:58:40 -0500835 lockdep_assert_held(&cgroup_mutex);
836 lockdep_assert_held(&css_set_rwsem);
837
Tejun Heo5abb8852013-06-12 21:04:49 -0700838 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400839 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700840 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700841 struct cgrp_cset_link *link;
842
843 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700844 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700845
Paul Menage7717f7b2009-09-23 15:56:22 -0700846 if (c->root == root) {
847 res = c;
848 break;
849 }
850 }
851 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500852
Paul Menage7717f7b2009-09-23 15:56:22 -0700853 BUG_ON(!res);
854 return res;
855}
856
857/*
Tejun Heoceb6a082014-02-25 10:04:02 -0500858 * Return the cgroup for "task" from the given hierarchy. Must be
859 * called with cgroup_mutex and css_set_rwsem held.
860 */
861static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400862 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -0500863{
864 /*
865 * No need to lock the task - since we hold cgroup_mutex the
866 * task can't change groups, so the only thing that can happen
867 * is that it exits and its css is set back to init_css_set.
868 */
869 return cset_cgroup_from_root(task_css_set(task), root);
870}
871
872/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700873 * A task must hold cgroup_mutex to modify cgroups.
874 *
875 * Any task can increment and decrement the count field without lock.
876 * So in general, code holding cgroup_mutex can't rely on the count
877 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800878 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700879 * means that no tasks are currently attached, therefore there is no
880 * way a task attached to that cgroup can fork (the other way to
881 * increment the count). So code holding cgroup_mutex can safely
882 * assume that if the count is zero, it will stay zero. Similarly, if
883 * a task holds cgroup_mutex on a cgroup with zero count, it
884 * knows that the cgroup won't be removed, as cgroup_rmdir()
885 * needs that mutex.
886 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700887 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
888 * (usually) take cgroup_mutex. These are the two most performance
889 * critical pieces of code here. The exception occurs on cgroup_exit(),
890 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
891 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800892 * to the release agent with the name of the cgroup (path relative to
893 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700894 *
895 * A cgroup can only be deleted if both its 'count' of using tasks
896 * is zero, and its list of 'children' cgroups is empty. Since all
897 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400898 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -0700899 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400900 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700901 *
902 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800903 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700904 */
905
Tejun Heo628f7cd2013-06-28 16:24:11 -0700906static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500907static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700908static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700909
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500910static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
911 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700912{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500913 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
914 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
915 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
916 cft->ss->name, cft->name);
917 else
918 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
919 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700920}
921
Tejun Heof2e85d52014-02-11 11:52:49 -0500922/**
923 * cgroup_file_mode - deduce file mode of a control file
924 * @cft: the control file in question
925 *
926 * returns cft->mode if ->mode is not 0
927 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
928 * returns S_IRUGO if it has only a read handler
929 * returns S_IWUSR if it has only a write hander
930 */
931static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +0800932{
Tejun Heof2e85d52014-02-11 11:52:49 -0500933 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +0800934
Tejun Heof2e85d52014-02-11 11:52:49 -0500935 if (cft->mode)
936 return cft->mode;
937
938 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
939 mode |= S_IRUGO;
940
941 if (cft->write_u64 || cft->write_s64 || cft->write_string ||
942 cft->trigger)
943 mode |= S_IWUSR;
944
945 return mode;
Li Zefan65dff752013-03-01 15:01:56 +0800946}
947
Li Zefanbe445622013-01-24 14:31:42 +0800948static void cgroup_free_fn(struct work_struct *work)
949{
Tejun Heoea15f8c2013-06-13 19:27:42 -0700950 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800951
Tejun Heo3c9c8252014-02-12 09:29:50 -0500952 atomic_dec(&cgrp->root->nr_cgrps);
Tejun Heob1a21362013-11-29 10:42:58 -0500953 cgroup_pidlist_destroy_all(cgrp);
Li Zefanbe445622013-01-24 14:31:42 +0800954
Tejun Heo776f02f2014-02-12 09:29:50 -0500955 if (cgrp->parent) {
956 /*
957 * We get a ref to the parent, and put the ref when this
958 * cgroup is being freed, so it's guaranteed that the
959 * parent won't be destroyed before its children.
960 */
961 cgroup_put(cgrp->parent);
962 kernfs_put(cgrp->kn);
963 kfree(cgrp);
964 } else {
965 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400966 * This is root cgroup's refcnt reaching zero, which
Tejun Heo776f02f2014-02-12 09:29:50 -0500967 * indicates that the root should be released.
968 */
969 cgroup_destroy_root(cgrp->root);
970 }
Li Zefanbe445622013-01-24 14:31:42 +0800971}
972
973static void cgroup_free_rcu(struct rcu_head *head)
974{
975 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
976
Tejun Heoea15f8c2013-06-13 19:27:42 -0700977 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -0500978 queue_work(cgroup_destroy_wq, &cgrp->destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800979}
980
Tejun Heo59f52962014-02-11 11:52:49 -0500981static void cgroup_get(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700982{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500983 WARN_ON_ONCE(cgroup_is_dead(cgrp));
984 WARN_ON_ONCE(atomic_read(&cgrp->refcnt) <= 0);
985 atomic_inc(&cgrp->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700986}
987
Tejun Heo59f52962014-02-11 11:52:49 -0500988static void cgroup_put(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700989{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500990 if (!atomic_dec_and_test(&cgrp->refcnt))
991 return;
Tejun Heo776f02f2014-02-12 09:29:50 -0500992 if (WARN_ON_ONCE(cgrp->parent && !cgroup_is_dead(cgrp)))
Tejun Heo2bd59d42014-02-11 11:52:49 -0500993 return;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700994
Tejun Heo2bd59d42014-02-11 11:52:49 -0500995 /*
996 * XXX: cgrp->id is only used to look up css's. As cgroup and
997 * css's lifetimes will be decoupled, it should be made
998 * per-subsystem and moved to css->id so that lookups are
999 * successful until the target css is released.
1000 */
1001 mutex_lock(&cgroup_mutex);
1002 idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
1003 mutex_unlock(&cgroup_mutex);
1004 cgrp->id = -1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001005
Tejun Heo2bd59d42014-02-11 11:52:49 -05001006 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001007}
1008
Li Zefan2739d3c2013-01-21 18:18:33 +08001009static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001010{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001011 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001012
Tejun Heoace2bee2014-02-11 11:52:47 -05001013 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001014 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001015}
1016
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001017/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001018 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001019 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001020 * @subsys_mask: mask of the subsystem ids whose files should be removed
1021 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07001022static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001023{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001024 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001025 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001026
Tejun Heob420ba72013-07-12 12:34:02 -07001027 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001028 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001029
1030 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001031 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001032 list_for_each_entry(cfts, &ss->cfts, node)
1033 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001034 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001035}
1036
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001037static int rebind_subsystems(struct cgroup_root *dst_root,
Tejun Heo5df36032014-03-19 10:23:54 -04001038 unsigned long ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001039{
Tejun Heo30159ec2013-06-25 11:53:37 -07001040 struct cgroup_subsys *ss;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001041 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001042
Tejun Heoace2bee2014-02-11 11:52:47 -05001043 lockdep_assert_held(&cgroup_tree_mutex);
1044 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001045
Tejun Heo5df36032014-03-19 10:23:54 -04001046 for_each_subsys(ss, ssid) {
1047 if (!(ss_mask & (1 << ssid)))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001048 continue;
Tejun Heo30159ec2013-06-25 11:53:37 -07001049
Tejun Heo5df36032014-03-19 10:23:54 -04001050 /* if @ss is on the dummy_root, we can always move it */
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001051 if (ss->root == &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001052 continue;
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001053
Tejun Heo5df36032014-03-19 10:23:54 -04001054 /* if @ss has non-root cgroups attached to it, can't move */
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001055 if (!list_empty(&ss->root->cgrp.children))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001056 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001057
Tejun Heo5df36032014-03-19 10:23:54 -04001058 /* can't move between two non-dummy roots either */
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001059 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001060 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001061 }
1062
Tejun Heoa2dd4242014-03-19 10:23:55 -04001063 ret = cgroup_populate_dir(&dst_root->cgrp, ss_mask);
1064 if (ret) {
1065 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001066 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001067
Tejun Heoa2dd4242014-03-19 10:23:55 -04001068 /*
1069 * Rebinding back to the default root is not allowed to
1070 * fail. Using both default and non-default roots should
1071 * be rare. Moving subsystems back and forth even more so.
1072 * Just warn about it and continue.
1073 */
1074 if (cgrp_dfl_root_visible) {
1075 pr_warning("cgroup: failed to create files (%d) while rebinding 0x%lx to default root\n",
1076 ret, ss_mask);
1077 pr_warning("cgroup: you may retry by moving them to a different hierarchy and unbinding\n");
1078 }
Tejun Heo5df36032014-03-19 10:23:54 -04001079 }
Tejun Heo31261212013-06-28 17:07:30 -07001080
1081 /*
1082 * Nothing can fail from this point on. Remove files for the
1083 * removed subsystems and rebind each subsystem.
1084 */
Tejun Heo4ac06012014-02-11 11:52:47 -05001085 mutex_unlock(&cgroup_mutex);
Tejun Heo5df36032014-03-19 10:23:54 -04001086 for_each_subsys(ss, ssid)
Tejun Heoa2dd4242014-03-19 10:23:55 -04001087 if (ss_mask & (1 << ssid))
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001088 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo4ac06012014-02-11 11:52:47 -05001089 mutex_lock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001090
Tejun Heo5df36032014-03-19 10:23:54 -04001091 for_each_subsys(ss, ssid) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001092 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001093 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001094 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001095
Tejun Heo5df36032014-03-19 10:23:54 -04001096 if (!(ss_mask & (1 << ssid)))
1097 continue;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001098
Tejun Heo5df36032014-03-19 10:23:54 -04001099 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001100 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001101
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001102 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001103
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001104 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1105 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001106 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001107 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001108
Tejun Heo2d8f2432014-04-23 11:13:15 -04001109 down_write(&css_set_rwsem);
1110 hash_for_each(css_set_table, i, cset, hlist)
1111 list_move_tail(&cset->e_cset_node[ss->id],
1112 &dst_root->cgrp.e_csets[ss->id]);
1113 up_write(&css_set_rwsem);
1114
Tejun Heof392e512014-04-23 11:13:14 -04001115 src_root->subsys_mask &= ~(1 << ssid);
1116 src_root->cgrp.child_subsys_mask &= ~(1 << ssid);
1117
1118 dst_root->subsys_mask |= 1 << ssid;
1119 dst_root->cgrp.child_subsys_mask |= 1 << ssid;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001120
Tejun Heo5df36032014-03-19 10:23:54 -04001121 if (ss->bind)
1122 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001123 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001124
Tejun Heoa2dd4242014-03-19 10:23:55 -04001125 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001126 return 0;
1127}
1128
Tejun Heo2bd59d42014-02-11 11:52:49 -05001129static int cgroup_show_options(struct seq_file *seq,
1130 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001131{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001132 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001133 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001134 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001135
Tejun Heob85d2042013-12-06 15:11:57 -05001136 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04001137 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05001138 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001139 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1140 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001141 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001142 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001143 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001144 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001145
1146 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001147 if (strlen(root->release_agent_path))
1148 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001149 spin_unlock(&release_agent_path_lock);
1150
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001151 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001152 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001153 if (strlen(root->name))
1154 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001155 return 0;
1156}
1157
1158struct cgroup_sb_opts {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001159 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001160 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001161 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001162 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001163 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001164 /* User explicitly requested empty subsystem */
1165 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001166};
1167
Ben Blumaae8aab2010-03-10 15:22:07 -08001168/*
Tejun Heo9871bf92013-06-24 15:21:47 -07001169 * Convert a hierarchy specifier into a bitmask of subsystems and
1170 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1171 * array. This function takes refcounts on subsystems to be used, unless it
1172 * returns error, in which case no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001173 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001174static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001175{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001176 char *token, *o = data;
1177 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001178 unsigned long mask = (unsigned long)-1;
Tejun Heo30159ec2013-06-25 11:53:37 -07001179 struct cgroup_subsys *ss;
1180 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001181
Ben Blumaae8aab2010-03-10 15:22:07 -08001182 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1183
Li Zefanf9ab5b52009-06-17 16:26:33 -07001184#ifdef CONFIG_CPUSETS
Tejun Heo073219e2014-02-08 10:36:58 -05001185 mask = ~(1UL << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001186#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001187
Paul Menagec6d57f32009-09-23 15:56:19 -07001188 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001189
1190 while ((token = strsep(&o, ",")) != NULL) {
1191 if (!*token)
1192 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001193 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001194 /* Explicitly have no subsystems */
1195 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001196 continue;
1197 }
1198 if (!strcmp(token, "all")) {
1199 /* Mutually exclusive option 'all' + subsystem name */
1200 if (one_ss)
1201 return -EINVAL;
1202 all_ss = true;
1203 continue;
1204 }
Tejun Heo873fe092013-04-14 20:15:26 -07001205 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1206 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1207 continue;
1208 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001209 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001210 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001211 continue;
1212 }
1213 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001214 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001215 continue;
1216 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001217 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001218 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001219 continue;
1220 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001221 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001222 /* Specifying two release agents is forbidden */
1223 if (opts->release_agent)
1224 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001225 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001226 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001227 if (!opts->release_agent)
1228 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001229 continue;
1230 }
1231 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001232 const char *name = token + 5;
1233 /* Can't specify an empty name */
1234 if (!strlen(name))
1235 return -EINVAL;
1236 /* Must match [\w.-]+ */
1237 for (i = 0; i < strlen(name); i++) {
1238 char c = name[i];
1239 if (isalnum(c))
1240 continue;
1241 if ((c == '.') || (c == '-') || (c == '_'))
1242 continue;
1243 return -EINVAL;
1244 }
1245 /* Specifying two names is forbidden */
1246 if (opts->name)
1247 return -EINVAL;
1248 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001249 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001250 GFP_KERNEL);
1251 if (!opts->name)
1252 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001253
1254 continue;
1255 }
1256
Tejun Heo30159ec2013-06-25 11:53:37 -07001257 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001258 if (strcmp(token, ss->name))
1259 continue;
1260 if (ss->disabled)
1261 continue;
1262
1263 /* Mutually exclusive option 'all' + subsystem name */
1264 if (all_ss)
1265 return -EINVAL;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001266 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001267 one_ss = true;
1268
1269 break;
1270 }
1271 if (i == CGROUP_SUBSYS_COUNT)
1272 return -ENOENT;
1273 }
1274
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001275 /* Consistency checks */
1276
Tejun Heo873fe092013-04-14 20:15:26 -07001277 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1278 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1279
Tejun Heod3ba07c2014-02-13 06:58:38 -05001280 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1281 opts->cpuset_clone_children || opts->release_agent ||
1282 opts->name) {
1283 pr_err("cgroup: sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001284 return -EINVAL;
1285 }
Tejun Heoa2dd4242014-03-19 10:23:55 -04001286 } else {
1287 /*
1288 * If the 'all' option was specified select all the
1289 * subsystems, otherwise if 'none', 'name=' and a subsystem
1290 * name options were not specified, let's default to 'all'
1291 */
1292 if (all_ss || (!one_ss && !opts->none && !opts->name))
1293 for_each_subsys(ss, i)
1294 if (!ss->disabled)
1295 set_bit(i, &opts->subsys_mask);
Tejun Heo873fe092013-04-14 20:15:26 -07001296
Tejun Heoa2dd4242014-03-19 10:23:55 -04001297 /*
1298 * We either have to specify by name or by subsystems. (So
1299 * all empty hierarchies must have a name).
1300 */
1301 if (!opts->subsys_mask && !opts->name)
Tejun Heo873fe092013-04-14 20:15:26 -07001302 return -EINVAL;
Tejun Heo873fe092013-04-14 20:15:26 -07001303 }
1304
Li Zefanf9ab5b52009-06-17 16:26:33 -07001305 /*
1306 * Option noprefix was introduced just for backward compatibility
1307 * with the old cpuset, so we allow noprefix only if mounting just
1308 * the cpuset subsystem.
1309 */
Tejun Heo93438622013-04-14 20:15:25 -07001310 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001311 return -EINVAL;
1312
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001313
1314 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001315 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001316 return -EINVAL;
1317
Paul Menageddbcc7e2007-10-18 23:39:30 -07001318 return 0;
1319}
1320
Tejun Heo2bd59d42014-02-11 11:52:49 -05001321static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001322{
1323 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001324 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001325 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001326 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001327
Tejun Heo873fe092013-04-14 20:15:26 -07001328 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1329 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1330 return -EINVAL;
1331 }
1332
Tejun Heoace2bee2014-02-11 11:52:47 -05001333 mutex_lock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001334 mutex_lock(&cgroup_mutex);
1335
1336 /* See what subsystems are wanted */
1337 ret = parse_cgroupfs_options(data, &opts);
1338 if (ret)
1339 goto out_unlock;
1340
Tejun Heof392e512014-04-23 11:13:14 -04001341 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001342 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1343 task_tgid_nr(current), current->comm);
1344
Tejun Heof392e512014-04-23 11:13:14 -04001345 added_mask = opts.subsys_mask & ~root->subsys_mask;
1346 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001347
Ben Blumcf5d5942010-03-10 15:22:09 -08001348 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001349 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001350 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001351 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1352 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1353 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001354 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001355 goto out_unlock;
1356 }
1357
Tejun Heof172e672013-06-28 17:07:30 -07001358 /* remounting is not allowed for populated hierarchies */
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001359 if (!list_empty(&root->cgrp.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001360 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001361 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001362 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001363
Tejun Heo5df36032014-03-19 10:23:54 -04001364 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001365 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001366 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001367
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001368 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001369
Tejun Heo69e943b2014-02-08 10:36:58 -05001370 if (opts.release_agent) {
1371 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001372 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001373 spin_unlock(&release_agent_path_lock);
1374 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001375 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001376 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001377 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001378 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001379 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001380 return ret;
1381}
1382
Tejun Heoafeb0f92014-02-13 06:58:39 -05001383/*
1384 * To reduce the fork() overhead for systems that are not actually using
1385 * their cgroups capability, we don't maintain the lists running through
1386 * each css_set to its tasks until we see the list actually used - in other
1387 * words after the first mount.
1388 */
1389static bool use_task_css_set_links __read_mostly;
1390
1391static void cgroup_enable_task_cg_lists(void)
1392{
1393 struct task_struct *p, *g;
1394
Tejun Heo96d365e2014-02-13 06:58:40 -05001395 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001396
1397 if (use_task_css_set_links)
1398 goto out_unlock;
1399
1400 use_task_css_set_links = true;
1401
1402 /*
1403 * We need tasklist_lock because RCU is not safe against
1404 * while_each_thread(). Besides, a forking task that has passed
1405 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1406 * is not guaranteed to have its child immediately visible in the
1407 * tasklist if we walk through it with RCU.
1408 */
1409 read_lock(&tasklist_lock);
1410 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001411 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1412 task_css_set(p) != &init_css_set);
1413
1414 /*
1415 * We should check if the process is exiting, otherwise
1416 * it will race with cgroup_exit() in that the list
1417 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001418 * Do it while holding siglock so that we don't end up
1419 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001420 */
Tejun Heof153ad12014-02-25 09:56:49 -05001421 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001422 if (!(p->flags & PF_EXITING)) {
1423 struct css_set *cset = task_css_set(p);
1424
1425 list_add(&p->cg_list, &cset->tasks);
1426 get_css_set(cset);
1427 }
Tejun Heof153ad12014-02-25 09:56:49 -05001428 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001429 } while_each_thread(g, p);
1430 read_unlock(&tasklist_lock);
1431out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001432 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001433}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001434
Paul Menagecc31edc2008-10-18 20:28:04 -07001435static void init_cgroup_housekeeping(struct cgroup *cgrp)
1436{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001437 struct cgroup_subsys *ss;
1438 int ssid;
1439
Tejun Heo2bd59d42014-02-11 11:52:49 -05001440 atomic_set(&cgrp->refcnt, 1);
Paul Menagecc31edc2008-10-18 20:28:04 -07001441 INIT_LIST_HEAD(&cgrp->sibling);
1442 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo69d02062013-06-12 21:04:50 -07001443 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001444 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001445 INIT_LIST_HEAD(&cgrp->pidlists);
1446 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo67f4c362013-08-08 20:11:24 -04001447 cgrp->dummy_css.cgroup = cgrp;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001448
1449 for_each_subsys(ss, ssid)
1450 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Paul Menagecc31edc2008-10-18 20:28:04 -07001451}
Paul Menagec6d57f32009-09-23 15:56:19 -07001452
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001453static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001454 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001455{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001456 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001457
Paul Menageddbcc7e2007-10-18 23:39:30 -07001458 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001459 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001460 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001461 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001462 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001463
Paul Menagec6d57f32009-09-23 15:56:19 -07001464 root->flags = opts->flags;
1465 if (opts->release_agent)
1466 strcpy(root->release_agent_path, opts->release_agent);
1467 if (opts->name)
1468 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001469 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001470 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001471}
1472
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001473static int cgroup_setup_root(struct cgroup_root *root, unsigned long ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001474{
Tejun Heod427dfe2014-02-11 11:52:48 -05001475 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001476 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001477 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001478 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001479
Tejun Heod427dfe2014-02-11 11:52:48 -05001480 lockdep_assert_held(&cgroup_tree_mutex);
1481 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001482
Tejun Heod427dfe2014-02-11 11:52:48 -05001483 ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL);
1484 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001485 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001486 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001487
Tejun Heod427dfe2014-02-11 11:52:48 -05001488 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001489 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001490 * but that's OK - it can only be increased by someone holding
1491 * cgroup_lock, and that's us. The worst that can happen is that we
1492 * have some link structures left over
1493 */
1494 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001495 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001496 goto out;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001497
Tejun Heo985ed672014-03-19 10:23:53 -04001498 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001499 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001500 goto out;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001501
Tejun Heo2bd59d42014-02-11 11:52:49 -05001502 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1503 KERNFS_ROOT_CREATE_DEACTIVATED,
1504 root_cgrp);
1505 if (IS_ERR(root->kf_root)) {
1506 ret = PTR_ERR(root->kf_root);
1507 goto exit_root_id;
1508 }
1509 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001510
Tejun Heod427dfe2014-02-11 11:52:48 -05001511 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1512 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001513 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001514
Tejun Heo5df36032014-03-19 10:23:54 -04001515 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001516 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001517 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001518
Tejun Heod427dfe2014-02-11 11:52:48 -05001519 /*
1520 * There must be no failure case after here, since rebinding takes
1521 * care of subsystems' refcounts, which are explicitly dropped in
1522 * the failure exit path.
1523 */
1524 list_add(&root->root_list, &cgroup_roots);
1525 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001526
Tejun Heod427dfe2014-02-11 11:52:48 -05001527 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001528 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001529 * objects.
1530 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001531 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001532 hash_for_each(css_set_table, i, cset, hlist)
1533 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001534 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001535
Tejun Heod427dfe2014-02-11 11:52:48 -05001536 BUG_ON(!list_empty(&root_cgrp->children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001537 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001538
Tejun Heo2bd59d42014-02-11 11:52:49 -05001539 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001540 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001541 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001542
Tejun Heo2bd59d42014-02-11 11:52:49 -05001543destroy_root:
1544 kernfs_destroy_root(root->kf_root);
1545 root->kf_root = NULL;
1546exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001547 cgroup_exit_root_id(root);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001548out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001549 free_cgrp_cset_links(&tmp_links);
1550 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001551}
1552
Al Virof7e83572010-07-26 13:23:11 +04001553static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001554 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001555 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001556{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001557 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001558 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001559 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001560 int ret;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001561 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001562
1563 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001564 * The first time anyone tries to mount a cgroup, enable the list
1565 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001566 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001567 if (!use_task_css_set_links)
1568 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001569
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001570 mutex_lock(&cgroup_tree_mutex);
1571 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001572
Paul Menageddbcc7e2007-10-18 23:39:30 -07001573 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001574 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001575 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001576 goto out_unlock;
Li Zefane37a06f2014-04-17 13:53:08 +08001577retry:
Tejun Heo2bd59d42014-02-11 11:52:49 -05001578 /* look for a matching existing root */
Tejun Heoa2dd4242014-03-19 10:23:55 -04001579 if (!opts.subsys_mask && !opts.none && !opts.name) {
1580 cgrp_dfl_root_visible = true;
1581 root = &cgrp_dfl_root;
1582 cgroup_get(&root->cgrp);
1583 ret = 0;
1584 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001585 }
1586
Tejun Heo985ed672014-03-19 10:23:53 -04001587 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001588 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001589
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001590 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001591 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001592
Paul Menage817929e2007-10-18 23:39:36 -07001593 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001594 * If we asked for a name then it must match. Also, if
1595 * name matches but sybsys_mask doesn't, we should fail.
1596 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001597 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001598 if (opts.name) {
1599 if (strcmp(opts.name, root->name))
1600 continue;
1601 name_match = true;
1602 }
Tejun Heo31261212013-06-28 17:07:30 -07001603
1604 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001605 * If we asked for subsystems (or explicitly for no
1606 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001607 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001608 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001609 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001610 if (!name_match)
1611 continue;
1612 ret = -EBUSY;
1613 goto out_unlock;
1614 }
Tejun Heo873fe092013-04-14 20:15:26 -07001615
Tejun Heoc7ba8282013-06-29 14:06:10 -07001616 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001617 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1618 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1619 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001620 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001621 } else {
1622 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1623 }
Tejun Heo873fe092013-04-14 20:15:26 -07001624 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001625
Tejun Heo776f02f2014-02-12 09:29:50 -05001626 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001627 * A root's lifetime is governed by its root cgroup. Zero
Tejun Heo776f02f2014-02-12 09:29:50 -05001628 * ref indicate that the root is being destroyed. Wait for
1629 * destruction to complete so that the subsystems are free.
1630 * We can use wait_queue for the wait but this path is
1631 * super cold. Let's just sleep for a bit and retry.
1632 */
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001633 if (!atomic_inc_not_zero(&root->cgrp.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001634 mutex_unlock(&cgroup_mutex);
1635 mutex_unlock(&cgroup_tree_mutex);
1636 msleep(10);
Li Zefane37a06f2014-04-17 13:53:08 +08001637 mutex_lock(&cgroup_tree_mutex);
1638 mutex_lock(&cgroup_mutex);
Tejun Heo776f02f2014-02-12 09:29:50 -05001639 goto retry;
1640 }
1641
1642 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001643 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001644 }
1645
Tejun Heo172a2c062014-03-19 10:23:53 -04001646 /*
1647 * No such thing, create a new one. name= matching without subsys
1648 * specification is allowed for already existing hierarchies but we
1649 * can't create new one without subsys specification.
1650 */
1651 if (!opts.subsys_mask && !opts.none) {
1652 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001653 goto out_unlock;
1654 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001655
Tejun Heo172a2c062014-03-19 10:23:53 -04001656 root = kzalloc(sizeof(*root), GFP_KERNEL);
1657 if (!root) {
1658 ret = -ENOMEM;
1659 goto out_unlock;
1660 }
1661
1662 init_cgroup_root(root, &opts);
1663
Tejun Heo35585572014-02-13 06:58:38 -05001664 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001665 if (ret)
1666 cgroup_free_root(root);
1667
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001668out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001669 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001670 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001671
Paul Menagec6d57f32009-09-23 15:56:19 -07001672 kfree(opts.release_agent);
1673 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001674
Tejun Heo2bd59d42014-02-11 11:52:49 -05001675 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001676 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001677
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001678 dentry = kernfs_mount(fs_type, flags, root->kf_root, &new_sb);
1679 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001680 cgroup_put(&root->cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001681 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001682}
1683
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001684static void cgroup_kill_sb(struct super_block *sb)
1685{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001686 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001687 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001688
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001689 cgroup_put(&root->cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001690 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001691}
1692
1693static struct file_system_type cgroup_fs_type = {
1694 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001695 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001696 .kill_sb = cgroup_kill_sb,
1697};
1698
Greg KH676db4a2010-08-05 13:53:35 -07001699static struct kobject *cgroup_kobj;
1700
Li Zefana043e3b2008-02-23 15:24:09 -08001701/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001702 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001703 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001704 * @buf: the buffer to write the path into
1705 * @buflen: the length of the buffer
1706 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001707 * Determine @task's cgroup on the first (the one with the lowest non-zero
1708 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1709 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1710 * cgroup controller callbacks.
1711 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001712 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001713 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001714char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001715{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001716 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001717 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001718 int hierarchy_id = 1;
1719 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001720
1721 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001722 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001723
Tejun Heo913ffdb2013-07-11 16:34:48 -07001724 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1725
Tejun Heo857a2be2013-04-14 20:50:08 -07001726 if (root) {
1727 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001728 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001729 } else {
1730 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001731 if (strlcpy(buf, "/", buflen) < buflen)
1732 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001733 }
1734
Tejun Heo96d365e2014-02-13 06:58:40 -05001735 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001736 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001737 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001738}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001739EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001740
Tejun Heob3dc0942014-02-25 10:04:01 -05001741/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001742struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001743 /* the src and dst cset list running through cset->mg_node */
1744 struct list_head src_csets;
1745 struct list_head dst_csets;
1746
1747 /*
1748 * Fields for cgroup_taskset_*() iteration.
1749 *
1750 * Before migration is committed, the target migration tasks are on
1751 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1752 * the csets on ->dst_csets. ->csets point to either ->src_csets
1753 * or ->dst_csets depending on whether migration is committed.
1754 *
1755 * ->cur_csets and ->cur_task point to the current task position
1756 * during iteration.
1757 */
1758 struct list_head *csets;
1759 struct css_set *cur_cset;
1760 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001761};
1762
1763/**
1764 * cgroup_taskset_first - reset taskset and return the first task
1765 * @tset: taskset of interest
1766 *
1767 * @tset iteration is initialized and the first task is returned.
1768 */
1769struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1770{
Tejun Heob3dc0942014-02-25 10:04:01 -05001771 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
1772 tset->cur_task = NULL;
1773
1774 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001775}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001776
1777/**
1778 * cgroup_taskset_next - iterate to the next task in taskset
1779 * @tset: taskset of interest
1780 *
1781 * Return the next task in @tset. Iteration must have been initialized
1782 * with cgroup_taskset_first().
1783 */
1784struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1785{
Tejun Heob3dc0942014-02-25 10:04:01 -05001786 struct css_set *cset = tset->cur_cset;
1787 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001788
Tejun Heob3dc0942014-02-25 10:04:01 -05001789 while (&cset->mg_node != tset->csets) {
1790 if (!task)
1791 task = list_first_entry(&cset->mg_tasks,
1792 struct task_struct, cg_list);
1793 else
1794 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001795
Tejun Heob3dc0942014-02-25 10:04:01 -05001796 if (&task->cg_list != &cset->mg_tasks) {
1797 tset->cur_cset = cset;
1798 tset->cur_task = task;
1799 return task;
1800 }
1801
1802 cset = list_next_entry(cset, mg_node);
1803 task = NULL;
1804 }
1805
1806 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001807}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001808
1809/**
Ben Blum74a11662011-05-26 16:25:20 -07001810 * cgroup_task_migrate - move a task from one cgroup to another.
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001811 * @old_cgrp; the cgroup @tsk is being migrated from
1812 * @tsk: the task being migrated
1813 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001814 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001815 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001816 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001817static void cgroup_task_migrate(struct cgroup *old_cgrp,
1818 struct task_struct *tsk,
1819 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001820{
Tejun Heo5abb8852013-06-12 21:04:49 -07001821 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001822
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001823 lockdep_assert_held(&cgroup_mutex);
1824 lockdep_assert_held(&css_set_rwsem);
1825
Ben Blum74a11662011-05-26 16:25:20 -07001826 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001827 * We are synchronized through threadgroup_lock() against PF_EXITING
1828 * setting such that we can't race against cgroup_exit() changing the
1829 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001830 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001831 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001832 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001833
Tejun Heob3dc0942014-02-25 10:04:01 -05001834 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07001835 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001836
Tejun Heo1b9aba42014-03-19 17:43:21 -04001837 /*
1838 * Use move_tail so that cgroup_taskset_first() still returns the
1839 * leader after migration. This works because cgroup_migrate()
1840 * ensures that the dst_cset of the leader is the first on the
1841 * tset's dst_csets list.
1842 */
1843 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001844
1845 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001846 * We just gained a reference on old_cset by taking it from the
1847 * task. As trading it for new_cset is protected by cgroup_mutex,
1848 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001849 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001850 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001851 put_css_set_locked(old_cset, false);
Ben Blum74a11662011-05-26 16:25:20 -07001852}
1853
Li Zefana043e3b2008-02-23 15:24:09 -08001854/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05001855 * cgroup_migrate_finish - cleanup after attach
1856 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07001857 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05001858 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
1859 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07001860 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05001861static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07001862{
Tejun Heo1958d2d2014-02-25 10:04:03 -05001863 struct css_set *cset, *tmp_cset;
1864
1865 lockdep_assert_held(&cgroup_mutex);
1866
1867 down_write(&css_set_rwsem);
1868 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
1869 cset->mg_src_cgrp = NULL;
1870 cset->mg_dst_cset = NULL;
1871 list_del_init(&cset->mg_preload_node);
1872 put_css_set_locked(cset, false);
1873 }
1874 up_write(&css_set_rwsem);
1875}
1876
1877/**
1878 * cgroup_migrate_add_src - add a migration source css_set
1879 * @src_cset: the source css_set to add
1880 * @dst_cgrp: the destination cgroup
1881 * @preloaded_csets: list of preloaded css_sets
1882 *
1883 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
1884 * @src_cset and add it to @preloaded_csets, which should later be cleaned
1885 * up by cgroup_migrate_finish().
1886 *
1887 * This function may be called without holding threadgroup_lock even if the
1888 * target is a process. Threads may be created and destroyed but as long
1889 * as cgroup_mutex is not dropped, no new css_set can be put into play and
1890 * the preloaded css_sets are guaranteed to cover all migrations.
1891 */
1892static void cgroup_migrate_add_src(struct css_set *src_cset,
1893 struct cgroup *dst_cgrp,
1894 struct list_head *preloaded_csets)
1895{
1896 struct cgroup *src_cgrp;
1897
1898 lockdep_assert_held(&cgroup_mutex);
1899 lockdep_assert_held(&css_set_rwsem);
1900
1901 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
1902
1903 /* nothing to do if this cset already belongs to the cgroup */
1904 if (src_cgrp == dst_cgrp)
1905 return;
1906
1907 if (!list_empty(&src_cset->mg_preload_node))
1908 return;
1909
1910 WARN_ON(src_cset->mg_src_cgrp);
1911 WARN_ON(!list_empty(&src_cset->mg_tasks));
1912 WARN_ON(!list_empty(&src_cset->mg_node));
1913
1914 src_cset->mg_src_cgrp = src_cgrp;
1915 get_css_set(src_cset);
1916 list_add(&src_cset->mg_preload_node, preloaded_csets);
1917}
1918
1919/**
1920 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
1921 * @dst_cgrp: the destination cgroup
1922 * @preloaded_csets: list of preloaded source css_sets
1923 *
1924 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
1925 * have been preloaded to @preloaded_csets. This function looks up and
1926 * pins all destination css_sets, links each to its source, and put them on
1927 * @preloaded_csets.
1928 *
1929 * This function must be called after cgroup_migrate_add_src() has been
1930 * called on each migration source css_set. After migration is performed
1931 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
1932 * @preloaded_csets.
1933 */
1934static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
1935 struct list_head *preloaded_csets)
1936{
1937 LIST_HEAD(csets);
1938 struct css_set *src_cset;
1939
1940 lockdep_assert_held(&cgroup_mutex);
1941
1942 /* look up the dst cset for each src cset and link it to src */
1943 list_for_each_entry(src_cset, preloaded_csets, mg_preload_node) {
1944 struct css_set *dst_cset;
1945
1946 dst_cset = find_css_set(src_cset, dst_cgrp);
1947 if (!dst_cset)
1948 goto err;
1949
1950 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
1951 src_cset->mg_dst_cset = dst_cset;
1952
1953 if (list_empty(&dst_cset->mg_preload_node))
1954 list_add(&dst_cset->mg_preload_node, &csets);
1955 else
1956 put_css_set(dst_cset, false);
1957 }
1958
1959 list_splice(&csets, preloaded_csets);
1960 return 0;
1961err:
1962 cgroup_migrate_finish(&csets);
1963 return -ENOMEM;
1964}
1965
1966/**
1967 * cgroup_migrate - migrate a process or task to a cgroup
1968 * @cgrp: the destination cgroup
1969 * @leader: the leader of the process or the task to migrate
1970 * @threadgroup: whether @leader points to the whole process or a single task
1971 *
1972 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
1973 * process, the caller must be holding threadgroup_lock of @leader. The
1974 * caller is also responsible for invoking cgroup_migrate_add_src() and
1975 * cgroup_migrate_prepare_dst() on the targets before invoking this
1976 * function and following up with cgroup_migrate_finish().
1977 *
1978 * As long as a controller's ->can_attach() doesn't fail, this function is
1979 * guaranteed to succeed. This means that, excluding ->can_attach()
1980 * failure, when migrating multiple targets, the success or failure can be
1981 * decided for all targets by invoking group_migrate_prepare_dst() before
1982 * actually starting migrating.
1983 */
1984static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
1985 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07001986{
Tejun Heob3dc0942014-02-25 10:04:01 -05001987 struct cgroup_taskset tset = {
1988 .src_csets = LIST_HEAD_INIT(tset.src_csets),
1989 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
1990 .csets = &tset.src_csets,
1991 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05001992 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05001993 struct css_set *cset, *tmp_cset;
1994 struct task_struct *task, *tmp_task;
1995 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07001996
1997 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001998 * Prevent freeing of tasks while we take a snapshot. Tasks that are
1999 * already PF_EXITING could be freed from underneath us unless we
2000 * take an rcu_read_lock.
2001 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002002 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002003 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002004 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002005 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002006 /* @task either already exited or can't exit until the end */
2007 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002008 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002009
Tejun Heoeaf797a2014-02-25 10:04:03 -05002010 /* leave @task alone if post_fork() hasn't linked it yet */
2011 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002012 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002013
Tejun Heob3dc0942014-02-25 10:04:01 -05002014 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002015 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002016 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002017
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002018 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002019 * cgroup_taskset_first() must always return the leader.
2020 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002021 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002022 list_move_tail(&task->cg_list, &cset->mg_tasks);
2023 if (list_empty(&cset->mg_node))
2024 list_add_tail(&cset->mg_node, &tset.src_csets);
2025 if (list_empty(&cset->mg_dst_cset->mg_node))
2026 list_move_tail(&cset->mg_dst_cset->mg_node,
2027 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002028 next:
Li Zefan081aa452013-03-13 09:17:09 +08002029 if (!threadgroup)
2030 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002031 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002032 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002033 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002034
Tejun Heo134d3372011-12-12 18:12:21 -08002035 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002036 if (list_empty(&tset.src_csets))
2037 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002038
Tejun Heo1958d2d2014-02-25 10:04:03 -05002039 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002040 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002041 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002042 ret = css->ss->can_attach(css, &tset);
2043 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002044 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002045 goto out_cancel_attach;
2046 }
2047 }
Ben Blum74a11662011-05-26 16:25:20 -07002048 }
2049
2050 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002051 * Now that we're guaranteed success, proceed to move all tasks to
2052 * the new cgroup. There are no failure cases after here, so this
2053 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002054 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002055 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002056 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2057 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2058 cgroup_task_migrate(cset->mg_src_cgrp, task,
2059 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002060 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002061 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002062
2063 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002064 * Migration is committed, all target tasks are now on dst_csets.
2065 * Nothing is sensitive to fork() after this point. Notify
2066 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002067 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002068 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002069
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002070 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002071 if (css->ss->attach)
2072 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002073
Tejun Heo9db8de32014-02-13 06:58:43 -05002074 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002075 goto out_release_tset;
2076
Ben Blum74a11662011-05-26 16:25:20 -07002077out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002078 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002079 if (css == failed_css)
2080 break;
2081 if (css->ss->cancel_attach)
2082 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002083 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002084out_release_tset:
2085 down_write(&css_set_rwsem);
2086 list_splice_init(&tset.dst_csets, &tset.src_csets);
2087 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002088 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002089 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002090 }
2091 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002092 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002093}
2094
Tejun Heo1958d2d2014-02-25 10:04:03 -05002095/**
2096 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2097 * @dst_cgrp: the cgroup to attach to
2098 * @leader: the task or the leader of the threadgroup to be attached
2099 * @threadgroup: attach the whole threadgroup?
2100 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05002101 * Call holding cgroup_mutex and threadgroup_lock of @leader.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002102 */
2103static int cgroup_attach_task(struct cgroup *dst_cgrp,
2104 struct task_struct *leader, bool threadgroup)
2105{
2106 LIST_HEAD(preloaded_csets);
2107 struct task_struct *task;
2108 int ret;
2109
2110 /* look up all src csets */
2111 down_read(&css_set_rwsem);
2112 rcu_read_lock();
2113 task = leader;
2114 do {
2115 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2116 &preloaded_csets);
2117 if (!threadgroup)
2118 break;
2119 } while_each_thread(leader, task);
2120 rcu_read_unlock();
2121 up_read(&css_set_rwsem);
2122
2123 /* prepare dst csets and commit */
2124 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2125 if (!ret)
2126 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2127
2128 cgroup_migrate_finish(&preloaded_csets);
2129 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002130}
2131
2132/*
2133 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002134 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002135 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002136 */
2137static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002138{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002139 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002140 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002141 int ret;
2142
Ben Blum74a11662011-05-26 16:25:20 -07002143 if (!cgroup_lock_live_group(cgrp))
2144 return -ENODEV;
2145
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002146retry_find_task:
2147 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002148 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002149 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002150 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002151 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002152 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002153 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002154 }
Ben Blum74a11662011-05-26 16:25:20 -07002155 /*
2156 * even if we're attaching all tasks in the thread group, we
2157 * only need to check permissions on one of them.
2158 */
David Howellsc69e8d92008-11-14 10:39:19 +11002159 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002160 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2161 !uid_eq(cred->euid, tcred->uid) &&
2162 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002163 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002164 ret = -EACCES;
2165 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002166 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002167 } else
2168 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002169
2170 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002171 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002172
2173 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002174 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002175 * trapped in a cpuset, or RT worker may be born in a cgroup
2176 * with no rt_runtime allocated. Just say no.
2177 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002178 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002179 ret = -EINVAL;
2180 rcu_read_unlock();
2181 goto out_unlock_cgroup;
2182 }
2183
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002184 get_task_struct(tsk);
2185 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002186
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002187 threadgroup_lock(tsk);
2188 if (threadgroup) {
2189 if (!thread_group_leader(tsk)) {
2190 /*
2191 * a race with de_thread from another thread's exec()
2192 * may strip us of our leadership, if this happens,
2193 * there is no choice but to throw this task away and
2194 * try again; this is
2195 * "double-double-toil-and-trouble-check locking".
2196 */
2197 threadgroup_unlock(tsk);
2198 put_task_struct(tsk);
2199 goto retry_find_task;
2200 }
Li Zefan081aa452013-03-13 09:17:09 +08002201 }
2202
2203 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2204
Tejun Heocd3d0952011-12-12 18:12:21 -08002205 threadgroup_unlock(tsk);
2206
Paul Menagebbcb81d2007-10-18 23:39:32 -07002207 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002208out_unlock_cgroup:
Tejun Heo47cfcd02013-04-07 09:29:51 -07002209 mutex_unlock(&cgroup_mutex);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002210 return ret;
2211}
2212
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002213/**
2214 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2215 * @from: attach to all cgroups of a given task
2216 * @tsk: the task to be attached
2217 */
2218int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2219{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002220 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002221 int retval = 0;
2222
Tejun Heo47cfcd02013-04-07 09:29:51 -07002223 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002224 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002225 struct cgroup *from_cgrp;
2226
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002227 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002228 continue;
2229
Tejun Heo96d365e2014-02-13 06:58:40 -05002230 down_read(&css_set_rwsem);
2231 from_cgrp = task_cgroup_from_root(from, root);
2232 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002233
Li Zefan6f4b7e62013-07-31 16:18:36 +08002234 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002235 if (retval)
2236 break;
2237 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002238 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002239
2240 return retval;
2241}
2242EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2243
Tejun Heo182446d2013-08-08 20:11:24 -04002244static int cgroup_tasks_write(struct cgroup_subsys_state *css,
2245 struct cftype *cft, u64 pid)
Paul Menageaf351022008-07-25 01:47:01 -07002246{
Tejun Heo182446d2013-08-08 20:11:24 -04002247 return attach_task_by_pid(css->cgroup, pid, false);
Ben Blum74a11662011-05-26 16:25:20 -07002248}
2249
Tejun Heo182446d2013-08-08 20:11:24 -04002250static int cgroup_procs_write(struct cgroup_subsys_state *css,
2251 struct cftype *cft, u64 tgid)
Ben Blum74a11662011-05-26 16:25:20 -07002252{
Tejun Heo182446d2013-08-08 20:11:24 -04002253 return attach_task_by_pid(css->cgroup, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002254}
2255
Tejun Heo182446d2013-08-08 20:11:24 -04002256static int cgroup_release_agent_write(struct cgroup_subsys_state *css,
Tejun Heo4d3bb512014-03-19 10:23:54 -04002257 struct cftype *cft, char *buffer)
Paul Menagee788e062008-07-25 01:46:59 -07002258{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002259 struct cgroup_root *root = css->cgroup->root;
Tejun Heo5f469902014-02-11 11:52:48 -05002260
2261 BUILD_BUG_ON(sizeof(root->release_agent_path) < PATH_MAX);
Tejun Heo182446d2013-08-08 20:11:24 -04002262 if (!cgroup_lock_live_group(css->cgroup))
Paul Menagee788e062008-07-25 01:46:59 -07002263 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002264 spin_lock(&release_agent_path_lock);
Tejun Heo5f469902014-02-11 11:52:48 -05002265 strlcpy(root->release_agent_path, buffer,
2266 sizeof(root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002267 spin_unlock(&release_agent_path_lock);
Tejun Heo47cfcd02013-04-07 09:29:51 -07002268 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002269 return 0;
2270}
2271
Tejun Heo2da8ca82013-12-05 12:28:04 -05002272static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002273{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002274 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002275
Paul Menagee788e062008-07-25 01:46:59 -07002276 if (!cgroup_lock_live_group(cgrp))
2277 return -ENODEV;
2278 seq_puts(seq, cgrp->root->release_agent_path);
2279 seq_putc(seq, '\n');
Tejun Heo47cfcd02013-04-07 09:29:51 -07002280 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002281 return 0;
2282}
2283
Tejun Heo2da8ca82013-12-05 12:28:04 -05002284static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002285{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002286 struct cgroup *cgrp = seq_css(seq)->cgroup;
2287
2288 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002289 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002290}
2291
Tejun Heo2bd59d42014-02-11 11:52:49 -05002292static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2293 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002294{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002295 struct cgroup *cgrp = of->kn->parent->priv;
2296 struct cftype *cft = of->kn->priv;
2297 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002298 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002299
Tejun Heo2bd59d42014-02-11 11:52:49 -05002300 /*
2301 * kernfs guarantees that a file isn't deleted with operations in
2302 * flight, which means that the matching css is and stays alive and
2303 * doesn't need to be pinned. The RCU locking is not necessary
2304 * either. It's just for the convenience of using cgroup_css().
2305 */
2306 rcu_read_lock();
2307 css = cgroup_css(cgrp, cft->ss);
2308 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002309
Tejun Heoa742c592013-12-05 12:28:03 -05002310 if (cft->write_string) {
2311 ret = cft->write_string(css, cft, strstrip(buf));
2312 } else if (cft->write_u64) {
2313 unsigned long long v;
2314 ret = kstrtoull(buf, 0, &v);
2315 if (!ret)
2316 ret = cft->write_u64(css, cft, v);
2317 } else if (cft->write_s64) {
2318 long long v;
2319 ret = kstrtoll(buf, 0, &v);
2320 if (!ret)
2321 ret = cft->write_s64(css, cft, v);
2322 } else if (cft->trigger) {
2323 ret = cft->trigger(css, (unsigned int)cft->private);
2324 } else {
2325 ret = -EINVAL;
2326 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002327
Tejun Heoa742c592013-12-05 12:28:03 -05002328 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002329}
2330
Tejun Heo6612f052013-12-05 12:28:04 -05002331static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002332{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002333 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002334}
2335
2336static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2337{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002338 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002339}
2340
2341static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2342{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002343 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002344}
2345
2346static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2347{
Tejun Heo7da11272013-12-05 12:28:04 -05002348 struct cftype *cft = seq_cft(m);
2349 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002350
Tejun Heo2da8ca82013-12-05 12:28:04 -05002351 if (cft->seq_show)
2352 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002353
Tejun Heo896f5192013-12-05 12:28:04 -05002354 if (cft->read_u64)
2355 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2356 else if (cft->read_s64)
2357 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2358 else
2359 return -EINVAL;
2360 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002361}
2362
Tejun Heo2bd59d42014-02-11 11:52:49 -05002363static struct kernfs_ops cgroup_kf_single_ops = {
2364 .atomic_write_len = PAGE_SIZE,
2365 .write = cgroup_file_write,
2366 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002367};
2368
Tejun Heo2bd59d42014-02-11 11:52:49 -05002369static struct kernfs_ops cgroup_kf_ops = {
2370 .atomic_write_len = PAGE_SIZE,
2371 .write = cgroup_file_write,
2372 .seq_start = cgroup_seqfile_start,
2373 .seq_next = cgroup_seqfile_next,
2374 .seq_stop = cgroup_seqfile_stop,
2375 .seq_show = cgroup_seqfile_show,
2376};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002377
2378/*
2379 * cgroup_rename - Only allow simple rename of directories in place.
2380 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002381static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2382 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002383{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002384 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08002385 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002386
Tejun Heo2bd59d42014-02-11 11:52:49 -05002387 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002388 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002389 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002390 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002391
Tejun Heo6db8e852013-06-14 11:18:22 -07002392 /*
2393 * This isn't a proper migration and its usefulness is very
2394 * limited. Disallow if sane_behavior.
2395 */
2396 if (cgroup_sane_behavior(cgrp))
2397 return -EPERM;
2398
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002399 /*
2400 * We're gonna grab cgroup_tree_mutex which nests outside kernfs
2401 * active_ref. kernfs_rename() doesn't require active_ref
2402 * protection. Break them before grabbing cgroup_tree_mutex.
2403 */
2404 kernfs_break_active_protection(new_parent);
2405 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08002406
Tejun Heo2bd59d42014-02-11 11:52:49 -05002407 mutex_lock(&cgroup_tree_mutex);
2408 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08002409
Tejun Heo2bd59d42014-02-11 11:52:49 -05002410 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002411
Tejun Heo2bd59d42014-02-11 11:52:49 -05002412 mutex_unlock(&cgroup_mutex);
2413 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002414
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002415 kernfs_unbreak_active_protection(kn);
2416 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002417 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07002418}
2419
Tejun Heo49957f82014-04-07 16:44:47 -04002420/* set uid and gid of cgroup dirs and files to that of the creator */
2421static int cgroup_kn_set_ugid(struct kernfs_node *kn)
2422{
2423 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
2424 .ia_uid = current_fsuid(),
2425 .ia_gid = current_fsgid(), };
2426
2427 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
2428 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
2429 return 0;
2430
2431 return kernfs_setattr(kn, &iattr);
2432}
2433
Tejun Heo2bb566c2013-08-08 20:11:23 -04002434static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002435{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002436 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002437 struct kernfs_node *kn;
2438 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04002439 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002440
Tejun Heo2bd59d42014-02-11 11:52:49 -05002441#ifdef CONFIG_DEBUG_LOCK_ALLOC
2442 key = &cft->lockdep_key;
2443#endif
2444 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2445 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2446 NULL, false, key);
Tejun Heo49957f82014-04-07 16:44:47 -04002447 if (IS_ERR(kn))
2448 return PTR_ERR(kn);
2449
2450 ret = cgroup_kn_set_ugid(kn);
2451 if (ret)
2452 kernfs_remove(kn);
2453 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002454}
2455
Tejun Heob1f28d32013-06-28 16:24:10 -07002456/**
2457 * cgroup_addrm_files - add or remove files to a cgroup directory
2458 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002459 * @cfts: array of cftypes to be added
2460 * @is_add: whether to add or remove
2461 *
2462 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002463 * For removals, this function never fails. If addition fails, this
2464 * function doesn't remove files already added. The caller is responsible
2465 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002466 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002467static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2468 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002469{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002470 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002471 int ret;
2472
Tejun Heoace2bee2014-02-11 11:52:47 -05002473 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002474
2475 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002476 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04002477 if ((cft->flags & CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
2478 continue;
Tejun Heo873fe092013-04-14 20:15:26 -07002479 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2480 continue;
Gao fengf33fddc2012-12-06 14:38:57 +08002481 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2482 continue;
2483 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2484 continue;
2485
Li Zefan2739d3c2013-01-21 18:18:33 +08002486 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002487 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002488 if (ret) {
Li Zefan2739d3c2013-01-21 18:18:33 +08002489 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
Tejun Heob1f28d32013-06-28 16:24:10 -07002490 cft->name, ret);
2491 return ret;
2492 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002493 } else {
2494 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002495 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002496 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002497 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002498}
2499
Tejun Heo21a2d342014-02-12 09:29:49 -05002500static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002501{
2502 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002503 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002504 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04002505 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07002506 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002507
Tejun Heo21a2d342014-02-12 09:29:49 -05002508 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002509
Li Zefane8c82d22013-06-18 18:48:37 +08002510 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04002511 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002512 struct cgroup *cgrp = css->cgroup;
2513
Li Zefane8c82d22013-06-18 18:48:37 +08002514 if (cgroup_is_dead(cgrp))
2515 continue;
2516
Tejun Heo21a2d342014-02-12 09:29:49 -05002517 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07002518 if (ret)
2519 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002520 }
Tejun Heo21a2d342014-02-12 09:29:49 -05002521
2522 if (is_add && !ret)
2523 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07002524 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002525}
2526
Tejun Heo2da440a2014-02-11 11:52:48 -05002527static void cgroup_exit_cftypes(struct cftype *cfts)
2528{
2529 struct cftype *cft;
2530
Tejun Heo2bd59d42014-02-11 11:52:49 -05002531 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2532 /* free copy for custom atomic_write_len, see init_cftypes() */
2533 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
2534 kfree(cft->kf_ops);
2535 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05002536 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002537 }
Tejun Heo2da440a2014-02-11 11:52:48 -05002538}
2539
Tejun Heo2bd59d42014-02-11 11:52:49 -05002540static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05002541{
2542 struct cftype *cft;
2543
Tejun Heo2bd59d42014-02-11 11:52:49 -05002544 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2545 struct kernfs_ops *kf_ops;
2546
Tejun Heo0adb0702014-02-12 09:29:48 -05002547 WARN_ON(cft->ss || cft->kf_ops);
2548
Tejun Heo2bd59d42014-02-11 11:52:49 -05002549 if (cft->seq_start)
2550 kf_ops = &cgroup_kf_ops;
2551 else
2552 kf_ops = &cgroup_kf_single_ops;
2553
2554 /*
2555 * Ugh... if @cft wants a custom max_write_len, we need to
2556 * make a copy of kf_ops to set its atomic_write_len.
2557 */
2558 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
2559 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
2560 if (!kf_ops) {
2561 cgroup_exit_cftypes(cfts);
2562 return -ENOMEM;
2563 }
2564 kf_ops->atomic_write_len = cft->max_write_len;
2565 }
2566
2567 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05002568 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002569 }
2570
2571 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05002572}
2573
Tejun Heo21a2d342014-02-12 09:29:49 -05002574static int cgroup_rm_cftypes_locked(struct cftype *cfts)
2575{
2576 lockdep_assert_held(&cgroup_tree_mutex);
2577
2578 if (!cfts || !cfts[0].ss)
2579 return -ENOENT;
2580
2581 list_del(&cfts->node);
2582 cgroup_apply_cftypes(cfts, false);
2583 cgroup_exit_cftypes(cfts);
2584 return 0;
2585}
2586
Tejun Heo8e3f6542012-04-01 12:09:55 -07002587/**
Tejun Heo80b13582014-02-12 09:29:48 -05002588 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2589 * @cfts: zero-length name terminated array of cftypes
2590 *
2591 * Unregister @cfts. Files described by @cfts are removed from all
2592 * existing cgroups and all future cgroups won't have them either. This
2593 * function can be called anytime whether @cfts' subsys is attached or not.
2594 *
2595 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2596 * registered.
2597 */
2598int cgroup_rm_cftypes(struct cftype *cfts)
2599{
Tejun Heo21a2d342014-02-12 09:29:49 -05002600 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002601
Tejun Heo21a2d342014-02-12 09:29:49 -05002602 mutex_lock(&cgroup_tree_mutex);
2603 ret = cgroup_rm_cftypes_locked(cfts);
2604 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002605 return ret;
2606}
2607
2608/**
2609 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2610 * @ss: target cgroup subsystem
2611 * @cfts: zero-length name terminated array of cftypes
2612 *
2613 * Register @cfts to @ss. Files described by @cfts are created for all
2614 * existing cgroups to which @ss is attached and all future cgroups will
2615 * have them too. This function can be called anytime whether @ss is
2616 * attached or not.
2617 *
2618 * Returns 0 on successful registration, -errno on failure. Note that this
2619 * function currently returns 0 as long as @cfts registration is successful
2620 * even if some file creation attempts on existing cgroups fail.
2621 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002622int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002623{
Tejun Heo9ccece82013-06-28 16:24:11 -07002624 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002625
Li Zefandc5736e2014-02-17 10:41:50 +08002626 if (!cfts || cfts[0].name[0] == '\0')
2627 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002628
Tejun Heo2bd59d42014-02-11 11:52:49 -05002629 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07002630 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05002631 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002632
Tejun Heo21a2d342014-02-12 09:29:49 -05002633 mutex_lock(&cgroup_tree_mutex);
2634
Tejun Heo0adb0702014-02-12 09:29:48 -05002635 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05002636 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07002637 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05002638 cgroup_rm_cftypes_locked(cfts);
2639
2640 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07002641 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002642}
Tejun Heo79578622012-04-01 12:09:56 -07002643
2644/**
Li Zefana043e3b2008-02-23 15:24:09 -08002645 * cgroup_task_count - count the number of tasks in a cgroup.
2646 * @cgrp: the cgroup in question
2647 *
2648 * Return the number of tasks in the cgroup.
2649 */
Tejun Heo07bc3562014-02-13 06:58:39 -05002650static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002651{
2652 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07002653 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002654
Tejun Heo96d365e2014-02-13 06:58:40 -05002655 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07002656 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2657 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05002658 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002659 return count;
2660}
2661
Tejun Heo574bd9f2012-11-09 09:12:29 -08002662/**
Tejun Heo492eb212013-08-08 20:11:25 -04002663 * css_next_child - find the next child of a given css
2664 * @pos_css: the current position (%NULL to initiate traversal)
2665 * @parent_css: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09002666 *
Tejun Heo492eb212013-08-08 20:11:25 -04002667 * This function returns the next child of @parent_css and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05002668 * under either cgroup_mutex or RCU read lock. The only requirement is
2669 * that @parent_css and @pos_css are accessible. The next sibling is
2670 * guaranteed to be returned regardless of their states.
Tejun Heo53fa5262013-05-24 10:55:38 +09002671 */
Tejun Heo492eb212013-08-08 20:11:25 -04002672struct cgroup_subsys_state *
2673css_next_child(struct cgroup_subsys_state *pos_css,
2674 struct cgroup_subsys_state *parent_css)
Tejun Heo53fa5262013-05-24 10:55:38 +09002675{
Tejun Heo492eb212013-08-08 20:11:25 -04002676 struct cgroup *pos = pos_css ? pos_css->cgroup : NULL;
2677 struct cgroup *cgrp = parent_css->cgroup;
Tejun Heo53fa5262013-05-24 10:55:38 +09002678 struct cgroup *next;
2679
Tejun Heoace2bee2014-02-11 11:52:47 -05002680 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09002681
2682 /*
2683 * @pos could already have been removed. Once a cgroup is removed,
2684 * its ->sibling.next is no longer updated when its next sibling
Tejun Heoea15f8c2013-06-13 19:27:42 -07002685 * changes. As CGRP_DEAD assertion is serialized and happens
2686 * before the cgroup is taken off the ->sibling list, if we see it
2687 * unasserted, it's guaranteed that the next sibling hasn't
2688 * finished its grace period even if it's already removed, and thus
2689 * safe to dereference from this RCU critical section. If
2690 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
2691 * to be visible as %true here.
Tejun Heo3b287a52013-08-08 20:11:24 -04002692 *
2693 * If @pos is dead, its next pointer can't be dereferenced;
2694 * however, as each cgroup is given a monotonically increasing
2695 * unique serial number and always appended to the sibling list,
2696 * the next one can be found by walking the parent's children until
2697 * we see a cgroup with higher serial number than @pos's. While
2698 * this path can be slower, it's taken only when either the current
2699 * cgroup is removed or iteration and removal race.
Tejun Heo53fa5262013-05-24 10:55:38 +09002700 */
Tejun Heo3b287a52013-08-08 20:11:24 -04002701 if (!pos) {
2702 next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling);
2703 } else if (likely(!cgroup_is_dead(pos))) {
Tejun Heo53fa5262013-05-24 10:55:38 +09002704 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04002705 } else {
2706 list_for_each_entry_rcu(next, &cgrp->children, sibling)
2707 if (next->serial_nr > pos->serial_nr)
2708 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09002709 }
2710
Tejun Heo3b281af2014-04-23 11:13:15 -04002711 /*
2712 * @next, if not pointing to the head, can be dereferenced and is
2713 * the next sibling; however, it might have @ss disabled. If so,
2714 * fast-forward to the next enabled one.
2715 */
2716 while (&next->sibling != &cgrp->children) {
2717 struct cgroup_subsys_state *next_css = cgroup_css(next, parent_css->ss);
Tejun Heo492eb212013-08-08 20:11:25 -04002718
Tejun Heo3b281af2014-04-23 11:13:15 -04002719 if (next_css)
2720 return next_css;
2721 next = list_entry_rcu(next->sibling.next, struct cgroup, sibling);
2722 }
2723 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09002724}
Tejun Heo53fa5262013-05-24 10:55:38 +09002725
2726/**
Tejun Heo492eb212013-08-08 20:11:25 -04002727 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002728 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002729 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002730 *
Tejun Heo492eb212013-08-08 20:11:25 -04002731 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002732 * to visit for pre-order traversal of @root's descendants. @root is
2733 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002734 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002735 * While this function requires cgroup_mutex or RCU read locking, it
2736 * doesn't require the whole traversal to be contained in a single critical
2737 * section. This function will return the correct next descendant as long
2738 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002739 */
Tejun Heo492eb212013-08-08 20:11:25 -04002740struct cgroup_subsys_state *
2741css_next_descendant_pre(struct cgroup_subsys_state *pos,
2742 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002743{
Tejun Heo492eb212013-08-08 20:11:25 -04002744 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002745
Tejun Heoace2bee2014-02-11 11:52:47 -05002746 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002747
Tejun Heobd8815a2013-08-08 20:11:27 -04002748 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09002749 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04002750 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002751
2752 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04002753 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002754 if (next)
2755 return next;
2756
2757 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04002758 while (pos != root) {
2759 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002760 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002761 return next;
Tejun Heo492eb212013-08-08 20:11:25 -04002762 pos = css_parent(pos);
Tejun Heo7805d002013-05-24 10:50:24 +09002763 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08002764
2765 return NULL;
2766}
Tejun Heo574bd9f2012-11-09 09:12:29 -08002767
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002768/**
Tejun Heo492eb212013-08-08 20:11:25 -04002769 * css_rightmost_descendant - return the rightmost descendant of a css
2770 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002771 *
Tejun Heo492eb212013-08-08 20:11:25 -04002772 * Return the rightmost descendant of @pos. If there's no descendant, @pos
2773 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002774 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09002775 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002776 * While this function requires cgroup_mutex or RCU read locking, it
2777 * doesn't require the whole traversal to be contained in a single critical
2778 * section. This function will return the correct rightmost descendant as
2779 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002780 */
Tejun Heo492eb212013-08-08 20:11:25 -04002781struct cgroup_subsys_state *
2782css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002783{
Tejun Heo492eb212013-08-08 20:11:25 -04002784 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002785
Tejun Heoace2bee2014-02-11 11:52:47 -05002786 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002787
2788 do {
2789 last = pos;
2790 /* ->prev isn't RCU safe, walk ->next till the end */
2791 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04002792 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002793 pos = tmp;
2794 } while (pos);
2795
2796 return last;
2797}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002798
Tejun Heo492eb212013-08-08 20:11:25 -04002799static struct cgroup_subsys_state *
2800css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002801{
Tejun Heo492eb212013-08-08 20:11:25 -04002802 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002803
2804 do {
2805 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04002806 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002807 } while (pos);
2808
2809 return last;
2810}
2811
2812/**
Tejun Heo492eb212013-08-08 20:11:25 -04002813 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002814 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002815 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002816 *
Tejun Heo492eb212013-08-08 20:11:25 -04002817 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002818 * to visit for post-order traversal of @root's descendants. @root is
2819 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002820 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002821 * While this function requires cgroup_mutex or RCU read locking, it
2822 * doesn't require the whole traversal to be contained in a single critical
2823 * section. This function will return the correct next descendant as long
2824 * as both @pos and @cgroup are accessible and @pos is a descendant of
2825 * @cgroup.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002826 */
Tejun Heo492eb212013-08-08 20:11:25 -04002827struct cgroup_subsys_state *
2828css_next_descendant_post(struct cgroup_subsys_state *pos,
2829 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002830{
Tejun Heo492eb212013-08-08 20:11:25 -04002831 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002832
Tejun Heoace2bee2014-02-11 11:52:47 -05002833 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002834
Tejun Heo58b79a92013-09-06 15:31:08 -04002835 /* if first iteration, visit leftmost descendant which may be @root */
2836 if (!pos)
2837 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002838
Tejun Heobd8815a2013-08-08 20:11:27 -04002839 /* if we visited @root, we're done */
2840 if (pos == root)
2841 return NULL;
2842
Tejun Heo574bd9f2012-11-09 09:12:29 -08002843 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo492eb212013-08-08 20:11:25 -04002844 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002845 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04002846 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002847
2848 /* no sibling left, visit parent */
Tejun Heobd8815a2013-08-08 20:11:27 -04002849 return css_parent(pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002850}
Tejun Heo574bd9f2012-11-09 09:12:29 -08002851
Tejun Heo0942eee2013-08-08 20:11:26 -04002852/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002853 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04002854 * @it: the iterator to advance
2855 *
2856 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04002857 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002858static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04002859{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002860 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04002861 struct cgrp_cset_link *link;
2862 struct css_set *cset;
2863
2864 /* Advance to the next non-empty css_set */
2865 do {
2866 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002867 if (l == it->cset_head) {
2868 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04002869 return;
2870 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04002871
2872 if (it->ss) {
2873 cset = container_of(l, struct css_set,
2874 e_cset_node[it->ss->id]);
2875 } else {
2876 link = list_entry(l, struct cgrp_cset_link, cset_link);
2877 cset = link->cset;
2878 }
Tejun Heoc7561122014-02-25 10:04:01 -05002879 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
2880
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002881 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05002882
2883 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002884 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05002885 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002886 it->task_pos = cset->mg_tasks.next;
2887
2888 it->tasks_head = &cset->tasks;
2889 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04002890}
2891
Tejun Heo0942eee2013-08-08 20:11:26 -04002892/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002893 * css_task_iter_start - initiate task iteration
2894 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04002895 * @it: the task iterator to use
2896 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002897 * Initiate iteration through the tasks of @css. The caller can call
2898 * css_task_iter_next() to walk through the tasks until the function
2899 * returns NULL. On completion of iteration, css_task_iter_end() must be
2900 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04002901 *
2902 * Note that this function acquires a lock which is released when the
2903 * iteration finishes. The caller can't sleep while iteration is in
2904 * progress.
2905 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002906void css_task_iter_start(struct cgroup_subsys_state *css,
2907 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05002908 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07002909{
Tejun Heo56fde9e2014-02-13 06:58:38 -05002910 /* no one should try to iterate before mounting cgroups */
2911 WARN_ON_ONCE(!use_task_css_set_links);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002912
Tejun Heo96d365e2014-02-13 06:58:40 -05002913 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002914
Tejun Heo3ebb2b62014-04-23 11:13:15 -04002915 it->ss = css->ss;
2916
2917 if (it->ss)
2918 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
2919 else
2920 it->cset_pos = &css->cgroup->cset_links;
2921
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002922 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002923
Tejun Heo72ec7022013-08-08 20:11:26 -04002924 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002925}
2926
Tejun Heo0942eee2013-08-08 20:11:26 -04002927/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002928 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04002929 * @it: the task iterator being iterated
2930 *
2931 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04002932 * initialized via css_task_iter_start(). Returns NULL when the iteration
2933 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04002934 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002935struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002936{
2937 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002938 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07002939
2940 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002941 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07002942 return NULL;
2943 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05002944
2945 /*
2946 * Advance iterator to find next entry. cset->tasks is consumed
2947 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
2948 * next cset.
2949 */
Paul Menage817929e2007-10-18 23:39:36 -07002950 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05002951
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002952 if (l == it->tasks_head)
2953 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05002954
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002955 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04002956 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05002957 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04002958 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05002959
Paul Menage817929e2007-10-18 23:39:36 -07002960 return res;
2961}
2962
Tejun Heo0942eee2013-08-08 20:11:26 -04002963/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002964 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04002965 * @it: the task iterator to finish
2966 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002967 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04002968 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002969void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05002970 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07002971{
Tejun Heo96d365e2014-02-13 06:58:40 -05002972 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07002973}
2974
2975/**
2976 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
2977 * @to: cgroup to which the tasks will be moved
2978 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05002979 *
2980 * Locking rules between cgroup_post_fork() and the migration path
2981 * guarantee that, if a task is forking while being migrated, the new child
2982 * is guaranteed to be either visible in the source cgroup after the
2983 * parent's migration is complete or put into the target cgroup. No task
2984 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07002985 */
2986int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
2987{
Tejun Heo952aaa12014-02-25 10:04:03 -05002988 LIST_HEAD(preloaded_csets);
2989 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05002990 struct css_task_iter it;
2991 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05002992 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05002993
Tejun Heo952aaa12014-02-25 10:04:03 -05002994 mutex_lock(&cgroup_mutex);
2995
2996 /* all tasks in @from are being moved, all csets are source */
2997 down_read(&css_set_rwsem);
2998 list_for_each_entry(link, &from->cset_links, cset_link)
2999 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3000 up_read(&css_set_rwsem);
3001
3002 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3003 if (ret)
3004 goto out_err;
3005
3006 /*
3007 * Migrate tasks one-by-one until @form is empty. This fails iff
3008 * ->can_attach() fails.
3009 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003010 do {
3011 css_task_iter_start(&from->dummy_css, &it);
3012 task = css_task_iter_next(&it);
3013 if (task)
3014 get_task_struct(task);
3015 css_task_iter_end(&it);
3016
3017 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003018 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003019 put_task_struct(task);
3020 }
3021 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003022out_err:
3023 cgroup_migrate_finish(&preloaded_csets);
3024 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003025 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003026}
3027
Paul Menage817929e2007-10-18 23:39:36 -07003028/*
Ben Blum102a7752009-09-23 15:56:26 -07003029 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003030 *
3031 * Reading this file can return large amounts of data if a cgroup has
3032 * *lots* of attached tasks. So it may need several calls to read(),
3033 * but we cannot guarantee that the information we produce is correct
3034 * unless we produce it entirely atomically.
3035 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003036 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003037
Li Zefan24528252012-01-20 11:58:43 +08003038/* which pidlist file are we talking about? */
3039enum cgroup_filetype {
3040 CGROUP_FILE_PROCS,
3041 CGROUP_FILE_TASKS,
3042};
3043
3044/*
3045 * A pidlist is a list of pids that virtually represents the contents of one
3046 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3047 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3048 * to the cgroup.
3049 */
3050struct cgroup_pidlist {
3051 /*
3052 * used to find which pidlist is wanted. doesn't change as long as
3053 * this particular list stays in the list.
3054 */
3055 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3056 /* array of xids */
3057 pid_t *list;
3058 /* how many elements the above list has */
3059 int length;
Li Zefan24528252012-01-20 11:58:43 +08003060 /* each of these stored in a list by its cgroup */
3061 struct list_head links;
3062 /* pointer to the cgroup we belong to, for list removal purposes */
3063 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003064 /* for delayed destruction */
3065 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003066};
3067
Paul Menagebbcb81d2007-10-18 23:39:32 -07003068/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003069 * The following two functions "fix" the issue where there are more pids
3070 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3071 * TODO: replace with a kernel-wide solution to this problem
3072 */
3073#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3074static void *pidlist_allocate(int count)
3075{
3076 if (PIDLIST_TOO_LARGE(count))
3077 return vmalloc(count * sizeof(pid_t));
3078 else
3079 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3080}
Tejun Heob1a21362013-11-29 10:42:58 -05003081
Ben Blumd1d9fd32009-09-23 15:56:28 -07003082static void pidlist_free(void *p)
3083{
3084 if (is_vmalloc_addr(p))
3085 vfree(p);
3086 else
3087 kfree(p);
3088}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003089
3090/*
Tejun Heob1a21362013-11-29 10:42:58 -05003091 * Used to destroy all pidlists lingering waiting for destroy timer. None
3092 * should be left afterwards.
3093 */
3094static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3095{
3096 struct cgroup_pidlist *l, *tmp_l;
3097
3098 mutex_lock(&cgrp->pidlist_mutex);
3099 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3100 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3101 mutex_unlock(&cgrp->pidlist_mutex);
3102
3103 flush_workqueue(cgroup_pidlist_destroy_wq);
3104 BUG_ON(!list_empty(&cgrp->pidlists));
3105}
3106
3107static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3108{
3109 struct delayed_work *dwork = to_delayed_work(work);
3110 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3111 destroy_dwork);
3112 struct cgroup_pidlist *tofree = NULL;
3113
3114 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003115
3116 /*
Tejun Heo04502362013-11-29 10:42:59 -05003117 * Destroy iff we didn't get queued again. The state won't change
3118 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003119 */
Tejun Heo04502362013-11-29 10:42:59 -05003120 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003121 list_del(&l->links);
3122 pidlist_free(l->list);
3123 put_pid_ns(l->key.ns);
3124 tofree = l;
3125 }
3126
Tejun Heob1a21362013-11-29 10:42:58 -05003127 mutex_unlock(&l->owner->pidlist_mutex);
3128 kfree(tofree);
3129}
3130
3131/*
Ben Blum102a7752009-09-23 15:56:26 -07003132 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003133 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003134 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003135static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003136{
Ben Blum102a7752009-09-23 15:56:26 -07003137 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003138
3139 /*
3140 * we presume the 0th element is unique, so i starts at 1. trivial
3141 * edge cases first; no work needs to be done for either
3142 */
3143 if (length == 0 || length == 1)
3144 return length;
3145 /* src and dest walk down the list; dest counts unique elements */
3146 for (src = 1; src < length; src++) {
3147 /* find next unique element */
3148 while (list[src] == list[src-1]) {
3149 src++;
3150 if (src == length)
3151 goto after;
3152 }
3153 /* dest always points to where the next unique element goes */
3154 list[dest] = list[src];
3155 dest++;
3156 }
3157after:
Ben Blum102a7752009-09-23 15:56:26 -07003158 return dest;
3159}
3160
Tejun Heoafb2bc12013-11-29 10:42:59 -05003161/*
3162 * The two pid files - task and cgroup.procs - guaranteed that the result
3163 * is sorted, which forced this whole pidlist fiasco. As pid order is
3164 * different per namespace, each namespace needs differently sorted list,
3165 * making it impossible to use, for example, single rbtree of member tasks
3166 * sorted by task pointer. As pidlists can be fairly large, allocating one
3167 * per open file is dangerous, so cgroup had to implement shared pool of
3168 * pidlists keyed by cgroup and namespace.
3169 *
3170 * All this extra complexity was caused by the original implementation
3171 * committing to an entirely unnecessary property. In the long term, we
3172 * want to do away with it. Explicitly scramble sort order if
3173 * sane_behavior so that no such expectation exists in the new interface.
3174 *
3175 * Scrambling is done by swapping every two consecutive bits, which is
3176 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3177 */
3178static pid_t pid_fry(pid_t pid)
3179{
3180 unsigned a = pid & 0x55555555;
3181 unsigned b = pid & 0xAAAAAAAA;
3182
3183 return (a << 1) | (b >> 1);
3184}
3185
3186static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3187{
3188 if (cgroup_sane_behavior(cgrp))
3189 return pid_fry(pid);
3190 else
3191 return pid;
3192}
3193
Ben Blum102a7752009-09-23 15:56:26 -07003194static int cmppid(const void *a, const void *b)
3195{
3196 return *(pid_t *)a - *(pid_t *)b;
3197}
3198
Tejun Heoafb2bc12013-11-29 10:42:59 -05003199static int fried_cmppid(const void *a, const void *b)
3200{
3201 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3202}
3203
Ben Blum72a8cb32009-09-23 15:56:27 -07003204static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3205 enum cgroup_filetype type)
3206{
3207 struct cgroup_pidlist *l;
3208 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003209 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003210
Tejun Heoe6b81712013-11-29 10:42:59 -05003211 lockdep_assert_held(&cgrp->pidlist_mutex);
3212
3213 list_for_each_entry(l, &cgrp->pidlists, links)
3214 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003215 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003216 return NULL;
3217}
3218
Ben Blum72a8cb32009-09-23 15:56:27 -07003219/*
3220 * find the appropriate pidlist for our purpose (given procs vs tasks)
3221 * returns with the lock on that pidlist already held, and takes care
3222 * of the use count, or returns NULL with no locks held if we're out of
3223 * memory.
3224 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003225static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3226 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003227{
3228 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003229
Tejun Heoe6b81712013-11-29 10:42:59 -05003230 lockdep_assert_held(&cgrp->pidlist_mutex);
3231
3232 l = cgroup_pidlist_find(cgrp, type);
3233 if (l)
3234 return l;
3235
Ben Blum72a8cb32009-09-23 15:56:27 -07003236 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003237 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003238 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003239 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003240
Tejun Heob1a21362013-11-29 10:42:58 -05003241 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003242 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003243 /* don't need task_nsproxy() if we're looking at ourself */
3244 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003245 l->owner = cgrp;
3246 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003247 return l;
3248}
3249
3250/*
Ben Blum102a7752009-09-23 15:56:26 -07003251 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3252 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003253static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3254 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003255{
3256 pid_t *array;
3257 int length;
3258 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003259 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003260 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003261 struct cgroup_pidlist *l;
3262
Tejun Heo4bac00d2013-11-29 10:42:59 -05003263 lockdep_assert_held(&cgrp->pidlist_mutex);
3264
Ben Blum102a7752009-09-23 15:56:26 -07003265 /*
3266 * If cgroup gets more users after we read count, we won't have
3267 * enough space - tough. This race is indistinguishable to the
3268 * caller from the case that the additional cgroup users didn't
3269 * show up until sometime later on.
3270 */
3271 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003272 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003273 if (!array)
3274 return -ENOMEM;
3275 /* now, populate the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003276 css_task_iter_start(&cgrp->dummy_css, &it);
3277 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003278 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003279 break;
Ben Blum102a7752009-09-23 15:56:26 -07003280 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003281 if (type == CGROUP_FILE_PROCS)
3282 pid = task_tgid_vnr(tsk);
3283 else
3284 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003285 if (pid > 0) /* make sure to only use valid results */
3286 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003287 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003288 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003289 length = n;
3290 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05003291 if (cgroup_sane_behavior(cgrp))
3292 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3293 else
3294 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003295 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003296 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003297
Tejun Heoe6b81712013-11-29 10:42:59 -05003298 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003299 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003300 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003301 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003302 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003303 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003304
3305 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003306 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003307 l->list = array;
3308 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003309 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003310 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003311}
3312
Balbir Singh846c7bb2007-10-18 23:39:44 -07003313/**
Li Zefana043e3b2008-02-23 15:24:09 -08003314 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003315 * @stats: cgroupstats to fill information into
3316 * @dentry: A dentry entry belonging to the cgroup for which stats have
3317 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003318 *
3319 * Build and fill cgroupstats so that taskstats can export it to user
3320 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003321 */
3322int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3323{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003324 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003325 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003326 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003327 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003328
Tejun Heo2bd59d42014-02-11 11:52:49 -05003329 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3330 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3331 kernfs_type(kn) != KERNFS_DIR)
3332 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003333
Li Zefanbad34662014-02-14 16:54:28 +08003334 mutex_lock(&cgroup_mutex);
3335
Tejun Heo2bd59d42014-02-11 11:52:49 -05003336 /*
3337 * We aren't being called from kernfs and there's no guarantee on
3338 * @kn->priv's validity. For this and css_tryget_from_dir(),
3339 * @kn->priv is RCU safe. Let's do the RCU dancing.
3340 */
3341 rcu_read_lock();
3342 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08003343 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05003344 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08003345 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003346 return -ENOENT;
3347 }
Li Zefanbad34662014-02-14 16:54:28 +08003348 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07003349
Tejun Heo72ec7022013-08-08 20:11:26 -04003350 css_task_iter_start(&cgrp->dummy_css, &it);
3351 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003352 switch (tsk->state) {
3353 case TASK_RUNNING:
3354 stats->nr_running++;
3355 break;
3356 case TASK_INTERRUPTIBLE:
3357 stats->nr_sleeping++;
3358 break;
3359 case TASK_UNINTERRUPTIBLE:
3360 stats->nr_uninterruptible++;
3361 break;
3362 case TASK_STOPPED:
3363 stats->nr_stopped++;
3364 break;
3365 default:
3366 if (delayacct_is_task_waiting_on_io(tsk))
3367 stats->nr_io_wait++;
3368 break;
3369 }
3370 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003371 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003372
Li Zefanbad34662014-02-14 16:54:28 +08003373 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003374 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003375}
3376
Paul Menage8f3ff202009-09-23 15:56:25 -07003377
Paul Menagecc31edc2008-10-18 20:28:04 -07003378/*
Ben Blum102a7752009-09-23 15:56:26 -07003379 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003380 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003381 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003382 */
3383
Ben Blum102a7752009-09-23 15:56:26 -07003384static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003385{
3386 /*
3387 * Initially we receive a position value that corresponds to
3388 * one more than the last pid shown (or 0 on the first call or
3389 * after a seek to the start). Use a binary-search to find the
3390 * next pid to display, if any
3391 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003392 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003393 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003394 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003395 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003396 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003397 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003398
Tejun Heo4bac00d2013-11-29 10:42:59 -05003399 mutex_lock(&cgrp->pidlist_mutex);
3400
3401 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003402 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003403 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003404 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003405 * could already have been destroyed.
3406 */
Tejun Heo5d224442013-12-05 12:28:04 -05003407 if (of->priv)
3408 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003409
3410 /*
3411 * Either this is the first start() after open or the matching
3412 * pidlist has been destroyed inbetween. Create a new one.
3413 */
Tejun Heo5d224442013-12-05 12:28:04 -05003414 if (!of->priv) {
3415 ret = pidlist_array_load(cgrp, type,
3416 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003417 if (ret)
3418 return ERR_PTR(ret);
3419 }
Tejun Heo5d224442013-12-05 12:28:04 -05003420 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003421
Paul Menagecc31edc2008-10-18 20:28:04 -07003422 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003423 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003424
Paul Menagecc31edc2008-10-18 20:28:04 -07003425 while (index < end) {
3426 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003427 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003428 index = mid;
3429 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003430 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003431 index = mid + 1;
3432 else
3433 end = mid;
3434 }
3435 }
3436 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003437 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003438 return NULL;
3439 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003440 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003441 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003442 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003443}
3444
Ben Blum102a7752009-09-23 15:56:26 -07003445static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003446{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003447 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003448 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05003449
Tejun Heo5d224442013-12-05 12:28:04 -05003450 if (l)
3451 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05003452 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05003453 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003454}
3455
Ben Blum102a7752009-09-23 15:56:26 -07003456static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003457{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003458 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003459 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07003460 pid_t *p = v;
3461 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003462 /*
3463 * Advance to the next pid in the array. If this goes off the
3464 * end, we're done
3465 */
3466 p++;
3467 if (p >= end) {
3468 return NULL;
3469 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05003470 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07003471 return p;
3472 }
3473}
3474
Ben Blum102a7752009-09-23 15:56:26 -07003475static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003476{
3477 return seq_printf(s, "%d\n", *(int *)v);
3478}
3479
Ben Blum102a7752009-09-23 15:56:26 -07003480/*
3481 * seq_operations functions for iterating on pidlists through seq_file -
3482 * independent of whether it's tasks or procs
3483 */
3484static const struct seq_operations cgroup_pidlist_seq_operations = {
3485 .start = cgroup_pidlist_start,
3486 .stop = cgroup_pidlist_stop,
3487 .next = cgroup_pidlist_next,
3488 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003489};
3490
Tejun Heo182446d2013-08-08 20:11:24 -04003491static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3492 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003493{
Tejun Heo182446d2013-08-08 20:11:24 -04003494 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003495}
3496
Tejun Heo182446d2013-08-08 20:11:24 -04003497static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3498 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003499{
Tejun Heo182446d2013-08-08 20:11:24 -04003500 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003501 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003502 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003503 else
Tejun Heo182446d2013-08-08 20:11:24 -04003504 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003505 return 0;
3506}
3507
Tejun Heo182446d2013-08-08 20:11:24 -04003508static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3509 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003510{
Tejun Heo182446d2013-08-08 20:11:24 -04003511 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003512}
3513
Tejun Heo182446d2013-08-08 20:11:24 -04003514static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
3515 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003516{
3517 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003518 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003519 else
Tejun Heo182446d2013-08-08 20:11:24 -04003520 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003521 return 0;
3522}
3523
Tejun Heod5c56ce2013-06-03 19:14:34 -07003524static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07003525 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07003526 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05003527 .seq_start = cgroup_pidlist_start,
3528 .seq_next = cgroup_pidlist_next,
3529 .seq_stop = cgroup_pidlist_stop,
3530 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003531 .private = CGROUP_FILE_PROCS,
Ben Blum74a11662011-05-26 16:25:20 -07003532 .write_u64 = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07003533 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003534 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003535 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07003536 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07003537 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07003538 .read_u64 = cgroup_clone_children_read,
3539 .write_u64 = cgroup_clone_children_write,
3540 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003541 {
Tejun Heo873fe092013-04-14 20:15:26 -07003542 .name = "cgroup.sane_behavior",
3543 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003544 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07003545 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07003546
3547 /*
3548 * Historical crazy stuff. These don't have "cgroup." prefix and
3549 * don't exist if sane_behavior. If you're depending on these, be
3550 * prepared to be burned.
3551 */
3552 {
3553 .name = "tasks",
3554 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05003555 .seq_start = cgroup_pidlist_start,
3556 .seq_next = cgroup_pidlist_next,
3557 .seq_stop = cgroup_pidlist_stop,
3558 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003559 .private = CGROUP_FILE_TASKS,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003560 .write_u64 = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003561 .mode = S_IRUGO | S_IWUSR,
3562 },
3563 {
3564 .name = "notify_on_release",
3565 .flags = CFTYPE_INSANE,
3566 .read_u64 = cgroup_read_notify_on_release,
3567 .write_u64 = cgroup_write_notify_on_release,
3568 },
Tejun Heo873fe092013-04-14 20:15:26 -07003569 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07003570 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07003571 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003572 .seq_show = cgroup_release_agent_show,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003573 .write_string = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05003574 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003575 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003576 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003577};
3578
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003579/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07003580 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003581 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003582 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07003583 *
3584 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003585 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07003586static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003587{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003588 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07003589 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003590
Tejun Heo8e3f6542012-04-01 12:09:55 -07003591 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07003592 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05003593 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07003594
3595 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003596 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003597
Tejun Heo0adb0702014-02-12 09:29:48 -05003598 list_for_each_entry(cfts, &ss->cfts, node) {
3599 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07003600 if (ret < 0)
3601 goto err;
3602 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003603 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003604 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07003605err:
3606 cgroup_clear_dir(cgrp, subsys_mask);
3607 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003608}
3609
Tejun Heo0c21ead2013-08-13 20:22:51 -04003610/*
3611 * css destruction is four-stage process.
3612 *
3613 * 1. Destruction starts. Killing of the percpu_ref is initiated.
3614 * Implemented in kill_css().
3615 *
3616 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
3617 * and thus css_tryget() is guaranteed to fail, the css can be offlined
3618 * by invoking offline_css(). After offlining, the base ref is put.
3619 * Implemented in css_killed_work_fn().
3620 *
3621 * 3. When the percpu_ref reaches zero, the only possible remaining
3622 * accessors are inside RCU read sections. css_release() schedules the
3623 * RCU callback.
3624 *
3625 * 4. After the grace period, the css can be freed. Implemented in
3626 * css_free_work_fn().
3627 *
3628 * It is actually hairier because both step 2 and 4 require process context
3629 * and thus involve punting to css->destroy_work adding two additional
3630 * steps to the already complex sequence.
3631 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04003632static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07003633{
3634 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04003635 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003636 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003637
Tejun Heo0ae78e02013-08-13 11:01:54 -04003638 if (css->parent)
3639 css_put(css->parent);
3640
Tejun Heo0c21ead2013-08-13 20:22:51 -04003641 css->ss->css_free(css);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003642 cgroup_put(cgrp);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003643}
3644
3645static void css_free_rcu_fn(struct rcu_head *rcu_head)
3646{
3647 struct cgroup_subsys_state *css =
3648 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
3649
Tejun Heo0c21ead2013-08-13 20:22:51 -04003650 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003651 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07003652}
3653
Tejun Heod3daf282013-06-13 19:39:16 -07003654static void css_release(struct percpu_ref *ref)
3655{
3656 struct cgroup_subsys_state *css =
3657 container_of(ref, struct cgroup_subsys_state, refcnt);
3658
Monam Agarwal01a97142014-03-24 00:17:18 +05303659 RCU_INIT_POINTER(css->cgroup->subsys[css->ss->id], NULL);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003660 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003661}
3662
Tejun Heo623f9262013-08-13 11:01:55 -04003663static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss,
3664 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003665{
Paul Menagebd89aab2007-10-18 23:40:44 -07003666 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04003667 css->ss = ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003668 css->flags = 0;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003669
Tejun Heo0ae78e02013-08-13 11:01:54 -04003670 if (cgrp->parent)
Tejun Heoca8bdca2013-08-26 18:40:56 -04003671 css->parent = cgroup_css(cgrp->parent, ss);
Tejun Heo0ae78e02013-08-13 11:01:54 -04003672 else
Paul Menageddbcc7e2007-10-18 23:39:30 -07003673 css->flags |= CSS_ROOT;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003674
Tejun Heoca8bdca2013-08-26 18:40:56 -04003675 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003676}
3677
Li Zefan2a4ac632013-07-31 16:16:40 +08003678/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04003679static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003680{
Tejun Heo623f9262013-08-13 11:01:55 -04003681 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08003682 int ret = 0;
3683
Tejun Heoace2bee2014-02-11 11:52:47 -05003684 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003685 lockdep_assert_held(&cgroup_mutex);
3686
Tejun Heo92fb9742012-11-19 08:13:38 -08003687 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04003688 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003689 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04003690 css->flags |= CSS_ONLINE;
Tejun Heof20104d2013-08-13 20:22:50 -04003691 css->cgroup->nr_css++;
Tejun Heoaec25022014-02-08 10:36:58 -05003692 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003693 }
Tejun Heob1929db2012-11-19 08:13:38 -08003694 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003695}
3696
Li Zefan2a4ac632013-07-31 16:16:40 +08003697/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04003698static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003699{
Tejun Heo623f9262013-08-13 11:01:55 -04003700 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003701
Tejun Heoace2bee2014-02-11 11:52:47 -05003702 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003703 lockdep_assert_held(&cgroup_mutex);
3704
3705 if (!(css->flags & CSS_ONLINE))
3706 return;
3707
Li Zefand7eeac12013-03-12 15:35:59 -07003708 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04003709 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003710
Tejun Heoeb954192013-08-08 20:11:23 -04003711 css->flags &= ~CSS_ONLINE;
Tejun Heo09a503ea2013-08-13 20:22:50 -04003712 css->cgroup->nr_css--;
Tejun Heoaec25022014-02-08 10:36:58 -05003713 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003714}
3715
Tejun Heoc81c925a2013-12-06 15:11:56 -05003716/**
3717 * create_css - create a cgroup_subsys_state
3718 * @cgrp: the cgroup new css will be associated with
3719 * @ss: the subsys of new css
3720 *
3721 * Create a new css associated with @cgrp - @ss pair. On success, the new
3722 * css is online and installed in @cgrp with all interface files created.
3723 * Returns 0 on success, -errno on failure.
3724 */
3725static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
3726{
3727 struct cgroup *parent = cgrp->parent;
3728 struct cgroup_subsys_state *css;
3729 int err;
3730
Tejun Heoc81c925a2013-12-06 15:11:56 -05003731 lockdep_assert_held(&cgroup_mutex);
3732
3733 css = ss->css_alloc(cgroup_css(parent, ss));
3734 if (IS_ERR(css))
3735 return PTR_ERR(css);
3736
3737 err = percpu_ref_init(&css->refcnt, css_release);
3738 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08003739 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05003740
3741 init_css(css, ss, cgrp);
3742
Tejun Heoaec25022014-02-08 10:36:58 -05003743 err = cgroup_populate_dir(cgrp, 1 << ss->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003744 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08003745 goto err_free_percpu_ref;
Tejun Heoc81c925a2013-12-06 15:11:56 -05003746
3747 err = online_css(css);
3748 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08003749 goto err_clear_dir;
Tejun Heoc81c925a2013-12-06 15:11:56 -05003750
Tejun Heo59f52962014-02-11 11:52:49 -05003751 cgroup_get(cgrp);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003752 css_get(css->parent);
3753
3754 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
3755 parent->parent) {
3756 pr_warning("cgroup: %s (%d) created nested cgroup for controller \"%s\" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.\n",
3757 current->comm, current->pid, ss->name);
3758 if (!strcmp(ss->name, "memory"))
3759 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
3760 ss->warned_broken_hierarchy = true;
3761 }
3762
3763 return 0;
3764
Li Zefan3eb59ec2014-03-18 17:02:36 +08003765err_clear_dir:
Linus Torvalds32d01dc2014-04-03 13:05:42 -07003766 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08003767err_free_percpu_ref:
Tejun Heoc81c925a2013-12-06 15:11:56 -05003768 percpu_ref_cancel_init(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08003769err_free_css:
Tejun Heoc81c925a2013-12-06 15:11:56 -05003770 ss->css_free(css);
3771 return err;
3772}
3773
Tejun Heo2bd59d42014-02-11 11:52:49 -05003774/**
Li Zefana043e3b2008-02-23 15:24:09 -08003775 * cgroup_create - create a cgroup
3776 * @parent: cgroup that will be parent of the new cgroup
Tejun Heoe61734c2014-02-12 09:29:50 -05003777 * @name: name of the new cgroup
Tejun Heo2bd59d42014-02-11 11:52:49 -05003778 * @mode: mode to set on new cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07003779 */
Tejun Heoe61734c2014-02-12 09:29:50 -05003780static long cgroup_create(struct cgroup *parent, const char *name,
Tejun Heo2bd59d42014-02-11 11:52:49 -05003781 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003782{
Paul Menagebd89aab2007-10-18 23:40:44 -07003783 struct cgroup *cgrp;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003784 struct cgroup_root *root = parent->root;
Tejun Heob58c8992014-02-08 10:26:33 -05003785 int ssid, err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003786 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003787 struct kernfs_node *kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003788
Tejun Heoa2dd4242014-03-19 10:23:55 -04003789 /*
3790 * XXX: The default hierarchy isn't fully implemented yet. Block
3791 * !root cgroup creation on it for now.
3792 */
3793 if (root == &cgrp_dfl_root)
3794 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003795
Tejun Heo0a950f62012-11-19 09:02:12 -08003796 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07003797 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3798 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003799 return -ENOMEM;
3800
Tejun Heoace2bee2014-02-11 11:52:47 -05003801 mutex_lock(&cgroup_tree_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003802
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003803 /*
Tejun Heo976c06b2012-11-05 09:16:59 -08003804 * Only live parents can have children. Note that the liveliness
3805 * check isn't strictly necessary because cgroup_mkdir() and
3806 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
3807 * anyway so that locking is contained inside cgroup proper and we
3808 * don't get nasty surprises if we ever grow another caller.
3809 */
3810 if (!cgroup_lock_live_group(parent)) {
3811 err = -ENODEV;
Tejun Heoace2bee2014-02-11 11:52:47 -05003812 goto err_unlock_tree;
Li Zefan0ab02ca2014-02-11 16:05:46 +08003813 }
3814
3815 /*
3816 * Temporarily set the pointer to NULL, so idr_find() won't return
3817 * a half-baked cgroup.
3818 */
3819 cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL);
3820 if (cgrp->id < 0) {
3821 err = -ENOMEM;
3822 goto err_unlock;
Tejun Heo976c06b2012-11-05 09:16:59 -08003823 }
3824
Paul Menagecc31edc2008-10-18 20:28:04 -07003825 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003826
Paul Menagebd89aab2007-10-18 23:40:44 -07003827 cgrp->parent = parent;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003828 cgrp->dummy_css.parent = &parent->dummy_css;
Paul Menagebd89aab2007-10-18 23:40:44 -07003829 cgrp->root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003830
Li Zefanb6abdb02008-03-04 14:28:19 -08003831 if (notify_on_release(parent))
3832 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3833
Tejun Heo2260e7f2012-11-19 08:13:38 -08003834 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
3835 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003836
Tejun Heo2bd59d42014-02-11 11:52:49 -05003837 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05003838 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003839 if (IS_ERR(kn)) {
3840 err = PTR_ERR(kn);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003841 goto err_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003842 }
3843 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003844
Tejun Heo6f305582014-02-12 09:29:50 -05003845 /*
3846 * This extra ref will be put in cgroup_free_fn() and guarantees
3847 * that @cgrp->kn is always accessible.
3848 */
3849 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003850
Tejun Heo00356bd2013-06-18 11:14:22 -07003851 cgrp->serial_nr = cgroup_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09003852
Tejun Heo4e139af2012-11-19 08:13:36 -08003853 /* allocation complete, commit to creation */
Tejun Heo4e139af2012-11-19 08:13:36 -08003854 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05003855 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05003856 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08003857
Tejun Heo0d802552013-12-06 15:11:56 -05003858 /*
3859 * @cgrp is now fully operational. If something fails after this
3860 * point, it'll be released via the normal destruction path.
3861 */
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003862 idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
3863
Tejun Heo49957f82014-04-07 16:44:47 -04003864 err = cgroup_kn_set_ugid(kn);
3865 if (err)
3866 goto err_destroy;
3867
Tejun Heo2bb566c2013-08-08 20:11:23 -04003868 err = cgroup_addrm_files(cgrp, cgroup_base_files, true);
Tejun Heo628f7cd2013-06-28 16:24:11 -07003869 if (err)
3870 goto err_destroy;
3871
Tejun Heo9d403e92013-12-06 15:11:56 -05003872 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05003873 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04003874 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heob85d2042013-12-06 15:11:57 -05003875 err = create_css(cgrp, ss);
3876 if (err)
3877 goto err_destroy;
3878 }
Tejun Heoa8638032012-11-09 09:12:29 -08003879 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003880
Tejun Heof392e512014-04-23 11:13:14 -04003881 cgrp->child_subsys_mask = parent->child_subsys_mask;
3882
Tejun Heo2bd59d42014-02-11 11:52:49 -05003883 kernfs_activate(kn);
3884
Paul Menageddbcc7e2007-10-18 23:39:30 -07003885 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003886 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003887
3888 return 0;
3889
Tejun Heo0a950f62012-11-19 09:02:12 -08003890err_free_id:
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003891 idr_remove(&root->cgroup_idr, cgrp->id);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003892err_unlock:
3893 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003894err_unlock_tree:
3895 mutex_unlock(&cgroup_tree_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003896 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003897 return err;
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003898
3899err_destroy:
3900 cgroup_destroy_locked(cgrp);
3901 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003902 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003903 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003904}
3905
Tejun Heo2bd59d42014-02-11 11:52:49 -05003906static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
3907 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003908{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003909 struct cgroup *parent = parent_kn->priv;
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003910 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003911
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003912 /*
3913 * cgroup_create() grabs cgroup_tree_mutex which nests outside
3914 * kernfs active_ref and cgroup_create() already synchronizes
3915 * properly against removal through cgroup_lock_live_group().
3916 * Break it before calling cgroup_create().
3917 */
3918 cgroup_get(parent);
3919 kernfs_break_active_protection(parent_kn);
3920
3921 ret = cgroup_create(parent, name, mode);
3922
3923 kernfs_unbreak_active_protection(parent_kn);
3924 cgroup_put(parent);
3925 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003926}
3927
Tejun Heo223dbc32013-08-13 20:22:50 -04003928/*
3929 * This is called when the refcnt of a css is confirmed to be killed.
3930 * css_tryget() is now guaranteed to fail.
3931 */
3932static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07003933{
Tejun Heo223dbc32013-08-13 20:22:50 -04003934 struct cgroup_subsys_state *css =
3935 container_of(work, struct cgroup_subsys_state, destroy_work);
3936 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07003937
Tejun Heoace2bee2014-02-11 11:52:47 -05003938 mutex_lock(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003939 mutex_lock(&cgroup_mutex);
3940
3941 /*
Tejun Heo09a503ea2013-08-13 20:22:50 -04003942 * css_tryget() is guaranteed to fail now. Tell subsystems to
3943 * initate destruction.
3944 */
3945 offline_css(css);
3946
3947 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003948 * If @cgrp is marked dead, it's waiting for refs of all css's to
3949 * be disabled before proceeding to the second phase of cgroup
3950 * destruction. If we are the last one, kick it off.
3951 */
Tejun Heo09a503ea2013-08-13 20:22:50 -04003952 if (!cgrp->nr_css && cgroup_is_dead(cgrp))
Tejun Heof20104d2013-08-13 20:22:50 -04003953 cgroup_destroy_css_killed(cgrp);
3954
3955 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003956 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04003957
3958 /*
3959 * Put the css refs from kill_css(). Each css holds an extra
3960 * reference to the cgroup's dentry and cgroup removal proceeds
3961 * regardless of css refs. On the last put of each css, whenever
3962 * that may be, the extra dentry ref is put so that dentry
3963 * destruction happens only after all css's are released.
3964 */
3965 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07003966}
3967
Tejun Heo223dbc32013-08-13 20:22:50 -04003968/* css kill confirmation processing requires process context, bounce */
3969static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07003970{
3971 struct cgroup_subsys_state *css =
3972 container_of(ref, struct cgroup_subsys_state, refcnt);
3973
Tejun Heo223dbc32013-08-13 20:22:50 -04003974 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003975 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07003976}
3977
Tejun Heof392e512014-04-23 11:13:14 -04003978/**
3979 * kill_css - destroy a css
3980 * @css: css to destroy
3981 *
3982 * This function initiates destruction of @css by removing cgroup interface
3983 * files and putting its base reference. ->css_offline() will be invoked
3984 * asynchronously once css_tryget() is guaranteed to fail and when the
3985 * reference count reaches zero, @css will be released.
3986 */
3987static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04003988{
Tejun Heo94419622014-03-19 10:23:54 -04003989 lockdep_assert_held(&cgroup_tree_mutex);
3990
Tejun Heo2bd59d42014-02-11 11:52:49 -05003991 /*
3992 * This must happen before css is disassociated with its cgroup.
3993 * See seq_css() for details.
3994 */
Tejun Heoaec25022014-02-08 10:36:58 -05003995 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003996
Tejun Heoedae0c32013-08-13 20:22:51 -04003997 /*
3998 * Killing would put the base ref, but we need to keep it alive
3999 * until after ->css_offline().
4000 */
4001 css_get(css);
4002
4003 /*
4004 * cgroup core guarantees that, by the time ->css_offline() is
4005 * invoked, no new css reference will be given out via
4006 * css_tryget(). We can't simply call percpu_ref_kill() and
4007 * proceed to offlining css's because percpu_ref_kill() doesn't
4008 * guarantee that the ref is seen as killed on all CPUs on return.
4009 *
4010 * Use percpu_ref_kill_and_confirm() to get notifications as each
4011 * css is confirmed to be seen as killed on all CPUs.
4012 */
4013 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004014}
4015
4016/**
4017 * cgroup_destroy_locked - the first stage of cgroup destruction
4018 * @cgrp: cgroup to be destroyed
4019 *
4020 * css's make use of percpu refcnts whose killing latency shouldn't be
4021 * exposed to userland and are RCU protected. Also, cgroup core needs to
4022 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
4023 * invoked. To satisfy all the requirements, destruction is implemented in
4024 * the following two steps.
4025 *
4026 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4027 * userland visible parts and start killing the percpu refcnts of
4028 * css's. Set up so that the next stage will be kicked off once all
4029 * the percpu refcnts are confirmed to be killed.
4030 *
4031 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4032 * rest of destruction. Once all cgroup references are gone, the
4033 * cgroup is RCU-freed.
4034 *
4035 * This function implements s1. After this step, @cgrp is gone as far as
4036 * the userland is concerned and a new cgroup with the same name may be
4037 * created. As cgroup doesn't care about the names internally, this
4038 * doesn't cause any problem.
4039 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004040static int cgroup_destroy_locked(struct cgroup *cgrp)
4041 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004042{
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004043 struct cgroup *child;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004044 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004045 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004046 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004047
Tejun Heoace2bee2014-02-11 11:52:47 -05004048 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004049 lockdep_assert_held(&cgroup_mutex);
4050
Tejun Heoddd69142013-06-12 21:04:54 -07004051 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004052 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004053 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004054 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004055 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004056 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004057 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004058 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004059 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004060
Tejun Heo1a90dd52012-11-05 09:16:59 -08004061 /*
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004062 * Make sure there's no live children. We can't test ->children
4063 * emptiness as dead children linger on it while being destroyed;
4064 * otherwise, "rmdir parent/child parent" may fail with -EBUSY.
4065 */
4066 empty = true;
4067 rcu_read_lock();
4068 list_for_each_entry_rcu(child, &cgrp->children, sibling) {
4069 empty = cgroup_is_dead(child);
4070 if (!empty)
4071 break;
4072 }
4073 rcu_read_unlock();
4074 if (!empty)
4075 return -EBUSY;
4076
4077 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004078 * Mark @cgrp dead. This prevents further task migration and child
4079 * creation by disabling cgroup_lock_live_group(). Note that
Tejun Heo492eb212013-08-08 20:11:25 -04004080 * CGRP_DEAD assertion is depended upon by css_next_child() to
Tejun Heo455050d2013-06-13 19:27:41 -07004081 * resume iteration after dropping RCU read lock. See
Tejun Heo492eb212013-08-08 20:11:25 -04004082 * css_next_child() for details.
Tejun Heo455050d2013-06-13 19:27:41 -07004083 */
Tejun Heo54766d42013-06-12 21:04:53 -07004084 set_bit(CGRP_DEAD, &cgrp->flags);
Tejun Heo1a90dd52012-11-05 09:16:59 -08004085
Tejun Heo5d773812014-03-19 10:23:53 -04004086 /*
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004087 * Initiate massacre of all css's. cgroup_destroy_css_killed()
4088 * will be invoked to perform the rest of destruction once the
Tejun Heo4ac06012014-02-11 11:52:47 -05004089 * percpu refs of all css's are confirmed to be killed. This
4090 * involves removing the subsystem's files, drop cgroup_mutex.
Tejun Heo1a90dd52012-11-05 09:16:59 -08004091 */
Tejun Heo4ac06012014-02-11 11:52:47 -05004092 mutex_unlock(&cgroup_mutex);
Tejun Heo1a90dd52012-11-05 09:16:59 -08004093 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004094 kill_css(css);
Tejun Heo4ac06012014-02-11 11:52:47 -05004095 mutex_lock(&cgroup_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004096
Tejun Heo455050d2013-06-13 19:27:41 -07004097 /* CGRP_DEAD is set, remove from ->release_list for the last time */
4098 raw_spin_lock(&release_list_lock);
4099 if (!list_empty(&cgrp->release_list))
4100 list_del_init(&cgrp->release_list);
4101 raw_spin_unlock(&release_list_lock);
4102
4103 /*
Tejun Heof20104d2013-08-13 20:22:50 -04004104 * If @cgrp has css's attached, the second stage of cgroup
4105 * destruction is kicked off from css_killed_work_fn() after the
4106 * refs of all attached css's are killed. If @cgrp doesn't have
4107 * any css, we kick it off here.
Tejun Heo455050d2013-06-13 19:27:41 -07004108 */
Tejun Heof20104d2013-08-13 20:22:50 -04004109 if (!cgrp->nr_css)
4110 cgroup_destroy_css_killed(cgrp);
4111
Tejun Heo2bd59d42014-02-11 11:52:49 -05004112 /* remove @cgrp directory along with the base files */
Tejun Heo4ac06012014-02-11 11:52:47 -05004113 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004114
Tejun Heof20104d2013-08-13 20:22:50 -04004115 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05004116 * There are two control paths which try to determine cgroup from
4117 * dentry without going through kernfs - cgroupstats_build() and
4118 * css_tryget_from_dir(). Those are supported by RCU protecting
4119 * clearing of cgrp->kn->priv backpointer, which should happen
4120 * after all files under it have been removed.
Tejun Heo455050d2013-06-13 19:27:41 -07004121 */
Tejun Heo6f305582014-02-12 09:29:50 -05004122 kernfs_remove(cgrp->kn); /* @cgrp has an extra ref on its kn */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004123 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004124
Tejun Heo4ac06012014-02-11 11:52:47 -05004125 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07004126
Tejun Heoea15f8c2013-06-13 19:27:42 -07004127 return 0;
4128};
4129
Tejun Heod3daf282013-06-13 19:39:16 -07004130/**
Tejun Heof20104d2013-08-13 20:22:50 -04004131 * cgroup_destroy_css_killed - the second step of cgroup destruction
Tejun Heod3daf282013-06-13 19:39:16 -07004132 * @work: cgroup->destroy_free_work
4133 *
4134 * This function is invoked from a work item for a cgroup which is being
Tejun Heo09a503ea2013-08-13 20:22:50 -04004135 * destroyed after all css's are offlined and performs the rest of
4136 * destruction. This is the second step of destruction described in the
4137 * comment above cgroup_destroy_locked().
Tejun Heod3daf282013-06-13 19:39:16 -07004138 */
Tejun Heof20104d2013-08-13 20:22:50 -04004139static void cgroup_destroy_css_killed(struct cgroup *cgrp)
Tejun Heoea15f8c2013-06-13 19:27:42 -07004140{
Tejun Heoea15f8c2013-06-13 19:27:42 -07004141 struct cgroup *parent = cgrp->parent;
Tejun Heoea15f8c2013-06-13 19:27:42 -07004142
Tejun Heoace2bee2014-02-11 11:52:47 -05004143 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04004144 lockdep_assert_held(&cgroup_mutex);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004145
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004146 /* delete this cgroup from parent->children */
4147 list_del_rcu(&cgrp->sibling);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004148
Tejun Heo59f52962014-02-11 11:52:49 -05004149 cgroup_put(cgrp);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004150
Paul Menageddbcc7e2007-10-18 23:39:30 -07004151 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004152 check_for_release(parent);
4153}
4154
Tejun Heo2bd59d42014-02-11 11:52:49 -05004155static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004156{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004157 struct cgroup *cgrp = kn->priv;
4158 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004159
Tejun Heo2bd59d42014-02-11 11:52:49 -05004160 /*
4161 * This is self-destruction but @kn can't be removed while this
4162 * callback is in progress. Let's break active protection. Once
4163 * the protection is broken, @cgrp can be destroyed at any point.
4164 * Pin it so that it stays accessible.
4165 */
4166 cgroup_get(cgrp);
4167 kernfs_break_active_protection(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004168
Tejun Heoace2bee2014-02-11 11:52:47 -05004169 mutex_lock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004170 mutex_lock(&cgroup_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004171
Tejun Heo2bd59d42014-02-11 11:52:49 -05004172 /*
4173 * @cgrp might already have been destroyed while we're trying to
4174 * grab the mutexes.
4175 */
4176 if (!cgroup_is_dead(cgrp))
4177 ret = cgroup_destroy_locked(cgrp);
4178
Tejun Heo42809dd2012-11-19 08:13:37 -08004179 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004180 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004181
Tejun Heo2bd59d42014-02-11 11:52:49 -05004182 kernfs_unbreak_active_protection(kn);
4183 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004184 return ret;
4185}
4186
Tejun Heo2bd59d42014-02-11 11:52:49 -05004187static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4188 .remount_fs = cgroup_remount,
4189 .show_options = cgroup_show_options,
4190 .mkdir = cgroup_mkdir,
4191 .rmdir = cgroup_rmdir,
4192 .rename = cgroup_rename,
4193};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004194
Li Zefan06a11922008-04-29 01:00:07 -07004195static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004196{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004197 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004198
4199 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004200
Tejun Heoace2bee2014-02-11 11:52:47 -05004201 mutex_lock(&cgroup_tree_mutex);
Tejun Heo648bb562012-11-19 08:13:36 -08004202 mutex_lock(&cgroup_mutex);
4203
Tejun Heo0adb0702014-02-12 09:29:48 -05004204 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004205
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004206 /* Create the root cgroup state for this subsystem */
4207 ss->root = &cgrp_dfl_root;
4208 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004209 /* We don't handle early failures gracefully */
4210 BUG_ON(IS_ERR(css));
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004211 init_css(css, ss, &cgrp_dfl_root.cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004212
Li Zefane8d55fd2008-04-29 01:00:13 -07004213 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004214 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004215 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004216 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004217 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004218
4219 need_forkexit_callback |= ss->fork || ss->exit;
4220
Li Zefane8d55fd2008-04-29 01:00:13 -07004221 /* At system boot, before all subsystems have been
4222 * registered, no tasks have been forked, so we don't
4223 * need to invoke fork callbacks here. */
4224 BUG_ON(!list_empty(&init_task.tasks));
4225
Tejun Heoae7f1642013-08-13 20:22:50 -04004226 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004227
Tejun Heof392e512014-04-23 11:13:14 -04004228 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
Tejun Heo648bb562012-11-19 08:13:36 -08004229
Ben Blume6a11052010-03-10 15:22:09 -08004230 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004231 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004232}
4233
4234/**
Li Zefana043e3b2008-02-23 15:24:09 -08004235 * cgroup_init_early - cgroup initialization at system boot
4236 *
4237 * Initialize cgroups at system boot, and initialize any
4238 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004239 */
4240int __init cgroup_init_early(void)
4241{
Tejun Heoa2dd4242014-03-19 10:23:55 -04004242 static struct cgroup_sb_opts __initdata opts =
4243 { .flags = CGRP_ROOT_SANE_BEHAVIOR };
Tejun Heo30159ec2013-06-25 11:53:37 -07004244 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004245 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004246
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004247 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004248 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004249
Tejun Heo3ed80a62014-02-08 10:36:58 -05004250 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004251 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004252 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4253 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004254 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004255 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4256 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004257
Tejun Heoaec25022014-02-08 10:36:58 -05004258 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004259 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004260
4261 if (ss->early_init)
4262 cgroup_init_subsys(ss);
4263 }
4264 return 0;
4265}
4266
4267/**
Li Zefana043e3b2008-02-23 15:24:09 -08004268 * cgroup_init - cgroup initialization
4269 *
4270 * Register cgroup filesystem and /proc file, and initialize
4271 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004272 */
4273int __init cgroup_init(void)
4274{
Tejun Heo30159ec2013-06-25 11:53:37 -07004275 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004276 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04004277 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07004278
Tejun Heo2bd59d42014-02-11 11:52:49 -05004279 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004280
Tejun Heo985ed672014-03-19 10:23:53 -04004281 mutex_lock(&cgroup_tree_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004282 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004283
Tejun Heo82fe9b02013-06-25 11:53:37 -07004284 /* Add init_css_set to the hash table */
4285 key = css_set_hash(init_css_set.subsys);
4286 hash_add(css_set_table, &init_css_set.hlist, key);
4287
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004288 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07004289
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004290 mutex_unlock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04004291 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004292
Tejun Heo172a2c062014-03-19 10:23:53 -04004293 for_each_subsys(ss, ssid) {
4294 if (!ss->early_init)
4295 cgroup_init_subsys(ss);
4296
Tejun Heo2d8f2432014-04-23 11:13:15 -04004297 list_add_tail(&init_css_set.e_cset_node[ssid],
4298 &cgrp_dfl_root.cgrp.e_csets[ssid]);
4299
Tejun Heo172a2c062014-03-19 10:23:53 -04004300 /*
4301 * cftype registration needs kmalloc and can't be done
4302 * during early_init. Register base cftypes separately.
4303 */
4304 if (ss->base_cftypes)
4305 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
4306 }
Greg KH676db4a2010-08-05 13:53:35 -07004307
Paul Menageddbcc7e2007-10-18 23:39:30 -07004308 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004309 if (!cgroup_kobj)
4310 return -ENOMEM;
Paul Menagea4243162007-10-18 23:39:35 -07004311
4312 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004313 if (err < 0) {
4314 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004315 return err;
Paul Menagea4243162007-10-18 23:39:35 -07004316 }
4317
4318 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004319 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004320}
Paul Menageb4f48b62007-10-18 23:39:33 -07004321
Tejun Heoe5fca242013-11-22 17:14:39 -05004322static int __init cgroup_wq_init(void)
4323{
4324 /*
4325 * There isn't much point in executing destruction path in
4326 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05004327 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05004328 *
4329 * We would prefer to do this in cgroup_init() above, but that
4330 * is called before init_workqueues(): so leave this until after.
4331 */
Tejun Heo1a115332014-02-12 19:06:19 -05004332 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05004333 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004334
4335 /*
4336 * Used to destroy pidlists and separate to serve as flush domain.
4337 * Cap @max_active to 1 too.
4338 */
4339 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4340 0, 1);
4341 BUG_ON(!cgroup_pidlist_destroy_wq);
4342
Tejun Heoe5fca242013-11-22 17:14:39 -05004343 return 0;
4344}
4345core_initcall(cgroup_wq_init);
4346
Paul Menagea4243162007-10-18 23:39:35 -07004347/*
4348 * proc_cgroup_show()
4349 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4350 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07004351 */
4352
4353/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004354int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004355{
4356 struct pid *pid;
4357 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05004358 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07004359 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004360 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07004361
4362 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05004363 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07004364 if (!buf)
4365 goto out;
4366
4367 retval = -ESRCH;
4368 pid = m->private;
4369 tsk = get_pid_task(pid, PIDTYPE_PID);
4370 if (!tsk)
4371 goto out_free;
4372
4373 retval = 0;
4374
4375 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05004376 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004377
Tejun Heo985ed672014-03-19 10:23:53 -04004378 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004379 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004380 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004381 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004382
Tejun Heoa2dd4242014-03-19 10:23:55 -04004383 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04004384 continue;
4385
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004386 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004387 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04004388 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05004389 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004390 if (strlen(root->name))
4391 seq_printf(m, "%sname=%s", count ? "," : "",
4392 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004393 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004394 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05004395 path = cgroup_path(cgrp, buf, PATH_MAX);
4396 if (!path) {
4397 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07004398 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05004399 }
4400 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07004401 seq_putc(m, '\n');
4402 }
4403
4404out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05004405 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004406 mutex_unlock(&cgroup_mutex);
4407 put_task_struct(tsk);
4408out_free:
4409 kfree(buf);
4410out:
4411 return retval;
4412}
4413
Paul Menagea4243162007-10-18 23:39:35 -07004414/* Display information about each subsystem and each hierarchy */
4415static int proc_cgroupstats_show(struct seq_file *m, void *v)
4416{
Tejun Heo30159ec2013-06-25 11:53:37 -07004417 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004418 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004419
Paul Menage8bab8dd2008-04-04 14:29:57 -07004420 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004421 /*
4422 * ideally we don't want subsystems moving around while we do this.
4423 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4424 * subsys/hierarchy state.
4425 */
Paul Menagea4243162007-10-18 23:39:35 -07004426 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004427
4428 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004429 seq_printf(m, "%s\t%d\t%d\t%d\n",
4430 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05004431 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004432
Paul Menagea4243162007-10-18 23:39:35 -07004433 mutex_unlock(&cgroup_mutex);
4434 return 0;
4435}
4436
4437static int cgroupstats_open(struct inode *inode, struct file *file)
4438{
Al Viro9dce07f2008-03-29 03:07:28 +00004439 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004440}
4441
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004442static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004443 .open = cgroupstats_open,
4444 .read = seq_read,
4445 .llseek = seq_lseek,
4446 .release = single_release,
4447};
4448
Paul Menageb4f48b62007-10-18 23:39:33 -07004449/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05004450 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08004451 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004452 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05004453 * A task is associated with the init_css_set until cgroup_post_fork()
4454 * attaches it to the parent's css_set. Empty cg_list indicates that
4455 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07004456 */
4457void cgroup_fork(struct task_struct *child)
4458{
Tejun Heoeaf797a2014-02-25 10:04:03 -05004459 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004460 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004461}
4462
4463/**
Li Zefana043e3b2008-02-23 15:24:09 -08004464 * cgroup_post_fork - called on a new task after adding it to the task list
4465 * @child: the task in question
4466 *
Tejun Heo5edee612012-10-16 15:03:14 -07004467 * Adds the task to the list running through its css_set if necessary and
4468 * call the subsystem fork() callbacks. Has to be after the task is
4469 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04004470 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07004471 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004472 */
Paul Menage817929e2007-10-18 23:39:36 -07004473void cgroup_post_fork(struct task_struct *child)
4474{
Tejun Heo30159ec2013-06-25 11:53:37 -07004475 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07004476 int i;
4477
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004478 /*
Tejun Heoeaf797a2014-02-25 10:04:03 -05004479 * This may race against cgroup_enable_task_cg_links(). As that
4480 * function sets use_task_css_set_links before grabbing
4481 * tasklist_lock and we just went through tasklist_lock to add
4482 * @child, it's guaranteed that either we see the set
4483 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
4484 * @child during its iteration.
4485 *
4486 * If we won the race, @child is associated with %current's
4487 * css_set. Grabbing css_set_rwsem guarantees both that the
4488 * association is stable, and, on completion of the parent's
4489 * migration, @child is visible in the source of migration or
4490 * already in the destination cgroup. This guarantee is necessary
4491 * when implementing operations which need to migrate all tasks of
4492 * a cgroup to another.
4493 *
4494 * Note that if we lose to cgroup_enable_task_cg_links(), @child
4495 * will remain in init_css_set. This is safe because all tasks are
4496 * in the init_css_set before cg_links is enabled and there's no
4497 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004498 */
Paul Menage817929e2007-10-18 23:39:36 -07004499 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05004500 struct css_set *cset;
4501
Tejun Heo96d365e2014-02-13 06:58:40 -05004502 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05004503 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05004504 if (list_empty(&child->cg_list)) {
4505 rcu_assign_pointer(child->cgroups, cset);
4506 list_add(&child->cg_list, &cset->tasks);
4507 get_css_set(cset);
4508 }
Tejun Heo96d365e2014-02-13 06:58:40 -05004509 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004510 }
Tejun Heo5edee612012-10-16 15:03:14 -07004511
4512 /*
4513 * Call ss->fork(). This must happen after @child is linked on
4514 * css_set; otherwise, @child might change state between ->fork()
4515 * and addition to css_set.
4516 */
4517 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004518 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07004519 if (ss->fork)
4520 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07004521 }
Paul Menage817929e2007-10-18 23:39:36 -07004522}
Tejun Heo5edee612012-10-16 15:03:14 -07004523
Paul Menage817929e2007-10-18 23:39:36 -07004524/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004525 * cgroup_exit - detach cgroup from exiting task
4526 * @tsk: pointer to task_struct of exiting process
4527 *
4528 * Description: Detach cgroup from @tsk and release it.
4529 *
4530 * Note that cgroups marked notify_on_release force every task in
4531 * them to take the global cgroup_mutex mutex when exiting.
4532 * This could impact scaling on very large systems. Be reluctant to
4533 * use notify_on_release cgroups where very high task exit scaling
4534 * is required on large systems.
4535 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05004536 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
4537 * call cgroup_exit() while the task is still competent to handle
4538 * notify_on_release(), then leave the task attached to the root cgroup in
4539 * each hierarchy for the remainder of its exit. No need to bother with
4540 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08004541 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07004542 */
Li Zefan1ec41832014-03-28 15:22:19 +08004543void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07004544{
Tejun Heo30159ec2013-06-25 11:53:37 -07004545 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07004546 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05004547 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004548 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004549
4550 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05004551 * Unlink from @tsk from its css_set. As migration path can't race
4552 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07004553 */
4554 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05004555 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05004556 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05004557 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05004558 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07004559 }
4560
Paul Menageb4f48b62007-10-18 23:39:33 -07004561 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07004562 cset = task_css_set(tsk);
4563 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004564
Li Zefan1ec41832014-03-28 15:22:19 +08004565 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004566 /* see cgroup_post_fork() for details */
4567 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004568 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04004569 struct cgroup_subsys_state *old_css = cset->subsys[i];
4570 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07004571
Tejun Heoeb954192013-08-08 20:11:23 -04004572 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004573 }
4574 }
4575 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004576
Tejun Heoeaf797a2014-02-25 10:04:03 -05004577 if (put_cset)
4578 put_css_set(cset, true);
Paul Menageb4f48b62007-10-18 23:39:33 -07004579}
Paul Menage697f4162007-10-18 23:39:34 -07004580
Paul Menagebd89aab2007-10-18 23:40:44 -07004581static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004582{
Li Zefanf50daa72013-03-01 15:06:07 +08004583 if (cgroup_is_releasable(cgrp) &&
Tejun Heo6f3d828f02013-06-12 21:04:55 -07004584 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
Li Zefanf50daa72013-03-01 15:06:07 +08004585 /*
4586 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07004587 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08004588 * it now
4589 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004590 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08004591
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004592 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07004593 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07004594 list_empty(&cgrp->release_list)) {
4595 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004596 need_schedule_work = 1;
4597 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004598 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004599 if (need_schedule_work)
4600 schedule_work(&release_agent_work);
4601 }
4602}
4603
Paul Menage81a6a5c2007-10-18 23:39:38 -07004604/*
4605 * Notify userspace when a cgroup is released, by running the
4606 * configured release agent with the name of the cgroup (path
4607 * relative to the root of cgroup file system) as the argument.
4608 *
4609 * Most likely, this user command will try to rmdir this cgroup.
4610 *
4611 * This races with the possibility that some other task will be
4612 * attached to this cgroup before it is removed, or that some other
4613 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4614 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4615 * unused, and this cgroup will be reprieved from its death sentence,
4616 * to continue to serve a useful existence. Next time it's released,
4617 * we will get notified again, if it still has 'notify_on_release' set.
4618 *
4619 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4620 * means only wait until the task is successfully execve()'d. The
4621 * separate release agent task is forked by call_usermodehelper(),
4622 * then control in this thread returns here, without waiting for the
4623 * release agent task. We don't bother to wait because the caller of
4624 * this routine has no use for the exit status of the release agent
4625 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004626 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004627static void cgroup_release_agent(struct work_struct *work)
4628{
4629 BUG_ON(work != &release_agent_work);
4630 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004631 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004632 while (!list_empty(&release_list)) {
4633 char *argv[3], *envp[3];
4634 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05004635 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07004636 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004637 struct cgroup,
4638 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004639 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004640 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05004641 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004642 if (!pathbuf)
4643 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05004644 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
4645 if (!path)
Paul Menagee788e062008-07-25 01:46:59 -07004646 goto continue_free;
4647 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4648 if (!agentbuf)
4649 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004650
4651 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004652 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05004653 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004654 argv[i] = NULL;
4655
4656 i = 0;
4657 /* minimal command environment */
4658 envp[i++] = "HOME=/";
4659 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4660 envp[i] = NULL;
4661
4662 /* Drop the lock while we invoke the usermode helper,
4663 * since the exec could involve hitting disk and hence
4664 * be a slow process */
4665 mutex_unlock(&cgroup_mutex);
4666 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004667 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004668 continue_free:
4669 kfree(pathbuf);
4670 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004671 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004672 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004673 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004674 mutex_unlock(&cgroup_mutex);
4675}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004676
4677static int __init cgroup_disable(char *str)
4678{
Tejun Heo30159ec2013-06-25 11:53:37 -07004679 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004680 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07004681 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004682
4683 while ((token = strsep(&str, ",")) != NULL) {
4684 if (!*token)
4685 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004686
Tejun Heo3ed80a62014-02-08 10:36:58 -05004687 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004688 if (!strcmp(token, ss->name)) {
4689 ss->disabled = 1;
4690 printk(KERN_INFO "Disabling %s control group"
4691 " subsystem\n", ss->name);
4692 break;
4693 }
4694 }
4695 }
4696 return 1;
4697}
4698__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004699
Tejun Heob77d7b62013-08-13 11:01:54 -04004700/**
Tejun Heo5a17f542014-02-11 11:52:47 -05004701 * css_tryget_from_dir - get corresponding css from the dentry of a cgroup dir
Tejun Heo35cf0832013-08-26 18:40:56 -04004702 * @dentry: directory dentry of interest
4703 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04004704 *
Tejun Heo5a17f542014-02-11 11:52:47 -05004705 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
4706 * to get the corresponding css and return it. If such css doesn't exist
4707 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02004708 */
Tejun Heo5a17f542014-02-11 11:52:47 -05004709struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry,
4710 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004711{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004712 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
4713 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004714 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004715
Tejun Heo35cf0832013-08-26 18:40:56 -04004716 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004717 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4718 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004719 return ERR_PTR(-EBADF);
4720
Tejun Heo5a17f542014-02-11 11:52:47 -05004721 rcu_read_lock();
4722
Tejun Heo2bd59d42014-02-11 11:52:49 -05004723 /*
4724 * This path doesn't originate from kernfs and @kn could already
4725 * have been or be removed at any point. @kn->priv is RCU
4726 * protected for this access. See destroy_locked() for details.
4727 */
4728 cgrp = rcu_dereference(kn->priv);
4729 if (cgrp)
4730 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05004731
4732 if (!css || !css_tryget(css))
4733 css = ERR_PTR(-ENOENT);
4734
4735 rcu_read_unlock();
4736 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004737}
Stephane Eraniane5d13672011-02-14 11:20:01 +02004738
Li Zefan1cb650b2013-08-19 10:05:24 +08004739/**
4740 * css_from_id - lookup css by id
4741 * @id: the cgroup id
4742 * @ss: cgroup subsys to be looked into
4743 *
4744 * Returns the css if there's valid one with @id, otherwise returns NULL.
4745 * Should be called under rcu_read_lock().
4746 */
4747struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
4748{
4749 struct cgroup *cgrp;
4750
Tejun Heoace2bee2014-02-11 11:52:47 -05004751 cgroup_assert_mutexes_or_rcu_locked();
Li Zefan1cb650b2013-08-19 10:05:24 +08004752
4753 cgrp = idr_find(&ss->root->cgroup_idr, id);
4754 if (cgrp)
Tejun Heod1625962013-08-27 14:27:23 -04004755 return cgroup_css(cgrp, ss);
Li Zefan1cb650b2013-08-19 10:05:24 +08004756 return NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004757}
4758
Paul Menagefe693432009-09-23 15:56:20 -07004759#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04004760static struct cgroup_subsys_state *
4761debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07004762{
4763 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4764
4765 if (!css)
4766 return ERR_PTR(-ENOMEM);
4767
4768 return css;
4769}
4770
Tejun Heoeb954192013-08-08 20:11:23 -04004771static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07004772{
Tejun Heoeb954192013-08-08 20:11:23 -04004773 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07004774}
4775
Tejun Heo182446d2013-08-08 20:11:24 -04004776static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
4777 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004778{
Tejun Heo182446d2013-08-08 20:11:24 -04004779 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07004780}
4781
Tejun Heo182446d2013-08-08 20:11:24 -04004782static u64 current_css_set_read(struct cgroup_subsys_state *css,
4783 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004784{
4785 return (u64)(unsigned long)current->cgroups;
4786}
4787
Tejun Heo182446d2013-08-08 20:11:24 -04004788static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08004789 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004790{
4791 u64 count;
4792
4793 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07004794 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07004795 rcu_read_unlock();
4796 return count;
4797}
4798
Tejun Heo2da8ca82013-12-05 12:28:04 -05004799static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004800{
Tejun Heo69d02062013-06-12 21:04:50 -07004801 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07004802 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05004803 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07004804
Tejun Heoe61734c2014-02-12 09:29:50 -05004805 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
4806 if (!name_buf)
4807 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07004808
Tejun Heo96d365e2014-02-13 06:58:40 -05004809 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07004810 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07004811 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07004812 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004813 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07004814
Tejun Heoa2dd4242014-03-19 10:23:55 -04004815 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004816 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04004817 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07004818 }
4819 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05004820 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05004821 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07004822 return 0;
4823}
4824
4825#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05004826static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004827{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004828 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07004829 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07004830
Tejun Heo96d365e2014-02-13 06:58:40 -05004831 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04004832 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07004833 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07004834 struct task_struct *task;
4835 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05004836
Tejun Heo5abb8852013-06-12 21:04:49 -07004837 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05004838
Tejun Heo5abb8852013-06-12 21:04:49 -07004839 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05004840 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
4841 goto overflow;
4842 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07004843 }
Tejun Heoc7561122014-02-25 10:04:01 -05004844
4845 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
4846 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
4847 goto overflow;
4848 seq_printf(seq, " task %d\n", task_pid_vnr(task));
4849 }
4850 continue;
4851 overflow:
4852 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07004853 }
Tejun Heo96d365e2014-02-13 06:58:40 -05004854 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07004855 return 0;
4856}
4857
Tejun Heo182446d2013-08-08 20:11:24 -04004858static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004859{
Tejun Heo182446d2013-08-08 20:11:24 -04004860 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07004861}
4862
4863static struct cftype debug_files[] = {
4864 {
Paul Menagefe693432009-09-23 15:56:20 -07004865 .name = "taskcount",
4866 .read_u64 = debug_taskcount_read,
4867 },
4868
4869 {
4870 .name = "current_css_set",
4871 .read_u64 = current_css_set_read,
4872 },
4873
4874 {
4875 .name = "current_css_set_refcount",
4876 .read_u64 = current_css_set_refcount_read,
4877 },
4878
4879 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004880 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004881 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004882 },
4883
4884 {
4885 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004886 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004887 },
4888
4889 {
Paul Menagefe693432009-09-23 15:56:20 -07004890 .name = "releasable",
4891 .read_u64 = releasable_read,
4892 },
Paul Menagefe693432009-09-23 15:56:20 -07004893
Tejun Heo4baf6e32012-04-01 12:09:55 -07004894 { } /* terminate */
4895};
Paul Menagefe693432009-09-23 15:56:20 -07004896
Tejun Heo073219e2014-02-08 10:36:58 -05004897struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08004898 .css_alloc = debug_css_alloc,
4899 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07004900 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07004901};
4902#endif /* CONFIG_CGROUP_DEBUG */