blob: 5def4a8004257e0737c6ba334ad043e3e837b7b8 [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
80/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080081 * cgroup_mutex is the master lock. Any modification to cgroup or its
82 * hierarchy must be performed while holding it.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083 */
Tejun Heo22194492013-04-07 09:29:51 -070084#ifdef CONFIG_PROVE_RCU
85DEFINE_MUTEX(cgroup_mutex);
Tejun Heo8af01f52013-08-08 20:11:22 -040086EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for lockdep */
Tejun Heo22194492013-04-07 09:29:51 -070087#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070088static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo22194492013-04-07 09:29:51 -070089#endif
90
Tejun Heo69e943b2014-02-08 10:36:58 -050091/*
92 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
93 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
94 */
95static DEFINE_SPINLOCK(release_agent_path_lock);
96
Tejun Heoace2bee2014-02-11 11:52:47 -050097#define cgroup_assert_mutexes_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -050098 rcu_lockdep_assert(rcu_read_lock_held() || \
Tejun Heoace2bee2014-02-11 11:52:47 -050099 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500100 lockdep_is_held(&cgroup_mutex), \
Tejun Heoace2bee2014-02-11 11:52:47 -0500101 "cgroup_[tree_]mutex or RCU read lock required");
Tejun Heo87fb54f2013-12-06 15:11:55 -0500102
Ben Blumaae8aab2010-03-10 15:22:07 -0800103/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500104 * cgroup destruction makes heavy use of work items and there can be a lot
105 * of concurrent destructions. Use a separate workqueue so that cgroup
106 * destruction work items don't end up filling up max_active of system_wq
107 * which may lead to deadlock.
108 */
109static struct workqueue_struct *cgroup_destroy_wq;
110
111/*
Tejun Heob1a21362013-11-29 10:42:58 -0500112 * pidlist destructions need to be flushed on cgroup destruction. Use a
113 * separate workqueue as flush domain.
114 */
115static struct workqueue_struct *cgroup_pidlist_destroy_wq;
116
Tejun Heo3ed80a62014-02-08 10:36:58 -0500117/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500118#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500119static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700120#include <linux/cgroup_subsys.h>
121};
Tejun Heo073219e2014-02-08 10:36:58 -0500122#undef SUBSYS
123
124/* array of cgroup subsystem names */
125#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
126static const char *cgroup_subsys_name[] = {
127#include <linux/cgroup_subsys.h>
128};
129#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700130
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131/*
Tejun Heo9871bf92013-06-24 15:21:47 -0700132 * The dummy hierarchy, reserved for the subsystems that are otherwise
133 * unattached - it never has more than a single cgroup, and all tasks are
134 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700135 */
Tejun Heo9871bf92013-06-24 15:21:47 -0700136static struct cgroupfs_root cgroup_dummy_root;
137
138/* dummy_top is a shorthand for the dummy hierarchy's top cgroup */
139static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700140
141/* The list of hierarchy roots */
142
Tejun Heo9871bf92013-06-24 15:21:47 -0700143static LIST_HEAD(cgroup_roots);
144static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700145
Tejun Heo3417ae12014-02-08 10:37:01 -0500146/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700147static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700148
Li Zefan794611a2013-06-18 18:53:53 +0800149/*
150 * Assign a monotonically increasing serial number to cgroups. It
151 * guarantees cgroups with bigger numbers are newer than those with smaller
152 * numbers. Also, as cgroups are always appended to the parent's
153 * ->children list, it guarantees that sibling cgroups are always sorted in
Tejun Heo00356bd2013-06-18 11:14:22 -0700154 * the ascending serial number order on the list. Protected by
155 * cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800156 */
Tejun Heo00356bd2013-06-18 11:14:22 -0700157static u64 cgroup_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800158
Paul Menageddbcc7e2007-10-18 23:39:30 -0700159/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800160 * check for fork/exit handlers to call. This avoids us having to do
161 * extra work in the fork/exit path if none of the subsystems need to
162 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700163 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700164static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700165
Tejun Heo628f7cd2013-06-28 16:24:11 -0700166static struct cftype cgroup_base_files[];
167
Tejun Heo59f52962014-02-11 11:52:49 -0500168static void cgroup_put(struct cgroup *cgrp);
Tejun Heof2e85d52014-02-11 11:52:49 -0500169static int rebind_subsystems(struct cgroupfs_root *root,
170 unsigned long added_mask, unsigned removed_mask);
Tejun Heof20104d2013-08-13 20:22:50 -0400171static void cgroup_destroy_css_killed(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800172static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400173static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
174 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500175static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800176
Tejun Heo95109b62013-08-08 20:11:27 -0400177/**
178 * cgroup_css - obtain a cgroup's css for the specified subsystem
179 * @cgrp: the cgroup of interest
Tejun Heoca8bdca2013-08-26 18:40:56 -0400180 * @ss: the subsystem of interest (%NULL returns the dummy_css)
Tejun Heo95109b62013-08-08 20:11:27 -0400181 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400182 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
183 * function must be called either under cgroup_mutex or rcu_read_lock() and
184 * the caller is responsible for pinning the returned css if it wants to
185 * keep accessing it outside the said locks. This function may return
186 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400187 */
188static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400189 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400190{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400191 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500192 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500193 lockdep_is_held(&cgroup_tree_mutex) ||
194 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400195 else
196 return &cgrp->dummy_css;
Tejun Heo95109b62013-08-08 20:11:27 -0400197}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700198
Paul Menageddbcc7e2007-10-18 23:39:30 -0700199/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700200static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700201{
Tejun Heo54766d42013-06-12 21:04:53 -0700202 return test_bit(CGRP_DEAD, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700203}
204
Tejun Heo59f52962014-02-11 11:52:49 -0500205struct cgroup_subsys_state *seq_css(struct seq_file *seq)
206{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500207 struct kernfs_open_file *of = seq->private;
208 struct cgroup *cgrp = of->kn->parent->priv;
209 struct cftype *cft = seq_cft(seq);
210
211 /*
212 * This is open and unprotected implementation of cgroup_css().
213 * seq_css() is only called from a kernfs file operation which has
214 * an active reference on the file. Because all the subsystem
215 * files are drained before a css is disassociated with a cgroup,
216 * the matching css from the cgroup's subsys table is guaranteed to
217 * be and stay valid until the enclosing operation is complete.
218 */
219 if (cft->ss)
220 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
221 else
222 return &cgrp->dummy_css;
Tejun Heo59f52962014-02-11 11:52:49 -0500223}
224EXPORT_SYMBOL_GPL(seq_css);
225
Li Zefan78574cf2013-04-08 19:00:38 -0700226/**
227 * cgroup_is_descendant - test ancestry
228 * @cgrp: the cgroup to be tested
229 * @ancestor: possible ancestor of @cgrp
230 *
231 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
232 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
233 * and @ancestor are accessible.
234 */
235bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
236{
237 while (cgrp) {
238 if (cgrp == ancestor)
239 return true;
240 cgrp = cgrp->parent;
241 }
242 return false;
243}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700244
Adrian Bunke9685a02008-02-07 00:13:46 -0800245static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700246{
247 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700248 (1 << CGRP_RELEASABLE) |
249 (1 << CGRP_NOTIFY_ON_RELEASE);
250 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700251}
252
Adrian Bunke9685a02008-02-07 00:13:46 -0800253static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700254{
Paul Menagebd89aab2007-10-18 23:40:44 -0700255 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700256}
257
Tejun Heo30159ec2013-06-25 11:53:37 -0700258/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500259 * for_each_css - iterate all css's of a cgroup
260 * @css: the iteration cursor
261 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
262 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700263 *
264 * Should be called under cgroup_mutex.
265 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500266#define for_each_css(css, ssid, cgrp) \
267 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
268 if (!((css) = rcu_dereference_check( \
269 (cgrp)->subsys[(ssid)], \
Tejun Heoace2bee2014-02-11 11:52:47 -0500270 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo1c6727a2013-12-06 15:11:56 -0500271 lockdep_is_held(&cgroup_mutex)))) { } \
272 else
273
274/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500275 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700276 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500277 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700278 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500279#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500280 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
281 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700282
Tejun Heo5549c492013-06-24 15:21:48 -0700283/* iterate across the active hierarchies */
284#define for_each_active_root(root) \
285 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700286
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700287/**
288 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
289 * @cgrp: the cgroup to be checked for liveness
290 *
Tejun Heo47cfcd02013-04-07 09:29:51 -0700291 * On success, returns true; the mutex should be later unlocked. On
292 * failure returns false with no lock held.
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700293 */
Tejun Heob9777cf2013-04-07 09:29:51 -0700294static bool cgroup_lock_live_group(struct cgroup *cgrp)
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700295{
296 mutex_lock(&cgroup_mutex);
Tejun Heo54766d42013-06-12 21:04:53 -0700297 if (cgroup_is_dead(cgrp)) {
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700298 mutex_unlock(&cgroup_mutex);
299 return false;
300 }
301 return true;
302}
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700303
Paul Menage81a6a5c2007-10-18 23:39:38 -0700304/* the list of cgroups eligible for automatic release. Protected by
305 * release_list_lock */
306static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200307static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700308static void cgroup_release_agent(struct work_struct *work);
309static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700310static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700311
Tejun Heo69d02062013-06-12 21:04:50 -0700312/*
313 * A cgroup can be associated with multiple css_sets as different tasks may
314 * belong to different cgroups on different hierarchies. In the other
315 * direction, a css_set is naturally associated with multiple cgroups.
316 * This M:N relationship is represented by the following link structure
317 * which exists for each association and allows traversing the associations
318 * from both sides.
319 */
320struct cgrp_cset_link {
321 /* the cgroup and css_set this link associates */
322 struct cgroup *cgrp;
323 struct css_set *cset;
324
325 /* list of cgrp_cset_links anchored at cgrp->cset_links */
326 struct list_head cset_link;
327
328 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
329 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700330};
331
332/* The default css_set - used by init and its children prior to any
333 * hierarchies being mounted. It contains a pointer to the root state
334 * for each subsystem. Also used to anchor the list of css_sets. Not
335 * reference-counted, to improve performance when child cgroups
336 * haven't been created.
337 */
338
339static struct css_set init_css_set;
Tejun Heo69d02062013-06-12 21:04:50 -0700340static struct cgrp_cset_link init_cgrp_cset_link;
Paul Menage817929e2007-10-18 23:39:36 -0700341
Tejun Heo0942eee2013-08-08 20:11:26 -0400342/*
Tejun Heo96d365e2014-02-13 06:58:40 -0500343 * css_set_rwsem protects the list of css_set objects, and the chain of
344 * tasks off each css_set.
Tejun Heo0942eee2013-08-08 20:11:26 -0400345 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500346static DECLARE_RWSEM(css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700347static int css_set_count;
348
Paul Menage7717f7b2009-09-23 15:56:22 -0700349/*
350 * hash table for cgroup groups. This improves the performance to find
351 * an existing css_set. This hash doesn't (currently) take into
352 * account cgroups in empty hierarchies.
353 */
Li Zefan472b1052008-04-29 01:00:11 -0700354#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800355static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700356
Li Zefan0ac801f2013-01-10 11:49:27 +0800357static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700358{
Li Zefan0ac801f2013-01-10 11:49:27 +0800359 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700360 struct cgroup_subsys *ss;
361 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700362
Tejun Heo30159ec2013-06-25 11:53:37 -0700363 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800364 key += (unsigned long)css[i];
365 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700366
Li Zefan0ac801f2013-01-10 11:49:27 +0800367 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700368}
369
Tejun Heo89c55092014-02-13 06:58:40 -0500370static void put_css_set_locked(struct css_set *cset, bool taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700371{
Tejun Heo69d02062013-06-12 21:04:50 -0700372 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo5abb8852013-06-12 21:04:49 -0700373
Tejun Heo89c55092014-02-13 06:58:40 -0500374 lockdep_assert_held(&css_set_rwsem);
375
376 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700377 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700378
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700379 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo5abb8852013-06-12 21:04:49 -0700380 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700381 css_set_count--;
382
Tejun Heo69d02062013-06-12 21:04:50 -0700383 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700384 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700385
Tejun Heo69d02062013-06-12 21:04:50 -0700386 list_del(&link->cset_link);
387 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800388
Tejun Heo96d365e2014-02-13 06:58:40 -0500389 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo6f3d828f02013-06-12 21:04:55 -0700390 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700391 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700392 set_bit(CGRP_RELEASABLE, &cgrp->flags);
393 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700394 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700395
396 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700397 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700398
Tejun Heo5abb8852013-06-12 21:04:49 -0700399 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700400}
401
Tejun Heo89c55092014-02-13 06:58:40 -0500402static void put_css_set(struct css_set *cset, bool taskexit)
403{
404 /*
405 * Ensure that the refcount doesn't hit zero while any readers
406 * can see it. Similar to atomic_dec_and_lock(), but for an
407 * rwlock
408 */
409 if (atomic_add_unless(&cset->refcount, -1, 1))
410 return;
411
412 down_write(&css_set_rwsem);
413 put_css_set_locked(cset, taskexit);
414 up_write(&css_set_rwsem);
415}
416
Paul Menage817929e2007-10-18 23:39:36 -0700417/*
418 * refcounted get/put for css_set objects
419 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700420static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700421{
Tejun Heo5abb8852013-06-12 21:04:49 -0700422 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700423}
424
Tejun Heob326f9d2013-06-24 15:21:48 -0700425/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700426 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700427 * @cset: candidate css_set being tested
428 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700429 * @new_cgrp: cgroup that's being entered by the task
430 * @template: desired set of css pointers in css_set (pre-calculated)
431 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800432 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700433 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
434 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700435static bool compare_css_sets(struct css_set *cset,
436 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700437 struct cgroup *new_cgrp,
438 struct cgroup_subsys_state *template[])
439{
440 struct list_head *l1, *l2;
441
Tejun Heo5abb8852013-06-12 21:04:49 -0700442 if (memcmp(template, cset->subsys, sizeof(cset->subsys))) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700443 /* Not all subsystems matched */
444 return false;
445 }
446
447 /*
448 * Compare cgroup pointers in order to distinguish between
449 * different cgroups in heirarchies with no subsystems. We
450 * could get by with just this check alone (and skip the
451 * memcmp above) but on most setups the memcmp check will
452 * avoid the need for this more expensive check on almost all
453 * candidates.
454 */
455
Tejun Heo69d02062013-06-12 21:04:50 -0700456 l1 = &cset->cgrp_links;
457 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700458 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700459 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700460 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700461
462 l1 = l1->next;
463 l2 = l2->next;
464 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700465 if (l1 == &cset->cgrp_links) {
466 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700467 break;
468 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700469 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700470 }
471 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700472 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
473 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
474 cgrp1 = link1->cgrp;
475 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700476 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700477 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700478
479 /*
480 * If this hierarchy is the hierarchy of the cgroup
481 * that's changing, then we need to check that this
482 * css_set points to the new cgroup; if it's any other
483 * hierarchy, then this css_set should point to the
484 * same cgroup as the old css_set.
485 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700486 if (cgrp1->root == new_cgrp->root) {
487 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700488 return false;
489 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700490 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700491 return false;
492 }
493 }
494 return true;
495}
496
Tejun Heob326f9d2013-06-24 15:21:48 -0700497/**
498 * find_existing_css_set - init css array and find the matching css_set
499 * @old_cset: the css_set that we're using before the cgroup transition
500 * @cgrp: the cgroup that we're moving into
501 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700502 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700503static struct css_set *find_existing_css_set(struct css_set *old_cset,
504 struct cgroup *cgrp,
505 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700506{
Paul Menagebd89aab2007-10-18 23:40:44 -0700507 struct cgroupfs_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700508 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700509 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800510 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700511 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700512
Ben Blumaae8aab2010-03-10 15:22:07 -0800513 /*
514 * Build the set of subsystem state objects that we want to see in the
515 * new css_set. while subsystems can change globally, the entries here
516 * won't change, so no need for locking.
517 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700518 for_each_subsys(ss, i) {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -0400519 if (root->subsys_mask & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700520 /* Subsystem is in this hierarchy. So we want
521 * the subsystem state from the new
522 * cgroup */
Tejun Heoca8bdca2013-08-26 18:40:56 -0400523 template[i] = cgroup_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700524 } else {
525 /* Subsystem is not in this hierarchy, so we
526 * don't want to change the subsystem state */
Tejun Heo5abb8852013-06-12 21:04:49 -0700527 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700528 }
529 }
530
Li Zefan0ac801f2013-01-10 11:49:27 +0800531 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700532 hash_for_each_possible(css_set_table, cset, hlist, key) {
533 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700534 continue;
535
536 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700537 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700538 }
Paul Menage817929e2007-10-18 23:39:36 -0700539
540 /* No existing cgroup group matched */
541 return NULL;
542}
543
Tejun Heo69d02062013-06-12 21:04:50 -0700544static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700545{
Tejun Heo69d02062013-06-12 21:04:50 -0700546 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700547
Tejun Heo69d02062013-06-12 21:04:50 -0700548 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
549 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700550 kfree(link);
551 }
552}
553
Tejun Heo69d02062013-06-12 21:04:50 -0700554/**
555 * allocate_cgrp_cset_links - allocate cgrp_cset_links
556 * @count: the number of links to allocate
557 * @tmp_links: list_head the allocated links are put on
558 *
559 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
560 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700561 */
Tejun Heo69d02062013-06-12 21:04:50 -0700562static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700563{
Tejun Heo69d02062013-06-12 21:04:50 -0700564 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700565 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700566
567 INIT_LIST_HEAD(tmp_links);
568
Li Zefan36553432008-07-29 22:33:19 -0700569 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700570 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700571 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700572 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700573 return -ENOMEM;
574 }
Tejun Heo69d02062013-06-12 21:04:50 -0700575 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700576 }
577 return 0;
578}
579
Li Zefanc12f65d2009-01-07 18:07:42 -0800580/**
581 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700582 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700583 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800584 * @cgrp: the destination cgroup
585 */
Tejun Heo69d02062013-06-12 21:04:50 -0700586static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
587 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800588{
Tejun Heo69d02062013-06-12 21:04:50 -0700589 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800590
Tejun Heo69d02062013-06-12 21:04:50 -0700591 BUG_ON(list_empty(tmp_links));
592 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
593 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700594 link->cgrp = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700595 list_move(&link->cset_link, &cgrp->cset_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700596 /*
597 * Always add links to the tail of the list so that the list
598 * is sorted by order of hierarchy creation
599 */
Tejun Heo69d02062013-06-12 21:04:50 -0700600 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800601}
602
Tejun Heob326f9d2013-06-24 15:21:48 -0700603/**
604 * find_css_set - return a new css_set with one cgroup updated
605 * @old_cset: the baseline css_set
606 * @cgrp: the cgroup to be updated
607 *
608 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
609 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700610 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700611static struct css_set *find_css_set(struct css_set *old_cset,
612 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700613{
Tejun Heob326f9d2013-06-24 15:21:48 -0700614 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700615 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700616 struct list_head tmp_links;
617 struct cgrp_cset_link *link;
Li Zefan0ac801f2013-01-10 11:49:27 +0800618 unsigned long key;
Li Zefan472b1052008-04-29 01:00:11 -0700619
Tejun Heob326f9d2013-06-24 15:21:48 -0700620 lockdep_assert_held(&cgroup_mutex);
621
Paul Menage817929e2007-10-18 23:39:36 -0700622 /* First see if we already have a cgroup group that matches
623 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500624 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700625 cset = find_existing_css_set(old_cset, cgrp, template);
626 if (cset)
627 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500628 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700629
Tejun Heo5abb8852013-06-12 21:04:49 -0700630 if (cset)
631 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700632
Tejun Heof4f4be22013-06-12 21:04:51 -0700633 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700634 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700635 return NULL;
636
Tejun Heo69d02062013-06-12 21:04:50 -0700637 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700638 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700639 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700640 return NULL;
641 }
642
Tejun Heo5abb8852013-06-12 21:04:49 -0700643 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700644 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700645 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500646 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -0500647 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700648 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700649
650 /* Copy the set of subsystem state objects generated in
651 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700652 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700653
Tejun Heo96d365e2014-02-13 06:58:40 -0500654 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700655 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700656 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700657 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700658
Paul Menage7717f7b2009-09-23 15:56:22 -0700659 if (c->root == cgrp->root)
660 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700661 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700662 }
Paul Menage817929e2007-10-18 23:39:36 -0700663
Tejun Heo69d02062013-06-12 21:04:50 -0700664 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700665
Paul Menage817929e2007-10-18 23:39:36 -0700666 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700667
668 /* Add this cgroup group to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700669 key = css_set_hash(cset->subsys);
670 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700671
Tejun Heo96d365e2014-02-13 06:58:40 -0500672 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700673
Tejun Heo5abb8852013-06-12 21:04:49 -0700674 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700675}
676
Tejun Heo2bd59d42014-02-11 11:52:49 -0500677static struct cgroupfs_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
678{
679 struct cgroup *top_cgrp = kf_root->kn->priv;
680
681 return top_cgrp->root;
682}
683
Tejun Heof2e85d52014-02-11 11:52:49 -0500684static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end)
685{
686 int id;
687
688 lockdep_assert_held(&cgroup_mutex);
689
690 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end,
691 GFP_KERNEL);
692 if (id < 0)
693 return id;
694
695 root->hierarchy_id = id;
696 return 0;
697}
698
699static void cgroup_exit_root_id(struct cgroupfs_root *root)
700{
701 lockdep_assert_held(&cgroup_mutex);
702
703 if (root->hierarchy_id) {
704 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
705 root->hierarchy_id = 0;
706 }
707}
708
709static void cgroup_free_root(struct cgroupfs_root *root)
710{
711 if (root) {
712 /* hierarhcy ID shoulid already have been released */
713 WARN_ON_ONCE(root->hierarchy_id);
714
715 idr_destroy(&root->cgroup_idr);
716 kfree(root);
717 }
718}
719
Tejun Heo776f02f2014-02-12 09:29:50 -0500720static void cgroup_destroy_root(struct cgroupfs_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500721{
Tejun Heof2e85d52014-02-11 11:52:49 -0500722 struct cgroup *cgrp = &root->top_cgroup;
723 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500724
Tejun Heo2bd59d42014-02-11 11:52:49 -0500725 mutex_lock(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500726 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500727
Tejun Heo776f02f2014-02-12 09:29:50 -0500728 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heof2e85d52014-02-11 11:52:49 -0500729 BUG_ON(!list_empty(&cgrp->children));
730
Tejun Heof2e85d52014-02-11 11:52:49 -0500731 /* Rebind all subsystems back to the default hierarchy */
Tejun Heo35585572014-02-13 06:58:38 -0500732 WARN_ON(rebind_subsystems(root, 0, root->subsys_mask));
Tejun Heof2e85d52014-02-11 11:52:49 -0500733
734 /*
735 * Release all the links from cset_links to this hierarchy's
736 * root cgroup
737 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500738 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500739
740 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
741 list_del(&link->cset_link);
742 list_del(&link->cgrp_link);
743 kfree(link);
744 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500745 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500746
747 if (!list_empty(&root->root_list)) {
748 list_del(&root->root_list);
749 cgroup_root_count--;
750 }
751
752 cgroup_exit_root_id(root);
753
754 mutex_unlock(&cgroup_mutex);
755 mutex_unlock(&cgroup_tree_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500756
Tejun Heo2bd59d42014-02-11 11:52:49 -0500757 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500758 cgroup_free_root(root);
759}
760
Paul Menageddbcc7e2007-10-18 23:39:30 -0700761/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700762 * Return the cgroup for "task" from the given hierarchy. Must be
Tejun Heo96d365e2014-02-13 06:58:40 -0500763 * called with cgroup_mutex and css_set_rwsem held.
Paul Menage7717f7b2009-09-23 15:56:22 -0700764 */
765static struct cgroup *task_cgroup_from_root(struct task_struct *task,
766 struct cgroupfs_root *root)
767{
Tejun Heo5abb8852013-06-12 21:04:49 -0700768 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700769 struct cgroup *res = NULL;
770
Tejun Heo96d365e2014-02-13 06:58:40 -0500771 lockdep_assert_held(&cgroup_mutex);
772 lockdep_assert_held(&css_set_rwsem);
773
Paul Menage7717f7b2009-09-23 15:56:22 -0700774 /*
775 * No need to lock the task - since we hold cgroup_mutex the
776 * task can't change groups, so the only thing that can happen
777 * is that it exits and its css is set back to init_css_set.
778 */
Tejun Heoa8ad8052013-06-21 15:52:04 -0700779 cset = task_css_set(task);
Tejun Heo5abb8852013-06-12 21:04:49 -0700780 if (cset == &init_css_set) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700781 res = &root->top_cgroup;
782 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700783 struct cgrp_cset_link *link;
784
785 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700786 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700787
Paul Menage7717f7b2009-09-23 15:56:22 -0700788 if (c->root == root) {
789 res = c;
790 break;
791 }
792 }
793 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500794
Paul Menage7717f7b2009-09-23 15:56:22 -0700795 BUG_ON(!res);
796 return res;
797}
798
799/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700800 * There is one global cgroup mutex. We also require taking
801 * task_lock() when dereferencing a task's cgroup subsys pointers.
802 * See "The task_lock() exception", at the end of this comment.
803 *
804 * A task must hold cgroup_mutex to modify cgroups.
805 *
806 * Any task can increment and decrement the count field without lock.
807 * So in general, code holding cgroup_mutex can't rely on the count
808 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800809 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700810 * means that no tasks are currently attached, therefore there is no
811 * way a task attached to that cgroup can fork (the other way to
812 * increment the count). So code holding cgroup_mutex can safely
813 * assume that if the count is zero, it will stay zero. Similarly, if
814 * a task holds cgroup_mutex on a cgroup with zero count, it
815 * knows that the cgroup won't be removed, as cgroup_rmdir()
816 * needs that mutex.
817 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700818 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
819 * (usually) take cgroup_mutex. These are the two most performance
820 * critical pieces of code here. The exception occurs on cgroup_exit(),
821 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
822 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800823 * to the release agent with the name of the cgroup (path relative to
824 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700825 *
826 * A cgroup can only be deleted if both its 'count' of using tasks
827 * is zero, and its list of 'children' cgroups is empty. Since all
828 * tasks in the system use _some_ cgroup, and since there is always at
829 * least one task in the system (init, pid == 1), therefore, top_cgroup
830 * always has either children cgroups and/or using tasks. So we don't
831 * need a special hack to ensure that top_cgroup cannot be deleted.
832 *
833 * The task_lock() exception
834 *
835 * The need for this exception arises from the action of
Tao Mad0b2fdd2012-11-20 22:06:18 +0800836 * cgroup_attach_task(), which overwrites one task's cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800837 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700838 * several performance critical places that need to reference
839 * task->cgroup without the expense of grabbing a system global
840 * mutex. Therefore except as noted below, when dereferencing or, as
Tao Mad0b2fdd2012-11-20 22:06:18 +0800841 * in cgroup_attach_task(), modifying a task's cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700842 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
843 * the task_struct routinely used for such matters.
844 *
845 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800846 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700847 */
848
Tejun Heo628f7cd2013-06-28 16:24:11 -0700849static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500850static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700851static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700852
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500853static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
854 char *buf)
855{
856 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
857 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
858 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
859 cft->ss->name, cft->name);
860 else
861 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
862 return buf;
863}
864
Tejun Heof2e85d52014-02-11 11:52:49 -0500865/**
866 * cgroup_file_mode - deduce file mode of a control file
867 * @cft: the control file in question
868 *
869 * returns cft->mode if ->mode is not 0
870 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
871 * returns S_IRUGO if it has only a read handler
872 * returns S_IWUSR if it has only a write hander
873 */
874static umode_t cgroup_file_mode(const struct cftype *cft)
875{
876 umode_t mode = 0;
877
878 if (cft->mode)
879 return cft->mode;
880
881 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
882 mode |= S_IRUGO;
883
884 if (cft->write_u64 || cft->write_s64 || cft->write_string ||
885 cft->trigger)
886 mode |= S_IWUSR;
887
888 return mode;
889}
890
Li Zefanbe445622013-01-24 14:31:42 +0800891static void cgroup_free_fn(struct work_struct *work)
892{
Tejun Heoea15f8c2013-06-13 19:27:42 -0700893 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800894
Tejun Heo3c9c8252014-02-12 09:29:50 -0500895 atomic_dec(&cgrp->root->nr_cgrps);
Tejun Heob1a21362013-11-29 10:42:58 -0500896 cgroup_pidlist_destroy_all(cgrp);
Li Zefanbe445622013-01-24 14:31:42 +0800897
Tejun Heo776f02f2014-02-12 09:29:50 -0500898 if (cgrp->parent) {
899 /*
900 * We get a ref to the parent, and put the ref when this
901 * cgroup is being freed, so it's guaranteed that the
902 * parent won't be destroyed before its children.
903 */
904 cgroup_put(cgrp->parent);
905 kernfs_put(cgrp->kn);
906 kfree(cgrp);
907 } else {
908 /*
909 * This is top cgroup's refcnt reaching zero, which
910 * indicates that the root should be released.
911 */
912 cgroup_destroy_root(cgrp->root);
913 }
Li Zefanbe445622013-01-24 14:31:42 +0800914}
915
916static void cgroup_free_rcu(struct rcu_head *head)
917{
918 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
919
Tejun Heoea15f8c2013-06-13 19:27:42 -0700920 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -0500921 queue_work(cgroup_destroy_wq, &cgrp->destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800922}
923
Tejun Heo59f52962014-02-11 11:52:49 -0500924static void cgroup_get(struct cgroup *cgrp)
925{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500926 WARN_ON_ONCE(cgroup_is_dead(cgrp));
927 WARN_ON_ONCE(atomic_read(&cgrp->refcnt) <= 0);
928 atomic_inc(&cgrp->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700929}
930
Tejun Heo59f52962014-02-11 11:52:49 -0500931static void cgroup_put(struct cgroup *cgrp)
932{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500933 if (!atomic_dec_and_test(&cgrp->refcnt))
934 return;
Tejun Heo776f02f2014-02-12 09:29:50 -0500935 if (WARN_ON_ONCE(cgrp->parent && !cgroup_is_dead(cgrp)))
Tejun Heo2bd59d42014-02-11 11:52:49 -0500936 return;
Tejun Heo59f52962014-02-11 11:52:49 -0500937
Tejun Heo2bd59d42014-02-11 11:52:49 -0500938 /*
939 * XXX: cgrp->id is only used to look up css's. As cgroup and
940 * css's lifetimes will be decoupled, it should be made
941 * per-subsystem and moved to css->id so that lookups are
942 * successful until the target css is released.
943 */
944 mutex_lock(&cgroup_mutex);
945 idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
946 mutex_unlock(&cgroup_mutex);
947 cgrp->id = -1;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700948
Tejun Heo2bd59d42014-02-11 11:52:49 -0500949 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700950}
951
Li Zefan2739d3c2013-01-21 18:18:33 +0800952static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700953{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500954 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700955
Tejun Heoace2bee2014-02-11 11:52:47 -0500956 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500957 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -0700958}
959
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400960/**
Tejun Heo628f7cd2013-06-28 16:24:11 -0700961 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -0700962 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400963 * @subsys_mask: mask of the subsystem ids whose files should be removed
964 */
Tejun Heo628f7cd2013-06-28 16:24:11 -0700965static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -0700966{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400967 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -0700968 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700969
Tejun Heob420ba72013-07-12 12:34:02 -0700970 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -0500971 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -0700972
973 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400974 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -0500975 list_for_each_entry(cfts, &ss->cfts, node)
976 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400977 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700978}
979
Paul Menageddbcc7e2007-10-18 23:39:30 -0700980static int rebind_subsystems(struct cgroupfs_root *root,
Tejun Heoa8a648c2013-06-24 15:21:47 -0700981 unsigned long added_mask, unsigned removed_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700982{
Paul Menagebd89aab2007-10-18 23:40:44 -0700983 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heo30159ec2013-06-25 11:53:37 -0700984 struct cgroup_subsys *ss;
Tejun Heo31261212013-06-28 17:07:30 -0700985 int i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700986
Tejun Heoace2bee2014-02-11 11:52:47 -0500987 lockdep_assert_held(&cgroup_tree_mutex);
988 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -0800989
Paul Menageddbcc7e2007-10-18 23:39:30 -0700990 /* Check that any added subsystems are currently free */
Tejun Heo3ed80a62014-02-08 10:36:58 -0500991 for_each_subsys(ss, i)
992 if ((added_mask & (1 << i)) && ss->root != &cgroup_dummy_root)
993 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700994
Tejun Heo31261212013-06-28 17:07:30 -0700995 ret = cgroup_populate_dir(cgrp, added_mask);
996 if (ret)
Tejun Heo3ed80a62014-02-08 10:36:58 -0500997 return ret;
Tejun Heo31261212013-06-28 17:07:30 -0700998
999 /*
1000 * Nothing can fail from this point on. Remove files for the
1001 * removed subsystems and rebind each subsystem.
1002 */
Tejun Heo4ac06012014-02-11 11:52:47 -05001003 mutex_unlock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001004 cgroup_clear_dir(cgrp, removed_mask);
Tejun Heo4ac06012014-02-11 11:52:47 -05001005 mutex_lock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001006
Tejun Heo30159ec2013-06-25 11:53:37 -07001007 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001008 unsigned long bit = 1UL << i;
Tejun Heo30159ec2013-06-25 11:53:37 -07001009
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001010 if (bit & added_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001011 /* We're binding this subsystem to this hierarchy */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001012 BUG_ON(cgroup_css(cgrp, ss));
1013 BUG_ON(!cgroup_css(cgroup_dummy_top, ss));
1014 BUG_ON(cgroup_css(cgroup_dummy_top, ss)->cgroup != cgroup_dummy_top);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001015
Tejun Heo73e80ed2013-08-13 11:01:55 -04001016 rcu_assign_pointer(cgrp->subsys[i],
Tejun Heoca8bdca2013-08-26 18:40:56 -04001017 cgroup_css(cgroup_dummy_top, ss));
1018 cgroup_css(cgrp, ss)->cgroup = cgrp;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001019
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001020 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001021 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001022 ss->bind(cgroup_css(cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001023
Ben Blumcf5d5942010-03-10 15:22:09 -08001024 /* refcount was already taken, and we're keeping it */
Tejun Heoa8a648c2013-06-24 15:21:47 -07001025 root->subsys_mask |= bit;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001026 } else if (bit & removed_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001027 /* We're removing this subsystem */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001028 BUG_ON(cgroup_css(cgrp, ss) != cgroup_css(cgroup_dummy_top, ss));
1029 BUG_ON(cgroup_css(cgrp, ss)->cgroup != cgrp);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001030
Paul Menageddbcc7e2007-10-18 23:39:30 -07001031 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001032 ss->bind(cgroup_css(cgroup_dummy_top, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001033
Tejun Heoca8bdca2013-08-26 18:40:56 -04001034 cgroup_css(cgroup_dummy_top, ss)->cgroup = cgroup_dummy_top;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001035 RCU_INIT_POINTER(cgrp->subsys[i], NULL);
1036
Tejun Heo9871bf92013-06-24 15:21:47 -07001037 cgroup_subsys[i]->root = &cgroup_dummy_root;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001038 root->subsys_mask &= ~bit;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001039 }
1040 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001041
Tejun Heo2bd59d42014-02-11 11:52:49 -05001042 kernfs_activate(cgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001043 return 0;
1044}
1045
Tejun Heo2bd59d42014-02-11 11:52:49 -05001046static int cgroup_show_options(struct seq_file *seq,
1047 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001048{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001049 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001050 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001051 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001052
Tejun Heob85d2042013-12-06 15:11:57 -05001053 for_each_subsys(ss, ssid)
1054 if (root->subsys_mask & (1 << ssid))
1055 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001056 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1057 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001058 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001059 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001060 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001061 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001062
1063 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001064 if (strlen(root->release_agent_path))
1065 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001066 spin_unlock(&release_agent_path_lock);
1067
Tejun Heo2260e7f2012-11-19 08:13:38 -08001068 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001069 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001070 if (strlen(root->name))
1071 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001072 return 0;
1073}
1074
1075struct cgroup_sb_opts {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001076 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001077 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001078 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001079 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001080 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001081 /* User explicitly requested empty subsystem */
1082 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001083};
1084
Ben Blumaae8aab2010-03-10 15:22:07 -08001085/*
Tejun Heo9871bf92013-06-24 15:21:47 -07001086 * Convert a hierarchy specifier into a bitmask of subsystems and
1087 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1088 * array. This function takes refcounts on subsystems to be used, unless it
1089 * returns error, in which case no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001090 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001091static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001092{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001093 char *token, *o = data;
1094 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001095 unsigned long mask = (unsigned long)-1;
Tejun Heo30159ec2013-06-25 11:53:37 -07001096 struct cgroup_subsys *ss;
1097 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001098
Ben Blumaae8aab2010-03-10 15:22:07 -08001099 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1100
Li Zefanf9ab5b52009-06-17 16:26:33 -07001101#ifdef CONFIG_CPUSETS
Tejun Heo073219e2014-02-08 10:36:58 -05001102 mask = ~(1UL << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001103#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001104
Paul Menagec6d57f32009-09-23 15:56:19 -07001105 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001106
1107 while ((token = strsep(&o, ",")) != NULL) {
1108 if (!*token)
1109 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001110 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001111 /* Explicitly have no subsystems */
1112 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001113 continue;
1114 }
1115 if (!strcmp(token, "all")) {
1116 /* Mutually exclusive option 'all' + subsystem name */
1117 if (one_ss)
1118 return -EINVAL;
1119 all_ss = true;
1120 continue;
1121 }
Tejun Heo873fe092013-04-14 20:15:26 -07001122 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1123 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1124 continue;
1125 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001126 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001127 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001128 continue;
1129 }
1130 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001131 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001132 continue;
1133 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001134 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001135 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001136 continue;
1137 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001138 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001139 /* Specifying two release agents is forbidden */
1140 if (opts->release_agent)
1141 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001142 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001143 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001144 if (!opts->release_agent)
1145 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001146 continue;
1147 }
1148 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001149 const char *name = token + 5;
1150 /* Can't specify an empty name */
1151 if (!strlen(name))
1152 return -EINVAL;
1153 /* Must match [\w.-]+ */
1154 for (i = 0; i < strlen(name); i++) {
1155 char c = name[i];
1156 if (isalnum(c))
1157 continue;
1158 if ((c == '.') || (c == '-') || (c == '_'))
1159 continue;
1160 return -EINVAL;
1161 }
1162 /* Specifying two names is forbidden */
1163 if (opts->name)
1164 return -EINVAL;
1165 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001166 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001167 GFP_KERNEL);
1168 if (!opts->name)
1169 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001170
1171 continue;
1172 }
1173
Tejun Heo30159ec2013-06-25 11:53:37 -07001174 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001175 if (strcmp(token, ss->name))
1176 continue;
1177 if (ss->disabled)
1178 continue;
1179
1180 /* Mutually exclusive option 'all' + subsystem name */
1181 if (all_ss)
1182 return -EINVAL;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001183 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001184 one_ss = true;
1185
1186 break;
1187 }
1188 if (i == CGROUP_SUBSYS_COUNT)
1189 return -ENOENT;
1190 }
1191
1192 /*
1193 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001194 * otherwise if 'none', 'name=' and a subsystem name options
1195 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001196 */
Tejun Heo30159ec2013-06-25 11:53:37 -07001197 if (all_ss || (!one_ss && !opts->none && !opts->name))
1198 for_each_subsys(ss, i)
1199 if (!ss->disabled)
1200 set_bit(i, &opts->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001201
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001202 /* Consistency checks */
1203
Tejun Heo873fe092013-04-14 20:15:26 -07001204 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1205 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1206
Tejun Heod3ba07c2014-02-13 06:58:38 -05001207 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1208 opts->cpuset_clone_children || opts->release_agent ||
1209 opts->name) {
1210 pr_err("cgroup: sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001211 return -EINVAL;
1212 }
Tejun Heo873fe092013-04-14 20:15:26 -07001213 }
1214
Li Zefanf9ab5b52009-06-17 16:26:33 -07001215 /*
1216 * Option noprefix was introduced just for backward compatibility
1217 * with the old cpuset, so we allow noprefix only if mounting just
1218 * the cpuset subsystem.
1219 */
Tejun Heo93438622013-04-14 20:15:25 -07001220 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001221 return -EINVAL;
1222
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001223
1224 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001225 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001226 return -EINVAL;
1227
1228 /*
1229 * We either have to specify by name or by subsystems. (So all
1230 * empty hierarchies must have a name).
1231 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001232 if (!opts->subsys_mask && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001233 return -EINVAL;
1234
1235 return 0;
1236}
1237
Tejun Heo2bd59d42014-02-11 11:52:49 -05001238static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001239{
1240 int ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001241 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001242 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001243 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001244
Tejun Heo873fe092013-04-14 20:15:26 -07001245 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1246 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1247 return -EINVAL;
1248 }
1249
Tejun Heoace2bee2014-02-11 11:52:47 -05001250 mutex_lock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001251 mutex_lock(&cgroup_mutex);
1252
1253 /* See what subsystems are wanted */
1254 ret = parse_cgroupfs_options(data, &opts);
1255 if (ret)
1256 goto out_unlock;
1257
Tejun Heoa8a648c2013-06-24 15:21:47 -07001258 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001259 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1260 task_tgid_nr(current), current->comm);
1261
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001262 added_mask = opts.subsys_mask & ~root->subsys_mask;
1263 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001264
Ben Blumcf5d5942010-03-10 15:22:09 -08001265 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001266 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001267 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001268 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1269 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1270 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001271 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001272 goto out_unlock;
1273 }
1274
Tejun Heof172e672013-06-28 17:07:30 -07001275 /* remounting is not allowed for populated hierarchies */
Tejun Heo3c9c8252014-02-12 09:29:50 -05001276 if (!list_empty(&root->top_cgroup.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001277 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001278 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001279 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001280
Paul Menageddbcc7e2007-10-18 23:39:30 -07001281 ret = rebind_subsystems(root, added_mask, removed_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001282 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001283 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001284
Tejun Heo69e943b2014-02-08 10:36:58 -05001285 if (opts.release_agent) {
1286 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001287 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001288 spin_unlock(&release_agent_path_lock);
1289 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001290 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001291 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001292 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001293 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001294 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001295 return ret;
1296}
1297
Tejun Heoafeb0f92014-02-13 06:58:39 -05001298/*
1299 * To reduce the fork() overhead for systems that are not actually using
1300 * their cgroups capability, we don't maintain the lists running through
1301 * each css_set to its tasks until we see the list actually used - in other
1302 * words after the first mount.
1303 */
1304static bool use_task_css_set_links __read_mostly;
1305
1306static void cgroup_enable_task_cg_lists(void)
1307{
1308 struct task_struct *p, *g;
1309
Tejun Heo96d365e2014-02-13 06:58:40 -05001310 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001311
1312 if (use_task_css_set_links)
1313 goto out_unlock;
1314
1315 use_task_css_set_links = true;
1316
1317 /*
1318 * We need tasklist_lock because RCU is not safe against
1319 * while_each_thread(). Besides, a forking task that has passed
1320 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1321 * is not guaranteed to have its child immediately visible in the
1322 * tasklist if we walk through it with RCU.
1323 */
1324 read_lock(&tasklist_lock);
1325 do_each_thread(g, p) {
1326 task_lock(p);
1327
1328 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1329 task_css_set(p) != &init_css_set);
1330
1331 /*
1332 * We should check if the process is exiting, otherwise
1333 * it will race with cgroup_exit() in that the list
1334 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001335 * Do it while holding siglock so that we don't end up
1336 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001337 */
Tejun Heof153ad12014-02-25 09:56:49 -05001338 spin_lock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001339 if (!(p->flags & PF_EXITING))
1340 list_add(&p->cg_list, &task_css_set(p)->tasks);
Tejun Heof153ad12014-02-25 09:56:49 -05001341 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001342
1343 task_unlock(p);
1344 } while_each_thread(g, p);
1345 read_unlock(&tasklist_lock);
1346out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001347 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001348}
1349
Paul Menagecc31edc2008-10-18 20:28:04 -07001350static void init_cgroup_housekeeping(struct cgroup *cgrp)
1351{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001352 atomic_set(&cgrp->refcnt, 1);
Paul Menagecc31edc2008-10-18 20:28:04 -07001353 INIT_LIST_HEAD(&cgrp->sibling);
1354 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo69d02062013-06-12 21:04:50 -07001355 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001356 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001357 INIT_LIST_HEAD(&cgrp->pidlists);
1358 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo67f4c362013-08-08 20:11:24 -04001359 cgrp->dummy_css.cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001360}
Paul Menagec6d57f32009-09-23 15:56:19 -07001361
Paul Menageddbcc7e2007-10-18 23:39:30 -07001362static void init_cgroup_root(struct cgroupfs_root *root)
1363{
Paul Menagebd89aab2007-10-18 23:40:44 -07001364 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001365
Paul Menageddbcc7e2007-10-18 23:39:30 -07001366 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001367 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001368 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001369 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee82013-07-31 09:50:50 +08001370 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001371}
1372
Paul Menagec6d57f32009-09-23 15:56:19 -07001373static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1374{
1375 struct cgroupfs_root *root;
1376
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001377 if (!opts->subsys_mask && !opts->none)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001378 return ERR_PTR(-EINVAL);
Paul Menagec6d57f32009-09-23 15:56:19 -07001379
1380 root = kzalloc(sizeof(*root), GFP_KERNEL);
1381 if (!root)
1382 return ERR_PTR(-ENOMEM);
1383
1384 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001385
Paul Menagec6d57f32009-09-23 15:56:19 -07001386 root->flags = opts->flags;
1387 if (opts->release_agent)
1388 strcpy(root->release_agent_path, opts->release_agent);
1389 if (opts->name)
1390 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001391 if (opts->cpuset_clone_children)
1392 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001393 return root;
1394}
1395
Tejun Heo35585572014-02-13 06:58:38 -05001396static int cgroup_setup_root(struct cgroupfs_root *root, unsigned long ss_mask)
Tejun Heod427dfe2014-02-11 11:52:48 -05001397{
1398 LIST_HEAD(tmp_links);
Tejun Heod427dfe2014-02-11 11:52:48 -05001399 struct cgroup *root_cgrp = &root->top_cgroup;
Tejun Heod427dfe2014-02-11 11:52:48 -05001400 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001401 int i, ret;
1402
1403 lockdep_assert_held(&cgroup_tree_mutex);
1404 lockdep_assert_held(&cgroup_mutex);
Tejun Heod427dfe2014-02-11 11:52:48 -05001405
1406 ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL);
1407 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001408 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001409 root_cgrp->id = ret;
1410
Tejun Heod427dfe2014-02-11 11:52:48 -05001411 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001412 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001413 * but that's OK - it can only be increased by someone holding
1414 * cgroup_lock, and that's us. The worst that can happen is that we
1415 * have some link structures left over
1416 */
1417 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
1418 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001419 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001420
1421 /* ID 0 is reserved for dummy root, 1 for unified hierarchy */
1422 ret = cgroup_init_root_id(root, 2, 0);
1423 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001424 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001425
Tejun Heo2bd59d42014-02-11 11:52:49 -05001426 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1427 KERNFS_ROOT_CREATE_DEACTIVATED,
1428 root_cgrp);
1429 if (IS_ERR(root->kf_root)) {
1430 ret = PTR_ERR(root->kf_root);
1431 goto exit_root_id;
1432 }
1433 root_cgrp->kn = root->kf_root->kn;
Tejun Heod427dfe2014-02-11 11:52:48 -05001434
1435 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1436 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001437 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001438
Tejun Heo35585572014-02-13 06:58:38 -05001439 ret = rebind_subsystems(root, ss_mask, 0);
Tejun Heod427dfe2014-02-11 11:52:48 -05001440 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001441 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001442
1443 /*
1444 * There must be no failure case after here, since rebinding takes
1445 * care of subsystems' refcounts, which are explicitly dropped in
1446 * the failure exit path.
1447 */
1448 list_add(&root->root_list, &cgroup_roots);
1449 cgroup_root_count++;
1450
1451 /*
1452 * Link the top cgroup in this hierarchy into all the css_set
1453 * objects.
1454 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001455 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001456 hash_for_each(css_set_table, i, cset, hlist)
1457 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001458 up_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001459
1460 BUG_ON(!list_empty(&root_cgrp->children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001461 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001462
Tejun Heo2bd59d42014-02-11 11:52:49 -05001463 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001464 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001465 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001466
Tejun Heo2bd59d42014-02-11 11:52:49 -05001467destroy_root:
1468 kernfs_destroy_root(root->kf_root);
1469 root->kf_root = NULL;
1470exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001471 cgroup_exit_root_id(root);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001472out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001473 free_cgrp_cset_links(&tmp_links);
1474 return ret;
1475}
1476
Al Virof7e83572010-07-26 13:23:11 +04001477static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001478 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001479 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001480{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001481 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001482 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001483 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001484 int ret;
Tejun Heo56fde9e2014-02-13 06:58:38 -05001485
1486 /*
1487 * The first time anyone tries to mount a cgroup, enable the list
1488 * linking each css_set to its tasks and fix up all existing tasks.
1489 */
1490 if (!use_task_css_set_links)
1491 cgroup_enable_task_cg_lists();
Tejun Heo776f02f2014-02-12 09:29:50 -05001492retry:
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001493 mutex_lock(&cgroup_tree_mutex);
1494 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001495
1496 /* First find the desired set of subsystems */
1497 ret = parse_cgroupfs_options(data, &opts);
Paul Menagec6d57f32009-09-23 15:56:19 -07001498 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001499 goto out_unlock;
Paul Menagec6d57f32009-09-23 15:56:19 -07001500
Tejun Heo2bd59d42014-02-11 11:52:49 -05001501 /* look for a matching existing root */
1502 for_each_active_root(root) {
1503 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001504
Paul Menagec6d57f32009-09-23 15:56:19 -07001505 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001506 * If we asked for a name then it must match. Also, if
1507 * name matches but sybsys_mask doesn't, we should fail.
1508 * Remember whether name matched.
Paul Menagec6d57f32009-09-23 15:56:19 -07001509 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001510 if (opts.name) {
1511 if (strcmp(opts.name, root->name))
1512 continue;
1513 name_match = true;
1514 }
1515
1516 /*
1517 * If we asked for subsystems (or explicitly for no
1518 * subsystems) then they must match.
1519 */
1520 if ((opts.subsys_mask || opts.none) &&
1521 (opts.subsys_mask != root->subsys_mask)) {
1522 if (!name_match)
1523 continue;
1524 ret = -EBUSY;
1525 goto out_unlock;
1526 }
Tejun Heo873fe092013-04-14 20:15:26 -07001527
Tejun Heoc7ba8282013-06-29 14:06:10 -07001528 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001529 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1530 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1531 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001532 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001533 } else {
1534 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1535 }
Tejun Heo873fe092013-04-14 20:15:26 -07001536 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001537
Tejun Heo776f02f2014-02-12 09:29:50 -05001538 /*
1539 * A root's lifetime is governed by its top cgroup. Zero
1540 * ref indicate that the root is being destroyed. Wait for
1541 * destruction to complete so that the subsystems are free.
1542 * We can use wait_queue for the wait but this path is
1543 * super cold. Let's just sleep for a bit and retry.
1544 */
1545 if (!atomic_inc_not_zero(&root->top_cgroup.refcnt)) {
1546 mutex_unlock(&cgroup_mutex);
1547 mutex_unlock(&cgroup_tree_mutex);
Li Zefan6534fd62014-02-14 16:55:04 +08001548 kfree(opts.release_agent);
1549 kfree(opts.name);
Tejun Heo776f02f2014-02-12 09:29:50 -05001550 msleep(10);
1551 goto retry;
1552 }
1553
1554 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001555 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001556 }
1557
Tejun Heo2bd59d42014-02-11 11:52:49 -05001558 /* no such thing, create a new one */
1559 root = cgroup_root_from_opts(&opts);
1560 if (IS_ERR(root)) {
1561 ret = PTR_ERR(root);
1562 goto out_unlock;
1563 }
1564
Tejun Heo35585572014-02-13 06:58:38 -05001565 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001566 if (ret)
1567 cgroup_free_root(root);
1568
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001569out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001570 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001571 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001572
Paul Menagec6d57f32009-09-23 15:56:19 -07001573 kfree(opts.release_agent);
1574 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001575
Tejun Heo2bd59d42014-02-11 11:52:49 -05001576 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001577 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001578
1579 dentry = kernfs_mount(fs_type, flags, root->kf_root);
1580 if (IS_ERR(dentry))
Tejun Heo776f02f2014-02-12 09:29:50 -05001581 cgroup_put(&root->top_cgroup);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001582 return dentry;
1583}
1584
1585static void cgroup_kill_sb(struct super_block *sb)
1586{
1587 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
1588 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
1589
Tejun Heo776f02f2014-02-12 09:29:50 -05001590 cgroup_put(&root->top_cgroup);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001591 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001592}
1593
Paul Menageddbcc7e2007-10-18 23:39:30 -07001594static struct file_system_type cgroup_fs_type = {
1595 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001596 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001597 .kill_sb = cgroup_kill_sb,
1598};
1599
Greg KH676db4a2010-08-05 13:53:35 -07001600static struct kobject *cgroup_kobj;
1601
Li Zefana043e3b2008-02-23 15:24:09 -08001602/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001603 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001604 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001605 * @buf: the buffer to write the path into
1606 * @buflen: the length of the buffer
1607 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001608 * Determine @task's cgroup on the first (the one with the lowest non-zero
1609 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1610 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1611 * cgroup controller callbacks.
1612 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001613 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001614 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001615char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001616{
1617 struct cgroupfs_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001618 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001619 int hierarchy_id = 1;
1620 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001621
1622 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001623 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001624
Tejun Heo913ffdb2013-07-11 16:34:48 -07001625 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1626
Tejun Heo857a2be2013-04-14 20:50:08 -07001627 if (root) {
1628 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001629 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001630 } else {
1631 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001632 if (strlcpy(buf, "/", buflen) < buflen)
1633 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001634 }
1635
Tejun Heo96d365e2014-02-13 06:58:40 -05001636 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001637 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001638 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001639}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001640EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001641
Tejun Heob3dc0942014-02-25 10:04:01 -05001642/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001643struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001644 /* the src and dst cset list running through cset->mg_node */
1645 struct list_head src_csets;
1646 struct list_head dst_csets;
1647
1648 /*
1649 * Fields for cgroup_taskset_*() iteration.
1650 *
1651 * Before migration is committed, the target migration tasks are on
1652 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1653 * the csets on ->dst_csets. ->csets point to either ->src_csets
1654 * or ->dst_csets depending on whether migration is committed.
1655 *
1656 * ->cur_csets and ->cur_task point to the current task position
1657 * during iteration.
1658 */
1659 struct list_head *csets;
1660 struct css_set *cur_cset;
1661 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001662};
1663
1664/**
1665 * cgroup_taskset_first - reset taskset and return the first task
1666 * @tset: taskset of interest
1667 *
1668 * @tset iteration is initialized and the first task is returned.
1669 */
1670struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1671{
Tejun Heob3dc0942014-02-25 10:04:01 -05001672 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
1673 tset->cur_task = NULL;
1674
1675 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001676}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001677
1678/**
1679 * cgroup_taskset_next - iterate to the next task in taskset
1680 * @tset: taskset of interest
1681 *
1682 * Return the next task in @tset. Iteration must have been initialized
1683 * with cgroup_taskset_first().
1684 */
1685struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1686{
Tejun Heob3dc0942014-02-25 10:04:01 -05001687 struct css_set *cset = tset->cur_cset;
1688 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001689
Tejun Heob3dc0942014-02-25 10:04:01 -05001690 while (&cset->mg_node != tset->csets) {
1691 if (!task)
1692 task = list_first_entry(&cset->mg_tasks,
1693 struct task_struct, cg_list);
1694 else
1695 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001696
Tejun Heob3dc0942014-02-25 10:04:01 -05001697 if (&task->cg_list != &cset->mg_tasks) {
1698 tset->cur_cset = cset;
1699 tset->cur_task = task;
1700 return task;
1701 }
1702
1703 cset = list_next_entry(cset, mg_node);
1704 task = NULL;
1705 }
1706
1707 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001708}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001709
1710/**
Ben Blum74a11662011-05-26 16:25:20 -07001711 * cgroup_task_migrate - move a task from one cgroup to another.
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001712 * @old_cgrp; the cgroup @tsk is being migrated from
1713 * @tsk: the task being migrated
1714 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001715 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001716 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001717 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001718static void cgroup_task_migrate(struct cgroup *old_cgrp,
1719 struct task_struct *tsk,
1720 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001721{
Tejun Heo5abb8852013-06-12 21:04:49 -07001722 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001723
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001724 lockdep_assert_held(&cgroup_mutex);
1725 lockdep_assert_held(&css_set_rwsem);
1726
Ben Blum74a11662011-05-26 16:25:20 -07001727 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001728 * We are synchronized through threadgroup_lock() against PF_EXITING
1729 * setting such that we can't race against cgroup_exit() changing the
1730 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001731 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001732 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001733 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001734
Tejun Heob3dc0942014-02-25 10:04:01 -05001735 get_css_set(new_cset);
1736
Ben Blum74a11662011-05-26 16:25:20 -07001737 task_lock(tsk);
Tejun Heo5abb8852013-06-12 21:04:49 -07001738 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001739 task_unlock(tsk);
1740
Tejun Heob3dc0942014-02-25 10:04:01 -05001741 list_move(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001742
1743 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001744 * We just gained a reference on old_cset by taking it from the
1745 * task. As trading it for new_cset is protected by cgroup_mutex,
1746 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001747 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001748 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001749 put_css_set_locked(old_cset, false);
Ben Blum74a11662011-05-26 16:25:20 -07001750}
1751
Li Zefana043e3b2008-02-23 15:24:09 -08001752/**
Li Zefan081aa452013-03-13 09:17:09 +08001753 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
Ben Blum74a11662011-05-26 16:25:20 -07001754 * @cgrp: the cgroup to attach to
Tejun Heo9db8de32014-02-13 06:58:43 -05001755 * @leader: the task or the leader of the threadgroup to be attached
Li Zefan081aa452013-03-13 09:17:09 +08001756 * @threadgroup: attach the whole threadgroup?
Ben Blum74a11662011-05-26 16:25:20 -07001757 *
Tejun Heo257058a2011-12-12 18:12:21 -08001758 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
Li Zefan081aa452013-03-13 09:17:09 +08001759 * task_lock of @tsk or each thread in the threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07001760 */
Tejun Heo9db8de32014-02-13 06:58:43 -05001761static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *leader,
Tejun Heo47cfcd02013-04-07 09:29:51 -07001762 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07001763{
Tejun Heob3dc0942014-02-25 10:04:01 -05001764 struct cgroup_taskset tset = {
1765 .src_csets = LIST_HEAD_INIT(tset.src_csets),
1766 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
1767 .csets = &tset.src_csets,
1768 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05001769 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05001770 struct css_set *cset, *tmp_cset;
1771 struct task_struct *task, *tmp_task;
1772 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07001773
1774 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001775 * Prevent freeing of tasks while we take a snapshot. Tasks that are
1776 * already PF_EXITING could be freed from underneath us unless we
1777 * take an rcu_read_lock.
1778 */
Tejun Heob3dc0942014-02-25 10:04:01 -05001779 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001780 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05001781 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07001782 do {
Tejun Heob3dc0942014-02-25 10:04:01 -05001783 struct cgroup *src_cgrp;
Tejun Heo134d3372011-12-12 18:12:21 -08001784
Tejun Heo9db8de32014-02-13 06:58:43 -05001785 /* @task either already exited or can't exit until the end */
1786 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08001787 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08001788
Tejun Heob3dc0942014-02-25 10:04:01 -05001789 cset = task_css_set(task);
1790 src_cgrp = task_cgroup_from_root(task, cgrp->root);
1791
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001792 /* nothing to do if this task is already in the cgroup */
Tejun Heob3dc0942014-02-25 10:04:01 -05001793 if (src_cgrp == cgrp)
Anjana V Kumarea847532013-10-12 10:59:17 +08001794 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05001795
1796 if (!cset->mg_src_cgrp) {
1797 WARN_ON(!list_empty(&cset->mg_tasks));
1798 WARN_ON(!list_empty(&cset->mg_node));
1799
1800 cset->mg_src_cgrp = src_cgrp;
1801 list_add(&cset->mg_node, &tset.src_csets);
1802 get_css_set(cset);
1803 }
1804
1805 list_move(&task->cg_list, &cset->mg_tasks);
Anjana V Kumarea847532013-10-12 10:59:17 +08001806 next:
Li Zefan081aa452013-03-13 09:17:09 +08001807 if (!threadgroup)
1808 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05001809 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001810 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05001811 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07001812
Tejun Heo134d3372011-12-12 18:12:21 -08001813 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05001814 if (list_empty(&tset.src_csets))
1815 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08001816
Ben Blum74a11662011-05-26 16:25:20 -07001817 /*
1818 * step 1: check that we can legitimately attach to the cgroup.
1819 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001820 for_each_css(css, i, cgrp) {
1821 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05001822 ret = css->ss->can_attach(css, &tset);
1823 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05001824 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07001825 goto out_cancel_attach;
1826 }
1827 }
Ben Blum74a11662011-05-26 16:25:20 -07001828 }
1829
1830 /*
1831 * step 2: make sure css_sets exist for all threads to be migrated.
1832 * we use find_css_set, which allocates a new one if necessary.
1833 */
Tejun Heob3dc0942014-02-25 10:04:01 -05001834 list_for_each_entry(cset, &tset.src_csets, mg_node) {
1835 struct css_set *dst_cset;
Tejun Heoa8ad8052013-06-21 15:52:04 -07001836
Tejun Heob3dc0942014-02-25 10:04:01 -05001837 dst_cset = find_css_set(cset, cgrp);
1838 if (!dst_cset) {
Tejun Heo9db8de32014-02-13 06:58:43 -05001839 ret = -ENOMEM;
Tejun Heob3dc0942014-02-25 10:04:01 -05001840 goto out_release_tset;
Ben Blum74a11662011-05-26 16:25:20 -07001841 }
Tejun Heob3dc0942014-02-25 10:04:01 -05001842
1843 if (list_empty(&dst_cset->mg_node))
1844 list_add(&dst_cset->mg_node, &tset.dst_csets);
1845 else
1846 put_css_set(dst_cset, false);
1847
1848 cset->mg_dst_cset = dst_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001849 }
1850
1851 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001852 * step 3: now that we're guaranteed success wrt the css_sets,
1853 * proceed to move all tasks to the new cgroup. There are no
1854 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07001855 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001856 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05001857 list_for_each_entry(cset, &tset.src_csets, mg_node) {
1858 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
1859 cgroup_task_migrate(cset->mg_src_cgrp, task,
1860 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001861 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001862 up_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05001863
1864 /* migration is committed, all target tasks are now on dst_csets */
1865 tset.csets = &tset.dst_csets;
1866
1867 /* nothing is sensitive to fork() after this point */
Ben Blum74a11662011-05-26 16:25:20 -07001868
1869 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001870 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07001871 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001872 for_each_css(css, i, cgrp)
1873 if (css->ss->attach)
1874 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001875
Tejun Heo9db8de32014-02-13 06:58:43 -05001876 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05001877 goto out_release_tset;
1878
Ben Blum74a11662011-05-26 16:25:20 -07001879out_cancel_attach:
Tejun Heob3dc0942014-02-25 10:04:01 -05001880 for_each_css(css, i, cgrp) {
1881 if (css == failed_css)
1882 break;
1883 if (css->ss->cancel_attach)
1884 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001885 }
Tejun Heob3dc0942014-02-25 10:04:01 -05001886out_release_tset:
1887 down_write(&css_set_rwsem);
1888 list_splice_init(&tset.dst_csets, &tset.src_csets);
1889 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
1890 list_splice_init(&cset->mg_tasks, &cset->tasks);
1891 cset->mg_dst_cset = NULL;
1892 cset->mg_src_cgrp = NULL;
1893 list_del_init(&cset->mg_node);
1894 put_css_set_locked(cset, false);
1895 }
1896 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05001897 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07001898}
1899
1900/*
1901 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08001902 * function to attach either it or all tasks in its threadgroup. Will lock
1903 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07001904 */
1905static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001906{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001907 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001908 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001909 int ret;
1910
Ben Blum74a11662011-05-26 16:25:20 -07001911 if (!cgroup_lock_live_group(cgrp))
1912 return -ENODEV;
1913
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001914retry_find_task:
1915 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001916 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001917 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07001918 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07001919 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001920 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001921 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001922 }
Ben Blum74a11662011-05-26 16:25:20 -07001923 /*
1924 * even if we're attaching all tasks in the thread group, we
1925 * only need to check permissions on one of them.
1926 */
David Howellsc69e8d92008-11-14 10:39:19 +11001927 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07001928 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
1929 !uid_eq(cred->euid, tcred->uid) &&
1930 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001931 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001932 ret = -EACCES;
1933 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001934 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001935 } else
1936 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08001937
1938 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001939 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001940
1941 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07001942 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001943 * trapped in a cpuset, or RT worker may be born in a cgroup
1944 * with no rt_runtime allocated. Just say no.
1945 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07001946 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001947 ret = -EINVAL;
1948 rcu_read_unlock();
1949 goto out_unlock_cgroup;
1950 }
1951
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001952 get_task_struct(tsk);
1953 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08001954
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001955 threadgroup_lock(tsk);
1956 if (threadgroup) {
1957 if (!thread_group_leader(tsk)) {
1958 /*
1959 * a race with de_thread from another thread's exec()
1960 * may strip us of our leadership, if this happens,
1961 * there is no choice but to throw this task away and
1962 * try again; this is
1963 * "double-double-toil-and-trouble-check locking".
1964 */
1965 threadgroup_unlock(tsk);
1966 put_task_struct(tsk);
1967 goto retry_find_task;
1968 }
Li Zefan081aa452013-03-13 09:17:09 +08001969 }
1970
1971 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
1972
Tejun Heocd3d0952011-12-12 18:12:21 -08001973 threadgroup_unlock(tsk);
1974
Paul Menagebbcb81d2007-10-18 23:39:32 -07001975 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001976out_unlock_cgroup:
Tejun Heo47cfcd02013-04-07 09:29:51 -07001977 mutex_unlock(&cgroup_mutex);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001978 return ret;
1979}
1980
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001981/**
1982 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1983 * @from: attach to all cgroups of a given task
1984 * @tsk: the task to be attached
1985 */
1986int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
1987{
1988 struct cgroupfs_root *root;
1989 int retval = 0;
1990
Tejun Heo47cfcd02013-04-07 09:29:51 -07001991 mutex_lock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001992 for_each_active_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05001993 struct cgroup *from_cgrp;
1994
1995 down_read(&css_set_rwsem);
1996 from_cgrp = task_cgroup_from_root(from, root);
1997 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001998
Li Zefan6f4b7e62013-07-31 16:18:36 +08001999 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002000 if (retval)
2001 break;
2002 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002003 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002004
2005 return retval;
2006}
2007EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2008
Tejun Heo182446d2013-08-08 20:11:24 -04002009static int cgroup_tasks_write(struct cgroup_subsys_state *css,
2010 struct cftype *cft, u64 pid)
Paul Menageaf351022008-07-25 01:47:01 -07002011{
Tejun Heo182446d2013-08-08 20:11:24 -04002012 return attach_task_by_pid(css->cgroup, pid, false);
Ben Blum74a11662011-05-26 16:25:20 -07002013}
2014
Tejun Heo182446d2013-08-08 20:11:24 -04002015static int cgroup_procs_write(struct cgroup_subsys_state *css,
2016 struct cftype *cft, u64 tgid)
Ben Blum74a11662011-05-26 16:25:20 -07002017{
Tejun Heo182446d2013-08-08 20:11:24 -04002018 return attach_task_by_pid(css->cgroup, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002019}
2020
Tejun Heo182446d2013-08-08 20:11:24 -04002021static int cgroup_release_agent_write(struct cgroup_subsys_state *css,
2022 struct cftype *cft, const char *buffer)
Paul Menagee788e062008-07-25 01:46:59 -07002023{
Tejun Heo5f469902014-02-11 11:52:48 -05002024 struct cgroupfs_root *root = css->cgroup->root;
2025
2026 BUILD_BUG_ON(sizeof(root->release_agent_path) < PATH_MAX);
Tejun Heo182446d2013-08-08 20:11:24 -04002027 if (!cgroup_lock_live_group(css->cgroup))
Paul Menagee788e062008-07-25 01:46:59 -07002028 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002029 spin_lock(&release_agent_path_lock);
Tejun Heo5f469902014-02-11 11:52:48 -05002030 strlcpy(root->release_agent_path, buffer,
2031 sizeof(root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002032 spin_unlock(&release_agent_path_lock);
Tejun Heo47cfcd02013-04-07 09:29:51 -07002033 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002034 return 0;
2035}
2036
Tejun Heo2da8ca82013-12-05 12:28:04 -05002037static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002038{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002039 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002040
Paul Menagee788e062008-07-25 01:46:59 -07002041 if (!cgroup_lock_live_group(cgrp))
2042 return -ENODEV;
2043 seq_puts(seq, cgrp->root->release_agent_path);
2044 seq_putc(seq, '\n');
Tejun Heo47cfcd02013-04-07 09:29:51 -07002045 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002046 return 0;
2047}
2048
Tejun Heo2da8ca82013-12-05 12:28:04 -05002049static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002050{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002051 struct cgroup *cgrp = seq_css(seq)->cgroup;
2052
2053 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002054 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002055}
2056
Tejun Heo2bd59d42014-02-11 11:52:49 -05002057static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2058 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002059{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002060 struct cgroup *cgrp = of->kn->parent->priv;
2061 struct cftype *cft = of->kn->priv;
2062 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002063 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002064
Tejun Heo2bd59d42014-02-11 11:52:49 -05002065 /*
2066 * kernfs guarantees that a file isn't deleted with operations in
2067 * flight, which means that the matching css is and stays alive and
2068 * doesn't need to be pinned. The RCU locking is not necessary
2069 * either. It's just for the convenience of using cgroup_css().
2070 */
2071 rcu_read_lock();
2072 css = cgroup_css(cgrp, cft->ss);
2073 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002074
Tejun Heoa742c592013-12-05 12:28:03 -05002075 if (cft->write_string) {
2076 ret = cft->write_string(css, cft, strstrip(buf));
2077 } else if (cft->write_u64) {
2078 unsigned long long v;
2079 ret = kstrtoull(buf, 0, &v);
2080 if (!ret)
2081 ret = cft->write_u64(css, cft, v);
2082 } else if (cft->write_s64) {
2083 long long v;
2084 ret = kstrtoll(buf, 0, &v);
2085 if (!ret)
2086 ret = cft->write_s64(css, cft, v);
2087 } else if (cft->trigger) {
2088 ret = cft->trigger(css, (unsigned int)cft->private);
2089 } else {
2090 ret = -EINVAL;
2091 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002092
Tejun Heoa742c592013-12-05 12:28:03 -05002093 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002094}
2095
Tejun Heo6612f052013-12-05 12:28:04 -05002096static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002097{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002098 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002099}
2100
2101static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2102{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002103 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002104}
2105
2106static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2107{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002108 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002109}
2110
2111static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2112{
Tejun Heo7da11272013-12-05 12:28:04 -05002113 struct cftype *cft = seq_cft(m);
2114 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002115
Tejun Heo2da8ca82013-12-05 12:28:04 -05002116 if (cft->seq_show)
2117 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002118
Tejun Heo896f5192013-12-05 12:28:04 -05002119 if (cft->read_u64)
2120 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2121 else if (cft->read_s64)
2122 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2123 else
2124 return -EINVAL;
2125 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002126}
2127
Tejun Heo2bd59d42014-02-11 11:52:49 -05002128static struct kernfs_ops cgroup_kf_single_ops = {
2129 .atomic_write_len = PAGE_SIZE,
2130 .write = cgroup_file_write,
2131 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002132};
2133
Tejun Heo2bd59d42014-02-11 11:52:49 -05002134static struct kernfs_ops cgroup_kf_ops = {
2135 .atomic_write_len = PAGE_SIZE,
2136 .write = cgroup_file_write,
2137 .seq_start = cgroup_seqfile_start,
2138 .seq_next = cgroup_seqfile_next,
2139 .seq_stop = cgroup_seqfile_stop,
2140 .seq_show = cgroup_seqfile_show,
2141};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002142
2143/*
2144 * cgroup_rename - Only allow simple rename of directories in place.
2145 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002146static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2147 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002148{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002149 struct cgroup *cgrp = kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002150 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002151
Tejun Heo2bd59d42014-02-11 11:52:49 -05002152 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002153 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002154 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002155 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002156
Tejun Heo6db8e852013-06-14 11:18:22 -07002157 /*
2158 * This isn't a proper migration and its usefulness is very
2159 * limited. Disallow if sane_behavior.
2160 */
2161 if (cgroup_sane_behavior(cgrp))
2162 return -EPERM;
2163
Tejun Heo2bd59d42014-02-11 11:52:49 -05002164 mutex_lock(&cgroup_tree_mutex);
2165 mutex_lock(&cgroup_mutex);
2166
2167 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002168
Tejun Heo2bd59d42014-02-11 11:52:49 -05002169 mutex_unlock(&cgroup_mutex);
2170 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002171 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002172}
2173
Tejun Heo2bb566c2013-08-08 20:11:23 -04002174static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002175{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002176 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002177 struct kernfs_node *kn;
2178 struct lock_class_key *key = NULL;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002179
Tejun Heo2bd59d42014-02-11 11:52:49 -05002180#ifdef CONFIG_DEBUG_LOCK_ALLOC
2181 key = &cft->lockdep_key;
2182#endif
2183 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2184 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2185 NULL, false, key);
Fengguang Wu430af8ad2014-02-13 16:42:43 -05002186 return PTR_ERR_OR_ZERO(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002187}
2188
Tejun Heob1f28d32013-06-28 16:24:10 -07002189/**
2190 * cgroup_addrm_files - add or remove files to a cgroup directory
2191 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002192 * @cfts: array of cftypes to be added
2193 * @is_add: whether to add or remove
2194 *
2195 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002196 * For removals, this function never fails. If addition fails, this
2197 * function doesn't remove files already added. The caller is responsible
2198 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002199 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002200static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2201 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002202{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002203 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002204 int ret;
2205
Tejun Heoace2bee2014-02-11 11:52:47 -05002206 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002207
2208 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002209 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo873fe092013-04-14 20:15:26 -07002210 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2211 continue;
Gao fengf33fddc2012-12-06 14:38:57 +08002212 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2213 continue;
2214 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2215 continue;
2216
Li Zefan2739d3c2013-01-21 18:18:33 +08002217 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002218 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002219 if (ret) {
Li Zefan2739d3c2013-01-21 18:18:33 +08002220 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
Tejun Heob1f28d32013-06-28 16:24:10 -07002221 cft->name, ret);
2222 return ret;
2223 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002224 } else {
2225 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002226 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002227 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002228 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002229}
2230
Tejun Heo21a2d3432014-02-12 09:29:49 -05002231static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002232{
2233 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002234 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo492eb212013-08-08 20:11:25 -04002235 struct cgroup *root = &ss->root->top_cgroup;
Tejun Heo492eb212013-08-08 20:11:25 -04002236 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07002237 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002238
Tejun Heo21a2d3432014-02-12 09:29:49 -05002239 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo4ac06012014-02-11 11:52:47 -05002240
Tejun Heo21a2d3432014-02-12 09:29:49 -05002241 /* don't bother if @ss isn't attached */
2242 if (ss->root == &cgroup_dummy_root)
Tejun Heo9ccece82013-06-28 16:24:11 -07002243 return 0;
Li Zefane8c82d22013-06-18 18:48:37 +08002244
Li Zefane8c82d22013-06-18 18:48:37 +08002245 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04002246 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002247 struct cgroup *cgrp = css->cgroup;
2248
Li Zefane8c82d22013-06-18 18:48:37 +08002249 if (cgroup_is_dead(cgrp))
2250 continue;
2251
Tejun Heo21a2d3432014-02-12 09:29:49 -05002252 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07002253 if (ret)
2254 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002255 }
Tejun Heo21a2d3432014-02-12 09:29:49 -05002256
2257 if (is_add && !ret)
2258 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07002259 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002260}
2261
Tejun Heo2da440a2014-02-11 11:52:48 -05002262static void cgroup_exit_cftypes(struct cftype *cfts)
2263{
2264 struct cftype *cft;
2265
Tejun Heo2bd59d42014-02-11 11:52:49 -05002266 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2267 /* free copy for custom atomic_write_len, see init_cftypes() */
2268 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
2269 kfree(cft->kf_ops);
2270 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05002271 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002272 }
Tejun Heo2da440a2014-02-11 11:52:48 -05002273}
2274
Tejun Heo2bd59d42014-02-11 11:52:49 -05002275static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05002276{
2277 struct cftype *cft;
2278
Tejun Heo2bd59d42014-02-11 11:52:49 -05002279 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2280 struct kernfs_ops *kf_ops;
2281
Tejun Heo0adb0702014-02-12 09:29:48 -05002282 WARN_ON(cft->ss || cft->kf_ops);
2283
Tejun Heo2bd59d42014-02-11 11:52:49 -05002284 if (cft->seq_start)
2285 kf_ops = &cgroup_kf_ops;
2286 else
2287 kf_ops = &cgroup_kf_single_ops;
2288
2289 /*
2290 * Ugh... if @cft wants a custom max_write_len, we need to
2291 * make a copy of kf_ops to set its atomic_write_len.
2292 */
2293 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
2294 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
2295 if (!kf_ops) {
2296 cgroup_exit_cftypes(cfts);
2297 return -ENOMEM;
2298 }
2299 kf_ops->atomic_write_len = cft->max_write_len;
2300 }
2301
2302 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05002303 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002304 }
2305
2306 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05002307}
2308
Tejun Heo21a2d3432014-02-12 09:29:49 -05002309static int cgroup_rm_cftypes_locked(struct cftype *cfts)
2310{
2311 lockdep_assert_held(&cgroup_tree_mutex);
2312
2313 if (!cfts || !cfts[0].ss)
2314 return -ENOENT;
2315
2316 list_del(&cfts->node);
2317 cgroup_apply_cftypes(cfts, false);
2318 cgroup_exit_cftypes(cfts);
2319 return 0;
2320}
2321
Tejun Heo8e3f6542012-04-01 12:09:55 -07002322/**
Tejun Heo80b13582014-02-12 09:29:48 -05002323 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2324 * @cfts: zero-length name terminated array of cftypes
2325 *
2326 * Unregister @cfts. Files described by @cfts are removed from all
2327 * existing cgroups and all future cgroups won't have them either. This
2328 * function can be called anytime whether @cfts' subsys is attached or not.
2329 *
2330 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2331 * registered.
2332 */
2333int cgroup_rm_cftypes(struct cftype *cfts)
2334{
Tejun Heo21a2d3432014-02-12 09:29:49 -05002335 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002336
Tejun Heo21a2d3432014-02-12 09:29:49 -05002337 mutex_lock(&cgroup_tree_mutex);
2338 ret = cgroup_rm_cftypes_locked(cfts);
2339 mutex_unlock(&cgroup_tree_mutex);
2340 return ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002341}
2342
2343/**
Tejun Heo8e3f6542012-04-01 12:09:55 -07002344 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2345 * @ss: target cgroup subsystem
2346 * @cfts: zero-length name terminated array of cftypes
2347 *
2348 * Register @cfts to @ss. Files described by @cfts are created for all
2349 * existing cgroups to which @ss is attached and all future cgroups will
2350 * have them too. This function can be called anytime whether @ss is
2351 * attached or not.
2352 *
2353 * Returns 0 on successful registration, -errno on failure. Note that this
2354 * function currently returns 0 as long as @cfts registration is successful
2355 * even if some file creation attempts on existing cgroups fail.
2356 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002357int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002358{
Tejun Heo9ccece82013-06-28 16:24:11 -07002359 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002360
Li Zefandc5736e2014-02-17 10:41:50 +08002361 if (!cfts || cfts[0].name[0] == '\0')
2362 return 0;
2363
Tejun Heo2bd59d42014-02-11 11:52:49 -05002364 ret = cgroup_init_cftypes(ss, cfts);
2365 if (ret)
2366 return ret;
Tejun Heo2bb566c2013-08-08 20:11:23 -04002367
Tejun Heo21a2d3432014-02-12 09:29:49 -05002368 mutex_lock(&cgroup_tree_mutex);
2369
Tejun Heo0adb0702014-02-12 09:29:48 -05002370 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d3432014-02-12 09:29:49 -05002371 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07002372 if (ret)
Tejun Heo21a2d3432014-02-12 09:29:49 -05002373 cgroup_rm_cftypes_locked(cfts);
2374
2375 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07002376 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002377}
Tejun Heo8e3f6542012-04-01 12:09:55 -07002378
Li Zefana043e3b2008-02-23 15:24:09 -08002379/**
2380 * cgroup_task_count - count the number of tasks in a cgroup.
2381 * @cgrp: the cgroup in question
2382 *
2383 * Return the number of tasks in the cgroup.
2384 */
Tejun Heo07bc3562014-02-13 06:58:39 -05002385static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002386{
2387 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07002388 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002389
Tejun Heo96d365e2014-02-13 06:58:40 -05002390 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07002391 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2392 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05002393 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002394 return count;
2395}
2396
Tejun Heo574bd9f2012-11-09 09:12:29 -08002397/**
Tejun Heo492eb212013-08-08 20:11:25 -04002398 * css_next_child - find the next child of a given css
2399 * @pos_css: the current position (%NULL to initiate traversal)
2400 * @parent_css: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09002401 *
Tejun Heo492eb212013-08-08 20:11:25 -04002402 * This function returns the next child of @parent_css and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05002403 * under either cgroup_mutex or RCU read lock. The only requirement is
2404 * that @parent_css and @pos_css are accessible. The next sibling is
2405 * guaranteed to be returned regardless of their states.
Tejun Heo53fa5262013-05-24 10:55:38 +09002406 */
Tejun Heo492eb212013-08-08 20:11:25 -04002407struct cgroup_subsys_state *
2408css_next_child(struct cgroup_subsys_state *pos_css,
2409 struct cgroup_subsys_state *parent_css)
Tejun Heo53fa5262013-05-24 10:55:38 +09002410{
Tejun Heo492eb212013-08-08 20:11:25 -04002411 struct cgroup *pos = pos_css ? pos_css->cgroup : NULL;
2412 struct cgroup *cgrp = parent_css->cgroup;
Tejun Heo53fa5262013-05-24 10:55:38 +09002413 struct cgroup *next;
2414
Tejun Heoace2bee2014-02-11 11:52:47 -05002415 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09002416
2417 /*
2418 * @pos could already have been removed. Once a cgroup is removed,
2419 * its ->sibling.next is no longer updated when its next sibling
Tejun Heoea15f8c2013-06-13 19:27:42 -07002420 * changes. As CGRP_DEAD assertion is serialized and happens
2421 * before the cgroup is taken off the ->sibling list, if we see it
2422 * unasserted, it's guaranteed that the next sibling hasn't
2423 * finished its grace period even if it's already removed, and thus
2424 * safe to dereference from this RCU critical section. If
2425 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
2426 * to be visible as %true here.
Tejun Heo3b287a52013-08-08 20:11:24 -04002427 *
2428 * If @pos is dead, its next pointer can't be dereferenced;
2429 * however, as each cgroup is given a monotonically increasing
2430 * unique serial number and always appended to the sibling list,
2431 * the next one can be found by walking the parent's children until
2432 * we see a cgroup with higher serial number than @pos's. While
2433 * this path can be slower, it's taken only when either the current
2434 * cgroup is removed or iteration and removal race.
Tejun Heo53fa5262013-05-24 10:55:38 +09002435 */
Tejun Heo3b287a52013-08-08 20:11:24 -04002436 if (!pos) {
2437 next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling);
2438 } else if (likely(!cgroup_is_dead(pos))) {
Tejun Heo53fa5262013-05-24 10:55:38 +09002439 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04002440 } else {
2441 list_for_each_entry_rcu(next, &cgrp->children, sibling)
2442 if (next->serial_nr > pos->serial_nr)
2443 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09002444 }
2445
Tejun Heo492eb212013-08-08 20:11:25 -04002446 if (&next->sibling == &cgrp->children)
2447 return NULL;
2448
Tejun Heoca8bdca2013-08-26 18:40:56 -04002449 return cgroup_css(next, parent_css->ss);
Tejun Heo53fa5262013-05-24 10:55:38 +09002450}
Tejun Heo53fa5262013-05-24 10:55:38 +09002451
2452/**
Tejun Heo492eb212013-08-08 20:11:25 -04002453 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002454 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002455 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002456 *
Tejun Heo492eb212013-08-08 20:11:25 -04002457 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002458 * to visit for pre-order traversal of @root's descendants. @root is
2459 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002460 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002461 * While this function requires cgroup_mutex or RCU read locking, it
2462 * doesn't require the whole traversal to be contained in a single critical
2463 * section. This function will return the correct next descendant as long
2464 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002465 */
Tejun Heo492eb212013-08-08 20:11:25 -04002466struct cgroup_subsys_state *
2467css_next_descendant_pre(struct cgroup_subsys_state *pos,
2468 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002469{
Tejun Heo492eb212013-08-08 20:11:25 -04002470 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002471
Tejun Heoace2bee2014-02-11 11:52:47 -05002472 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002473
Tejun Heobd8815a2013-08-08 20:11:27 -04002474 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09002475 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04002476 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002477
2478 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04002479 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002480 if (next)
2481 return next;
2482
2483 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04002484 while (pos != root) {
2485 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002486 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002487 return next;
Tejun Heo492eb212013-08-08 20:11:25 -04002488 pos = css_parent(pos);
Tejun Heo7805d002013-05-24 10:50:24 +09002489 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08002490
2491 return NULL;
2492}
Tejun Heo574bd9f2012-11-09 09:12:29 -08002493
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002494/**
Tejun Heo492eb212013-08-08 20:11:25 -04002495 * css_rightmost_descendant - return the rightmost descendant of a css
2496 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002497 *
Tejun Heo492eb212013-08-08 20:11:25 -04002498 * Return the rightmost descendant of @pos. If there's no descendant, @pos
2499 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002500 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09002501 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002502 * While this function requires cgroup_mutex or RCU read locking, it
2503 * doesn't require the whole traversal to be contained in a single critical
2504 * section. This function will return the correct rightmost descendant as
2505 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002506 */
Tejun Heo492eb212013-08-08 20:11:25 -04002507struct cgroup_subsys_state *
2508css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002509{
Tejun Heo492eb212013-08-08 20:11:25 -04002510 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002511
Tejun Heoace2bee2014-02-11 11:52:47 -05002512 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002513
2514 do {
2515 last = pos;
2516 /* ->prev isn't RCU safe, walk ->next till the end */
2517 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04002518 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002519 pos = tmp;
2520 } while (pos);
2521
2522 return last;
2523}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002524
Tejun Heo492eb212013-08-08 20:11:25 -04002525static struct cgroup_subsys_state *
2526css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002527{
Tejun Heo492eb212013-08-08 20:11:25 -04002528 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002529
2530 do {
2531 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04002532 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002533 } while (pos);
2534
2535 return last;
2536}
2537
2538/**
Tejun Heo492eb212013-08-08 20:11:25 -04002539 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002540 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002541 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002542 *
Tejun Heo492eb212013-08-08 20:11:25 -04002543 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002544 * to visit for post-order traversal of @root's descendants. @root is
2545 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002546 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002547 * While this function requires cgroup_mutex or RCU read locking, it
2548 * doesn't require the whole traversal to be contained in a single critical
2549 * section. This function will return the correct next descendant as long
2550 * as both @pos and @cgroup are accessible and @pos is a descendant of
2551 * @cgroup.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002552 */
Tejun Heo492eb212013-08-08 20:11:25 -04002553struct cgroup_subsys_state *
2554css_next_descendant_post(struct cgroup_subsys_state *pos,
2555 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002556{
Tejun Heo492eb212013-08-08 20:11:25 -04002557 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002558
Tejun Heoace2bee2014-02-11 11:52:47 -05002559 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002560
Tejun Heo58b79a92013-09-06 15:31:08 -04002561 /* if first iteration, visit leftmost descendant which may be @root */
2562 if (!pos)
2563 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002564
Tejun Heobd8815a2013-08-08 20:11:27 -04002565 /* if we visited @root, we're done */
2566 if (pos == root)
2567 return NULL;
2568
Tejun Heo574bd9f2012-11-09 09:12:29 -08002569 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo492eb212013-08-08 20:11:25 -04002570 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002571 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04002572 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002573
2574 /* no sibling left, visit parent */
Tejun Heobd8815a2013-08-08 20:11:27 -04002575 return css_parent(pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002576}
Tejun Heo574bd9f2012-11-09 09:12:29 -08002577
Tejun Heo0942eee2013-08-08 20:11:26 -04002578/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002579 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04002580 * @it: the iterator to advance
2581 *
2582 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04002583 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002584static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04002585{
2586 struct list_head *l = it->cset_link;
2587 struct cgrp_cset_link *link;
2588 struct css_set *cset;
2589
2590 /* Advance to the next non-empty css_set */
2591 do {
2592 l = l->next;
Tejun Heo72ec7022013-08-08 20:11:26 -04002593 if (l == &it->origin_css->cgroup->cset_links) {
Tejun Heod5158762013-08-08 20:11:26 -04002594 it->cset_link = NULL;
2595 return;
2596 }
2597 link = list_entry(l, struct cgrp_cset_link, cset_link);
2598 cset = link->cset;
Tejun Heoc7561122014-02-25 10:04:01 -05002599 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
2600
Tejun Heod5158762013-08-08 20:11:26 -04002601 it->cset_link = l;
Tejun Heoc7561122014-02-25 10:04:01 -05002602
2603 if (!list_empty(&cset->tasks))
2604 it->task = cset->tasks.next;
2605 else
2606 it->task = cset->mg_tasks.next;
Tejun Heod5158762013-08-08 20:11:26 -04002607}
2608
Tejun Heo0942eee2013-08-08 20:11:26 -04002609/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002610 * css_task_iter_start - initiate task iteration
2611 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04002612 * @it: the task iterator to use
2613 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002614 * Initiate iteration through the tasks of @css. The caller can call
2615 * css_task_iter_next() to walk through the tasks until the function
2616 * returns NULL. On completion of iteration, css_task_iter_end() must be
2617 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04002618 *
2619 * Note that this function acquires a lock which is released when the
2620 * iteration finishes. The caller can't sleep while iteration is in
2621 * progress.
2622 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002623void css_task_iter_start(struct cgroup_subsys_state *css,
2624 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05002625 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07002626{
Tejun Heo56fde9e2014-02-13 06:58:38 -05002627 /* no one should try to iterate before mounting cgroups */
2628 WARN_ON_ONCE(!use_task_css_set_links);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002629
Tejun Heo96d365e2014-02-13 06:58:40 -05002630 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002631
Tejun Heo72ec7022013-08-08 20:11:26 -04002632 it->origin_css = css;
2633 it->cset_link = &css->cgroup->cset_links;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002634
Tejun Heo72ec7022013-08-08 20:11:26 -04002635 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002636}
2637
Tejun Heo0942eee2013-08-08 20:11:26 -04002638/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002639 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04002640 * @it: the task iterator being iterated
2641 *
2642 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04002643 * initialized via css_task_iter_start(). Returns NULL when the iteration
2644 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04002645 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002646struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002647{
2648 struct task_struct *res;
2649 struct list_head *l = it->task;
Tejun Heoc7561122014-02-25 10:04:01 -05002650 struct cgrp_cset_link *link = list_entry(it->cset_link,
2651 struct cgrp_cset_link, cset_link);
Paul Menage817929e2007-10-18 23:39:36 -07002652
2653 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo69d02062013-06-12 21:04:50 -07002654 if (!it->cset_link)
Paul Menage817929e2007-10-18 23:39:36 -07002655 return NULL;
2656 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05002657
2658 /*
2659 * Advance iterator to find next entry. cset->tasks is consumed
2660 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
2661 * next cset.
2662 */
Paul Menage817929e2007-10-18 23:39:36 -07002663 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05002664
2665 if (l == &link->cset->tasks)
2666 l = link->cset->mg_tasks.next;
2667
2668 if (l == &link->cset->mg_tasks)
Tejun Heo72ec7022013-08-08 20:11:26 -04002669 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05002670 else
Paul Menage817929e2007-10-18 23:39:36 -07002671 it->task = l;
Tejun Heoc7561122014-02-25 10:04:01 -05002672
Paul Menage817929e2007-10-18 23:39:36 -07002673 return res;
2674}
2675
Tejun Heo0942eee2013-08-08 20:11:26 -04002676/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002677 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04002678 * @it: the task iterator to finish
2679 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002680 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04002681 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002682void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05002683 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07002684{
Tejun Heo96d365e2014-02-13 06:58:40 -05002685 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07002686}
2687
Tejun Heo8cc99342013-04-07 09:29:50 -07002688/**
2689 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
2690 * @to: cgroup to which the tasks will be moved
2691 * @from: cgroup in which the tasks currently reside
2692 */
2693int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
2694{
Tejun Heoe406d1c2014-02-13 06:58:39 -05002695 struct css_task_iter it;
2696 struct task_struct *task;
2697 int ret = 0;
2698
2699 do {
2700 css_task_iter_start(&from->dummy_css, &it);
2701 task = css_task_iter_next(&it);
2702 if (task)
2703 get_task_struct(task);
2704 css_task_iter_end(&it);
2705
2706 if (task) {
2707 mutex_lock(&cgroup_mutex);
2708 ret = cgroup_attach_task(to, task, false);
2709 mutex_unlock(&cgroup_mutex);
2710 put_task_struct(task);
2711 }
2712 } while (task && !ret);
2713
2714 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07002715}
2716
Paul Menage817929e2007-10-18 23:39:36 -07002717/*
Ben Blum102a7752009-09-23 15:56:26 -07002718 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002719 *
2720 * Reading this file can return large amounts of data if a cgroup has
2721 * *lots* of attached tasks. So it may need several calls to read(),
2722 * but we cannot guarantee that the information we produce is correct
2723 * unless we produce it entirely atomically.
2724 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002725 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002726
Li Zefan24528252012-01-20 11:58:43 +08002727/* which pidlist file are we talking about? */
2728enum cgroup_filetype {
2729 CGROUP_FILE_PROCS,
2730 CGROUP_FILE_TASKS,
2731};
2732
2733/*
2734 * A pidlist is a list of pids that virtually represents the contents of one
2735 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
2736 * a pair (one each for procs, tasks) for each pid namespace that's relevant
2737 * to the cgroup.
2738 */
2739struct cgroup_pidlist {
2740 /*
2741 * used to find which pidlist is wanted. doesn't change as long as
2742 * this particular list stays in the list.
2743 */
2744 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
2745 /* array of xids */
2746 pid_t *list;
2747 /* how many elements the above list has */
2748 int length;
Li Zefan24528252012-01-20 11:58:43 +08002749 /* each of these stored in a list by its cgroup */
2750 struct list_head links;
2751 /* pointer to the cgroup we belong to, for list removal purposes */
2752 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05002753 /* for delayed destruction */
2754 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08002755};
2756
Paul Menagebbcb81d2007-10-18 23:39:32 -07002757/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002758 * The following two functions "fix" the issue where there are more pids
2759 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2760 * TODO: replace with a kernel-wide solution to this problem
2761 */
2762#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2763static void *pidlist_allocate(int count)
2764{
2765 if (PIDLIST_TOO_LARGE(count))
2766 return vmalloc(count * sizeof(pid_t));
2767 else
2768 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2769}
Tejun Heob1a21362013-11-29 10:42:58 -05002770
Ben Blumd1d9fd32009-09-23 15:56:28 -07002771static void pidlist_free(void *p)
2772{
2773 if (is_vmalloc_addr(p))
2774 vfree(p);
2775 else
2776 kfree(p);
2777}
Ben Blumd1d9fd32009-09-23 15:56:28 -07002778
2779/*
Tejun Heob1a21362013-11-29 10:42:58 -05002780 * Used to destroy all pidlists lingering waiting for destroy timer. None
2781 * should be left afterwards.
2782 */
2783static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
2784{
2785 struct cgroup_pidlist *l, *tmp_l;
2786
2787 mutex_lock(&cgrp->pidlist_mutex);
2788 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
2789 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
2790 mutex_unlock(&cgrp->pidlist_mutex);
2791
2792 flush_workqueue(cgroup_pidlist_destroy_wq);
2793 BUG_ON(!list_empty(&cgrp->pidlists));
2794}
2795
2796static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
2797{
2798 struct delayed_work *dwork = to_delayed_work(work);
2799 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
2800 destroy_dwork);
2801 struct cgroup_pidlist *tofree = NULL;
2802
2803 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05002804
2805 /*
Tejun Heo04502362013-11-29 10:42:59 -05002806 * Destroy iff we didn't get queued again. The state won't change
2807 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05002808 */
Tejun Heo04502362013-11-29 10:42:59 -05002809 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05002810 list_del(&l->links);
2811 pidlist_free(l->list);
2812 put_pid_ns(l->key.ns);
2813 tofree = l;
2814 }
2815
Tejun Heob1a21362013-11-29 10:42:58 -05002816 mutex_unlock(&l->owner->pidlist_mutex);
2817 kfree(tofree);
2818}
2819
2820/*
Ben Blum102a7752009-09-23 15:56:26 -07002821 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07002822 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002823 */
Li Zefan6ee211a2013-03-12 15:36:00 -07002824static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002825{
Ben Blum102a7752009-09-23 15:56:26 -07002826 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07002827
2828 /*
2829 * we presume the 0th element is unique, so i starts at 1. trivial
2830 * edge cases first; no work needs to be done for either
2831 */
2832 if (length == 0 || length == 1)
2833 return length;
2834 /* src and dest walk down the list; dest counts unique elements */
2835 for (src = 1; src < length; src++) {
2836 /* find next unique element */
2837 while (list[src] == list[src-1]) {
2838 src++;
2839 if (src == length)
2840 goto after;
2841 }
2842 /* dest always points to where the next unique element goes */
2843 list[dest] = list[src];
2844 dest++;
2845 }
2846after:
Ben Blum102a7752009-09-23 15:56:26 -07002847 return dest;
2848}
2849
Tejun Heoafb2bc12013-11-29 10:42:59 -05002850/*
2851 * The two pid files - task and cgroup.procs - guaranteed that the result
2852 * is sorted, which forced this whole pidlist fiasco. As pid order is
2853 * different per namespace, each namespace needs differently sorted list,
2854 * making it impossible to use, for example, single rbtree of member tasks
2855 * sorted by task pointer. As pidlists can be fairly large, allocating one
2856 * per open file is dangerous, so cgroup had to implement shared pool of
2857 * pidlists keyed by cgroup and namespace.
2858 *
2859 * All this extra complexity was caused by the original implementation
2860 * committing to an entirely unnecessary property. In the long term, we
2861 * want to do away with it. Explicitly scramble sort order if
2862 * sane_behavior so that no such expectation exists in the new interface.
2863 *
2864 * Scrambling is done by swapping every two consecutive bits, which is
2865 * non-identity one-to-one mapping which disturbs sort order sufficiently.
2866 */
2867static pid_t pid_fry(pid_t pid)
2868{
2869 unsigned a = pid & 0x55555555;
2870 unsigned b = pid & 0xAAAAAAAA;
2871
2872 return (a << 1) | (b >> 1);
2873}
2874
2875static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
2876{
2877 if (cgroup_sane_behavior(cgrp))
2878 return pid_fry(pid);
2879 else
2880 return pid;
2881}
2882
Ben Blum102a7752009-09-23 15:56:26 -07002883static int cmppid(const void *a, const void *b)
2884{
2885 return *(pid_t *)a - *(pid_t *)b;
2886}
2887
Tejun Heoafb2bc12013-11-29 10:42:59 -05002888static int fried_cmppid(const void *a, const void *b)
2889{
2890 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
2891}
2892
Ben Blum72a8cb32009-09-23 15:56:27 -07002893static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2894 enum cgroup_filetype type)
2895{
2896 struct cgroup_pidlist *l;
2897 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08002898 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08002899
Tejun Heoe6b81712013-11-29 10:42:59 -05002900 lockdep_assert_held(&cgrp->pidlist_mutex);
2901
2902 list_for_each_entry(l, &cgrp->pidlists, links)
2903 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07002904 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05002905 return NULL;
2906}
2907
Ben Blum72a8cb32009-09-23 15:56:27 -07002908/*
2909 * find the appropriate pidlist for our purpose (given procs vs tasks)
2910 * returns with the lock on that pidlist already held, and takes care
2911 * of the use count, or returns NULL with no locks held if we're out of
2912 * memory.
2913 */
Tejun Heoe6b81712013-11-29 10:42:59 -05002914static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
2915 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07002916{
2917 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07002918
Tejun Heoe6b81712013-11-29 10:42:59 -05002919 lockdep_assert_held(&cgrp->pidlist_mutex);
2920
2921 l = cgroup_pidlist_find(cgrp, type);
2922 if (l)
2923 return l;
2924
Ben Blum72a8cb32009-09-23 15:56:27 -07002925 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07002926 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05002927 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07002928 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05002929
Tejun Heob1a21362013-11-29 10:42:58 -05002930 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07002931 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05002932 /* don't need task_nsproxy() if we're looking at ourself */
2933 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07002934 l->owner = cgrp;
2935 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07002936 return l;
2937}
2938
2939/*
Ben Blum102a7752009-09-23 15:56:26 -07002940 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2941 */
Ben Blum72a8cb32009-09-23 15:56:27 -07002942static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2943 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07002944{
2945 pid_t *array;
2946 int length;
2947 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04002948 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07002949 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07002950 struct cgroup_pidlist *l;
2951
Tejun Heo4bac00d2013-11-29 10:42:59 -05002952 lockdep_assert_held(&cgrp->pidlist_mutex);
2953
Ben Blum102a7752009-09-23 15:56:26 -07002954 /*
2955 * If cgroup gets more users after we read count, we won't have
2956 * enough space - tough. This race is indistinguishable to the
2957 * caller from the case that the additional cgroup users didn't
2958 * show up until sometime later on.
2959 */
2960 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002961 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07002962 if (!array)
2963 return -ENOMEM;
2964 /* now, populate the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04002965 css_task_iter_start(&cgrp->dummy_css, &it);
2966 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07002967 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07002968 break;
Ben Blum102a7752009-09-23 15:56:26 -07002969 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07002970 if (type == CGROUP_FILE_PROCS)
2971 pid = task_tgid_vnr(tsk);
2972 else
2973 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07002974 if (pid > 0) /* make sure to only use valid results */
2975 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07002976 }
Tejun Heo72ec7022013-08-08 20:11:26 -04002977 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07002978 length = n;
2979 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05002980 if (cgroup_sane_behavior(cgrp))
2981 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
2982 else
2983 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07002984 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07002985 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05002986
Tejun Heoe6b81712013-11-29 10:42:59 -05002987 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07002988 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05002989 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002990 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07002991 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07002992 }
Tejun Heoe6b81712013-11-29 10:42:59 -05002993
2994 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07002995 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07002996 l->list = array;
2997 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07002998 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07002999 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003000}
3001
Balbir Singh846c7bb2007-10-18 23:39:44 -07003002/**
Li Zefana043e3b2008-02-23 15:24:09 -08003003 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003004 * @stats: cgroupstats to fill information into
3005 * @dentry: A dentry entry belonging to the cgroup for which stats have
3006 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003007 *
3008 * Build and fill cgroupstats so that taskstats can export it to user
3009 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003010 */
3011int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3012{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003013 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003014 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003015 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003016 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003017
Tejun Heo2bd59d42014-02-11 11:52:49 -05003018 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3019 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3020 kernfs_type(kn) != KERNFS_DIR)
3021 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003022
Li Zefanbad34662014-02-14 16:54:28 +08003023 mutex_lock(&cgroup_mutex);
3024
Tejun Heo2bd59d42014-02-11 11:52:49 -05003025 /*
3026 * We aren't being called from kernfs and there's no guarantee on
3027 * @kn->priv's validity. For this and css_tryget_from_dir(),
3028 * @kn->priv is RCU safe. Let's do the RCU dancing.
3029 */
3030 rcu_read_lock();
3031 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08003032 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05003033 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08003034 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003035 return -ENOENT;
3036 }
Li Zefanbad34662014-02-14 16:54:28 +08003037 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07003038
Tejun Heo72ec7022013-08-08 20:11:26 -04003039 css_task_iter_start(&cgrp->dummy_css, &it);
3040 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003041 switch (tsk->state) {
3042 case TASK_RUNNING:
3043 stats->nr_running++;
3044 break;
3045 case TASK_INTERRUPTIBLE:
3046 stats->nr_sleeping++;
3047 break;
3048 case TASK_UNINTERRUPTIBLE:
3049 stats->nr_uninterruptible++;
3050 break;
3051 case TASK_STOPPED:
3052 stats->nr_stopped++;
3053 break;
3054 default:
3055 if (delayacct_is_task_waiting_on_io(tsk))
3056 stats->nr_io_wait++;
3057 break;
3058 }
3059 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003060 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003061
Li Zefanbad34662014-02-14 16:54:28 +08003062 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003063 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003064}
3065
Paul Menage8f3ff202009-09-23 15:56:25 -07003066
Paul Menagecc31edc2008-10-18 20:28:04 -07003067/*
Ben Blum102a7752009-09-23 15:56:26 -07003068 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003069 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003070 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003071 */
3072
Ben Blum102a7752009-09-23 15:56:26 -07003073static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003074{
3075 /*
3076 * Initially we receive a position value that corresponds to
3077 * one more than the last pid shown (or 0 on the first call or
3078 * after a seek to the start). Use a binary-search to find the
3079 * next pid to display, if any
3080 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003081 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003082 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003083 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003084 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003085 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003086 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003087
Tejun Heo4bac00d2013-11-29 10:42:59 -05003088 mutex_lock(&cgrp->pidlist_mutex);
3089
3090 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003091 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003092 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003093 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003094 * could already have been destroyed.
3095 */
Tejun Heo5d224442013-12-05 12:28:04 -05003096 if (of->priv)
3097 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003098
3099 /*
3100 * Either this is the first start() after open or the matching
3101 * pidlist has been destroyed inbetween. Create a new one.
3102 */
Tejun Heo5d224442013-12-05 12:28:04 -05003103 if (!of->priv) {
3104 ret = pidlist_array_load(cgrp, type,
3105 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003106 if (ret)
3107 return ERR_PTR(ret);
3108 }
Tejun Heo5d224442013-12-05 12:28:04 -05003109 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003110
Paul Menagecc31edc2008-10-18 20:28:04 -07003111 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003112 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003113
Paul Menagecc31edc2008-10-18 20:28:04 -07003114 while (index < end) {
3115 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003116 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003117 index = mid;
3118 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003119 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003120 index = mid + 1;
3121 else
3122 end = mid;
3123 }
3124 }
3125 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003126 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003127 return NULL;
3128 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003129 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003130 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003131 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003132}
3133
Ben Blum102a7752009-09-23 15:56:26 -07003134static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003135{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003136 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003137 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05003138
Tejun Heo5d224442013-12-05 12:28:04 -05003139 if (l)
3140 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05003141 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05003142 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003143}
3144
Ben Blum102a7752009-09-23 15:56:26 -07003145static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003146{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003147 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003148 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07003149 pid_t *p = v;
3150 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003151 /*
3152 * Advance to the next pid in the array. If this goes off the
3153 * end, we're done
3154 */
3155 p++;
3156 if (p >= end) {
3157 return NULL;
3158 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05003159 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07003160 return p;
3161 }
3162}
3163
Ben Blum102a7752009-09-23 15:56:26 -07003164static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003165{
3166 return seq_printf(s, "%d\n", *(int *)v);
3167}
3168
Ben Blum102a7752009-09-23 15:56:26 -07003169/*
3170 * seq_operations functions for iterating on pidlists through seq_file -
3171 * independent of whether it's tasks or procs
3172 */
3173static const struct seq_operations cgroup_pidlist_seq_operations = {
3174 .start = cgroup_pidlist_start,
3175 .stop = cgroup_pidlist_stop,
3176 .next = cgroup_pidlist_next,
3177 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003178};
3179
Tejun Heo182446d2013-08-08 20:11:24 -04003180static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3181 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003182{
Tejun Heo182446d2013-08-08 20:11:24 -04003183 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003184}
3185
Tejun Heo182446d2013-08-08 20:11:24 -04003186static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3187 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003188{
Tejun Heo182446d2013-08-08 20:11:24 -04003189 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003190 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003191 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003192 else
Tejun Heo182446d2013-08-08 20:11:24 -04003193 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003194 return 0;
3195}
3196
Tejun Heo182446d2013-08-08 20:11:24 -04003197static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3198 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003199{
Tejun Heo182446d2013-08-08 20:11:24 -04003200 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003201}
3202
Tejun Heo182446d2013-08-08 20:11:24 -04003203static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
3204 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003205{
3206 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003207 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003208 else
Tejun Heo182446d2013-08-08 20:11:24 -04003209 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003210 return 0;
3211}
3212
Tejun Heod5c56ce2013-06-03 19:14:34 -07003213static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07003214 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07003215 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05003216 .seq_start = cgroup_pidlist_start,
3217 .seq_next = cgroup_pidlist_next,
3218 .seq_stop = cgroup_pidlist_stop,
3219 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003220 .private = CGROUP_FILE_PROCS,
Ben Blum74a11662011-05-26 16:25:20 -07003221 .write_u64 = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07003222 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003223 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003224 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07003225 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07003226 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07003227 .read_u64 = cgroup_clone_children_read,
3228 .write_u64 = cgroup_clone_children_write,
3229 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003230 {
Tejun Heo873fe092013-04-14 20:15:26 -07003231 .name = "cgroup.sane_behavior",
3232 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003233 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07003234 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07003235
3236 /*
3237 * Historical crazy stuff. These don't have "cgroup." prefix and
3238 * don't exist if sane_behavior. If you're depending on these, be
3239 * prepared to be burned.
3240 */
3241 {
3242 .name = "tasks",
3243 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05003244 .seq_start = cgroup_pidlist_start,
3245 .seq_next = cgroup_pidlist_next,
3246 .seq_stop = cgroup_pidlist_stop,
3247 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003248 .private = CGROUP_FILE_TASKS,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003249 .write_u64 = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003250 .mode = S_IRUGO | S_IWUSR,
3251 },
3252 {
3253 .name = "notify_on_release",
3254 .flags = CFTYPE_INSANE,
3255 .read_u64 = cgroup_read_notify_on_release,
3256 .write_u64 = cgroup_write_notify_on_release,
3257 },
Tejun Heo873fe092013-04-14 20:15:26 -07003258 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07003259 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07003260 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003261 .seq_show = cgroup_release_agent_show,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003262 .write_string = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05003263 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003264 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003265 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003266};
3267
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003268/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07003269 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003270 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003271 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07003272 *
3273 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003274 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07003275static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003276{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003277 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07003278 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003279
Tejun Heo8e3f6542012-04-01 12:09:55 -07003280 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07003281 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05003282 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07003283
3284 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003285 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003286
Tejun Heo0adb0702014-02-12 09:29:48 -05003287 list_for_each_entry(cfts, &ss->cfts, node) {
3288 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07003289 if (ret < 0)
3290 goto err;
3291 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003292 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003293 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07003294err:
3295 cgroup_clear_dir(cgrp, subsys_mask);
3296 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003297}
3298
Tejun Heo0c21ead2013-08-13 20:22:51 -04003299/*
3300 * css destruction is four-stage process.
3301 *
3302 * 1. Destruction starts. Killing of the percpu_ref is initiated.
3303 * Implemented in kill_css().
3304 *
3305 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
3306 * and thus css_tryget() is guaranteed to fail, the css can be offlined
3307 * by invoking offline_css(). After offlining, the base ref is put.
3308 * Implemented in css_killed_work_fn().
3309 *
3310 * 3. When the percpu_ref reaches zero, the only possible remaining
3311 * accessors are inside RCU read sections. css_release() schedules the
3312 * RCU callback.
3313 *
3314 * 4. After the grace period, the css can be freed. Implemented in
3315 * css_free_work_fn().
3316 *
3317 * It is actually hairier because both step 2 and 4 require process context
3318 * and thus involve punting to css->destroy_work adding two additional
3319 * steps to the already complex sequence.
3320 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04003321static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07003322{
3323 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04003324 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003325 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003326
Tejun Heo0ae78e02013-08-13 11:01:54 -04003327 if (css->parent)
3328 css_put(css->parent);
3329
Tejun Heo0c21ead2013-08-13 20:22:51 -04003330 css->ss->css_free(css);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003331 cgroup_put(cgrp);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003332}
3333
3334static void css_free_rcu_fn(struct rcu_head *rcu_head)
3335{
3336 struct cgroup_subsys_state *css =
3337 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
3338
Tejun Heo0c21ead2013-08-13 20:22:51 -04003339 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003340 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07003341}
3342
Tejun Heod3daf282013-06-13 19:39:16 -07003343static void css_release(struct percpu_ref *ref)
3344{
3345 struct cgroup_subsys_state *css =
3346 container_of(ref, struct cgroup_subsys_state, refcnt);
3347
Tejun Heoaec25022014-02-08 10:36:58 -05003348 rcu_assign_pointer(css->cgroup->subsys[css->ss->id], NULL);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003349 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003350}
3351
Tejun Heo623f9262013-08-13 11:01:55 -04003352static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss,
3353 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003354{
Paul Menagebd89aab2007-10-18 23:40:44 -07003355 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04003356 css->ss = ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003357 css->flags = 0;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003358
Tejun Heo0ae78e02013-08-13 11:01:54 -04003359 if (cgrp->parent)
Tejun Heoca8bdca2013-08-26 18:40:56 -04003360 css->parent = cgroup_css(cgrp->parent, ss);
Tejun Heo0ae78e02013-08-13 11:01:54 -04003361 else
Paul Menageddbcc7e2007-10-18 23:39:30 -07003362 css->flags |= CSS_ROOT;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003363
Tejun Heoca8bdca2013-08-26 18:40:56 -04003364 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003365}
3366
Li Zefan2a4ac632013-07-31 16:16:40 +08003367/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04003368static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003369{
Tejun Heo623f9262013-08-13 11:01:55 -04003370 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08003371 int ret = 0;
3372
Tejun Heoace2bee2014-02-11 11:52:47 -05003373 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003374 lockdep_assert_held(&cgroup_mutex);
3375
Tejun Heo92fb9742012-11-19 08:13:38 -08003376 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04003377 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003378 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04003379 css->flags |= CSS_ONLINE;
Tejun Heof20104d2013-08-13 20:22:50 -04003380 css->cgroup->nr_css++;
Tejun Heoaec25022014-02-08 10:36:58 -05003381 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003382 }
Tejun Heob1929db2012-11-19 08:13:38 -08003383 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003384}
3385
Li Zefan2a4ac632013-07-31 16:16:40 +08003386/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04003387static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003388{
Tejun Heo623f9262013-08-13 11:01:55 -04003389 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003390
Tejun Heoace2bee2014-02-11 11:52:47 -05003391 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003392 lockdep_assert_held(&cgroup_mutex);
3393
3394 if (!(css->flags & CSS_ONLINE))
3395 return;
3396
Li Zefand7eeac12013-03-12 15:35:59 -07003397 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04003398 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003399
Tejun Heoeb954192013-08-08 20:11:23 -04003400 css->flags &= ~CSS_ONLINE;
Tejun Heo09a503ea2013-08-13 20:22:50 -04003401 css->cgroup->nr_css--;
Tejun Heoaec25022014-02-08 10:36:58 -05003402 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003403}
3404
Tejun Heoc81c925a2013-12-06 15:11:56 -05003405/**
3406 * create_css - create a cgroup_subsys_state
3407 * @cgrp: the cgroup new css will be associated with
3408 * @ss: the subsys of new css
3409 *
3410 * Create a new css associated with @cgrp - @ss pair. On success, the new
3411 * css is online and installed in @cgrp with all interface files created.
3412 * Returns 0 on success, -errno on failure.
3413 */
3414static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
3415{
3416 struct cgroup *parent = cgrp->parent;
3417 struct cgroup_subsys_state *css;
3418 int err;
3419
Tejun Heoc81c925a2013-12-06 15:11:56 -05003420 lockdep_assert_held(&cgroup_mutex);
3421
3422 css = ss->css_alloc(cgroup_css(parent, ss));
3423 if (IS_ERR(css))
3424 return PTR_ERR(css);
3425
3426 err = percpu_ref_init(&css->refcnt, css_release);
3427 if (err)
3428 goto err_free;
3429
3430 init_css(css, ss, cgrp);
3431
Tejun Heoaec25022014-02-08 10:36:58 -05003432 err = cgroup_populate_dir(cgrp, 1 << ss->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003433 if (err)
3434 goto err_free;
3435
3436 err = online_css(css);
3437 if (err)
3438 goto err_free;
3439
Tejun Heo59f52962014-02-11 11:52:49 -05003440 cgroup_get(cgrp);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003441 css_get(css->parent);
3442
3443 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
3444 parent->parent) {
3445 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",
3446 current->comm, current->pid, ss->name);
3447 if (!strcmp(ss->name, "memory"))
3448 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
3449 ss->warned_broken_hierarchy = true;
3450 }
3451
3452 return 0;
3453
3454err_free:
3455 percpu_ref_cancel_init(&css->refcnt);
3456 ss->css_free(css);
3457 return err;
3458}
3459
Tejun Heo2bd59d42014-02-11 11:52:49 -05003460/**
Li Zefana043e3b2008-02-23 15:24:09 -08003461 * cgroup_create - create a cgroup
3462 * @parent: cgroup that will be parent of the new cgroup
Tejun Heoe61734c2014-02-12 09:29:50 -05003463 * @name: name of the new cgroup
Tejun Heo2bd59d42014-02-11 11:52:49 -05003464 * @mode: mode to set on new cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07003465 */
Tejun Heoe61734c2014-02-12 09:29:50 -05003466static long cgroup_create(struct cgroup *parent, const char *name,
Tejun Heo2bd59d42014-02-11 11:52:49 -05003467 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003468{
Paul Menagebd89aab2007-10-18 23:40:44 -07003469 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003470 struct cgroupfs_root *root = parent->root;
Tejun Heob58c8992014-02-08 10:26:33 -05003471 int ssid, err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003472 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003473 struct kernfs_node *kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003474
Tejun Heo0a950f62012-11-19 09:02:12 -08003475 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07003476 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3477 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003478 return -ENOMEM;
3479
Tejun Heoace2bee2014-02-11 11:52:47 -05003480 mutex_lock(&cgroup_tree_mutex);
3481
Li Zefan4e96ee82013-07-31 09:50:50 +08003482 /*
Tejun Heo976c06b2012-11-05 09:16:59 -08003483 * Only live parents can have children. Note that the liveliness
3484 * check isn't strictly necessary because cgroup_mkdir() and
3485 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
3486 * anyway so that locking is contained inside cgroup proper and we
3487 * don't get nasty surprises if we ever grow another caller.
3488 */
3489 if (!cgroup_lock_live_group(parent)) {
3490 err = -ENODEV;
Tejun Heoace2bee2014-02-11 11:52:47 -05003491 goto err_unlock_tree;
Li Zefan0ab02ca2014-02-11 16:05:46 +08003492 }
3493
3494 /*
3495 * Temporarily set the pointer to NULL, so idr_find() won't return
3496 * a half-baked cgroup.
3497 */
3498 cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL);
3499 if (cgrp->id < 0) {
3500 err = -ENOMEM;
3501 goto err_unlock;
Tejun Heo976c06b2012-11-05 09:16:59 -08003502 }
3503
Paul Menagecc31edc2008-10-18 20:28:04 -07003504 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003505
Paul Menagebd89aab2007-10-18 23:40:44 -07003506 cgrp->parent = parent;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003507 cgrp->dummy_css.parent = &parent->dummy_css;
Paul Menagebd89aab2007-10-18 23:40:44 -07003508 cgrp->root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003509
Li Zefanb6abdb02008-03-04 14:28:19 -08003510 if (notify_on_release(parent))
3511 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3512
Tejun Heo2260e7f2012-11-19 08:13:38 -08003513 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
3514 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003515
Tejun Heo2bd59d42014-02-11 11:52:49 -05003516 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05003517 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003518 if (IS_ERR(kn)) {
3519 err = PTR_ERR(kn);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003520 goto err_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003521 }
3522 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003523
Tejun Heo6f305582014-02-12 09:29:50 -05003524 /*
3525 * This extra ref will be put in cgroup_free_fn() and guarantees
3526 * that @cgrp->kn is always accessible.
3527 */
3528 kernfs_get(kn);
3529
Tejun Heo00356bd2013-06-18 11:14:22 -07003530 cgrp->serial_nr = cgroup_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09003531
Tejun Heo4e139af2012-11-19 08:13:36 -08003532 /* allocation complete, commit to creation */
Tejun Heo4e139af2012-11-19 08:13:36 -08003533 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05003534 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05003535 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08003536
Tejun Heo0d802552013-12-06 15:11:56 -05003537 /*
3538 * @cgrp is now fully operational. If something fails after this
3539 * point, it'll be released via the normal destruction path.
3540 */
Li Zefan4e96ee82013-07-31 09:50:50 +08003541 idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
3542
Tejun Heo2bb566c2013-08-08 20:11:23 -04003543 err = cgroup_addrm_files(cgrp, cgroup_base_files, true);
Tejun Heo628f7cd2013-06-28 16:24:11 -07003544 if (err)
3545 goto err_destroy;
3546
Tejun Heo9d403e92013-12-06 15:11:56 -05003547 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05003548 for_each_subsys(ss, ssid) {
3549 if (root->subsys_mask & (1 << ssid)) {
3550 err = create_css(cgrp, ss);
3551 if (err)
3552 goto err_destroy;
3553 }
Tejun Heoa8638032012-11-09 09:12:29 -08003554 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003555
Tejun Heo2bd59d42014-02-11 11:52:49 -05003556 kernfs_activate(kn);
3557
Paul Menageddbcc7e2007-10-18 23:39:30 -07003558 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003559 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003560
3561 return 0;
3562
Tejun Heo0a950f62012-11-19 09:02:12 -08003563err_free_id:
Li Zefan4e96ee82013-07-31 09:50:50 +08003564 idr_remove(&root->cgroup_idr, cgrp->id);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003565err_unlock:
3566 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003567err_unlock_tree:
3568 mutex_unlock(&cgroup_tree_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003569 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003570 return err;
Tejun Heo4b8b47e2012-11-19 08:13:38 -08003571
3572err_destroy:
3573 cgroup_destroy_locked(cgrp);
3574 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003575 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo4b8b47e2012-11-19 08:13:38 -08003576 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003577}
3578
Tejun Heo2bd59d42014-02-11 11:52:49 -05003579static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
3580 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003581{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003582 struct cgroup *parent = parent_kn->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003583
Tejun Heo2bd59d42014-02-11 11:52:49 -05003584 return cgroup_create(parent, name, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003585}
3586
Tejun Heo223dbc32013-08-13 20:22:50 -04003587/*
3588 * This is called when the refcnt of a css is confirmed to be killed.
3589 * css_tryget() is now guaranteed to fail.
3590 */
3591static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07003592{
Tejun Heo223dbc32013-08-13 20:22:50 -04003593 struct cgroup_subsys_state *css =
3594 container_of(work, struct cgroup_subsys_state, destroy_work);
3595 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07003596
Tejun Heoace2bee2014-02-11 11:52:47 -05003597 mutex_lock(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003598 mutex_lock(&cgroup_mutex);
3599
3600 /*
Tejun Heo09a503ea2013-08-13 20:22:50 -04003601 * css_tryget() is guaranteed to fail now. Tell subsystems to
3602 * initate destruction.
3603 */
3604 offline_css(css);
3605
3606 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003607 * If @cgrp is marked dead, it's waiting for refs of all css's to
3608 * be disabled before proceeding to the second phase of cgroup
3609 * destruction. If we are the last one, kick it off.
3610 */
Tejun Heo09a503ea2013-08-13 20:22:50 -04003611 if (!cgrp->nr_css && cgroup_is_dead(cgrp))
Tejun Heof20104d2013-08-13 20:22:50 -04003612 cgroup_destroy_css_killed(cgrp);
3613
3614 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003615 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04003616
3617 /*
3618 * Put the css refs from kill_css(). Each css holds an extra
3619 * reference to the cgroup's dentry and cgroup removal proceeds
3620 * regardless of css refs. On the last put of each css, whenever
3621 * that may be, the extra dentry ref is put so that dentry
3622 * destruction happens only after all css's are released.
3623 */
3624 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07003625}
3626
Tejun Heo223dbc32013-08-13 20:22:50 -04003627/* css kill confirmation processing requires process context, bounce */
3628static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07003629{
3630 struct cgroup_subsys_state *css =
3631 container_of(ref, struct cgroup_subsys_state, refcnt);
3632
Tejun Heo223dbc32013-08-13 20:22:50 -04003633 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003634 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07003635}
3636
3637/**
Tejun Heoedae0c32013-08-13 20:22:51 -04003638 * kill_css - destroy a css
3639 * @css: css to destroy
3640 *
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003641 * This function initiates destruction of @css by removing cgroup interface
3642 * files and putting its base reference. ->css_offline() will be invoked
3643 * asynchronously once css_tryget() is guaranteed to fail and when the
3644 * reference count reaches zero, @css will be released.
Tejun Heoedae0c32013-08-13 20:22:51 -04003645 */
3646static void kill_css(struct cgroup_subsys_state *css)
3647{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003648 /*
3649 * This must happen before css is disassociated with its cgroup.
3650 * See seq_css() for details.
3651 */
Tejun Heoaec25022014-02-08 10:36:58 -05003652 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003653
Tejun Heoedae0c32013-08-13 20:22:51 -04003654 /*
3655 * Killing would put the base ref, but we need to keep it alive
3656 * until after ->css_offline().
3657 */
3658 css_get(css);
3659
3660 /*
3661 * cgroup core guarantees that, by the time ->css_offline() is
3662 * invoked, no new css reference will be given out via
3663 * css_tryget(). We can't simply call percpu_ref_kill() and
3664 * proceed to offlining css's because percpu_ref_kill() doesn't
3665 * guarantee that the ref is seen as killed on all CPUs on return.
3666 *
3667 * Use percpu_ref_kill_and_confirm() to get notifications as each
3668 * css is confirmed to be seen as killed on all CPUs.
3669 */
3670 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003671}
3672
3673/**
3674 * cgroup_destroy_locked - the first stage of cgroup destruction
3675 * @cgrp: cgroup to be destroyed
3676 *
3677 * css's make use of percpu refcnts whose killing latency shouldn't be
3678 * exposed to userland and are RCU protected. Also, cgroup core needs to
3679 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
3680 * invoked. To satisfy all the requirements, destruction is implemented in
3681 * the following two steps.
3682 *
3683 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
3684 * userland visible parts and start killing the percpu refcnts of
3685 * css's. Set up so that the next stage will be kicked off once all
3686 * the percpu refcnts are confirmed to be killed.
3687 *
3688 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
3689 * rest of destruction. Once all cgroup references are gone, the
3690 * cgroup is RCU-freed.
3691 *
3692 * This function implements s1. After this step, @cgrp is gone as far as
3693 * the userland is concerned and a new cgroup with the same name may be
3694 * created. As cgroup doesn't care about the names internally, this
3695 * doesn't cause any problem.
3696 */
Tejun Heo42809dd2012-11-19 08:13:37 -08003697static int cgroup_destroy_locked(struct cgroup *cgrp)
3698 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003699{
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003700 struct cgroup *child;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003701 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07003702 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05003703 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003704
Tejun Heoace2bee2014-02-11 11:52:47 -05003705 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003706 lockdep_assert_held(&cgroup_mutex);
3707
Tejun Heoddd69142013-06-12 21:04:54 -07003708 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05003709 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05003710 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07003711 */
Tejun Heo96d365e2014-02-13 06:58:40 -05003712 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003713 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05003714 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07003715 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003716 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08003717
Tejun Heo1a90dd52012-11-05 09:16:59 -08003718 /*
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003719 * Make sure there's no live children. We can't test ->children
3720 * emptiness as dead children linger on it while being destroyed;
3721 * otherwise, "rmdir parent/child parent" may fail with -EBUSY.
3722 */
3723 empty = true;
3724 rcu_read_lock();
3725 list_for_each_entry_rcu(child, &cgrp->children, sibling) {
3726 empty = cgroup_is_dead(child);
3727 if (!empty)
3728 break;
3729 }
3730 rcu_read_unlock();
3731 if (!empty)
3732 return -EBUSY;
3733
3734 /*
Tejun Heoedae0c32013-08-13 20:22:51 -04003735 * Initiate massacre of all css's. cgroup_destroy_css_killed()
3736 * will be invoked to perform the rest of destruction once the
Tejun Heo4ac06012014-02-11 11:52:47 -05003737 * percpu refs of all css's are confirmed to be killed. This
3738 * involves removing the subsystem's files, drop cgroup_mutex.
Tejun Heo1a90dd52012-11-05 09:16:59 -08003739 */
Tejun Heo4ac06012014-02-11 11:52:47 -05003740 mutex_unlock(&cgroup_mutex);
Tejun Heo1c6727a2013-12-06 15:11:56 -05003741 for_each_css(css, ssid, cgrp)
3742 kill_css(css);
Tejun Heo4ac06012014-02-11 11:52:47 -05003743 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07003744
3745 /*
3746 * Mark @cgrp dead. This prevents further task migration and child
3747 * creation by disabling cgroup_lock_live_group(). Note that
Tejun Heo492eb212013-08-08 20:11:25 -04003748 * CGRP_DEAD assertion is depended upon by css_next_child() to
Tejun Heo455050d2013-06-13 19:27:41 -07003749 * resume iteration after dropping RCU read lock. See
Tejun Heo492eb212013-08-08 20:11:25 -04003750 * css_next_child() for details.
Tejun Heo455050d2013-06-13 19:27:41 -07003751 */
Tejun Heo54766d42013-06-12 21:04:53 -07003752 set_bit(CGRP_DEAD, &cgrp->flags);
Tejun Heo1a90dd52012-11-05 09:16:59 -08003753
Tejun Heo455050d2013-06-13 19:27:41 -07003754 /* CGRP_DEAD is set, remove from ->release_list for the last time */
3755 raw_spin_lock(&release_list_lock);
3756 if (!list_empty(&cgrp->release_list))
3757 list_del_init(&cgrp->release_list);
3758 raw_spin_unlock(&release_list_lock);
3759
3760 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003761 * If @cgrp has css's attached, the second stage of cgroup
3762 * destruction is kicked off from css_killed_work_fn() after the
3763 * refs of all attached css's are killed. If @cgrp doesn't have
3764 * any css, we kick it off here.
Tejun Heo455050d2013-06-13 19:27:41 -07003765 */
Tejun Heof20104d2013-08-13 20:22:50 -04003766 if (!cgrp->nr_css)
3767 cgroup_destroy_css_killed(cgrp);
3768
Tejun Heo2bd59d42014-02-11 11:52:49 -05003769 /* remove @cgrp directory along with the base files */
Tejun Heo4ac06012014-02-11 11:52:47 -05003770 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003771
3772 /*
3773 * There are two control paths which try to determine cgroup from
3774 * dentry without going through kernfs - cgroupstats_build() and
3775 * css_tryget_from_dir(). Those are supported by RCU protecting
3776 * clearing of cgrp->kn->priv backpointer, which should happen
3777 * after all files under it have been removed.
3778 */
Tejun Heo6f305582014-02-12 09:29:50 -05003779 kernfs_remove(cgrp->kn); /* @cgrp has an extra ref on its kn */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003780 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003781
Tejun Heo4ac06012014-02-11 11:52:47 -05003782 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07003783
Tejun Heoea15f8c2013-06-13 19:27:42 -07003784 return 0;
3785};
3786
Tejun Heod3daf282013-06-13 19:39:16 -07003787/**
Tejun Heof20104d2013-08-13 20:22:50 -04003788 * cgroup_destroy_css_killed - the second step of cgroup destruction
Tejun Heod3daf282013-06-13 19:39:16 -07003789 * @work: cgroup->destroy_free_work
3790 *
3791 * This function is invoked from a work item for a cgroup which is being
Tejun Heo09a503ea2013-08-13 20:22:50 -04003792 * destroyed after all css's are offlined and performs the rest of
3793 * destruction. This is the second step of destruction described in the
3794 * comment above cgroup_destroy_locked().
Tejun Heod3daf282013-06-13 19:39:16 -07003795 */
Tejun Heof20104d2013-08-13 20:22:50 -04003796static void cgroup_destroy_css_killed(struct cgroup *cgrp)
Tejun Heoea15f8c2013-06-13 19:27:42 -07003797{
Tejun Heoea15f8c2013-06-13 19:27:42 -07003798 struct cgroup *parent = cgrp->parent;
Tejun Heoea15f8c2013-06-13 19:27:42 -07003799
Tejun Heoace2bee2014-02-11 11:52:47 -05003800 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003801 lockdep_assert_held(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003802
Paul Menage999cd8a2009-01-07 18:08:36 -08003803 /* delete this cgroup from parent->children */
Tejun Heoeb6fd502012-11-09 09:12:29 -08003804 list_del_rcu(&cgrp->sibling);
Tejun Heob0ca5a82012-04-01 12:09:54 -07003805
Tejun Heo59f52962014-02-11 11:52:49 -05003806 cgroup_put(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003807
Paul Menagebd89aab2007-10-18 23:40:44 -07003808 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003809 check_for_release(parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003810}
3811
Tejun Heo2bd59d42014-02-11 11:52:49 -05003812static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08003813{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003814 struct cgroup *cgrp = kn->priv;
3815 int ret = 0;
3816
3817 /*
3818 * This is self-destruction but @kn can't be removed while this
3819 * callback is in progress. Let's break active protection. Once
3820 * the protection is broken, @cgrp can be destroyed at any point.
3821 * Pin it so that it stays accessible.
3822 */
3823 cgroup_get(cgrp);
3824 kernfs_break_active_protection(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08003825
Tejun Heoace2bee2014-02-11 11:52:47 -05003826 mutex_lock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003827 mutex_lock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003828
3829 /*
3830 * @cgrp might already have been destroyed while we're trying to
3831 * grab the mutexes.
3832 */
3833 if (!cgroup_is_dead(cgrp))
3834 ret = cgroup_destroy_locked(cgrp);
3835
Tejun Heo42809dd2012-11-19 08:13:37 -08003836 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003837 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003838
Tejun Heo2bd59d42014-02-11 11:52:49 -05003839 kernfs_unbreak_active_protection(kn);
3840 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08003841 return ret;
3842}
3843
Tejun Heo2bd59d42014-02-11 11:52:49 -05003844static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
3845 .remount_fs = cgroup_remount,
3846 .show_options = cgroup_show_options,
3847 .mkdir = cgroup_mkdir,
3848 .rmdir = cgroup_rmdir,
3849 .rename = cgroup_rename,
3850};
3851
Li Zefan06a11922008-04-29 01:00:07 -07003852static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003853{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003854 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08003855
3856 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003857
Tejun Heoace2bee2014-02-11 11:52:47 -05003858 mutex_lock(&cgroup_tree_mutex);
Tejun Heo648bb562012-11-19 08:13:36 -08003859 mutex_lock(&cgroup_mutex);
3860
Tejun Heo0adb0702014-02-12 09:29:48 -05003861 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003862
Paul Menageddbcc7e2007-10-18 23:39:30 -07003863 /* Create the top cgroup state for this subsystem */
Tejun Heo9871bf92013-06-24 15:21:47 -07003864 ss->root = &cgroup_dummy_root;
Tejun Heoca8bdca2013-08-26 18:40:56 -04003865 css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003866 /* We don't handle early failures gracefully */
3867 BUG_ON(IS_ERR(css));
Tejun Heo623f9262013-08-13 11:01:55 -04003868 init_css(css, ss, cgroup_dummy_top);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003869
Li Zefane8d55fd2008-04-29 01:00:13 -07003870 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07003871 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07003872 * newly registered, all tasks and hence the
3873 * init_css_set is in the subsystem's top cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05003874 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003875
3876 need_forkexit_callback |= ss->fork || ss->exit;
3877
Li Zefane8d55fd2008-04-29 01:00:13 -07003878 /* At system boot, before all subsystems have been
3879 * registered, no tasks have been forked, so we don't
3880 * need to invoke fork callbacks here. */
3881 BUG_ON(!list_empty(&init_task.tasks));
3882
Tejun Heoae7f1642013-08-13 20:22:50 -04003883 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08003884
Tejun Heo648bb562012-11-19 08:13:36 -08003885 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
3889/**
Li Zefana043e3b2008-02-23 15:24:09 -08003890 * cgroup_init_early - cgroup initialization at system boot
3891 *
3892 * Initialize cgroups at system boot, and initialize any
3893 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003894 */
3895int __init cgroup_init_early(void)
3896{
Tejun Heo30159ec2013-06-25 11:53:37 -07003897 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003898 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07003899
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07003900 atomic_set(&init_css_set.refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07003901 INIT_LIST_HEAD(&init_css_set.cgrp_links);
Paul Menage817929e2007-10-18 23:39:36 -07003902 INIT_LIST_HEAD(&init_css_set.tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05003903 INIT_LIST_HEAD(&init_css_set.mg_tasks);
3904 INIT_LIST_HEAD(&init_css_set.mg_node);
Li Zefan472b1052008-04-29 01:00:11 -07003905 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07003906 css_set_count = 1;
Tejun Heo9871bf92013-06-24 15:21:47 -07003907 init_cgroup_root(&cgroup_dummy_root);
3908 cgroup_root_count = 1;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07003909 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07003910
Tejun Heo69d02062013-06-12 21:04:50 -07003911 init_cgrp_cset_link.cset = &init_css_set;
Tejun Heo9871bf92013-06-24 15:21:47 -07003912 init_cgrp_cset_link.cgrp = cgroup_dummy_top;
3913 list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -07003914 list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003915
Tejun Heo3ed80a62014-02-08 10:36:58 -05003916 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05003917 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05003918 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
3919 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05003920 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05003921 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
3922 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
3923
Tejun Heoaec25022014-02-08 10:36:58 -05003924 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05003925 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07003926
3927 if (ss->early_init)
3928 cgroup_init_subsys(ss);
3929 }
3930 return 0;
3931}
3932
3933/**
Li Zefana043e3b2008-02-23 15:24:09 -08003934 * cgroup_init - cgroup initialization
3935 *
3936 * Register cgroup filesystem and /proc file, and initialize
3937 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003938 */
3939int __init cgroup_init(void)
3940{
Tejun Heo30159ec2013-06-25 11:53:37 -07003941 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08003942 unsigned long key;
Tejun Heo30159ec2013-06-25 11:53:37 -07003943 int i, err;
Paul Menagea4243162007-10-18 23:39:35 -07003944
Tejun Heo2bd59d42014-02-11 11:52:49 -05003945 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Tejun Heo2da440a2014-02-11 11:52:48 -05003946
Tejun Heo3ed80a62014-02-08 10:36:58 -05003947 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003948 if (!ss->early_init)
3949 cgroup_init_subsys(ss);
Tejun Heode00ffa2014-02-11 11:52:48 -05003950
3951 /*
3952 * cftype registration needs kmalloc and can't be done
3953 * during early_init. Register base cftypes separately.
3954 */
3955 if (ss->base_cftypes)
3956 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003957 }
3958
Tejun Heofa3ca072013-04-14 11:36:56 -07003959 /* allocate id for the dummy hierarchy */
Tejun Heo54e7b4e2013-04-14 11:36:57 -07003960 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07003961
Tejun Heo82fe9b02013-06-25 11:53:37 -07003962 /* Add init_css_set to the hash table */
3963 key = css_set_hash(init_css_set.subsys);
3964 hash_add(css_set_table, &init_css_set.hlist, key);
3965
Tejun Heofc76df72013-06-25 11:53:37 -07003966 BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1));
Greg KH676db4a2010-08-05 13:53:35 -07003967
Li Zefan4e96ee82013-07-31 09:50:50 +08003968 err = idr_alloc(&cgroup_dummy_root.cgroup_idr, cgroup_dummy_top,
3969 0, 1, GFP_KERNEL);
3970 BUG_ON(err < 0);
3971
Tejun Heo54e7b4e2013-04-14 11:36:57 -07003972 mutex_unlock(&cgroup_mutex);
3973
Greg KH676db4a2010-08-05 13:53:35 -07003974 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003975 if (!cgroup_kobj)
3976 return -ENOMEM;
Greg KH676db4a2010-08-05 13:53:35 -07003977
3978 err = register_filesystem(&cgroup_fs_type);
3979 if (err < 0) {
3980 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003981 return err;
Greg KH676db4a2010-08-05 13:53:35 -07003982 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003983
Li Zefan46ae2202008-04-29 01:00:08 -07003984 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003985 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003986}
Paul Menageb4f48b62007-10-18 23:39:33 -07003987
Tejun Heoe5fca242013-11-22 17:14:39 -05003988static int __init cgroup_wq_init(void)
3989{
3990 /*
3991 * There isn't much point in executing destruction path in
3992 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05003993 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05003994 *
3995 * We would prefer to do this in cgroup_init() above, but that
3996 * is called before init_workqueues(): so leave this until after.
3997 */
Tejun Heo1a115332014-02-12 19:06:19 -05003998 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05003999 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004000
4001 /*
4002 * Used to destroy pidlists and separate to serve as flush domain.
4003 * Cap @max_active to 1 too.
4004 */
4005 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4006 0, 1);
4007 BUG_ON(!cgroup_pidlist_destroy_wq);
4008
Tejun Heoe5fca242013-11-22 17:14:39 -05004009 return 0;
4010}
4011core_initcall(cgroup_wq_init);
4012
Paul Menagea4243162007-10-18 23:39:35 -07004013/*
4014 * proc_cgroup_show()
4015 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4016 * - Used for /proc/<pid>/cgroup.
4017 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4018 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004019 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004020 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4021 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4022 * cgroup to top_cgroup.
4023 */
4024
4025/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004026int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004027{
4028 struct pid *pid;
4029 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05004030 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07004031 int retval;
4032 struct cgroupfs_root *root;
4033
4034 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05004035 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07004036 if (!buf)
4037 goto out;
4038
4039 retval = -ESRCH;
4040 pid = m->private;
4041 tsk = get_pid_task(pid, PIDTYPE_PID);
4042 if (!tsk)
4043 goto out_free;
4044
4045 retval = 0;
4046
4047 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05004048 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004049
Li Zefane5f6a862009-01-07 18:07:41 -08004050 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004051 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004052 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004053 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004054
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004055 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004056 for_each_subsys(ss, ssid)
4057 if (root->subsys_mask & (1 << ssid))
4058 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004059 if (strlen(root->name))
4060 seq_printf(m, "%sname=%s", count ? "," : "",
4061 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004062 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004063 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05004064 path = cgroup_path(cgrp, buf, PATH_MAX);
4065 if (!path) {
4066 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07004067 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05004068 }
4069 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07004070 seq_putc(m, '\n');
4071 }
4072
4073out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05004074 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004075 mutex_unlock(&cgroup_mutex);
4076 put_task_struct(tsk);
4077out_free:
4078 kfree(buf);
4079out:
4080 return retval;
4081}
4082
Paul Menagea4243162007-10-18 23:39:35 -07004083/* Display information about each subsystem and each hierarchy */
4084static int proc_cgroupstats_show(struct seq_file *m, void *v)
4085{
Tejun Heo30159ec2013-06-25 11:53:37 -07004086 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004087 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004088
Paul Menage8bab8dd2008-04-04 14:29:57 -07004089 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004090 /*
4091 * ideally we don't want subsystems moving around while we do this.
4092 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4093 * subsys/hierarchy state.
4094 */
Paul Menagea4243162007-10-18 23:39:35 -07004095 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004096
4097 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004098 seq_printf(m, "%s\t%d\t%d\t%d\n",
4099 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05004100 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004101
Paul Menagea4243162007-10-18 23:39:35 -07004102 mutex_unlock(&cgroup_mutex);
4103 return 0;
4104}
4105
4106static int cgroupstats_open(struct inode *inode, struct file *file)
4107{
Al Viro9dce07f2008-03-29 03:07:28 +00004108 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004109}
4110
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004111static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004112 .open = cgroupstats_open,
4113 .read = seq_read,
4114 .llseek = seq_lseek,
4115 .release = single_release,
4116};
4117
Paul Menageb4f48b62007-10-18 23:39:33 -07004118/**
4119 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004120 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004121 *
4122 * Description: A task inherits its parent's cgroup at fork().
4123 *
4124 * A pointer to the shared css_set was automatically copied in
4125 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo9bb71302012-10-18 17:52:07 -07004126 * it was not made under the protection of RCU or cgroup_mutex, so
4127 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4128 * have already changed current->cgroups, allowing the previously
4129 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004130 *
4131 * At the point that cgroup_fork() is called, 'current' is the parent
4132 * task, and the passed argument 'child' points to the child task.
4133 */
4134void cgroup_fork(struct task_struct *child)
4135{
Tejun Heo9bb71302012-10-18 17:52:07 -07004136 task_lock(current);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004137 get_css_set(task_css_set(current));
Paul Menage817929e2007-10-18 23:39:36 -07004138 child->cgroups = current->cgroups;
Tejun Heo9bb71302012-10-18 17:52:07 -07004139 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004140 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004141}
4142
4143/**
Li Zefana043e3b2008-02-23 15:24:09 -08004144 * cgroup_post_fork - called on a new task after adding it to the task list
4145 * @child: the task in question
4146 *
Tejun Heo5edee612012-10-16 15:03:14 -07004147 * Adds the task to the list running through its css_set if necessary and
4148 * call the subsystem fork() callbacks. Has to be after the task is
4149 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04004150 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07004151 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004152 */
Paul Menage817929e2007-10-18 23:39:36 -07004153void cgroup_post_fork(struct task_struct *child)
4154{
Tejun Heo30159ec2013-06-25 11:53:37 -07004155 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07004156 int i;
4157
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004158 /*
4159 * use_task_css_set_links is set to 1 before we walk the tasklist
4160 * under the tasklist_lock and we read it here after we added the child
4161 * to the tasklist under the tasklist_lock as well. If the child wasn't
4162 * yet in the tasklist when we walked through it from
4163 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4164 * should be visible now due to the paired locking and barriers implied
4165 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4166 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4167 * lock on fork.
4168 */
Paul Menage817929e2007-10-18 23:39:36 -07004169 if (use_task_css_set_links) {
Tejun Heo96d365e2014-02-13 06:58:40 -05004170 down_write(&css_set_rwsem);
Tejun Heod8783832012-10-18 17:40:30 -07004171 task_lock(child);
4172 if (list_empty(&child->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07004173 list_add(&child->cg_list, &task_css_set(child)->tasks);
Tejun Heod8783832012-10-18 17:40:30 -07004174 task_unlock(child);
Tejun Heo96d365e2014-02-13 06:58:40 -05004175 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004176 }
Tejun Heo5edee612012-10-16 15:03:14 -07004177
4178 /*
4179 * Call ss->fork(). This must happen after @child is linked on
4180 * css_set; otherwise, @child might change state between ->fork()
4181 * and addition to css_set.
4182 */
4183 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004184 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07004185 if (ss->fork)
4186 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07004187 }
Paul Menage817929e2007-10-18 23:39:36 -07004188}
Tejun Heo5edee612012-10-16 15:03:14 -07004189
Paul Menage817929e2007-10-18 23:39:36 -07004190/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004191 * cgroup_exit - detach cgroup from exiting task
4192 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004193 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004194 *
4195 * Description: Detach cgroup from @tsk and release it.
4196 *
4197 * Note that cgroups marked notify_on_release force every task in
4198 * them to take the global cgroup_mutex mutex when exiting.
4199 * This could impact scaling on very large systems. Be reluctant to
4200 * use notify_on_release cgroups where very high task exit scaling
4201 * is required on large systems.
4202 *
4203 * the_top_cgroup_hack:
4204 *
4205 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4206 *
4207 * We call cgroup_exit() while the task is still competent to
4208 * handle notify_on_release(), then leave the task attached to the
4209 * root cgroup in each hierarchy for the remainder of its exit.
4210 *
4211 * To do this properly, we would increment the reference count on
4212 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4213 * code we would add a second cgroup function call, to drop that
4214 * reference. This would just create an unnecessary hot spot on
4215 * the top_cgroup reference count, to no avail.
4216 *
4217 * Normally, holding a reference to a cgroup without bumping its
4218 * count is unsafe. The cgroup could go away, or someone could
4219 * attach us to a different cgroup, decrementing the count on
4220 * the first cgroup that we never incremented. But in this case,
4221 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004222 * which wards off any cgroup_attach_task() attempts, or task is a failed
4223 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004224 */
4225void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4226{
Tejun Heo30159ec2013-06-25 11:53:37 -07004227 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07004228 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004229 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004230
4231 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004232 * Unlink from the css_set task list if necessary. Optimistically
4233 * check cg_list before taking css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07004234 */
4235 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05004236 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004237 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004238 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05004239 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004240 }
4241
Paul Menageb4f48b62007-10-18 23:39:33 -07004242 /* Reassign the task to the init_css_set. */
4243 task_lock(tsk);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004244 cset = task_css_set(tsk);
4245 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004246
4247 if (run_callbacks && need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004248 /* see cgroup_post_fork() for details */
4249 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004250 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04004251 struct cgroup_subsys_state *old_css = cset->subsys[i];
4252 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07004253
Tejun Heoeb954192013-08-08 20:11:23 -04004254 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004255 }
4256 }
4257 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004258 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004259
Tejun Heo89c55092014-02-13 06:58:40 -05004260 put_css_set(cset, true);
Paul Menageb4f48b62007-10-18 23:39:33 -07004261}
Paul Menage697f4162007-10-18 23:39:34 -07004262
Paul Menagebd89aab2007-10-18 23:40:44 -07004263static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004264{
Li Zefanf50daa72013-03-01 15:06:07 +08004265 if (cgroup_is_releasable(cgrp) &&
Tejun Heo6f3d828f02013-06-12 21:04:55 -07004266 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
Li Zefanf50daa72013-03-01 15:06:07 +08004267 /*
4268 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07004269 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08004270 * it now
4271 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004272 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08004273
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004274 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07004275 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07004276 list_empty(&cgrp->release_list)) {
4277 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004278 need_schedule_work = 1;
4279 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004280 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004281 if (need_schedule_work)
4282 schedule_work(&release_agent_work);
4283 }
4284}
4285
Paul Menage81a6a5c2007-10-18 23:39:38 -07004286/*
4287 * Notify userspace when a cgroup is released, by running the
4288 * configured release agent with the name of the cgroup (path
4289 * relative to the root of cgroup file system) as the argument.
4290 *
4291 * Most likely, this user command will try to rmdir this cgroup.
4292 *
4293 * This races with the possibility that some other task will be
4294 * attached to this cgroup before it is removed, or that some other
4295 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4296 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4297 * unused, and this cgroup will be reprieved from its death sentence,
4298 * to continue to serve a useful existence. Next time it's released,
4299 * we will get notified again, if it still has 'notify_on_release' set.
4300 *
4301 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4302 * means only wait until the task is successfully execve()'d. The
4303 * separate release agent task is forked by call_usermodehelper(),
4304 * then control in this thread returns here, without waiting for the
4305 * release agent task. We don't bother to wait because the caller of
4306 * this routine has no use for the exit status of the release agent
4307 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004308 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004309static void cgroup_release_agent(struct work_struct *work)
4310{
4311 BUG_ON(work != &release_agent_work);
4312 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004313 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004314 while (!list_empty(&release_list)) {
4315 char *argv[3], *envp[3];
4316 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05004317 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07004318 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004319 struct cgroup,
4320 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004321 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004322 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05004323 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004324 if (!pathbuf)
4325 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05004326 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
4327 if (!path)
Paul Menagee788e062008-07-25 01:46:59 -07004328 goto continue_free;
4329 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4330 if (!agentbuf)
4331 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004332
4333 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004334 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05004335 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004336 argv[i] = NULL;
4337
4338 i = 0;
4339 /* minimal command environment */
4340 envp[i++] = "HOME=/";
4341 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4342 envp[i] = NULL;
4343
4344 /* Drop the lock while we invoke the usermode helper,
4345 * since the exec could involve hitting disk and hence
4346 * be a slow process */
4347 mutex_unlock(&cgroup_mutex);
4348 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004349 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004350 continue_free:
4351 kfree(pathbuf);
4352 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004353 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004354 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004355 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004356 mutex_unlock(&cgroup_mutex);
4357}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004358
4359static int __init cgroup_disable(char *str)
4360{
Tejun Heo30159ec2013-06-25 11:53:37 -07004361 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004362 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07004363 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004364
4365 while ((token = strsep(&str, ",")) != NULL) {
4366 if (!*token)
4367 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004368
Tejun Heo3ed80a62014-02-08 10:36:58 -05004369 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004370 if (!strcmp(token, ss->name)) {
4371 ss->disabled = 1;
4372 printk(KERN_INFO "Disabling %s control group"
4373 " subsystem\n", ss->name);
4374 break;
4375 }
4376 }
4377 }
4378 return 1;
4379}
4380__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004381
Tejun Heob77d7b62013-08-13 11:01:54 -04004382/**
Tejun Heo5a17f542014-02-11 11:52:47 -05004383 * css_tryget_from_dir - get corresponding css from the dentry of a cgroup dir
Tejun Heo35cf0832013-08-26 18:40:56 -04004384 * @dentry: directory dentry of interest
4385 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04004386 *
Tejun Heo5a17f542014-02-11 11:52:47 -05004387 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
4388 * to get the corresponding css and return it. If such css doesn't exist
4389 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02004390 */
Tejun Heo5a17f542014-02-11 11:52:47 -05004391struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry,
4392 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004393{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004394 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
4395 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004396 struct cgroup *cgrp;
Tejun Heob77d7b62013-08-13 11:01:54 -04004397
Tejun Heo35cf0832013-08-26 18:40:56 -04004398 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004399 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4400 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004401 return ERR_PTR(-EBADF);
4402
Tejun Heo5a17f542014-02-11 11:52:47 -05004403 rcu_read_lock();
4404
Tejun Heo2bd59d42014-02-11 11:52:49 -05004405 /*
4406 * This path doesn't originate from kernfs and @kn could already
4407 * have been or be removed at any point. @kn->priv is RCU
4408 * protected for this access. See destroy_locked() for details.
4409 */
4410 cgrp = rcu_dereference(kn->priv);
4411 if (cgrp)
4412 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05004413
4414 if (!css || !css_tryget(css))
4415 css = ERR_PTR(-ENOENT);
4416
4417 rcu_read_unlock();
4418 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004419}
Stephane Eraniane5d13672011-02-14 11:20:01 +02004420
Li Zefan1cb650b2013-08-19 10:05:24 +08004421/**
4422 * css_from_id - lookup css by id
4423 * @id: the cgroup id
4424 * @ss: cgroup subsys to be looked into
4425 *
4426 * Returns the css if there's valid one with @id, otherwise returns NULL.
4427 * Should be called under rcu_read_lock().
4428 */
4429struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
4430{
4431 struct cgroup *cgrp;
4432
Tejun Heoace2bee2014-02-11 11:52:47 -05004433 cgroup_assert_mutexes_or_rcu_locked();
Li Zefan1cb650b2013-08-19 10:05:24 +08004434
4435 cgrp = idr_find(&ss->root->cgroup_idr, id);
4436 if (cgrp)
Tejun Heod1625962013-08-27 14:27:23 -04004437 return cgroup_css(cgrp, ss);
Li Zefan1cb650b2013-08-19 10:05:24 +08004438 return NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004439}
4440
Paul Menagefe693432009-09-23 15:56:20 -07004441#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04004442static struct cgroup_subsys_state *
4443debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07004444{
4445 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4446
4447 if (!css)
4448 return ERR_PTR(-ENOMEM);
4449
4450 return css;
4451}
4452
Tejun Heoeb954192013-08-08 20:11:23 -04004453static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07004454{
Tejun Heoeb954192013-08-08 20:11:23 -04004455 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07004456}
4457
Tejun Heo182446d2013-08-08 20:11:24 -04004458static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
4459 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004460{
Tejun Heo182446d2013-08-08 20:11:24 -04004461 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07004462}
4463
Tejun Heo182446d2013-08-08 20:11:24 -04004464static u64 current_css_set_read(struct cgroup_subsys_state *css,
4465 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004466{
4467 return (u64)(unsigned long)current->cgroups;
4468}
4469
Tejun Heo182446d2013-08-08 20:11:24 -04004470static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08004471 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004472{
4473 u64 count;
4474
4475 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07004476 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07004477 rcu_read_unlock();
4478 return count;
4479}
4480
Tejun Heo2da8ca82013-12-05 12:28:04 -05004481static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004482{
Tejun Heo69d02062013-06-12 21:04:50 -07004483 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07004484 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05004485 char *name_buf;
4486
4487 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
4488 if (!name_buf)
4489 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07004490
Tejun Heo96d365e2014-02-13 06:58:40 -05004491 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07004492 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07004493 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07004494 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004495 struct cgroup *c = link->cgrp;
Tejun Heo59f52962014-02-11 11:52:49 -05004496 const char *name = "?";
Paul Menage7717f7b2009-09-23 15:56:22 -07004497
Tejun Heoe61734c2014-02-12 09:29:50 -05004498 if (c != cgroup_dummy_top) {
4499 cgroup_name(c, name_buf, NAME_MAX + 1);
4500 name = name_buf;
4501 }
Tejun Heo59f52962014-02-11 11:52:49 -05004502
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004503 seq_printf(seq, "Root %d group %s\n",
4504 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004505 }
4506 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05004507 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05004508 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07004509 return 0;
4510}
4511
4512#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05004513static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004514{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004515 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07004516 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07004517
Tejun Heo96d365e2014-02-13 06:58:40 -05004518 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04004519 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07004520 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07004521 struct task_struct *task;
4522 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05004523
Tejun Heo5abb8852013-06-12 21:04:49 -07004524 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05004525
Tejun Heo5abb8852013-06-12 21:04:49 -07004526 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05004527 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
4528 goto overflow;
4529 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07004530 }
Tejun Heoc7561122014-02-25 10:04:01 -05004531
4532 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
4533 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
4534 goto overflow;
4535 seq_printf(seq, " task %d\n", task_pid_vnr(task));
4536 }
4537 continue;
4538 overflow:
4539 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07004540 }
Tejun Heo96d365e2014-02-13 06:58:40 -05004541 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07004542 return 0;
4543}
4544
Tejun Heo182446d2013-08-08 20:11:24 -04004545static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004546{
Tejun Heo182446d2013-08-08 20:11:24 -04004547 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07004548}
4549
4550static struct cftype debug_files[] = {
4551 {
Paul Menagefe693432009-09-23 15:56:20 -07004552 .name = "taskcount",
4553 .read_u64 = debug_taskcount_read,
4554 },
4555
4556 {
4557 .name = "current_css_set",
4558 .read_u64 = current_css_set_read,
4559 },
4560
4561 {
4562 .name = "current_css_set_refcount",
4563 .read_u64 = current_css_set_refcount_read,
4564 },
4565
4566 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004567 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004568 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004569 },
4570
4571 {
4572 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004573 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004574 },
4575
4576 {
Paul Menagefe693432009-09-23 15:56:20 -07004577 .name = "releasable",
4578 .read_u64 = releasable_read,
4579 },
Paul Menagefe693432009-09-23 15:56:20 -07004580
Tejun Heo4baf6e32012-04-01 12:09:55 -07004581 { } /* terminate */
4582};
Paul Menagefe693432009-09-23 15:56:20 -07004583
Tejun Heo073219e2014-02-08 10:36:58 -05004584struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08004585 .css_alloc = debug_css_alloc,
4586 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07004587 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07004588};
4589#endif /* CONFIG_CGROUP_DEBUG */