blob: 5606c0f08d95c1da85f75b1326f99cfc81e053eb [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 Menagec6d57f332009-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 */
Li Zefan081aa452013-03-13 09:17:09 +080055#include <linux/flex_array.h> /* used in cgroup_attach_task */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020056#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050057#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070058
Arun Sharma600634972011-07-26 16:09:06 -070059#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070060
Tejun Heoe25e2cbb2011-12-12 18:12:21 -080061/*
Tejun Heob1a21362013-11-29 10:42:58 -050062 * pidlists linger the following amount before being destroyed. The goal
63 * is avoiding frequent destruction in the middle of consecutive read calls
64 * Expiring in the middle is a performance problem not a correctness one.
65 * 1 sec should be enough.
66 */
67#define CGROUP_PIDLIST_DESTROY_DELAY HZ
68
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050069#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
70 MAX_CFTYPE_NAME + 2)
71
Tejun Heob1a21362013-11-29 10:42:58 -050072/*
Tejun Heoace2bee812014-02-11 11:52:47 -050073 * cgroup_tree_mutex nests above cgroup_mutex and protects cftypes, file
74 * creation/removal and hierarchy changing operations including cgroup
75 * creation, removal, css association and controller rebinding. This outer
76 * lock is needed mainly to resolve the circular dependency between kernfs
77 * active ref and cgroup_mutex. cgroup_tree_mutex nests above both.
78 */
79static DEFINE_MUTEX(cgroup_tree_mutex);
80
81/*
Tejun Heoe25e2cbb2011-12-12 18:12:21 -080082 * cgroup_mutex is the master lock. Any modification to cgroup or its
83 * hierarchy must be performed while holding it.
Tejun Heoe25e2cbb2011-12-12 18:12:21 -080084 */
Tejun Heo22194492013-04-07 09:29:51 -070085#ifdef CONFIG_PROVE_RCU
86DEFINE_MUTEX(cgroup_mutex);
Tejun Heo8af01f562013-08-08 20:11:22 -040087EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for lockdep */
Tejun Heo22194492013-04-07 09:29:51 -070088#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070089static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo22194492013-04-07 09:29:51 -070090#endif
91
Tejun Heo69e943b2014-02-08 10:36:58 -050092/*
93 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
94 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
95 */
96static DEFINE_SPINLOCK(release_agent_path_lock);
97
Tejun Heoace2bee812014-02-11 11:52:47 -050098#define cgroup_assert_mutexes_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -050099 rcu_lockdep_assert(rcu_read_lock_held() || \
Tejun Heoace2bee812014-02-11 11:52:47 -0500100 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500101 lockdep_is_held(&cgroup_mutex), \
Tejun Heoace2bee812014-02-11 11:52:47 -0500102 "cgroup_[tree_]mutex or RCU read lock required");
Tejun Heo87fb54f2013-12-06 15:11:55 -0500103
Ben Blumaae8aab2010-03-10 15:22:07 -0800104/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500105 * cgroup destruction makes heavy use of work items and there can be a lot
106 * of concurrent destructions. Use a separate workqueue so that cgroup
107 * destruction work items don't end up filling up max_active of system_wq
108 * which may lead to deadlock.
109 */
110static struct workqueue_struct *cgroup_destroy_wq;
111
112/*
Tejun Heob1a21362013-11-29 10:42:58 -0500113 * pidlist destructions need to be flushed on cgroup destruction. Use a
114 * separate workqueue as flush domain.
115 */
116static struct workqueue_struct *cgroup_pidlist_destroy_wq;
117
Tejun Heo3ed80a62014-02-08 10:36:58 -0500118/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500119#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500120static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700121#include <linux/cgroup_subsys.h>
122};
Tejun Heo073219e2014-02-08 10:36:58 -0500123#undef SUBSYS
124
125/* array of cgroup subsystem names */
126#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
127static const char *cgroup_subsys_name[] = {
128#include <linux/cgroup_subsys.h>
129};
130#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131
Paul Menageddbcc7e2007-10-18 23:39:30 -0700132/*
Tejun Heo9871bf92013-06-24 15:21:47 -0700133 * The dummy hierarchy, reserved for the subsystems that are otherwise
134 * unattached - it never has more than a single cgroup, and all tasks are
135 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700136 */
Tejun Heo9871bf92013-06-24 15:21:47 -0700137static struct cgroupfs_root cgroup_dummy_root;
138
139/* dummy_top is a shorthand for the dummy hierarchy's top cgroup */
140static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700141
142/* The list of hierarchy roots */
143
Tejun Heo9871bf92013-06-24 15:21:47 -0700144static LIST_HEAD(cgroup_roots);
145static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700146
Tejun Heo3417ae12014-02-08 10:37:01 -0500147/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700148static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700149
Li Zefan794611a2013-06-18 18:53:53 +0800150/*
151 * Assign a monotonically increasing serial number to cgroups. It
152 * guarantees cgroups with bigger numbers are newer than those with smaller
153 * numbers. Also, as cgroups are always appended to the parent's
154 * ->children list, it guarantees that sibling cgroups are always sorted in
Tejun Heo00356bd2013-06-18 11:14:22 -0700155 * the ascending serial number order on the list. Protected by
156 * cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800157 */
Tejun Heo00356bd2013-06-18 11:14:22 -0700158static u64 cgroup_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800159
Paul Menageddbcc7e2007-10-18 23:39:30 -0700160/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800161 * check for fork/exit handlers to call. This avoids us having to do
162 * extra work in the fork/exit path if none of the subsystems need to
163 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700164 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700165static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700166
Tejun Heo628f7cd2013-06-28 16:24:11 -0700167static struct cftype cgroup_base_files[];
168
Tejun Heo59f52962014-02-11 11:52:49 -0500169static void cgroup_put(struct cgroup *cgrp);
Tejun Heof2e85d52014-02-11 11:52:49 -0500170static int rebind_subsystems(struct cgroupfs_root *root,
171 unsigned long added_mask, unsigned removed_mask);
Tejun Heof20104d2013-08-13 20:22:50 -0400172static void cgroup_destroy_css_killed(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800173static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400174static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
175 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500176static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800177
Tejun Heo95109b62013-08-08 20:11:27 -0400178/**
179 * cgroup_css - obtain a cgroup's css for the specified subsystem
180 * @cgrp: the cgroup of interest
Tejun Heoca8bdca2013-08-26 18:40:56 -0400181 * @ss: the subsystem of interest (%NULL returns the dummy_css)
Tejun Heo95109b62013-08-08 20:11:27 -0400182 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400183 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
184 * function must be called either under cgroup_mutex or rcu_read_lock() and
185 * the caller is responsible for pinning the returned css if it wants to
186 * keep accessing it outside the said locks. This function may return
187 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400188 */
189static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400190 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400191{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400192 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500193 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee812014-02-11 11:52:47 -0500194 lockdep_is_held(&cgroup_tree_mutex) ||
195 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400196 else
197 return &cgrp->dummy_css;
Tejun Heo95109b62013-08-08 20:11:27 -0400198}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700199
Paul Menageddbcc7e2007-10-18 23:39:30 -0700200/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700201static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700202{
Tejun Heo54766d42013-06-12 21:04:53 -0700203 return test_bit(CGRP_DEAD, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700204}
205
Tejun Heo59f52962014-02-11 11:52:49 -0500206struct cgroup_subsys_state *seq_css(struct seq_file *seq)
207{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500208 struct kernfs_open_file *of = seq->private;
209 struct cgroup *cgrp = of->kn->parent->priv;
210 struct cftype *cft = seq_cft(seq);
211
212 /*
213 * This is open and unprotected implementation of cgroup_css().
214 * seq_css() is only called from a kernfs file operation which has
215 * an active reference on the file. Because all the subsystem
216 * files are drained before a css is disassociated with a cgroup,
217 * the matching css from the cgroup's subsys table is guaranteed to
218 * be and stay valid until the enclosing operation is complete.
219 */
220 if (cft->ss)
221 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
222 else
223 return &cgrp->dummy_css;
Tejun Heo59f52962014-02-11 11:52:49 -0500224}
225EXPORT_SYMBOL_GPL(seq_css);
226
Li Zefan78574cf2013-04-08 19:00:38 -0700227/**
228 * cgroup_is_descendant - test ancestry
229 * @cgrp: the cgroup to be tested
230 * @ancestor: possible ancestor of @cgrp
231 *
232 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
233 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
234 * and @ancestor are accessible.
235 */
236bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
237{
238 while (cgrp) {
239 if (cgrp == ancestor)
240 return true;
241 cgrp = cgrp->parent;
242 }
243 return false;
244}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700245
Adrian Bunke9685a02008-02-07 00:13:46 -0800246static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700247{
248 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700249 (1 << CGRP_RELEASABLE) |
250 (1 << CGRP_NOTIFY_ON_RELEASE);
251 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700252}
253
Adrian Bunke9685a02008-02-07 00:13:46 -0800254static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700255{
Paul Menagebd89aab2007-10-18 23:40:44 -0700256 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700257}
258
Tejun Heo30159ec2013-06-25 11:53:37 -0700259/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500260 * for_each_css - iterate all css's of a cgroup
261 * @css: the iteration cursor
262 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
263 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700264 *
265 * Should be called under cgroup_mutex.
266 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500267#define for_each_css(css, ssid, cgrp) \
268 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
269 if (!((css) = rcu_dereference_check( \
270 (cgrp)->subsys[(ssid)], \
Tejun Heoace2bee812014-02-11 11:52:47 -0500271 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo1c6727a2013-12-06 15:11:56 -0500272 lockdep_is_held(&cgroup_mutex)))) { } \
273 else
274
275/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500276 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700277 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500278 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700279 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500280#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500281 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
282 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700283
Tejun Heo5549c4972013-06-24 15:21:48 -0700284/* iterate across the active hierarchies */
285#define for_each_active_root(root) \
286 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700287
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700288/**
289 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
290 * @cgrp: the cgroup to be checked for liveness
291 *
Tejun Heo47cfcd02013-04-07 09:29:51 -0700292 * On success, returns true; the mutex should be later unlocked. On
293 * failure returns false with no lock held.
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700294 */
Tejun Heob9777cf2013-04-07 09:29:51 -0700295static bool cgroup_lock_live_group(struct cgroup *cgrp)
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700296{
297 mutex_lock(&cgroup_mutex);
Tejun Heo54766d42013-06-12 21:04:53 -0700298 if (cgroup_is_dead(cgrp)) {
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700299 mutex_unlock(&cgroup_mutex);
300 return false;
301 }
302 return true;
303}
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700304
Paul Menage81a6a5c2007-10-18 23:39:38 -0700305/* the list of cgroups eligible for automatic release. Protected by
306 * release_list_lock */
307static LIST_HEAD(release_list);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +0200308static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700309static void cgroup_release_agent(struct work_struct *work);
310static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700311static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700312
Tejun Heo69d02062013-06-12 21:04:50 -0700313/*
314 * A cgroup can be associated with multiple css_sets as different tasks may
315 * belong to different cgroups on different hierarchies. In the other
316 * direction, a css_set is naturally associated with multiple cgroups.
317 * This M:N relationship is represented by the following link structure
318 * which exists for each association and allows traversing the associations
319 * from both sides.
320 */
321struct cgrp_cset_link {
322 /* the cgroup and css_set this link associates */
323 struct cgroup *cgrp;
324 struct css_set *cset;
325
326 /* list of cgrp_cset_links anchored at cgrp->cset_links */
327 struct list_head cset_link;
328
329 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
330 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700331};
332
333/* The default css_set - used by init and its children prior to any
334 * hierarchies being mounted. It contains a pointer to the root state
335 * for each subsystem. Also used to anchor the list of css_sets. Not
336 * reference-counted, to improve performance when child cgroups
337 * haven't been created.
338 */
339
340static struct css_set init_css_set;
Tejun Heo69d02062013-06-12 21:04:50 -0700341static struct cgrp_cset_link init_cgrp_cset_link;
Paul Menage817929e2007-10-18 23:39:36 -0700342
Tejun Heo0942eee2013-08-08 20:11:26 -0400343/*
Tejun Heo96d365e2014-02-13 06:58:40 -0500344 * css_set_rwsem protects the list of css_set objects, and the chain of
345 * tasks off each css_set.
Tejun Heo0942eee2013-08-08 20:11:26 -0400346 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500347static DECLARE_RWSEM(css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700348static int css_set_count;
349
Paul Menage7717f7b2009-09-23 15:56:22 -0700350/*
351 * hash table for cgroup groups. This improves the performance to find
352 * an existing css_set. This hash doesn't (currently) take into
353 * account cgroups in empty hierarchies.
354 */
Li Zefan472b1052008-04-29 01:00:11 -0700355#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800356static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700357
Li Zefan0ac801f2013-01-10 11:49:27 +0800358static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700359{
Li Zefan0ac801f2013-01-10 11:49:27 +0800360 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700361 struct cgroup_subsys *ss;
362 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700363
Tejun Heo30159ec2013-06-25 11:53:37 -0700364 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800365 key += (unsigned long)css[i];
366 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700367
Li Zefan0ac801f2013-01-10 11:49:27 +0800368 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700369}
370
Tejun Heo89c55092014-02-13 06:58:40 -0500371static void put_css_set_locked(struct css_set *cset, bool taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700372{
Tejun Heo69d02062013-06-12 21:04:50 -0700373 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo5abb8852013-06-12 21:04:49 -0700374
Tejun Heo89c55092014-02-13 06:58:40 -0500375 lockdep_assert_held(&css_set_rwsem);
376
377 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700378 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700379
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700380 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo5abb8852013-06-12 21:04:49 -0700381 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700382 css_set_count--;
383
Tejun Heo69d02062013-06-12 21:04:50 -0700384 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700385 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700386
Tejun Heo69d02062013-06-12 21:04:50 -0700387 list_del(&link->cset_link);
388 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800389
Tejun Heo96d365e2014-02-13 06:58:40 -0500390 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo6f3d828f02013-06-12 21:04:55 -0700391 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700392 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700393 set_bit(CGRP_RELEASABLE, &cgrp->flags);
394 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700395 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700396
397 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700398 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700399
Tejun Heo5abb8852013-06-12 21:04:49 -0700400 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700401}
402
Tejun Heo89c55092014-02-13 06:58:40 -0500403static void put_css_set(struct css_set *cset, bool taskexit)
404{
405 /*
406 * Ensure that the refcount doesn't hit zero while any readers
407 * can see it. Similar to atomic_dec_and_lock(), but for an
408 * rwlock
409 */
410 if (atomic_add_unless(&cset->refcount, -1, 1))
411 return;
412
413 down_write(&css_set_rwsem);
414 put_css_set_locked(cset, taskexit);
415 up_write(&css_set_rwsem);
416}
417
Paul Menage817929e2007-10-18 23:39:36 -0700418/*
419 * refcounted get/put for css_set objects
420 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700421static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700422{
Tejun Heo5abb8852013-06-12 21:04:49 -0700423 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700424}
425
Tejun Heob326f9d2013-06-24 15:21:48 -0700426/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700427 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700428 * @cset: candidate css_set being tested
429 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700430 * @new_cgrp: cgroup that's being entered by the task
431 * @template: desired set of css pointers in css_set (pre-calculated)
432 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800433 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700434 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
435 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700436static bool compare_css_sets(struct css_set *cset,
437 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700438 struct cgroup *new_cgrp,
439 struct cgroup_subsys_state *template[])
440{
441 struct list_head *l1, *l2;
442
Tejun Heo5abb8852013-06-12 21:04:49 -0700443 if (memcmp(template, cset->subsys, sizeof(cset->subsys))) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700444 /* Not all subsystems matched */
445 return false;
446 }
447
448 /*
449 * Compare cgroup pointers in order to distinguish between
450 * different cgroups in heirarchies with no subsystems. We
451 * could get by with just this check alone (and skip the
452 * memcmp above) but on most setups the memcmp check will
453 * avoid the need for this more expensive check on almost all
454 * candidates.
455 */
456
Tejun Heo69d02062013-06-12 21:04:50 -0700457 l1 = &cset->cgrp_links;
458 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700459 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700460 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700461 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700462
463 l1 = l1->next;
464 l2 = l2->next;
465 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700466 if (l1 == &cset->cgrp_links) {
467 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700468 break;
469 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700470 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700471 }
472 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700473 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
474 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
475 cgrp1 = link1->cgrp;
476 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700477 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700478 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700479
480 /*
481 * If this hierarchy is the hierarchy of the cgroup
482 * that's changing, then we need to check that this
483 * css_set points to the new cgroup; if it's any other
484 * hierarchy, then this css_set should point to the
485 * same cgroup as the old css_set.
486 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700487 if (cgrp1->root == new_cgrp->root) {
488 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700489 return false;
490 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700491 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700492 return false;
493 }
494 }
495 return true;
496}
497
Tejun Heob326f9d2013-06-24 15:21:48 -0700498/**
499 * find_existing_css_set - init css array and find the matching css_set
500 * @old_cset: the css_set that we're using before the cgroup transition
501 * @cgrp: the cgroup that we're moving into
502 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700503 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700504static struct css_set *find_existing_css_set(struct css_set *old_cset,
505 struct cgroup *cgrp,
506 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700507{
Paul Menagebd89aab2007-10-18 23:40:44 -0700508 struct cgroupfs_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700509 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700510 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800511 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700512 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700513
Ben Blumaae8aab2010-03-10 15:22:07 -0800514 /*
515 * Build the set of subsystem state objects that we want to see in the
516 * new css_set. while subsystems can change globally, the entries here
517 * won't change, so no need for locking.
518 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700519 for_each_subsys(ss, i) {
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -0400520 if (root->subsys_mask & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700521 /* Subsystem is in this hierarchy. So we want
522 * the subsystem state from the new
523 * cgroup */
Tejun Heoca8bdca2013-08-26 18:40:56 -0400524 template[i] = cgroup_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700525 } else {
526 /* Subsystem is not in this hierarchy, so we
527 * don't want to change the subsystem state */
Tejun Heo5abb8852013-06-12 21:04:49 -0700528 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700529 }
530 }
531
Li Zefan0ac801f2013-01-10 11:49:27 +0800532 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700533 hash_for_each_possible(css_set_table, cset, hlist, key) {
534 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700535 continue;
536
537 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700538 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700539 }
Paul Menage817929e2007-10-18 23:39:36 -0700540
541 /* No existing cgroup group matched */
542 return NULL;
543}
544
Tejun Heo69d02062013-06-12 21:04:50 -0700545static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700546{
Tejun Heo69d02062013-06-12 21:04:50 -0700547 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700548
Tejun Heo69d02062013-06-12 21:04:50 -0700549 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
550 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700551 kfree(link);
552 }
553}
554
Tejun Heo69d02062013-06-12 21:04:50 -0700555/**
556 * allocate_cgrp_cset_links - allocate cgrp_cset_links
557 * @count: the number of links to allocate
558 * @tmp_links: list_head the allocated links are put on
559 *
560 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
561 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700562 */
Tejun Heo69d02062013-06-12 21:04:50 -0700563static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700564{
Tejun Heo69d02062013-06-12 21:04:50 -0700565 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700566 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700567
568 INIT_LIST_HEAD(tmp_links);
569
Li Zefan36553432008-07-29 22:33:19 -0700570 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700571 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700572 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700573 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700574 return -ENOMEM;
575 }
Tejun Heo69d02062013-06-12 21:04:50 -0700576 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700577 }
578 return 0;
579}
580
Li Zefanc12f65d2009-01-07 18:07:42 -0800581/**
582 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700583 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700584 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800585 * @cgrp: the destination cgroup
586 */
Tejun Heo69d02062013-06-12 21:04:50 -0700587static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
588 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800589{
Tejun Heo69d02062013-06-12 21:04:50 -0700590 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800591
Tejun Heo69d02062013-06-12 21:04:50 -0700592 BUG_ON(list_empty(tmp_links));
593 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
594 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700595 link->cgrp = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700596 list_move(&link->cset_link, &cgrp->cset_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700597 /*
598 * Always add links to the tail of the list so that the list
599 * is sorted by order of hierarchy creation
600 */
Tejun Heo69d02062013-06-12 21:04:50 -0700601 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800602}
603
Tejun Heob326f9d2013-06-24 15:21:48 -0700604/**
605 * find_css_set - return a new css_set with one cgroup updated
606 * @old_cset: the baseline css_set
607 * @cgrp: the cgroup to be updated
608 *
609 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
610 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700611 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700612static struct css_set *find_css_set(struct css_set *old_cset,
613 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700614{
Tejun Heob326f9d2013-06-24 15:21:48 -0700615 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700616 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700617 struct list_head tmp_links;
618 struct cgrp_cset_link *link;
Li Zefan0ac801f2013-01-10 11:49:27 +0800619 unsigned long key;
Li Zefan472b1052008-04-29 01:00:11 -0700620
Tejun Heob326f9d2013-06-24 15:21:48 -0700621 lockdep_assert_held(&cgroup_mutex);
622
Paul Menage817929e2007-10-18 23:39:36 -0700623 /* First see if we already have a cgroup group that matches
624 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500625 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700626 cset = find_existing_css_set(old_cset, cgrp, template);
627 if (cset)
628 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500629 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700630
Tejun Heo5abb8852013-06-12 21:04:49 -0700631 if (cset)
632 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700633
Tejun Heof4f4be22013-06-12 21:04:51 -0700634 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700635 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700636 return NULL;
637
Tejun Heo69d02062013-06-12 21:04:50 -0700638 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700639 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700640 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700641 return NULL;
642 }
643
Tejun Heo5abb8852013-06-12 21:04:49 -0700644 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700645 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700646 INIT_LIST_HEAD(&cset->tasks);
647 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700648
649 /* Copy the set of subsystem state objects generated in
650 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700651 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700652
Tejun Heo96d365e2014-02-13 06:58:40 -0500653 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700654 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700655 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700656 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700657
Paul Menage7717f7b2009-09-23 15:56:22 -0700658 if (c->root == cgrp->root)
659 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700660 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700661 }
Paul Menage817929e2007-10-18 23:39:36 -0700662
Tejun Heo69d02062013-06-12 21:04:50 -0700663 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700664
Paul Menage817929e2007-10-18 23:39:36 -0700665 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700666
667 /* Add this cgroup group to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700668 key = css_set_hash(cset->subsys);
669 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700670
Tejun Heo96d365e2014-02-13 06:58:40 -0500671 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700672
Tejun Heo5abb8852013-06-12 21:04:49 -0700673 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700674}
675
Tejun Heo2bd59d42014-02-11 11:52:49 -0500676static struct cgroupfs_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
677{
678 struct cgroup *top_cgrp = kf_root->kn->priv;
679
680 return top_cgrp->root;
681}
682
Tejun Heof2e85d52014-02-11 11:52:49 -0500683static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end)
684{
685 int id;
686
687 lockdep_assert_held(&cgroup_mutex);
688
689 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end,
690 GFP_KERNEL);
691 if (id < 0)
692 return id;
693
694 root->hierarchy_id = id;
695 return 0;
696}
697
698static void cgroup_exit_root_id(struct cgroupfs_root *root)
699{
700 lockdep_assert_held(&cgroup_mutex);
701
702 if (root->hierarchy_id) {
703 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
704 root->hierarchy_id = 0;
705 }
706}
707
708static void cgroup_free_root(struct cgroupfs_root *root)
709{
710 if (root) {
711 /* hierarhcy ID shoulid already have been released */
712 WARN_ON_ONCE(root->hierarchy_id);
713
714 idr_destroy(&root->cgroup_idr);
715 kfree(root);
716 }
717}
718
Tejun Heo776f02f2014-02-12 09:29:50 -0500719static void cgroup_destroy_root(struct cgroupfs_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500720{
Tejun Heof2e85d52014-02-11 11:52:49 -0500721 struct cgroup *cgrp = &root->top_cgroup;
722 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500723
Tejun Heo2bd59d42014-02-11 11:52:49 -0500724 mutex_lock(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500725 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500726
Tejun Heo776f02f2014-02-12 09:29:50 -0500727 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heof2e85d52014-02-11 11:52:49 -0500728 BUG_ON(!list_empty(&cgrp->children));
729
Tejun Heof2e85d52014-02-11 11:52:49 -0500730 /* Rebind all subsystems back to the default hierarchy */
Tejun Heo35585572014-02-13 06:58:38 -0500731 WARN_ON(rebind_subsystems(root, 0, root->subsys_mask));
Tejun Heof2e85d52014-02-11 11:52:49 -0500732
733 /*
734 * Release all the links from cset_links to this hierarchy's
735 * root cgroup
736 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500737 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500738
739 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
740 list_del(&link->cset_link);
741 list_del(&link->cgrp_link);
742 kfree(link);
743 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500744 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500745
746 if (!list_empty(&root->root_list)) {
747 list_del(&root->root_list);
748 cgroup_root_count--;
749 }
750
751 cgroup_exit_root_id(root);
752
753 mutex_unlock(&cgroup_mutex);
754 mutex_unlock(&cgroup_tree_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500755
Tejun Heo2bd59d42014-02-11 11:52:49 -0500756 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500757 cgroup_free_root(root);
758}
759
Paul Menageddbcc7e2007-10-18 23:39:30 -0700760/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700761 * Return the cgroup for "task" from the given hierarchy. Must be
Tejun Heo96d365e2014-02-13 06:58:40 -0500762 * called with cgroup_mutex and css_set_rwsem held.
Paul Menage7717f7b2009-09-23 15:56:22 -0700763 */
764static struct cgroup *task_cgroup_from_root(struct task_struct *task,
765 struct cgroupfs_root *root)
766{
Tejun Heo5abb8852013-06-12 21:04:49 -0700767 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700768 struct cgroup *res = NULL;
769
Tejun Heo96d365e2014-02-13 06:58:40 -0500770 lockdep_assert_held(&cgroup_mutex);
771 lockdep_assert_held(&css_set_rwsem);
772
Paul Menage7717f7b2009-09-23 15:56:22 -0700773 /*
774 * No need to lock the task - since we hold cgroup_mutex the
775 * task can't change groups, so the only thing that can happen
776 * is that it exits and its css is set back to init_css_set.
777 */
Tejun Heoa8ad8052013-06-21 15:52:04 -0700778 cset = task_css_set(task);
Tejun Heo5abb8852013-06-12 21:04:49 -0700779 if (cset == &init_css_set) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700780 res = &root->top_cgroup;
781 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700782 struct cgrp_cset_link *link;
783
784 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700785 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700786
Paul Menage7717f7b2009-09-23 15:56:22 -0700787 if (c->root == root) {
788 res = c;
789 break;
790 }
791 }
792 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500793
Paul Menage7717f7b2009-09-23 15:56:22 -0700794 BUG_ON(!res);
795 return res;
796}
797
798/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700799 * There is one global cgroup mutex. We also require taking
800 * task_lock() when dereferencing a task's cgroup subsys pointers.
801 * See "The task_lock() exception", at the end of this comment.
802 *
803 * A task must hold cgroup_mutex to modify cgroups.
804 *
805 * Any task can increment and decrement the count field without lock.
806 * So in general, code holding cgroup_mutex can't rely on the count
807 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800808 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700809 * means that no tasks are currently attached, therefore there is no
810 * way a task attached to that cgroup can fork (the other way to
811 * increment the count). So code holding cgroup_mutex can safely
812 * assume that if the count is zero, it will stay zero. Similarly, if
813 * a task holds cgroup_mutex on a cgroup with zero count, it
814 * knows that the cgroup won't be removed, as cgroup_rmdir()
815 * needs that mutex.
816 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700817 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
818 * (usually) take cgroup_mutex. These are the two most performance
819 * critical pieces of code here. The exception occurs on cgroup_exit(),
820 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
821 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800822 * to the release agent with the name of the cgroup (path relative to
823 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700824 *
825 * A cgroup can only be deleted if both its 'count' of using tasks
826 * is zero, and its list of 'children' cgroups is empty. Since all
827 * tasks in the system use _some_ cgroup, and since there is always at
828 * least one task in the system (init, pid == 1), therefore, top_cgroup
829 * always has either children cgroups and/or using tasks. So we don't
830 * need a special hack to ensure that top_cgroup cannot be deleted.
831 *
832 * The task_lock() exception
833 *
834 * The need for this exception arises from the action of
Tao Mad0b2fdd2012-11-20 22:06:18 +0800835 * cgroup_attach_task(), which overwrites one task's cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800836 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700837 * several performance critical places that need to reference
838 * task->cgroup without the expense of grabbing a system global
839 * mutex. Therefore except as noted below, when dereferencing or, as
Tao Mad0b2fdd2012-11-20 22:06:18 +0800840 * in cgroup_attach_task(), modifying a task's cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700841 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
842 * the task_struct routinely used for such matters.
843 *
844 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800845 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700846 */
847
Tejun Heo628f7cd2013-06-28 16:24:11 -0700848static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500849static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700850static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700851
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500852static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
853 char *buf)
854{
855 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
856 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
857 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
858 cft->ss->name, cft->name);
859 else
860 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
861 return buf;
862}
863
Tejun Heof2e85d52014-02-11 11:52:49 -0500864/**
865 * cgroup_file_mode - deduce file mode of a control file
866 * @cft: the control file in question
867 *
868 * returns cft->mode if ->mode is not 0
869 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
870 * returns S_IRUGO if it has only a read handler
871 * returns S_IWUSR if it has only a write hander
872 */
873static umode_t cgroup_file_mode(const struct cftype *cft)
874{
875 umode_t mode = 0;
876
877 if (cft->mode)
878 return cft->mode;
879
880 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
881 mode |= S_IRUGO;
882
883 if (cft->write_u64 || cft->write_s64 || cft->write_string ||
884 cft->trigger)
885 mode |= S_IWUSR;
886
887 return mode;
888}
889
Li Zefanbe445622013-01-24 14:31:42 +0800890static void cgroup_free_fn(struct work_struct *work)
891{
Tejun Heoea15f8c2013-06-13 19:27:42 -0700892 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800893
Tejun Heo3c9c8252014-02-12 09:29:50 -0500894 atomic_dec(&cgrp->root->nr_cgrps);
Tejun Heob1a21362013-11-29 10:42:58 -0500895 cgroup_pidlist_destroy_all(cgrp);
Li Zefanbe445622013-01-24 14:31:42 +0800896
Tejun Heo776f02f2014-02-12 09:29:50 -0500897 if (cgrp->parent) {
898 /*
899 * We get a ref to the parent, and put the ref when this
900 * cgroup is being freed, so it's guaranteed that the
901 * parent won't be destroyed before its children.
902 */
903 cgroup_put(cgrp->parent);
904 kernfs_put(cgrp->kn);
905 kfree(cgrp);
906 } else {
907 /*
908 * This is top cgroup's refcnt reaching zero, which
909 * indicates that the root should be released.
910 */
911 cgroup_destroy_root(cgrp->root);
912 }
Li Zefanbe445622013-01-24 14:31:42 +0800913}
914
915static void cgroup_free_rcu(struct rcu_head *head)
916{
917 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
918
Tejun Heoea15f8c2013-06-13 19:27:42 -0700919 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -0500920 queue_work(cgroup_destroy_wq, &cgrp->destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800921}
922
Tejun Heo59f52962014-02-11 11:52:49 -0500923static void cgroup_get(struct cgroup *cgrp)
924{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500925 WARN_ON_ONCE(cgroup_is_dead(cgrp));
926 WARN_ON_ONCE(atomic_read(&cgrp->refcnt) <= 0);
927 atomic_inc(&cgrp->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700928}
929
Tejun Heo59f52962014-02-11 11:52:49 -0500930static void cgroup_put(struct cgroup *cgrp)
931{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500932 if (!atomic_dec_and_test(&cgrp->refcnt))
933 return;
Tejun Heo776f02f2014-02-12 09:29:50 -0500934 if (WARN_ON_ONCE(cgrp->parent && !cgroup_is_dead(cgrp)))
Tejun Heo2bd59d42014-02-11 11:52:49 -0500935 return;
Tejun Heo59f52962014-02-11 11:52:49 -0500936
Tejun Heo2bd59d42014-02-11 11:52:49 -0500937 /*
938 * XXX: cgrp->id is only used to look up css's. As cgroup and
939 * css's lifetimes will be decoupled, it should be made
940 * per-subsystem and moved to css->id so that lookups are
941 * successful until the target css is released.
942 */
943 mutex_lock(&cgroup_mutex);
944 idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
945 mutex_unlock(&cgroup_mutex);
946 cgrp->id = -1;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700947
Tejun Heo2bd59d42014-02-11 11:52:49 -0500948 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700949}
950
Li Zefan2739d3c2013-01-21 18:18:33 +0800951static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700952{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500953 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700954
Tejun Heoace2bee812014-02-11 11:52:47 -0500955 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500956 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -0700957}
958
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400959/**
Tejun Heo628f7cd2013-06-28 16:24:11 -0700960 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -0700961 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400962 * @subsys_mask: mask of the subsystem ids whose files should be removed
963 */
Tejun Heo628f7cd2013-06-28 16:24:11 -0700964static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -0700965{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400966 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -0700967 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700968
Tejun Heob420ba72013-07-12 12:34:02 -0700969 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -0500970 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -0700971
972 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400973 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -0500974 list_for_each_entry(cfts, &ss->cfts, node)
975 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400976 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700977}
978
Paul Menageddbcc7e2007-10-18 23:39:30 -0700979static int rebind_subsystems(struct cgroupfs_root *root,
Tejun Heoa8a648c42013-06-24 15:21:47 -0700980 unsigned long added_mask, unsigned removed_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700981{
Paul Menagebd89aab2007-10-18 23:40:44 -0700982 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heo30159ec2013-06-25 11:53:37 -0700983 struct cgroup_subsys *ss;
Tejun Heo31261212013-06-28 17:07:30 -0700984 int i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700985
Tejun Heoace2bee812014-02-11 11:52:47 -0500986 lockdep_assert_held(&cgroup_tree_mutex);
987 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -0800988
Paul Menageddbcc7e2007-10-18 23:39:30 -0700989 /* Check that any added subsystems are currently free */
Tejun Heo3ed80a62014-02-08 10:36:58 -0500990 for_each_subsys(ss, i)
991 if ((added_mask & (1 << i)) && ss->root != &cgroup_dummy_root)
992 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993
Tejun Heo31261212013-06-28 17:07:30 -0700994 ret = cgroup_populate_dir(cgrp, added_mask);
995 if (ret)
Tejun Heo3ed80a62014-02-08 10:36:58 -0500996 return ret;
Tejun Heo31261212013-06-28 17:07:30 -0700997
998 /*
999 * Nothing can fail from this point on. Remove files for the
1000 * removed subsystems and rebind each subsystem.
1001 */
Tejun Heo4ac06012014-02-11 11:52:47 -05001002 mutex_unlock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001003 cgroup_clear_dir(cgrp, removed_mask);
Tejun Heo4ac06012014-02-11 11:52:47 -05001004 mutex_lock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001005
Tejun Heo30159ec2013-06-25 11:53:37 -07001006 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001007 unsigned long bit = 1UL << i;
Tejun Heo30159ec2013-06-25 11:53:37 -07001008
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001009 if (bit & added_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001010 /* We're binding this subsystem to this hierarchy */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001011 BUG_ON(cgroup_css(cgrp, ss));
1012 BUG_ON(!cgroup_css(cgroup_dummy_top, ss));
1013 BUG_ON(cgroup_css(cgroup_dummy_top, ss)->cgroup != cgroup_dummy_top);
Tejun Heoa8a648c42013-06-24 15:21:47 -07001014
Tejun Heo73e80ed2013-08-13 11:01:55 -04001015 rcu_assign_pointer(cgrp->subsys[i],
Tejun Heoca8bdca2013-08-26 18:40:56 -04001016 cgroup_css(cgroup_dummy_top, ss));
1017 cgroup_css(cgrp, ss)->cgroup = cgrp;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001018
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001019 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001020 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001021 ss->bind(cgroup_css(cgrp, ss));
Tejun Heoa8a648c42013-06-24 15:21:47 -07001022
Ben Blumcf5d5942010-03-10 15:22:09 -08001023 /* refcount was already taken, and we're keeping it */
Tejun Heoa8a648c42013-06-24 15:21:47 -07001024 root->subsys_mask |= bit;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001025 } else if (bit & removed_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001026 /* We're removing this subsystem */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001027 BUG_ON(cgroup_css(cgrp, ss) != cgroup_css(cgroup_dummy_top, ss));
1028 BUG_ON(cgroup_css(cgrp, ss)->cgroup != cgrp);
Tejun Heoa8a648c42013-06-24 15:21:47 -07001029
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001031 ss->bind(cgroup_css(cgroup_dummy_top, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001032
Tejun Heoca8bdca2013-08-26 18:40:56 -04001033 cgroup_css(cgroup_dummy_top, ss)->cgroup = cgroup_dummy_top;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001034 RCU_INIT_POINTER(cgrp->subsys[i], NULL);
1035
Tejun Heo9871bf92013-06-24 15:21:47 -07001036 cgroup_subsys[i]->root = &cgroup_dummy_root;
Tejun Heoa8a648c42013-06-24 15:21:47 -07001037 root->subsys_mask &= ~bit;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001038 }
1039 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001040
Tejun Heo2bd59d42014-02-11 11:52:49 -05001041 kernfs_activate(cgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001042 return 0;
1043}
1044
Tejun Heo2bd59d42014-02-11 11:52:49 -05001045static int cgroup_show_options(struct seq_file *seq,
1046 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001047{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001048 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001049 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001050 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001051
Tejun Heob85d2042013-12-06 15:11:57 -05001052 for_each_subsys(ss, ssid)
1053 if (root->subsys_mask & (1 << ssid))
1054 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001055 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1056 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001057 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001058 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001059 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001060 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001061
1062 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001063 if (strlen(root->release_agent_path))
1064 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001065 spin_unlock(&release_agent_path_lock);
1066
Tejun Heo2260e7f2012-11-19 08:13:38 -08001067 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001068 seq_puts(seq, ",clone_children");
Paul Menagec6d57f332009-09-23 15:56:19 -07001069 if (strlen(root->name))
1070 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001071 return 0;
1072}
1073
1074struct cgroup_sb_opts {
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001075 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001076 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001077 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001078 bool cpuset_clone_children;
Paul Menagec6d57f332009-09-23 15:56:19 -07001079 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001080 /* User explicitly requested empty subsystem */
1081 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001082};
1083
Ben Blumaae8aab2010-03-10 15:22:07 -08001084/*
Tejun Heo9871bf92013-06-24 15:21:47 -07001085 * Convert a hierarchy specifier into a bitmask of subsystems and
1086 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1087 * array. This function takes refcounts on subsystems to be used, unless it
1088 * returns error, in which case no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001089 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001090static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001091{
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001092 char *token, *o = data;
1093 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001094 unsigned long mask = (unsigned long)-1;
Tejun Heo30159ec2013-06-25 11:53:37 -07001095 struct cgroup_subsys *ss;
1096 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001097
Ben Blumaae8aab2010-03-10 15:22:07 -08001098 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1099
Li Zefanf9ab5b52009-06-17 16:26:33 -07001100#ifdef CONFIG_CPUSETS
Tejun Heo073219e2014-02-08 10:36:58 -05001101 mask = ~(1UL << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001102#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001103
Paul Menagec6d57f332009-09-23 15:56:19 -07001104 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001105
1106 while ((token = strsep(&o, ",")) != NULL) {
1107 if (!*token)
1108 return -EINVAL;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001109 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001110 /* Explicitly have no subsystems */
1111 opts->none = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001112 continue;
1113 }
1114 if (!strcmp(token, "all")) {
1115 /* Mutually exclusive option 'all' + subsystem name */
1116 if (one_ss)
1117 return -EINVAL;
1118 all_ss = true;
1119 continue;
1120 }
Tejun Heo873fe092013-04-14 20:15:26 -07001121 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1122 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1123 continue;
1124 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001125 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001126 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001127 continue;
1128 }
1129 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001130 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001131 continue;
1132 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001133 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001134 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001135 continue;
1136 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001137 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001138 /* Specifying two release agents is forbidden */
1139 if (opts->release_agent)
1140 return -EINVAL;
Paul Menagec6d57f332009-09-23 15:56:19 -07001141 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001142 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001143 if (!opts->release_agent)
1144 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001145 continue;
1146 }
1147 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f332009-09-23 15:56:19 -07001148 const char *name = token + 5;
1149 /* Can't specify an empty name */
1150 if (!strlen(name))
1151 return -EINVAL;
1152 /* Must match [\w.-]+ */
1153 for (i = 0; i < strlen(name); i++) {
1154 char c = name[i];
1155 if (isalnum(c))
1156 continue;
1157 if ((c == '.') || (c == '-') || (c == '_'))
1158 continue;
1159 return -EINVAL;
1160 }
1161 /* Specifying two names is forbidden */
1162 if (opts->name)
1163 return -EINVAL;
1164 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001165 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f332009-09-23 15:56:19 -07001166 GFP_KERNEL);
1167 if (!opts->name)
1168 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001169
1170 continue;
1171 }
1172
Tejun Heo30159ec2013-06-25 11:53:37 -07001173 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001174 if (strcmp(token, ss->name))
1175 continue;
1176 if (ss->disabled)
1177 continue;
1178
1179 /* Mutually exclusive option 'all' + subsystem name */
1180 if (all_ss)
1181 return -EINVAL;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001182 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001183 one_ss = true;
1184
1185 break;
1186 }
1187 if (i == CGROUP_SUBSYS_COUNT)
1188 return -ENOENT;
1189 }
1190
1191 /*
1192 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001193 * otherwise if 'none', 'name=' and a subsystem name options
1194 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001195 */
Tejun Heo30159ec2013-06-25 11:53:37 -07001196 if (all_ss || (!one_ss && !opts->none && !opts->name))
1197 for_each_subsys(ss, i)
1198 if (!ss->disabled)
1199 set_bit(i, &opts->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001200
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001201 /* Consistency checks */
1202
Tejun Heo873fe092013-04-14 20:15:26 -07001203 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1204 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1205
Tejun Heod3ba07c2014-02-13 06:58:38 -05001206 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1207 opts->cpuset_clone_children || opts->release_agent ||
1208 opts->name) {
1209 pr_err("cgroup: sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001210 return -EINVAL;
1211 }
Tejun Heo873fe092013-04-14 20:15:26 -07001212 }
1213
Li Zefanf9ab5b52009-06-17 16:26:33 -07001214 /*
1215 * Option noprefix was introduced just for backward compatibility
1216 * with the old cpuset, so we allow noprefix only if mounting just
1217 * the cpuset subsystem.
1218 */
Tejun Heo93438622013-04-14 20:15:25 -07001219 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001220 return -EINVAL;
1221
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001222
1223 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001224 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001225 return -EINVAL;
1226
1227 /*
1228 * We either have to specify by name or by subsystems. (So all
1229 * empty hierarchies must have a name).
1230 */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001231 if (!opts->subsys_mask && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001232 return -EINVAL;
1233
1234 return 0;
1235}
1236
Tejun Heo2bd59d42014-02-11 11:52:49 -05001237static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001238{
1239 int ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001240 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001241 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001242 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001243
Tejun Heo873fe092013-04-14 20:15:26 -07001244 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1245 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1246 return -EINVAL;
1247 }
1248
Tejun Heoace2bee812014-02-11 11:52:47 -05001249 mutex_lock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001250 mutex_lock(&cgroup_mutex);
1251
1252 /* See what subsystems are wanted */
1253 ret = parse_cgroupfs_options(data, &opts);
1254 if (ret)
1255 goto out_unlock;
1256
Tejun Heoa8a648c42013-06-24 15:21:47 -07001257 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001258 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1259 task_tgid_nr(current), current->comm);
1260
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001261 added_mask = opts.subsys_mask & ~root->subsys_mask;
1262 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001263
Ben Blumcf5d5942010-03-10 15:22:09 -08001264 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001265 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001266 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001267 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1268 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1269 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001270 ret = -EINVAL;
Paul Menagec6d57f332009-09-23 15:56:19 -07001271 goto out_unlock;
1272 }
1273
Tejun Heof172e672013-06-28 17:07:30 -07001274 /* remounting is not allowed for populated hierarchies */
Tejun Heo3c9c8252014-02-12 09:29:50 -05001275 if (!list_empty(&root->top_cgroup.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001276 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001277 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001278 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001279
Paul Menageddbcc7e2007-10-18 23:39:30 -07001280 ret = rebind_subsystems(root, added_mask, removed_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001281 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001282 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001283
Tejun Heo69e943b2014-02-08 10:36:58 -05001284 if (opts.release_agent) {
1285 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001286 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001287 spin_unlock(&release_agent_path_lock);
1288 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001289 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001290 kfree(opts.release_agent);
Paul Menagec6d57f332009-09-23 15:56:19 -07001291 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001292 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee812014-02-11 11:52:47 -05001293 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001294 return ret;
1295}
1296
Tejun Heoafeb0f92014-02-13 06:58:39 -05001297/*
1298 * To reduce the fork() overhead for systems that are not actually using
1299 * their cgroups capability, we don't maintain the lists running through
1300 * each css_set to its tasks until we see the list actually used - in other
1301 * words after the first mount.
1302 */
1303static bool use_task_css_set_links __read_mostly;
1304
1305static void cgroup_enable_task_cg_lists(void)
1306{
1307 struct task_struct *p, *g;
1308
Tejun Heo96d365e2014-02-13 06:58:40 -05001309 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001310
1311 if (use_task_css_set_links)
1312 goto out_unlock;
1313
1314 use_task_css_set_links = true;
1315
1316 /*
1317 * We need tasklist_lock because RCU is not safe against
1318 * while_each_thread(). Besides, a forking task that has passed
1319 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1320 * is not guaranteed to have its child immediately visible in the
1321 * tasklist if we walk through it with RCU.
1322 */
1323 read_lock(&tasklist_lock);
1324 do_each_thread(g, p) {
1325 task_lock(p);
1326
1327 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1328 task_css_set(p) != &init_css_set);
1329
1330 /*
1331 * We should check if the process is exiting, otherwise
1332 * it will race with cgroup_exit() in that the list
1333 * entry won't be deleted though the process has exited.
1334 */
1335 if (!(p->flags & PF_EXITING))
1336 list_add(&p->cg_list, &task_css_set(p)->tasks);
1337
1338 task_unlock(p);
1339 } while_each_thread(g, p);
1340 read_unlock(&tasklist_lock);
1341out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001342 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001343}
1344
Paul Menagecc31edc2008-10-18 20:28:04 -07001345static void init_cgroup_housekeeping(struct cgroup *cgrp)
1346{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001347 atomic_set(&cgrp->refcnt, 1);
Paul Menagecc31edc2008-10-18 20:28:04 -07001348 INIT_LIST_HEAD(&cgrp->sibling);
1349 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo69d02062013-06-12 21:04:50 -07001350 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001351 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001352 INIT_LIST_HEAD(&cgrp->pidlists);
1353 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo67f4c362013-08-08 20:11:24 -04001354 cgrp->dummy_css.cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001355}
Paul Menagec6d57f332009-09-23 15:56:19 -07001356
Paul Menageddbcc7e2007-10-18 23:39:30 -07001357static void init_cgroup_root(struct cgroupfs_root *root)
1358{
Paul Menagebd89aab2007-10-18 23:40:44 -07001359 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001360
Paul Menageddbcc7e2007-10-18 23:39:30 -07001361 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001362 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001363 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001364 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001365 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001366}
1367
Paul Menagec6d57f332009-09-23 15:56:19 -07001368static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1369{
1370 struct cgroupfs_root *root;
1371
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001372 if (!opts->subsys_mask && !opts->none)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001373 return ERR_PTR(-EINVAL);
Paul Menagec6d57f332009-09-23 15:56:19 -07001374
1375 root = kzalloc(sizeof(*root), GFP_KERNEL);
1376 if (!root)
1377 return ERR_PTR(-ENOMEM);
1378
1379 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001380
Paul Menagec6d57f332009-09-23 15:56:19 -07001381 root->flags = opts->flags;
1382 if (opts->release_agent)
1383 strcpy(root->release_agent_path, opts->release_agent);
1384 if (opts->name)
1385 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001386 if (opts->cpuset_clone_children)
1387 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f332009-09-23 15:56:19 -07001388 return root;
1389}
1390
Tejun Heo35585572014-02-13 06:58:38 -05001391static int cgroup_setup_root(struct cgroupfs_root *root, unsigned long ss_mask)
Tejun Heod427dfe2014-02-11 11:52:48 -05001392{
1393 LIST_HEAD(tmp_links);
Tejun Heod427dfe2014-02-11 11:52:48 -05001394 struct cgroup *root_cgrp = &root->top_cgroup;
Tejun Heod427dfe2014-02-11 11:52:48 -05001395 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001396 int i, ret;
1397
1398 lockdep_assert_held(&cgroup_tree_mutex);
1399 lockdep_assert_held(&cgroup_mutex);
Tejun Heod427dfe2014-02-11 11:52:48 -05001400
1401 ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL);
1402 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001403 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001404 root_cgrp->id = ret;
1405
Tejun Heod427dfe2014-02-11 11:52:48 -05001406 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001407 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001408 * but that's OK - it can only be increased by someone holding
1409 * cgroup_lock, and that's us. The worst that can happen is that we
1410 * have some link structures left over
1411 */
1412 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
1413 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001414 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001415
1416 /* ID 0 is reserved for dummy root, 1 for unified hierarchy */
1417 ret = cgroup_init_root_id(root, 2, 0);
1418 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001419 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001420
Tejun Heo2bd59d42014-02-11 11:52:49 -05001421 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1422 KERNFS_ROOT_CREATE_DEACTIVATED,
1423 root_cgrp);
1424 if (IS_ERR(root->kf_root)) {
1425 ret = PTR_ERR(root->kf_root);
1426 goto exit_root_id;
1427 }
1428 root_cgrp->kn = root->kf_root->kn;
Tejun Heod427dfe2014-02-11 11:52:48 -05001429
1430 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1431 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001432 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001433
Tejun Heo35585572014-02-13 06:58:38 -05001434 ret = rebind_subsystems(root, ss_mask, 0);
Tejun Heod427dfe2014-02-11 11:52:48 -05001435 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001436 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001437
1438 /*
1439 * There must be no failure case after here, since rebinding takes
1440 * care of subsystems' refcounts, which are explicitly dropped in
1441 * the failure exit path.
1442 */
1443 list_add(&root->root_list, &cgroup_roots);
1444 cgroup_root_count++;
1445
1446 /*
1447 * Link the top cgroup in this hierarchy into all the css_set
1448 * objects.
1449 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001450 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001451 hash_for_each(css_set_table, i, cset, hlist)
1452 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001453 up_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001454
1455 BUG_ON(!list_empty(&root_cgrp->children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001456 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001457
Tejun Heo2bd59d42014-02-11 11:52:49 -05001458 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001459 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001460 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001461
Tejun Heo2bd59d42014-02-11 11:52:49 -05001462destroy_root:
1463 kernfs_destroy_root(root->kf_root);
1464 root->kf_root = NULL;
1465exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001466 cgroup_exit_root_id(root);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001467out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001468 free_cgrp_cset_links(&tmp_links);
1469 return ret;
1470}
1471
Al Virof7e83572010-07-26 13:23:11 +04001472static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001473 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001474 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001475{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001476 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001477 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001478 struct dentry *dentry;
Tejun Heo8e30e2b82014-02-11 11:52:48 -05001479 int ret;
Tejun Heo56fde9e2014-02-13 06:58:38 -05001480
1481 /*
1482 * The first time anyone tries to mount a cgroup, enable the list
1483 * linking each css_set to its tasks and fix up all existing tasks.
1484 */
1485 if (!use_task_css_set_links)
1486 cgroup_enable_task_cg_lists();
Tejun Heo776f02f2014-02-12 09:29:50 -05001487retry:
Tejun Heo8e30e2b82014-02-11 11:52:48 -05001488 mutex_lock(&cgroup_tree_mutex);
1489 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001490
1491 /* First find the desired set of subsystems */
1492 ret = parse_cgroupfs_options(data, &opts);
Paul Menagec6d57f332009-09-23 15:56:19 -07001493 if (ret)
Tejun Heo8e30e2b82014-02-11 11:52:48 -05001494 goto out_unlock;
Paul Menagec6d57f332009-09-23 15:56:19 -07001495
Tejun Heo2bd59d42014-02-11 11:52:49 -05001496 /* look for a matching existing root */
1497 for_each_active_root(root) {
1498 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001499
Paul Menagec6d57f332009-09-23 15:56:19 -07001500 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001501 * If we asked for a name then it must match. Also, if
1502 * name matches but sybsys_mask doesn't, we should fail.
1503 * Remember whether name matched.
Paul Menagec6d57f332009-09-23 15:56:19 -07001504 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001505 if (opts.name) {
1506 if (strcmp(opts.name, root->name))
1507 continue;
1508 name_match = true;
1509 }
1510
1511 /*
1512 * If we asked for subsystems (or explicitly for no
1513 * subsystems) then they must match.
1514 */
1515 if ((opts.subsys_mask || opts.none) &&
1516 (opts.subsys_mask != root->subsys_mask)) {
1517 if (!name_match)
1518 continue;
1519 ret = -EBUSY;
1520 goto out_unlock;
1521 }
Tejun Heo873fe092013-04-14 20:15:26 -07001522
Tejun Heoc7ba8282013-06-29 14:06:10 -07001523 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001524 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1525 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1526 ret = -EINVAL;
Tejun Heo8e30e2b82014-02-11 11:52:48 -05001527 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001528 } else {
1529 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1530 }
Tejun Heo873fe092013-04-14 20:15:26 -07001531 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001532
Tejun Heo776f02f2014-02-12 09:29:50 -05001533 /*
1534 * A root's lifetime is governed by its top cgroup. Zero
1535 * ref indicate that the root is being destroyed. Wait for
1536 * destruction to complete so that the subsystems are free.
1537 * We can use wait_queue for the wait but this path is
1538 * super cold. Let's just sleep for a bit and retry.
1539 */
1540 if (!atomic_inc_not_zero(&root->top_cgroup.refcnt)) {
1541 mutex_unlock(&cgroup_mutex);
1542 mutex_unlock(&cgroup_tree_mutex);
1543 msleep(10);
1544 goto retry;
1545 }
1546
1547 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001548 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001549 }
1550
Tejun Heo2bd59d42014-02-11 11:52:49 -05001551 /* no such thing, create a new one */
1552 root = cgroup_root_from_opts(&opts);
1553 if (IS_ERR(root)) {
1554 ret = PTR_ERR(root);
1555 goto out_unlock;
1556 }
1557
Tejun Heo35585572014-02-13 06:58:38 -05001558 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001559 if (ret)
1560 cgroup_free_root(root);
1561
Tejun Heo8e30e2b82014-02-11 11:52:48 -05001562out_unlock:
Tejun Heoe25e2cbb2011-12-12 18:12:21 -08001563 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee812014-02-11 11:52:47 -05001564 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo8e30e2b82014-02-11 11:52:48 -05001565
Paul Menagec6d57f332009-09-23 15:56:19 -07001566 kfree(opts.release_agent);
1567 kfree(opts.name);
Tejun Heo8e30e2b82014-02-11 11:52:48 -05001568
Tejun Heo2bd59d42014-02-11 11:52:49 -05001569 if (ret)
Tejun Heo8e30e2b82014-02-11 11:52:48 -05001570 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001571
1572 dentry = kernfs_mount(fs_type, flags, root->kf_root);
1573 if (IS_ERR(dentry))
Tejun Heo776f02f2014-02-12 09:29:50 -05001574 cgroup_put(&root->top_cgroup);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001575 return dentry;
1576}
1577
1578static void cgroup_kill_sb(struct super_block *sb)
1579{
1580 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
1581 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
1582
Tejun Heo776f02f2014-02-12 09:29:50 -05001583 cgroup_put(&root->top_cgroup);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001584 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001585}
1586
Paul Menageddbcc7e2007-10-18 23:39:30 -07001587static struct file_system_type cgroup_fs_type = {
1588 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001589 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001590 .kill_sb = cgroup_kill_sb,
1591};
1592
Greg KH676db4a2010-08-05 13:53:35 -07001593static struct kobject *cgroup_kobj;
1594
Li Zefana043e3b2008-02-23 15:24:09 -08001595/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001596 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001597 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001598 * @buf: the buffer to write the path into
1599 * @buflen: the length of the buffer
1600 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001601 * Determine @task's cgroup on the first (the one with the lowest non-zero
1602 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1603 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1604 * cgroup controller callbacks.
1605 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001606 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001607 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001608char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001609{
1610 struct cgroupfs_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001611 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001612 int hierarchy_id = 1;
1613 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001614
1615 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001616 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001617
Tejun Heo913ffdb2013-07-11 16:34:48 -07001618 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1619
Tejun Heo857a2be2013-04-14 20:50:08 -07001620 if (root) {
1621 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001622 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001623 } else {
1624 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001625 if (strlcpy(buf, "/", buflen) < buflen)
1626 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001627 }
1628
Tejun Heo96d365e2014-02-13 06:58:40 -05001629 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001630 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001631 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001632}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001633EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001634
Ben Blum74a11662011-05-26 16:25:20 -07001635/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001636 * Control Group taskset
1637 */
Tejun Heo134d3372011-12-12 18:12:21 -08001638struct task_and_cgroup {
1639 struct task_struct *task;
1640 struct cgroup *cgrp;
Li Zefan6f4b7e62013-07-31 16:18:36 +08001641 struct css_set *cset;
Tejun Heo134d3372011-12-12 18:12:21 -08001642};
1643
Tejun Heo2f7ee562011-12-12 18:12:21 -08001644struct cgroup_taskset {
1645 struct task_and_cgroup single;
1646 struct flex_array *tc_array;
1647 int tc_array_len;
1648 int idx;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001649};
1650
1651/**
1652 * cgroup_taskset_first - reset taskset and return the first task
1653 * @tset: taskset of interest
1654 *
1655 * @tset iteration is initialized and the first task is returned.
1656 */
1657struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1658{
1659 if (tset->tc_array) {
1660 tset->idx = 0;
1661 return cgroup_taskset_next(tset);
1662 } else {
Tejun Heo2f7ee562011-12-12 18:12:21 -08001663 return tset->single.task;
1664 }
1665}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001666
1667/**
1668 * cgroup_taskset_next - iterate to the next task in taskset
1669 * @tset: taskset of interest
1670 *
1671 * Return the next task in @tset. Iteration must have been initialized
1672 * with cgroup_taskset_first().
1673 */
1674struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1675{
1676 struct task_and_cgroup *tc;
1677
1678 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1679 return NULL;
1680
1681 tc = flex_array_get(tset->tc_array, tset->idx++);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001682 return tc->task;
1683}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001684
1685/**
Ben Blum74a11662011-05-26 16:25:20 -07001686 * cgroup_task_migrate - move a task from one cgroup to another.
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001687 * @old_cgrp; the cgroup @tsk is being migrated from
1688 * @tsk: the task being migrated
1689 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001690 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001691 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001692 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001693static void cgroup_task_migrate(struct cgroup *old_cgrp,
1694 struct task_struct *tsk,
1695 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001696{
Tejun Heo5abb8852013-06-12 21:04:49 -07001697 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001698
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001699 lockdep_assert_held(&cgroup_mutex);
1700 lockdep_assert_held(&css_set_rwsem);
1701
Ben Blum74a11662011-05-26 16:25:20 -07001702 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001703 * We are synchronized through threadgroup_lock() against PF_EXITING
1704 * setting such that we can't race against cgroup_exit() changing the
1705 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001706 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001707 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001708 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001709
Ben Blum74a11662011-05-26 16:25:20 -07001710 task_lock(tsk);
Tejun Heo5abb8852013-06-12 21:04:49 -07001711 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001712 task_unlock(tsk);
1713
Tejun Heo56fde9e2014-02-13 06:58:38 -05001714 list_move(&tsk->cg_list, &new_cset->tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001715
1716 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001717 * We just gained a reference on old_cset by taking it from the
1718 * task. As trading it for new_cset is protected by cgroup_mutex,
1719 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001720 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001721 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001722 put_css_set_locked(old_cset, false);
Ben Blum74a11662011-05-26 16:25:20 -07001723}
1724
Li Zefana043e3b2008-02-23 15:24:09 -08001725/**
Li Zefan081aa452013-03-13 09:17:09 +08001726 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
Ben Blum74a11662011-05-26 16:25:20 -07001727 * @cgrp: the cgroup to attach to
Tejun Heo9db8de32014-02-13 06:58:43 -05001728 * @leader: the task or the leader of the threadgroup to be attached
Li Zefan081aa452013-03-13 09:17:09 +08001729 * @threadgroup: attach the whole threadgroup?
Ben Blum74a11662011-05-26 16:25:20 -07001730 *
Tejun Heo257058a2011-12-12 18:12:21 -08001731 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
Li Zefan081aa452013-03-13 09:17:09 +08001732 * task_lock of @tsk or each thread in the threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07001733 */
Tejun Heo9db8de32014-02-13 06:58:43 -05001734static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *leader,
Tejun Heo47cfcd02013-04-07 09:29:51 -07001735 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07001736{
Tejun Heo9db8de32014-02-13 06:58:43 -05001737 int ret, i, group_size;
Ben Blum74a11662011-05-26 16:25:20 -07001738 struct cgroupfs_root *root = cgrp->root;
Tejun Heo1c6727a2013-12-06 15:11:56 -05001739 struct cgroup_subsys_state *css, *failed_css = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07001740 /* threadgroup list cursor and array */
Tejun Heo9db8de32014-02-13 06:58:43 -05001741 struct task_struct *task;
Tejun Heo134d3372011-12-12 18:12:21 -08001742 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07001743 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001744 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07001745
1746 /*
1747 * step 0: in order to do expensive, possibly blocking operations for
1748 * every thread, we cannot iterate the thread group list, since it needs
1749 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08001750 * group - group_rwsem prevents new threads from appearing, and if
1751 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07001752 */
Li Zefan081aa452013-03-13 09:17:09 +08001753 if (threadgroup)
Tejun Heo9db8de32014-02-13 06:58:43 -05001754 group_size = get_nr_threads(leader);
Li Zefan081aa452013-03-13 09:17:09 +08001755 else
1756 group_size = 1;
Ben Blumd8466872011-05-26 16:25:21 -07001757 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08001758 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07001759 if (!group)
1760 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07001761 /* pre-allocate to guarantee space while iterating in rcu read-side. */
Tejun Heo9db8de32014-02-13 06:58:43 -05001762 ret = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
1763 if (ret)
Ben Blumd8466872011-05-26 16:25:21 -07001764 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07001765
Ben Blum74a11662011-05-26 16:25:20 -07001766 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001767 /*
1768 * Prevent freeing of tasks while we take a snapshot. Tasks that are
1769 * already PF_EXITING could be freed from underneath us unless we
1770 * take an rcu_read_lock.
1771 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001772 down_read(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001773 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05001774 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07001775 do {
Tejun Heo134d3372011-12-12 18:12:21 -08001776 struct task_and_cgroup ent;
1777
Tejun Heo9db8de32014-02-13 06:58:43 -05001778 /* @task either already exited or can't exit until the end */
1779 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08001780 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08001781
Ben Blum74a11662011-05-26 16:25:20 -07001782 /* as per above, nr_threads may decrease, but not increase. */
1783 BUG_ON(i >= group_size);
Tejun Heo9db8de32014-02-13 06:58:43 -05001784 ent.task = task;
1785 ent.cgrp = task_cgroup_from_root(task, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001786 /* nothing to do if this task is already in the cgroup */
1787 if (ent.cgrp == cgrp)
Anjana V Kumarea847532013-10-12 10:59:17 +08001788 goto next;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001789 /*
1790 * saying GFP_ATOMIC has no effect here because we did prealloc
1791 * earlier, but it's good form to communicate our expectations.
1792 */
Tejun Heo9db8de32014-02-13 06:58:43 -05001793 ret = flex_array_put(group, i, &ent, GFP_ATOMIC);
1794 BUG_ON(ret != 0);
Ben Blum74a11662011-05-26 16:25:20 -07001795 i++;
Anjana V Kumarea847532013-10-12 10:59:17 +08001796 next:
Li Zefan081aa452013-03-13 09:17:09 +08001797 if (!threadgroup)
1798 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05001799 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001800 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05001801 up_read(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07001802 /* remember the number of threads in the array for later. */
1803 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001804 tset.tc_array = group;
1805 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07001806
Tejun Heo134d3372011-12-12 18:12:21 -08001807 /* methods shouldn't be called if no task is actually migrating */
Tejun Heo9db8de32014-02-13 06:58:43 -05001808 ret = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001809 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08001810 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08001811
Ben Blum74a11662011-05-26 16:25:20 -07001812 /*
1813 * step 1: check that we can legitimately attach to the cgroup.
1814 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001815 for_each_css(css, i, cgrp) {
1816 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05001817 ret = css->ss->can_attach(css, &tset);
1818 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05001819 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07001820 goto out_cancel_attach;
1821 }
1822 }
Ben Blum74a11662011-05-26 16:25:20 -07001823 }
1824
1825 /*
1826 * step 2: make sure css_sets exist for all threads to be migrated.
1827 * we use find_css_set, which allocates a new one if necessary.
1828 */
Ben Blum74a11662011-05-26 16:25:20 -07001829 for (i = 0; i < group_size; i++) {
Tejun Heoa8ad8052013-06-21 15:52:04 -07001830 struct css_set *old_cset;
1831
Tejun Heo134d3372011-12-12 18:12:21 -08001832 tc = flex_array_get(group, i);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001833 old_cset = task_css_set(tc->task);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001834 tc->cset = find_css_set(old_cset, cgrp);
1835 if (!tc->cset) {
Tejun Heo9db8de32014-02-13 06:58:43 -05001836 ret = -ENOMEM;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001837 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07001838 }
1839 }
1840
1841 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001842 * step 3: now that we're guaranteed success wrt the css_sets,
1843 * proceed to move all tasks to the new cgroup. There are no
1844 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07001845 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001846 down_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07001847 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08001848 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001849 cgroup_task_migrate(tc->cgrp, tc->task, tc->cset);
Ben Blum74a11662011-05-26 16:25:20 -07001850 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001851 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07001852 /* nothing is sensitive to fork() after this point. */
1853
1854 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001855 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07001856 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001857 for_each_css(css, i, cgrp)
1858 if (css->ss->attach)
1859 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001860
1861 /*
1862 * step 5: success! and cleanup
1863 */
Tejun Heo9db8de32014-02-13 06:58:43 -05001864 ret = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001865out_put_css_set_refs:
Tejun Heo9db8de32014-02-13 06:58:43 -05001866 if (ret) {
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001867 for (i = 0; i < group_size; i++) {
1868 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001869 if (!tc->cset)
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001870 break;
Tejun Heo89c55092014-02-13 06:58:40 -05001871 put_css_set(tc->cset, false);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001872 }
Ben Blum74a11662011-05-26 16:25:20 -07001873 }
1874out_cancel_attach:
Tejun Heo9db8de32014-02-13 06:58:43 -05001875 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05001876 for_each_css(css, i, cgrp) {
1877 if (css == failed_css)
Ben Blum74a11662011-05-26 16:25:20 -07001878 break;
Tejun Heo1c6727a2013-12-06 15:11:56 -05001879 if (css->ss->cancel_attach)
1880 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001881 }
1882 }
Ben Blum74a11662011-05-26 16:25:20 -07001883out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07001884 flex_array_free(group);
Tejun Heo9db8de32014-02-13 06:58:43 -05001885 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07001886}
1887
1888/*
1889 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08001890 * function to attach either it or all tasks in its threadgroup. Will lock
1891 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07001892 */
1893static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001894{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001895 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001896 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001897 int ret;
1898
Ben Blum74a11662011-05-26 16:25:20 -07001899 if (!cgroup_lock_live_group(cgrp))
1900 return -ENODEV;
1901
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001902retry_find_task:
1903 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001904 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001905 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07001906 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07001907 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001908 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001909 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001910 }
Ben Blum74a11662011-05-26 16:25:20 -07001911 /*
1912 * even if we're attaching all tasks in the thread group, we
1913 * only need to check permissions on one of them.
1914 */
David Howellsc69e8d92008-11-14 10:39:19 +11001915 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07001916 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
1917 !uid_eq(cred->euid, tcred->uid) &&
1918 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001919 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001920 ret = -EACCES;
1921 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001922 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001923 } else
1924 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08001925
1926 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001927 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001928
1929 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07001930 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001931 * trapped in a cpuset, or RT worker may be born in a cgroup
1932 * with no rt_runtime allocated. Just say no.
1933 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07001934 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001935 ret = -EINVAL;
1936 rcu_read_unlock();
1937 goto out_unlock_cgroup;
1938 }
1939
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001940 get_task_struct(tsk);
1941 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08001942
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001943 threadgroup_lock(tsk);
1944 if (threadgroup) {
1945 if (!thread_group_leader(tsk)) {
1946 /*
1947 * a race with de_thread from another thread's exec()
1948 * may strip us of our leadership, if this happens,
1949 * there is no choice but to throw this task away and
1950 * try again; this is
1951 * "double-double-toil-and-trouble-check locking".
1952 */
1953 threadgroup_unlock(tsk);
1954 put_task_struct(tsk);
1955 goto retry_find_task;
1956 }
Li Zefan081aa452013-03-13 09:17:09 +08001957 }
1958
1959 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
1960
Tejun Heocd3d0952011-12-12 18:12:21 -08001961 threadgroup_unlock(tsk);
1962
Paul Menagebbcb81d2007-10-18 23:39:32 -07001963 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001964out_unlock_cgroup:
Tejun Heo47cfcd02013-04-07 09:29:51 -07001965 mutex_unlock(&cgroup_mutex);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001966 return ret;
1967}
1968
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001969/**
1970 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1971 * @from: attach to all cgroups of a given task
1972 * @tsk: the task to be attached
1973 */
1974int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
1975{
1976 struct cgroupfs_root *root;
1977 int retval = 0;
1978
Tejun Heo47cfcd02013-04-07 09:29:51 -07001979 mutex_lock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001980 for_each_active_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05001981 struct cgroup *from_cgrp;
1982
1983 down_read(&css_set_rwsem);
1984 from_cgrp = task_cgroup_from_root(from, root);
1985 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001986
Li Zefan6f4b7e62013-07-31 16:18:36 +08001987 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001988 if (retval)
1989 break;
1990 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07001991 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001992
1993 return retval;
1994}
1995EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
1996
Tejun Heo182446d2013-08-08 20:11:24 -04001997static int cgroup_tasks_write(struct cgroup_subsys_state *css,
1998 struct cftype *cft, u64 pid)
Paul Menageaf351022008-07-25 01:47:01 -07001999{
Tejun Heo182446d2013-08-08 20:11:24 -04002000 return attach_task_by_pid(css->cgroup, pid, false);
Ben Blum74a11662011-05-26 16:25:20 -07002001}
2002
Tejun Heo182446d2013-08-08 20:11:24 -04002003static int cgroup_procs_write(struct cgroup_subsys_state *css,
2004 struct cftype *cft, u64 tgid)
Ben Blum74a11662011-05-26 16:25:20 -07002005{
Tejun Heo182446d2013-08-08 20:11:24 -04002006 return attach_task_by_pid(css->cgroup, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002007}
2008
Tejun Heo182446d2013-08-08 20:11:24 -04002009static int cgroup_release_agent_write(struct cgroup_subsys_state *css,
2010 struct cftype *cft, const char *buffer)
Paul Menagee788e0662008-07-25 01:46:59 -07002011{
Tejun Heo5f469902014-02-11 11:52:48 -05002012 struct cgroupfs_root *root = css->cgroup->root;
2013
2014 BUILD_BUG_ON(sizeof(root->release_agent_path) < PATH_MAX);
Tejun Heo182446d2013-08-08 20:11:24 -04002015 if (!cgroup_lock_live_group(css->cgroup))
Paul Menagee788e0662008-07-25 01:46:59 -07002016 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002017 spin_lock(&release_agent_path_lock);
Tejun Heo5f469902014-02-11 11:52:48 -05002018 strlcpy(root->release_agent_path, buffer,
2019 sizeof(root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002020 spin_unlock(&release_agent_path_lock);
Tejun Heo47cfcd02013-04-07 09:29:51 -07002021 mutex_unlock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07002022 return 0;
2023}
2024
Tejun Heo2da8ca82013-12-05 12:28:04 -05002025static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e0662008-07-25 01:46:59 -07002026{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002027 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002028
Paul Menagee788e0662008-07-25 01:46:59 -07002029 if (!cgroup_lock_live_group(cgrp))
2030 return -ENODEV;
2031 seq_puts(seq, cgrp->root->release_agent_path);
2032 seq_putc(seq, '\n');
Tejun Heo47cfcd02013-04-07 09:29:51 -07002033 mutex_unlock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07002034 return 0;
2035}
2036
Tejun Heo2da8ca82013-12-05 12:28:04 -05002037static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002038{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002039 struct cgroup *cgrp = seq_css(seq)->cgroup;
2040
2041 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002042 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002043}
2044
Tejun Heo2bd59d42014-02-11 11:52:49 -05002045static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2046 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002047{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002048 struct cgroup *cgrp = of->kn->parent->priv;
2049 struct cftype *cft = of->kn->priv;
2050 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002051 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002052
Tejun Heo2bd59d42014-02-11 11:52:49 -05002053 /*
2054 * kernfs guarantees that a file isn't deleted with operations in
2055 * flight, which means that the matching css is and stays alive and
2056 * doesn't need to be pinned. The RCU locking is not necessary
2057 * either. It's just for the convenience of using cgroup_css().
2058 */
2059 rcu_read_lock();
2060 css = cgroup_css(cgrp, cft->ss);
2061 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002062
Tejun Heoa742c592013-12-05 12:28:03 -05002063 if (cft->write_string) {
2064 ret = cft->write_string(css, cft, strstrip(buf));
2065 } else if (cft->write_u64) {
2066 unsigned long long v;
2067 ret = kstrtoull(buf, 0, &v);
2068 if (!ret)
2069 ret = cft->write_u64(css, cft, v);
2070 } else if (cft->write_s64) {
2071 long long v;
2072 ret = kstrtoll(buf, 0, &v);
2073 if (!ret)
2074 ret = cft->write_s64(css, cft, v);
2075 } else if (cft->trigger) {
2076 ret = cft->trigger(css, (unsigned int)cft->private);
2077 } else {
2078 ret = -EINVAL;
2079 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002080
Tejun Heoa742c592013-12-05 12:28:03 -05002081 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002082}
2083
Tejun Heo6612f052013-12-05 12:28:04 -05002084static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002085{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002086 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002087}
2088
2089static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2090{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002091 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002092}
2093
2094static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2095{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002096 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002097}
2098
2099static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2100{
Tejun Heo7da11272013-12-05 12:28:04 -05002101 struct cftype *cft = seq_cft(m);
2102 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002103
Tejun Heo2da8ca82013-12-05 12:28:04 -05002104 if (cft->seq_show)
2105 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002106
Tejun Heo896f5192013-12-05 12:28:04 -05002107 if (cft->read_u64)
2108 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2109 else if (cft->read_s64)
2110 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2111 else
2112 return -EINVAL;
2113 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002114}
2115
Tejun Heo2bd59d42014-02-11 11:52:49 -05002116static struct kernfs_ops cgroup_kf_single_ops = {
2117 .atomic_write_len = PAGE_SIZE,
2118 .write = cgroup_file_write,
2119 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002120};
2121
Tejun Heo2bd59d42014-02-11 11:52:49 -05002122static struct kernfs_ops cgroup_kf_ops = {
2123 .atomic_write_len = PAGE_SIZE,
2124 .write = cgroup_file_write,
2125 .seq_start = cgroup_seqfile_start,
2126 .seq_next = cgroup_seqfile_next,
2127 .seq_stop = cgroup_seqfile_stop,
2128 .seq_show = cgroup_seqfile_show,
2129};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002130
2131/*
2132 * cgroup_rename - Only allow simple rename of directories in place.
2133 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002134static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2135 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002136{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002137 struct cgroup *cgrp = kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002138 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002139
Tejun Heo2bd59d42014-02-11 11:52:49 -05002140 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002141 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002142 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002143 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002144
Tejun Heo6db8e852013-06-14 11:18:22 -07002145 /*
2146 * This isn't a proper migration and its usefulness is very
2147 * limited. Disallow if sane_behavior.
2148 */
2149 if (cgroup_sane_behavior(cgrp))
2150 return -EPERM;
2151
Tejun Heo2bd59d42014-02-11 11:52:49 -05002152 mutex_lock(&cgroup_tree_mutex);
2153 mutex_lock(&cgroup_mutex);
2154
2155 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002156
Tejun Heo2bd59d42014-02-11 11:52:49 -05002157 mutex_unlock(&cgroup_mutex);
2158 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002159 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002160}
2161
Tejun Heo2bb566c2013-08-08 20:11:23 -04002162static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002163{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002164 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002165 struct kernfs_node *kn;
2166 struct lock_class_key *key = NULL;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002167
Tejun Heo2bd59d42014-02-11 11:52:49 -05002168#ifdef CONFIG_DEBUG_LOCK_ALLOC
2169 key = &cft->lockdep_key;
2170#endif
2171 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2172 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2173 NULL, false, key);
Fengguang Wu430af8ad2014-02-13 16:42:43 -05002174 return PTR_ERR_OR_ZERO(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002175}
2176
Tejun Heob1f28d32013-06-28 16:24:10 -07002177/**
2178 * cgroup_addrm_files - add or remove files to a cgroup directory
2179 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002180 * @cfts: array of cftypes to be added
2181 * @is_add: whether to add or remove
2182 *
2183 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002184 * For removals, this function never fails. If addition fails, this
2185 * function doesn't remove files already added. The caller is responsible
2186 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002187 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002188static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2189 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002190{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002191 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002192 int ret;
2193
Tejun Heoace2bee812014-02-11 11:52:47 -05002194 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002195
2196 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002197 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo873fe092013-04-14 20:15:26 -07002198 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2199 continue;
Gao fengf33fddc2012-12-06 14:38:57 +08002200 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2201 continue;
2202 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2203 continue;
2204
Li Zefan2739d3c2013-01-21 18:18:33 +08002205 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002206 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002207 if (ret) {
Li Zefan2739d3c2013-01-21 18:18:33 +08002208 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
Tejun Heob1f28d32013-06-28 16:24:10 -07002209 cft->name, ret);
2210 return ret;
2211 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002212 } else {
2213 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002214 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002215 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002216 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002217}
2218
Tejun Heo21a2d342014-02-12 09:29:49 -05002219static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002220{
2221 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002222 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo492eb212013-08-08 20:11:25 -04002223 struct cgroup *root = &ss->root->top_cgroup;
Tejun Heo492eb212013-08-08 20:11:25 -04002224 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07002225 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002226
Tejun Heo21a2d342014-02-12 09:29:49 -05002227 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo4ac06012014-02-11 11:52:47 -05002228
Tejun Heo21a2d342014-02-12 09:29:49 -05002229 /* don't bother if @ss isn't attached */
2230 if (ss->root == &cgroup_dummy_root)
Tejun Heo9ccece82013-06-28 16:24:11 -07002231 return 0;
Li Zefane8c82d22013-06-18 18:48:37 +08002232
Li Zefane8c82d22013-06-18 18:48:37 +08002233 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04002234 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002235 struct cgroup *cgrp = css->cgroup;
2236
Li Zefane8c82d22013-06-18 18:48:37 +08002237 if (cgroup_is_dead(cgrp))
2238 continue;
2239
Tejun Heo21a2d342014-02-12 09:29:49 -05002240 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07002241 if (ret)
2242 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002243 }
Tejun Heo21a2d342014-02-12 09:29:49 -05002244
2245 if (is_add && !ret)
2246 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07002247 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002248}
2249
Tejun Heo2da440a2014-02-11 11:52:48 -05002250static void cgroup_exit_cftypes(struct cftype *cfts)
2251{
2252 struct cftype *cft;
2253
Tejun Heo2bd59d42014-02-11 11:52:49 -05002254 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2255 /* free copy for custom atomic_write_len, see init_cftypes() */
2256 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
2257 kfree(cft->kf_ops);
2258 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05002259 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002260 }
Tejun Heo2da440a2014-02-11 11:52:48 -05002261}
2262
Tejun Heo2bd59d42014-02-11 11:52:49 -05002263static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05002264{
2265 struct cftype *cft;
2266
Tejun Heo2bd59d42014-02-11 11:52:49 -05002267 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2268 struct kernfs_ops *kf_ops;
2269
Tejun Heo0adb0702014-02-12 09:29:48 -05002270 WARN_ON(cft->ss || cft->kf_ops);
2271
Tejun Heo2bd59d42014-02-11 11:52:49 -05002272 if (cft->seq_start)
2273 kf_ops = &cgroup_kf_ops;
2274 else
2275 kf_ops = &cgroup_kf_single_ops;
2276
2277 /*
2278 * Ugh... if @cft wants a custom max_write_len, we need to
2279 * make a copy of kf_ops to set its atomic_write_len.
2280 */
2281 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
2282 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
2283 if (!kf_ops) {
2284 cgroup_exit_cftypes(cfts);
2285 return -ENOMEM;
2286 }
2287 kf_ops->atomic_write_len = cft->max_write_len;
2288 }
2289
2290 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05002291 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002292 }
2293
2294 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05002295}
2296
Tejun Heo21a2d342014-02-12 09:29:49 -05002297static int cgroup_rm_cftypes_locked(struct cftype *cfts)
2298{
2299 lockdep_assert_held(&cgroup_tree_mutex);
2300
2301 if (!cfts || !cfts[0].ss)
2302 return -ENOENT;
2303
2304 list_del(&cfts->node);
2305 cgroup_apply_cftypes(cfts, false);
2306 cgroup_exit_cftypes(cfts);
2307 return 0;
2308}
2309
Tejun Heo8e3f6542012-04-01 12:09:55 -07002310/**
Tejun Heo80b13582014-02-12 09:29:48 -05002311 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2312 * @cfts: zero-length name terminated array of cftypes
2313 *
2314 * Unregister @cfts. Files described by @cfts are removed from all
2315 * existing cgroups and all future cgroups won't have them either. This
2316 * function can be called anytime whether @cfts' subsys is attached or not.
2317 *
2318 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2319 * registered.
2320 */
2321int cgroup_rm_cftypes(struct cftype *cfts)
2322{
Tejun Heo21a2d342014-02-12 09:29:49 -05002323 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002324
Tejun Heo21a2d342014-02-12 09:29:49 -05002325 mutex_lock(&cgroup_tree_mutex);
2326 ret = cgroup_rm_cftypes_locked(cfts);
2327 mutex_unlock(&cgroup_tree_mutex);
2328 return ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002329}
2330
2331/**
Tejun Heo8e3f6542012-04-01 12:09:55 -07002332 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2333 * @ss: target cgroup subsystem
2334 * @cfts: zero-length name terminated array of cftypes
2335 *
2336 * Register @cfts to @ss. Files described by @cfts are created for all
2337 * existing cgroups to which @ss is attached and all future cgroups will
2338 * have them too. This function can be called anytime whether @ss is
2339 * attached or not.
2340 *
2341 * Returns 0 on successful registration, -errno on failure. Note that this
2342 * function currently returns 0 as long as @cfts registration is successful
2343 * even if some file creation attempts on existing cgroups fail.
2344 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002345int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002346{
Tejun Heo9ccece82013-06-28 16:24:11 -07002347 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002348
Tejun Heo2bd59d42014-02-11 11:52:49 -05002349 ret = cgroup_init_cftypes(ss, cfts);
2350 if (ret)
2351 return ret;
Tejun Heo2bb566c2013-08-08 20:11:23 -04002352
Tejun Heo21a2d342014-02-12 09:29:49 -05002353 mutex_lock(&cgroup_tree_mutex);
2354
Tejun Heo0adb0702014-02-12 09:29:48 -05002355 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05002356 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07002357 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05002358 cgroup_rm_cftypes_locked(cfts);
2359
2360 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07002361 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002362}
Tejun Heo8e3f6542012-04-01 12:09:55 -07002363
Li Zefana043e3b2008-02-23 15:24:09 -08002364/**
2365 * cgroup_task_count - count the number of tasks in a cgroup.
2366 * @cgrp: the cgroup in question
2367 *
2368 * Return the number of tasks in the cgroup.
2369 */
Tejun Heo07bc3562014-02-13 06:58:39 -05002370static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002371{
2372 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07002373 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002374
Tejun Heo96d365e2014-02-13 06:58:40 -05002375 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07002376 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2377 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05002378 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002379 return count;
2380}
2381
Tejun Heo574bd9f2012-11-09 09:12:29 -08002382/**
Tejun Heo492eb212013-08-08 20:11:25 -04002383 * css_next_child - find the next child of a given css
2384 * @pos_css: the current position (%NULL to initiate traversal)
2385 * @parent_css: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09002386 *
Tejun Heo492eb212013-08-08 20:11:25 -04002387 * This function returns the next child of @parent_css and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05002388 * under either cgroup_mutex or RCU read lock. The only requirement is
2389 * that @parent_css and @pos_css are accessible. The next sibling is
2390 * guaranteed to be returned regardless of their states.
Tejun Heo53fa5262013-05-24 10:55:38 +09002391 */
Tejun Heo492eb212013-08-08 20:11:25 -04002392struct cgroup_subsys_state *
2393css_next_child(struct cgroup_subsys_state *pos_css,
2394 struct cgroup_subsys_state *parent_css)
Tejun Heo53fa5262013-05-24 10:55:38 +09002395{
Tejun Heo492eb212013-08-08 20:11:25 -04002396 struct cgroup *pos = pos_css ? pos_css->cgroup : NULL;
2397 struct cgroup *cgrp = parent_css->cgroup;
Tejun Heo53fa5262013-05-24 10:55:38 +09002398 struct cgroup *next;
2399
Tejun Heoace2bee812014-02-11 11:52:47 -05002400 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09002401
2402 /*
2403 * @pos could already have been removed. Once a cgroup is removed,
2404 * its ->sibling.next is no longer updated when its next sibling
Tejun Heoea15f8c2013-06-13 19:27:42 -07002405 * changes. As CGRP_DEAD assertion is serialized and happens
2406 * before the cgroup is taken off the ->sibling list, if we see it
2407 * unasserted, it's guaranteed that the next sibling hasn't
2408 * finished its grace period even if it's already removed, and thus
2409 * safe to dereference from this RCU critical section. If
2410 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
2411 * to be visible as %true here.
Tejun Heo3b287a52013-08-08 20:11:24 -04002412 *
2413 * If @pos is dead, its next pointer can't be dereferenced;
2414 * however, as each cgroup is given a monotonically increasing
2415 * unique serial number and always appended to the sibling list,
2416 * the next one can be found by walking the parent's children until
2417 * we see a cgroup with higher serial number than @pos's. While
2418 * this path can be slower, it's taken only when either the current
2419 * cgroup is removed or iteration and removal race.
Tejun Heo53fa5262013-05-24 10:55:38 +09002420 */
Tejun Heo3b287a52013-08-08 20:11:24 -04002421 if (!pos) {
2422 next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling);
2423 } else if (likely(!cgroup_is_dead(pos))) {
Tejun Heo53fa5262013-05-24 10:55:38 +09002424 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04002425 } else {
2426 list_for_each_entry_rcu(next, &cgrp->children, sibling)
2427 if (next->serial_nr > pos->serial_nr)
2428 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09002429 }
2430
Tejun Heo492eb212013-08-08 20:11:25 -04002431 if (&next->sibling == &cgrp->children)
2432 return NULL;
2433
Tejun Heoca8bdca2013-08-26 18:40:56 -04002434 return cgroup_css(next, parent_css->ss);
Tejun Heo53fa5262013-05-24 10:55:38 +09002435}
Tejun Heo53fa5262013-05-24 10:55:38 +09002436
2437/**
Tejun Heo492eb212013-08-08 20:11:25 -04002438 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002439 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002440 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002441 *
Tejun Heo492eb212013-08-08 20:11:25 -04002442 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002443 * to visit for pre-order traversal of @root's descendants. @root is
2444 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002445 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002446 * While this function requires cgroup_mutex or RCU read locking, it
2447 * doesn't require the whole traversal to be contained in a single critical
2448 * section. This function will return the correct next descendant as long
2449 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002450 */
Tejun Heo492eb212013-08-08 20:11:25 -04002451struct cgroup_subsys_state *
2452css_next_descendant_pre(struct cgroup_subsys_state *pos,
2453 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002454{
Tejun Heo492eb212013-08-08 20:11:25 -04002455 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002456
Tejun Heoace2bee812014-02-11 11:52:47 -05002457 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002458
Tejun Heobd8815a2013-08-08 20:11:27 -04002459 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09002460 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04002461 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002462
2463 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04002464 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002465 if (next)
2466 return next;
2467
2468 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04002469 while (pos != root) {
2470 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002471 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002472 return next;
Tejun Heo492eb212013-08-08 20:11:25 -04002473 pos = css_parent(pos);
Tejun Heo7805d002013-05-24 10:50:24 +09002474 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08002475
2476 return NULL;
2477}
Tejun Heo574bd9f2012-11-09 09:12:29 -08002478
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002479/**
Tejun Heo492eb212013-08-08 20:11:25 -04002480 * css_rightmost_descendant - return the rightmost descendant of a css
2481 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002482 *
Tejun Heo492eb212013-08-08 20:11:25 -04002483 * Return the rightmost descendant of @pos. If there's no descendant, @pos
2484 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002485 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09002486 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002487 * While this function requires cgroup_mutex or RCU read locking, it
2488 * doesn't require the whole traversal to be contained in a single critical
2489 * section. This function will return the correct rightmost descendant as
2490 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002491 */
Tejun Heo492eb212013-08-08 20:11:25 -04002492struct cgroup_subsys_state *
2493css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002494{
Tejun Heo492eb212013-08-08 20:11:25 -04002495 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002496
Tejun Heoace2bee812014-02-11 11:52:47 -05002497 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002498
2499 do {
2500 last = pos;
2501 /* ->prev isn't RCU safe, walk ->next till the end */
2502 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04002503 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002504 pos = tmp;
2505 } while (pos);
2506
2507 return last;
2508}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002509
Tejun Heo492eb212013-08-08 20:11:25 -04002510static struct cgroup_subsys_state *
2511css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002512{
Tejun Heo492eb212013-08-08 20:11:25 -04002513 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002514
2515 do {
2516 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04002517 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002518 } while (pos);
2519
2520 return last;
2521}
2522
2523/**
Tejun Heo492eb212013-08-08 20:11:25 -04002524 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002525 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002526 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002527 *
Tejun Heo492eb212013-08-08 20:11:25 -04002528 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002529 * to visit for post-order traversal of @root's descendants. @root is
2530 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002531 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002532 * While this function requires cgroup_mutex or RCU read locking, it
2533 * doesn't require the whole traversal to be contained in a single critical
2534 * section. This function will return the correct next descendant as long
2535 * as both @pos and @cgroup are accessible and @pos is a descendant of
2536 * @cgroup.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002537 */
Tejun Heo492eb212013-08-08 20:11:25 -04002538struct cgroup_subsys_state *
2539css_next_descendant_post(struct cgroup_subsys_state *pos,
2540 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002541{
Tejun Heo492eb212013-08-08 20:11:25 -04002542 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002543
Tejun Heoace2bee812014-02-11 11:52:47 -05002544 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002545
Tejun Heo58b79a92013-09-06 15:31:08 -04002546 /* if first iteration, visit leftmost descendant which may be @root */
2547 if (!pos)
2548 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002549
Tejun Heobd8815a2013-08-08 20:11:27 -04002550 /* if we visited @root, we're done */
2551 if (pos == root)
2552 return NULL;
2553
Tejun Heo574bd9f2012-11-09 09:12:29 -08002554 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo492eb212013-08-08 20:11:25 -04002555 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002556 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04002557 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002558
2559 /* no sibling left, visit parent */
Tejun Heobd8815a2013-08-08 20:11:27 -04002560 return css_parent(pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002561}
Tejun Heo574bd9f2012-11-09 09:12:29 -08002562
Tejun Heo0942eee2013-08-08 20:11:26 -04002563/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002564 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04002565 * @it: the iterator to advance
2566 *
2567 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04002568 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002569static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04002570{
2571 struct list_head *l = it->cset_link;
2572 struct cgrp_cset_link *link;
2573 struct css_set *cset;
2574
2575 /* Advance to the next non-empty css_set */
2576 do {
2577 l = l->next;
Tejun Heo72ec7022013-08-08 20:11:26 -04002578 if (l == &it->origin_css->cgroup->cset_links) {
Tejun Heod5158762013-08-08 20:11:26 -04002579 it->cset_link = NULL;
2580 return;
2581 }
2582 link = list_entry(l, struct cgrp_cset_link, cset_link);
2583 cset = link->cset;
2584 } while (list_empty(&cset->tasks));
2585 it->cset_link = l;
2586 it->task = cset->tasks.next;
2587}
2588
Tejun Heo0942eee2013-08-08 20:11:26 -04002589/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002590 * css_task_iter_start - initiate task iteration
2591 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04002592 * @it: the task iterator to use
2593 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002594 * Initiate iteration through the tasks of @css. The caller can call
2595 * css_task_iter_next() to walk through the tasks until the function
2596 * returns NULL. On completion of iteration, css_task_iter_end() must be
2597 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04002598 *
2599 * Note that this function acquires a lock which is released when the
2600 * iteration finishes. The caller can't sleep while iteration is in
2601 * progress.
2602 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002603void css_task_iter_start(struct cgroup_subsys_state *css,
2604 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05002605 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07002606{
Tejun Heo56fde9e2014-02-13 06:58:38 -05002607 /* no one should try to iterate before mounting cgroups */
2608 WARN_ON_ONCE(!use_task_css_set_links);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002609
Tejun Heo96d365e2014-02-13 06:58:40 -05002610 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002611
Tejun Heo72ec7022013-08-08 20:11:26 -04002612 it->origin_css = css;
2613 it->cset_link = &css->cgroup->cset_links;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002614
Tejun Heo72ec7022013-08-08 20:11:26 -04002615 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002616}
2617
Tejun Heo0942eee2013-08-08 20:11:26 -04002618/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002619 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04002620 * @it: the task iterator being iterated
2621 *
2622 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04002623 * initialized via css_task_iter_start(). Returns NULL when the iteration
2624 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04002625 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002626struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002627{
2628 struct task_struct *res;
2629 struct list_head *l = it->task;
Tejun Heo69d02062013-06-12 21:04:50 -07002630 struct cgrp_cset_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002631
2632 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo69d02062013-06-12 21:04:50 -07002633 if (!it->cset_link)
Paul Menage817929e2007-10-18 23:39:36 -07002634 return NULL;
2635 res = list_entry(l, struct task_struct, cg_list);
2636 /* Advance iterator to find next entry */
2637 l = l->next;
Tejun Heo69d02062013-06-12 21:04:50 -07002638 link = list_entry(it->cset_link, struct cgrp_cset_link, cset_link);
2639 if (l == &link->cset->tasks) {
Tejun Heo0942eee2013-08-08 20:11:26 -04002640 /*
2641 * We reached the end of this task list - move on to the
2642 * next cgrp_cset_link.
2643 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002644 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002645 } else {
2646 it->task = l;
2647 }
2648 return res;
2649}
2650
Tejun Heo0942eee2013-08-08 20:11:26 -04002651/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002652 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04002653 * @it: the task iterator to finish
2654 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002655 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04002656 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002657void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05002658 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07002659{
Tejun Heo96d365e2014-02-13 06:58:40 -05002660 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07002661}
2662
Tejun Heo8cc99342013-04-07 09:29:50 -07002663/**
2664 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
2665 * @to: cgroup to which the tasks will be moved
2666 * @from: cgroup in which the tasks currently reside
2667 */
2668int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
2669{
Tejun Heoe406d1c2014-02-13 06:58:39 -05002670 struct css_task_iter it;
2671 struct task_struct *task;
2672 int ret = 0;
2673
2674 do {
2675 css_task_iter_start(&from->dummy_css, &it);
2676 task = css_task_iter_next(&it);
2677 if (task)
2678 get_task_struct(task);
2679 css_task_iter_end(&it);
2680
2681 if (task) {
2682 mutex_lock(&cgroup_mutex);
2683 ret = cgroup_attach_task(to, task, false);
2684 mutex_unlock(&cgroup_mutex);
2685 put_task_struct(task);
2686 }
2687 } while (task && !ret);
2688
2689 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07002690}
2691
Paul Menage817929e2007-10-18 23:39:36 -07002692/*
Ben Blum102a7752009-09-23 15:56:26 -07002693 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002694 *
2695 * Reading this file can return large amounts of data if a cgroup has
2696 * *lots* of attached tasks. So it may need several calls to read(),
2697 * but we cannot guarantee that the information we produce is correct
2698 * unless we produce it entirely atomically.
2699 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002700 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002701
Li Zefan24528252012-01-20 11:58:43 +08002702/* which pidlist file are we talking about? */
2703enum cgroup_filetype {
2704 CGROUP_FILE_PROCS,
2705 CGROUP_FILE_TASKS,
2706};
2707
2708/*
2709 * A pidlist is a list of pids that virtually represents the contents of one
2710 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
2711 * a pair (one each for procs, tasks) for each pid namespace that's relevant
2712 * to the cgroup.
2713 */
2714struct cgroup_pidlist {
2715 /*
2716 * used to find which pidlist is wanted. doesn't change as long as
2717 * this particular list stays in the list.
2718 */
2719 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
2720 /* array of xids */
2721 pid_t *list;
2722 /* how many elements the above list has */
2723 int length;
Li Zefan24528252012-01-20 11:58:43 +08002724 /* each of these stored in a list by its cgroup */
2725 struct list_head links;
2726 /* pointer to the cgroup we belong to, for list removal purposes */
2727 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05002728 /* for delayed destruction */
2729 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08002730};
2731
Paul Menagebbcb81d2007-10-18 23:39:32 -07002732/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002733 * The following two functions "fix" the issue where there are more pids
2734 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2735 * TODO: replace with a kernel-wide solution to this problem
2736 */
2737#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2738static void *pidlist_allocate(int count)
2739{
2740 if (PIDLIST_TOO_LARGE(count))
2741 return vmalloc(count * sizeof(pid_t));
2742 else
2743 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2744}
Tejun Heob1a21362013-11-29 10:42:58 -05002745
Ben Blumd1d9fd32009-09-23 15:56:28 -07002746static void pidlist_free(void *p)
2747{
2748 if (is_vmalloc_addr(p))
2749 vfree(p);
2750 else
2751 kfree(p);
2752}
Ben Blumd1d9fd32009-09-23 15:56:28 -07002753
2754/*
Tejun Heob1a21362013-11-29 10:42:58 -05002755 * Used to destroy all pidlists lingering waiting for destroy timer. None
2756 * should be left afterwards.
2757 */
2758static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
2759{
2760 struct cgroup_pidlist *l, *tmp_l;
2761
2762 mutex_lock(&cgrp->pidlist_mutex);
2763 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
2764 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
2765 mutex_unlock(&cgrp->pidlist_mutex);
2766
2767 flush_workqueue(cgroup_pidlist_destroy_wq);
2768 BUG_ON(!list_empty(&cgrp->pidlists));
2769}
2770
2771static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
2772{
2773 struct delayed_work *dwork = to_delayed_work(work);
2774 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
2775 destroy_dwork);
2776 struct cgroup_pidlist *tofree = NULL;
2777
2778 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05002779
2780 /*
Tejun Heo04502362013-11-29 10:42:59 -05002781 * Destroy iff we didn't get queued again. The state won't change
2782 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05002783 */
Tejun Heo04502362013-11-29 10:42:59 -05002784 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05002785 list_del(&l->links);
2786 pidlist_free(l->list);
2787 put_pid_ns(l->key.ns);
2788 tofree = l;
2789 }
2790
Tejun Heob1a21362013-11-29 10:42:58 -05002791 mutex_unlock(&l->owner->pidlist_mutex);
2792 kfree(tofree);
2793}
2794
2795/*
Ben Blum102a7752009-09-23 15:56:26 -07002796 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07002797 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002798 */
Li Zefan6ee211a2013-03-12 15:36:00 -07002799static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002800{
Ben Blum102a7752009-09-23 15:56:26 -07002801 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07002802
2803 /*
2804 * we presume the 0th element is unique, so i starts at 1. trivial
2805 * edge cases first; no work needs to be done for either
2806 */
2807 if (length == 0 || length == 1)
2808 return length;
2809 /* src and dest walk down the list; dest counts unique elements */
2810 for (src = 1; src < length; src++) {
2811 /* find next unique element */
2812 while (list[src] == list[src-1]) {
2813 src++;
2814 if (src == length)
2815 goto after;
2816 }
2817 /* dest always points to where the next unique element goes */
2818 list[dest] = list[src];
2819 dest++;
2820 }
2821after:
Ben Blum102a7752009-09-23 15:56:26 -07002822 return dest;
2823}
2824
Tejun Heoafb2bc12013-11-29 10:42:59 -05002825/*
2826 * The two pid files - task and cgroup.procs - guaranteed that the result
2827 * is sorted, which forced this whole pidlist fiasco. As pid order is
2828 * different per namespace, each namespace needs differently sorted list,
2829 * making it impossible to use, for example, single rbtree of member tasks
2830 * sorted by task pointer. As pidlists can be fairly large, allocating one
2831 * per open file is dangerous, so cgroup had to implement shared pool of
2832 * pidlists keyed by cgroup and namespace.
2833 *
2834 * All this extra complexity was caused by the original implementation
2835 * committing to an entirely unnecessary property. In the long term, we
2836 * want to do away with it. Explicitly scramble sort order if
2837 * sane_behavior so that no such expectation exists in the new interface.
2838 *
2839 * Scrambling is done by swapping every two consecutive bits, which is
2840 * non-identity one-to-one mapping which disturbs sort order sufficiently.
2841 */
2842static pid_t pid_fry(pid_t pid)
2843{
2844 unsigned a = pid & 0x55555555;
2845 unsigned b = pid & 0xAAAAAAAA;
2846
2847 return (a << 1) | (b >> 1);
2848}
2849
2850static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
2851{
2852 if (cgroup_sane_behavior(cgrp))
2853 return pid_fry(pid);
2854 else
2855 return pid;
2856}
2857
Ben Blum102a7752009-09-23 15:56:26 -07002858static int cmppid(const void *a, const void *b)
2859{
2860 return *(pid_t *)a - *(pid_t *)b;
2861}
2862
Tejun Heoafb2bc12013-11-29 10:42:59 -05002863static int fried_cmppid(const void *a, const void *b)
2864{
2865 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
2866}
2867
Ben Blum72a8cb32009-09-23 15:56:27 -07002868static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2869 enum cgroup_filetype type)
2870{
2871 struct cgroup_pidlist *l;
2872 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08002873 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08002874
Tejun Heoe6b81712013-11-29 10:42:59 -05002875 lockdep_assert_held(&cgrp->pidlist_mutex);
2876
2877 list_for_each_entry(l, &cgrp->pidlists, links)
2878 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07002879 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05002880 return NULL;
2881}
2882
Ben Blum72a8cb32009-09-23 15:56:27 -07002883/*
2884 * find the appropriate pidlist for our purpose (given procs vs tasks)
2885 * returns with the lock on that pidlist already held, and takes care
2886 * of the use count, or returns NULL with no locks held if we're out of
2887 * memory.
2888 */
Tejun Heoe6b81712013-11-29 10:42:59 -05002889static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
2890 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07002891{
2892 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07002893
Tejun Heoe6b81712013-11-29 10:42:59 -05002894 lockdep_assert_held(&cgrp->pidlist_mutex);
2895
2896 l = cgroup_pidlist_find(cgrp, type);
2897 if (l)
2898 return l;
2899
Ben Blum72a8cb32009-09-23 15:56:27 -07002900 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07002901 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05002902 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07002903 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05002904
Tejun Heob1a21362013-11-29 10:42:58 -05002905 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07002906 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05002907 /* don't need task_nsproxy() if we're looking at ourself */
2908 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07002909 l->owner = cgrp;
2910 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07002911 return l;
2912}
2913
2914/*
Ben Blum102a7752009-09-23 15:56:26 -07002915 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2916 */
Ben Blum72a8cb32009-09-23 15:56:27 -07002917static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2918 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07002919{
2920 pid_t *array;
2921 int length;
2922 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04002923 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07002924 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07002925 struct cgroup_pidlist *l;
2926
Tejun Heo4bac00d2013-11-29 10:42:59 -05002927 lockdep_assert_held(&cgrp->pidlist_mutex);
2928
Ben Blum102a7752009-09-23 15:56:26 -07002929 /*
2930 * If cgroup gets more users after we read count, we won't have
2931 * enough space - tough. This race is indistinguishable to the
2932 * caller from the case that the additional cgroup users didn't
2933 * show up until sometime later on.
2934 */
2935 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002936 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07002937 if (!array)
2938 return -ENOMEM;
2939 /* now, populate the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04002940 css_task_iter_start(&cgrp->dummy_css, &it);
2941 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07002942 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07002943 break;
Ben Blum102a7752009-09-23 15:56:26 -07002944 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07002945 if (type == CGROUP_FILE_PROCS)
2946 pid = task_tgid_vnr(tsk);
2947 else
2948 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07002949 if (pid > 0) /* make sure to only use valid results */
2950 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07002951 }
Tejun Heo72ec7022013-08-08 20:11:26 -04002952 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07002953 length = n;
2954 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05002955 if (cgroup_sane_behavior(cgrp))
2956 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
2957 else
2958 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07002959 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07002960 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05002961
Tejun Heoe6b81712013-11-29 10:42:59 -05002962 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07002963 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05002964 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002965 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07002966 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07002967 }
Tejun Heoe6b81712013-11-29 10:42:59 -05002968
2969 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07002970 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07002971 l->list = array;
2972 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07002973 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07002974 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002975}
2976
Balbir Singh846c7bb2007-10-18 23:39:44 -07002977/**
Li Zefana043e3b2008-02-23 15:24:09 -08002978 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07002979 * @stats: cgroupstats to fill information into
2980 * @dentry: A dentry entry belonging to the cgroup for which stats have
2981 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08002982 *
2983 * Build and fill cgroupstats so that taskstats can export it to user
2984 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002985 */
2986int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2987{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002988 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002989 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04002990 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002991 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08002992
Tejun Heo2bd59d42014-02-11 11:52:49 -05002993 /* it should be kernfs_node belonging to cgroupfs and is a directory */
2994 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
2995 kernfs_type(kn) != KERNFS_DIR)
2996 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002997
Li Zefanbad34662014-02-14 16:54:28 +08002998 mutex_lock(&cgroup_mutex);
2999
Tejun Heo2bd59d42014-02-11 11:52:49 -05003000 /*
3001 * We aren't being called from kernfs and there's no guarantee on
3002 * @kn->priv's validity. For this and css_tryget_from_dir(),
3003 * @kn->priv is RCU safe. Let's do the RCU dancing.
3004 */
3005 rcu_read_lock();
3006 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08003007 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05003008 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08003009 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003010 return -ENOENT;
3011 }
Li Zefanbad34662014-02-14 16:54:28 +08003012 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07003013
Tejun Heo72ec7022013-08-08 20:11:26 -04003014 css_task_iter_start(&cgrp->dummy_css, &it);
3015 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003016 switch (tsk->state) {
3017 case TASK_RUNNING:
3018 stats->nr_running++;
3019 break;
3020 case TASK_INTERRUPTIBLE:
3021 stats->nr_sleeping++;
3022 break;
3023 case TASK_UNINTERRUPTIBLE:
3024 stats->nr_uninterruptible++;
3025 break;
3026 case TASK_STOPPED:
3027 stats->nr_stopped++;
3028 break;
3029 default:
3030 if (delayacct_is_task_waiting_on_io(tsk))
3031 stats->nr_io_wait++;
3032 break;
3033 }
3034 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003035 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003036
Li Zefanbad34662014-02-14 16:54:28 +08003037 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003038 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003039}
3040
Paul Menage8f3ff202009-09-23 15:56:25 -07003041
Paul Menagecc31edc2008-10-18 20:28:04 -07003042/*
Ben Blum102a7752009-09-23 15:56:26 -07003043 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003044 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003045 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003046 */
3047
Ben Blum102a7752009-09-23 15:56:26 -07003048static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003049{
3050 /*
3051 * Initially we receive a position value that corresponds to
3052 * one more than the last pid shown (or 0 on the first call or
3053 * after a seek to the start). Use a binary-search to find the
3054 * next pid to display, if any
3055 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003056 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003057 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003058 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003059 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003060 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003061 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003062
Tejun Heo4bac00d2013-11-29 10:42:59 -05003063 mutex_lock(&cgrp->pidlist_mutex);
3064
3065 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003066 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003067 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003068 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003069 * could already have been destroyed.
3070 */
Tejun Heo5d224442013-12-05 12:28:04 -05003071 if (of->priv)
3072 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003073
3074 /*
3075 * Either this is the first start() after open or the matching
3076 * pidlist has been destroyed inbetween. Create a new one.
3077 */
Tejun Heo5d224442013-12-05 12:28:04 -05003078 if (!of->priv) {
3079 ret = pidlist_array_load(cgrp, type,
3080 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003081 if (ret)
3082 return ERR_PTR(ret);
3083 }
Tejun Heo5d224442013-12-05 12:28:04 -05003084 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003085
Paul Menagecc31edc2008-10-18 20:28:04 -07003086 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003087 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003088
Paul Menagecc31edc2008-10-18 20:28:04 -07003089 while (index < end) {
3090 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003091 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003092 index = mid;
3093 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003094 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003095 index = mid + 1;
3096 else
3097 end = mid;
3098 }
3099 }
3100 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003101 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003102 return NULL;
3103 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003104 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003105 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003106 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003107}
3108
Ben Blum102a7752009-09-23 15:56:26 -07003109static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003110{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003111 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003112 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05003113
Tejun Heo5d224442013-12-05 12:28:04 -05003114 if (l)
3115 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05003116 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05003117 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003118}
3119
Ben Blum102a7752009-09-23 15:56:26 -07003120static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003121{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003122 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003123 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07003124 pid_t *p = v;
3125 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003126 /*
3127 * Advance to the next pid in the array. If this goes off the
3128 * end, we're done
3129 */
3130 p++;
3131 if (p >= end) {
3132 return NULL;
3133 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05003134 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07003135 return p;
3136 }
3137}
3138
Ben Blum102a7752009-09-23 15:56:26 -07003139static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003140{
3141 return seq_printf(s, "%d\n", *(int *)v);
3142}
3143
Ben Blum102a7752009-09-23 15:56:26 -07003144/*
3145 * seq_operations functions for iterating on pidlists through seq_file -
3146 * independent of whether it's tasks or procs
3147 */
3148static const struct seq_operations cgroup_pidlist_seq_operations = {
3149 .start = cgroup_pidlist_start,
3150 .stop = cgroup_pidlist_stop,
3151 .next = cgroup_pidlist_next,
3152 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003153};
3154
Tejun Heo182446d2013-08-08 20:11:24 -04003155static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3156 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003157{
Tejun Heo182446d2013-08-08 20:11:24 -04003158 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003159}
3160
Tejun Heo182446d2013-08-08 20:11:24 -04003161static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3162 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003163{
Tejun Heo182446d2013-08-08 20:11:24 -04003164 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003165 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003166 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003167 else
Tejun Heo182446d2013-08-08 20:11:24 -04003168 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003169 return 0;
3170}
3171
Tejun Heo182446d2013-08-08 20:11:24 -04003172static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3173 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003174{
Tejun Heo182446d2013-08-08 20:11:24 -04003175 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003176}
3177
Tejun Heo182446d2013-08-08 20:11:24 -04003178static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
3179 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003180{
3181 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003182 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003183 else
Tejun Heo182446d2013-08-08 20:11:24 -04003184 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003185 return 0;
3186}
3187
Tejun Heod5c56ce2013-06-03 19:14:34 -07003188static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07003189 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07003190 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05003191 .seq_start = cgroup_pidlist_start,
3192 .seq_next = cgroup_pidlist_next,
3193 .seq_stop = cgroup_pidlist_stop,
3194 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003195 .private = CGROUP_FILE_PROCS,
Ben Blum74a11662011-05-26 16:25:20 -07003196 .write_u64 = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07003197 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003198 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003199 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07003200 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07003201 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07003202 .read_u64 = cgroup_clone_children_read,
3203 .write_u64 = cgroup_clone_children_write,
3204 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003205 {
Tejun Heo873fe092013-04-14 20:15:26 -07003206 .name = "cgroup.sane_behavior",
3207 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003208 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07003209 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07003210
3211 /*
3212 * Historical crazy stuff. These don't have "cgroup." prefix and
3213 * don't exist if sane_behavior. If you're depending on these, be
3214 * prepared to be burned.
3215 */
3216 {
3217 .name = "tasks",
3218 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05003219 .seq_start = cgroup_pidlist_start,
3220 .seq_next = cgroup_pidlist_next,
3221 .seq_stop = cgroup_pidlist_stop,
3222 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003223 .private = CGROUP_FILE_TASKS,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003224 .write_u64 = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003225 .mode = S_IRUGO | S_IWUSR,
3226 },
3227 {
3228 .name = "notify_on_release",
3229 .flags = CFTYPE_INSANE,
3230 .read_u64 = cgroup_read_notify_on_release,
3231 .write_u64 = cgroup_write_notify_on_release,
3232 },
Tejun Heo873fe092013-04-14 20:15:26 -07003233 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07003234 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07003235 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003236 .seq_show = cgroup_release_agent_show,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003237 .write_string = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05003238 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003239 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003240 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003241};
3242
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003243/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07003244 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003245 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003246 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07003247 *
3248 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003249 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07003250static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003251{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003252 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07003253 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003254
Tejun Heo8e3f6542012-04-01 12:09:55 -07003255 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07003256 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05003257 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07003258
3259 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003260 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003261
Tejun Heo0adb0702014-02-12 09:29:48 -05003262 list_for_each_entry(cfts, &ss->cfts, node) {
3263 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07003264 if (ret < 0)
3265 goto err;
3266 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003267 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003268 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07003269err:
3270 cgroup_clear_dir(cgrp, subsys_mask);
3271 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003272}
3273
Tejun Heo0c21ead2013-08-13 20:22:51 -04003274/*
3275 * css destruction is four-stage process.
3276 *
3277 * 1. Destruction starts. Killing of the percpu_ref is initiated.
3278 * Implemented in kill_css().
3279 *
3280 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
3281 * and thus css_tryget() is guaranteed to fail, the css can be offlined
3282 * by invoking offline_css(). After offlining, the base ref is put.
3283 * Implemented in css_killed_work_fn().
3284 *
3285 * 3. When the percpu_ref reaches zero, the only possible remaining
3286 * accessors are inside RCU read sections. css_release() schedules the
3287 * RCU callback.
3288 *
3289 * 4. After the grace period, the css can be freed. Implemented in
3290 * css_free_work_fn().
3291 *
3292 * It is actually hairier because both step 2 and 4 require process context
3293 * and thus involve punting to css->destroy_work adding two additional
3294 * steps to the already complex sequence.
3295 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04003296static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07003297{
3298 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04003299 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003300 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003301
Tejun Heo0ae78e02013-08-13 11:01:54 -04003302 if (css->parent)
3303 css_put(css->parent);
3304
Tejun Heo0c21ead2013-08-13 20:22:51 -04003305 css->ss->css_free(css);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003306 cgroup_put(cgrp);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003307}
3308
3309static void css_free_rcu_fn(struct rcu_head *rcu_head)
3310{
3311 struct cgroup_subsys_state *css =
3312 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
3313
Tejun Heo0c21ead2013-08-13 20:22:51 -04003314 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003315 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07003316}
3317
Tejun Heod3daf282013-06-13 19:39:16 -07003318static void css_release(struct percpu_ref *ref)
3319{
3320 struct cgroup_subsys_state *css =
3321 container_of(ref, struct cgroup_subsys_state, refcnt);
3322
Tejun Heoaec25022014-02-08 10:36:58 -05003323 rcu_assign_pointer(css->cgroup->subsys[css->ss->id], NULL);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003324 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003325}
3326
Tejun Heo623f9262013-08-13 11:01:55 -04003327static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss,
3328 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003329{
Paul Menagebd89aab2007-10-18 23:40:44 -07003330 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04003331 css->ss = ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003332 css->flags = 0;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003333
Tejun Heo0ae78e02013-08-13 11:01:54 -04003334 if (cgrp->parent)
Tejun Heoca8bdca2013-08-26 18:40:56 -04003335 css->parent = cgroup_css(cgrp->parent, ss);
Tejun Heo0ae78e02013-08-13 11:01:54 -04003336 else
Paul Menageddbcc7e2007-10-18 23:39:30 -07003337 css->flags |= CSS_ROOT;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003338
Tejun Heoca8bdca2013-08-26 18:40:56 -04003339 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003340}
3341
Li Zefan2a4ac632013-07-31 16:16:40 +08003342/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04003343static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003344{
Tejun Heo623f9262013-08-13 11:01:55 -04003345 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08003346 int ret = 0;
3347
Tejun Heoace2bee812014-02-11 11:52:47 -05003348 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003349 lockdep_assert_held(&cgroup_mutex);
3350
Tejun Heo92fb9742012-11-19 08:13:38 -08003351 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04003352 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003353 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04003354 css->flags |= CSS_ONLINE;
Tejun Heof20104d2013-08-13 20:22:50 -04003355 css->cgroup->nr_css++;
Tejun Heoaec25022014-02-08 10:36:58 -05003356 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003357 }
Tejun Heob1929db2012-11-19 08:13:38 -08003358 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003359}
3360
Li Zefan2a4ac632013-07-31 16:16:40 +08003361/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04003362static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003363{
Tejun Heo623f9262013-08-13 11:01:55 -04003364 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003365
Tejun Heoace2bee812014-02-11 11:52:47 -05003366 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003367 lockdep_assert_held(&cgroup_mutex);
3368
3369 if (!(css->flags & CSS_ONLINE))
3370 return;
3371
Li Zefand7eeac12013-03-12 15:35:59 -07003372 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04003373 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003374
Tejun Heoeb954192013-08-08 20:11:23 -04003375 css->flags &= ~CSS_ONLINE;
Tejun Heo09a503ea2013-08-13 20:22:50 -04003376 css->cgroup->nr_css--;
Tejun Heoaec25022014-02-08 10:36:58 -05003377 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003378}
3379
Tejun Heoc81c925a2013-12-06 15:11:56 -05003380/**
3381 * create_css - create a cgroup_subsys_state
3382 * @cgrp: the cgroup new css will be associated with
3383 * @ss: the subsys of new css
3384 *
3385 * Create a new css associated with @cgrp - @ss pair. On success, the new
3386 * css is online and installed in @cgrp with all interface files created.
3387 * Returns 0 on success, -errno on failure.
3388 */
3389static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
3390{
3391 struct cgroup *parent = cgrp->parent;
3392 struct cgroup_subsys_state *css;
3393 int err;
3394
Tejun Heoc81c925a2013-12-06 15:11:56 -05003395 lockdep_assert_held(&cgroup_mutex);
3396
3397 css = ss->css_alloc(cgroup_css(parent, ss));
3398 if (IS_ERR(css))
3399 return PTR_ERR(css);
3400
3401 err = percpu_ref_init(&css->refcnt, css_release);
3402 if (err)
3403 goto err_free;
3404
3405 init_css(css, ss, cgrp);
3406
Tejun Heoaec25022014-02-08 10:36:58 -05003407 err = cgroup_populate_dir(cgrp, 1 << ss->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003408 if (err)
3409 goto err_free;
3410
3411 err = online_css(css);
3412 if (err)
3413 goto err_free;
3414
Tejun Heo59f52962014-02-11 11:52:49 -05003415 cgroup_get(cgrp);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003416 css_get(css->parent);
3417
3418 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
3419 parent->parent) {
3420 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",
3421 current->comm, current->pid, ss->name);
3422 if (!strcmp(ss->name, "memory"))
3423 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
3424 ss->warned_broken_hierarchy = true;
3425 }
3426
3427 return 0;
3428
3429err_free:
3430 percpu_ref_cancel_init(&css->refcnt);
3431 ss->css_free(css);
3432 return err;
3433}
3434
Tejun Heo2bd59d42014-02-11 11:52:49 -05003435/**
Li Zefana043e3b2008-02-23 15:24:09 -08003436 * cgroup_create - create a cgroup
3437 * @parent: cgroup that will be parent of the new cgroup
Tejun Heoe61734c2014-02-12 09:29:50 -05003438 * @name: name of the new cgroup
Tejun Heo2bd59d42014-02-11 11:52:49 -05003439 * @mode: mode to set on new cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07003440 */
Tejun Heoe61734c2014-02-12 09:29:50 -05003441static long cgroup_create(struct cgroup *parent, const char *name,
Tejun Heo2bd59d42014-02-11 11:52:49 -05003442 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003443{
Paul Menagebd89aab2007-10-18 23:40:44 -07003444 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003445 struct cgroupfs_root *root = parent->root;
Tejun Heob58c8992014-02-08 10:26:33 -05003446 int ssid, err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003447 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003448 struct kernfs_node *kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003449
Tejun Heo0a950f62012-11-19 09:02:12 -08003450 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07003451 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3452 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003453 return -ENOMEM;
3454
Tejun Heoace2bee812014-02-11 11:52:47 -05003455 mutex_lock(&cgroup_tree_mutex);
3456
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003457 /*
Tejun Heo976c06b2012-11-05 09:16:59 -08003458 * Only live parents can have children. Note that the liveliness
3459 * check isn't strictly necessary because cgroup_mkdir() and
3460 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
3461 * anyway so that locking is contained inside cgroup proper and we
3462 * don't get nasty surprises if we ever grow another caller.
3463 */
3464 if (!cgroup_lock_live_group(parent)) {
3465 err = -ENODEV;
Tejun Heoace2bee812014-02-11 11:52:47 -05003466 goto err_unlock_tree;
Li Zefan0ab02ca2014-02-11 16:05:46 +08003467 }
3468
3469 /*
3470 * Temporarily set the pointer to NULL, so idr_find() won't return
3471 * a half-baked cgroup.
3472 */
3473 cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL);
3474 if (cgrp->id < 0) {
3475 err = -ENOMEM;
3476 goto err_unlock;
Tejun Heo976c06b2012-11-05 09:16:59 -08003477 }
3478
Paul Menagecc31edc2008-10-18 20:28:04 -07003479 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003480
Paul Menagebd89aab2007-10-18 23:40:44 -07003481 cgrp->parent = parent;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003482 cgrp->dummy_css.parent = &parent->dummy_css;
Paul Menagebd89aab2007-10-18 23:40:44 -07003483 cgrp->root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003484
Li Zefanb6abdb02008-03-04 14:28:19 -08003485 if (notify_on_release(parent))
3486 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3487
Tejun Heo2260e7f2012-11-19 08:13:38 -08003488 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
3489 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003490
Tejun Heo2bd59d42014-02-11 11:52:49 -05003491 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05003492 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003493 if (IS_ERR(kn)) {
3494 err = PTR_ERR(kn);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003495 goto err_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003496 }
3497 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003498
Tejun Heo6f305582014-02-12 09:29:50 -05003499 /*
3500 * This extra ref will be put in cgroup_free_fn() and guarantees
3501 * that @cgrp->kn is always accessible.
3502 */
3503 kernfs_get(kn);
3504
Tejun Heo00356bd2013-06-18 11:14:22 -07003505 cgrp->serial_nr = cgroup_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09003506
Tejun Heo4e139af2012-11-19 08:13:36 -08003507 /* allocation complete, commit to creation */
Tejun Heo4e139af2012-11-19 08:13:36 -08003508 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05003509 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05003510 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08003511
Tejun Heo0d802552013-12-06 15:11:56 -05003512 /*
3513 * @cgrp is now fully operational. If something fails after this
3514 * point, it'll be released via the normal destruction path.
3515 */
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003516 idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
3517
Tejun Heo2bb566c2013-08-08 20:11:23 -04003518 err = cgroup_addrm_files(cgrp, cgroup_base_files, true);
Tejun Heo628f7cd2013-06-28 16:24:11 -07003519 if (err)
3520 goto err_destroy;
3521
Tejun Heo9d403e92013-12-06 15:11:56 -05003522 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05003523 for_each_subsys(ss, ssid) {
3524 if (root->subsys_mask & (1 << ssid)) {
3525 err = create_css(cgrp, ss);
3526 if (err)
3527 goto err_destroy;
3528 }
Tejun Heoa8638032012-11-09 09:12:29 -08003529 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003530
Tejun Heo2bd59d42014-02-11 11:52:49 -05003531 kernfs_activate(kn);
3532
Paul Menageddbcc7e2007-10-18 23:39:30 -07003533 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee812014-02-11 11:52:47 -05003534 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003535
3536 return 0;
3537
Tejun Heo0a950f62012-11-19 09:02:12 -08003538err_free_id:
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003539 idr_remove(&root->cgroup_idr, cgrp->id);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003540err_unlock:
3541 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee812014-02-11 11:52:47 -05003542err_unlock_tree:
3543 mutex_unlock(&cgroup_tree_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003544 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003545 return err;
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003546
3547err_destroy:
3548 cgroup_destroy_locked(cgrp);
3549 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee812014-02-11 11:52:47 -05003550 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003551 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003552}
3553
Tejun Heo2bd59d42014-02-11 11:52:49 -05003554static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
3555 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003556{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003557 struct cgroup *parent = parent_kn->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003558
Tejun Heo2bd59d42014-02-11 11:52:49 -05003559 return cgroup_create(parent, name, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003560}
3561
Tejun Heo223dbc32013-08-13 20:22:50 -04003562/*
3563 * This is called when the refcnt of a css is confirmed to be killed.
3564 * css_tryget() is now guaranteed to fail.
3565 */
3566static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07003567{
Tejun Heo223dbc32013-08-13 20:22:50 -04003568 struct cgroup_subsys_state *css =
3569 container_of(work, struct cgroup_subsys_state, destroy_work);
3570 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07003571
Tejun Heoace2bee812014-02-11 11:52:47 -05003572 mutex_lock(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003573 mutex_lock(&cgroup_mutex);
3574
3575 /*
Tejun Heo09a503ea2013-08-13 20:22:50 -04003576 * css_tryget() is guaranteed to fail now. Tell subsystems to
3577 * initate destruction.
3578 */
3579 offline_css(css);
3580
3581 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003582 * If @cgrp is marked dead, it's waiting for refs of all css's to
3583 * be disabled before proceeding to the second phase of cgroup
3584 * destruction. If we are the last one, kick it off.
3585 */
Tejun Heo09a503ea2013-08-13 20:22:50 -04003586 if (!cgrp->nr_css && cgroup_is_dead(cgrp))
Tejun Heof20104d2013-08-13 20:22:50 -04003587 cgroup_destroy_css_killed(cgrp);
3588
3589 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee812014-02-11 11:52:47 -05003590 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04003591
3592 /*
3593 * Put the css refs from kill_css(). Each css holds an extra
3594 * reference to the cgroup's dentry and cgroup removal proceeds
3595 * regardless of css refs. On the last put of each css, whenever
3596 * that may be, the extra dentry ref is put so that dentry
3597 * destruction happens only after all css's are released.
3598 */
3599 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07003600}
3601
Tejun Heo223dbc32013-08-13 20:22:50 -04003602/* css kill confirmation processing requires process context, bounce */
3603static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07003604{
3605 struct cgroup_subsys_state *css =
3606 container_of(ref, struct cgroup_subsys_state, refcnt);
3607
Tejun Heo223dbc32013-08-13 20:22:50 -04003608 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003609 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07003610}
3611
3612/**
Tejun Heoedae0c32013-08-13 20:22:51 -04003613 * kill_css - destroy a css
3614 * @css: css to destroy
3615 *
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003616 * This function initiates destruction of @css by removing cgroup interface
3617 * files and putting its base reference. ->css_offline() will be invoked
3618 * asynchronously once css_tryget() is guaranteed to fail and when the
3619 * reference count reaches zero, @css will be released.
Tejun Heoedae0c32013-08-13 20:22:51 -04003620 */
3621static void kill_css(struct cgroup_subsys_state *css)
3622{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003623 /*
3624 * This must happen before css is disassociated with its cgroup.
3625 * See seq_css() for details.
3626 */
Tejun Heoaec25022014-02-08 10:36:58 -05003627 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003628
Tejun Heoedae0c32013-08-13 20:22:51 -04003629 /*
3630 * Killing would put the base ref, but we need to keep it alive
3631 * until after ->css_offline().
3632 */
3633 css_get(css);
3634
3635 /*
3636 * cgroup core guarantees that, by the time ->css_offline() is
3637 * invoked, no new css reference will be given out via
3638 * css_tryget(). We can't simply call percpu_ref_kill() and
3639 * proceed to offlining css's because percpu_ref_kill() doesn't
3640 * guarantee that the ref is seen as killed on all CPUs on return.
3641 *
3642 * Use percpu_ref_kill_and_confirm() to get notifications as each
3643 * css is confirmed to be seen as killed on all CPUs.
3644 */
3645 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003646}
3647
3648/**
3649 * cgroup_destroy_locked - the first stage of cgroup destruction
3650 * @cgrp: cgroup to be destroyed
3651 *
3652 * css's make use of percpu refcnts whose killing latency shouldn't be
3653 * exposed to userland and are RCU protected. Also, cgroup core needs to
3654 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
3655 * invoked. To satisfy all the requirements, destruction is implemented in
3656 * the following two steps.
3657 *
3658 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
3659 * userland visible parts and start killing the percpu refcnts of
3660 * css's. Set up so that the next stage will be kicked off once all
3661 * the percpu refcnts are confirmed to be killed.
3662 *
3663 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
3664 * rest of destruction. Once all cgroup references are gone, the
3665 * cgroup is RCU-freed.
3666 *
3667 * This function implements s1. After this step, @cgrp is gone as far as
3668 * the userland is concerned and a new cgroup with the same name may be
3669 * created. As cgroup doesn't care about the names internally, this
3670 * doesn't cause any problem.
3671 */
Tejun Heo42809dd2012-11-19 08:13:37 -08003672static int cgroup_destroy_locked(struct cgroup *cgrp)
3673 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003674{
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003675 struct cgroup *child;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003676 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07003677 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05003678 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003679
Tejun Heoace2bee812014-02-11 11:52:47 -05003680 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003681 lockdep_assert_held(&cgroup_mutex);
3682
Tejun Heoddd69142013-06-12 21:04:54 -07003683 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05003684 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05003685 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07003686 */
Tejun Heo96d365e2014-02-13 06:58:40 -05003687 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003688 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05003689 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07003690 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003691 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08003692
Tejun Heo1a90dd52012-11-05 09:16:59 -08003693 /*
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003694 * Make sure there's no live children. We can't test ->children
3695 * emptiness as dead children linger on it while being destroyed;
3696 * otherwise, "rmdir parent/child parent" may fail with -EBUSY.
3697 */
3698 empty = true;
3699 rcu_read_lock();
3700 list_for_each_entry_rcu(child, &cgrp->children, sibling) {
3701 empty = cgroup_is_dead(child);
3702 if (!empty)
3703 break;
3704 }
3705 rcu_read_unlock();
3706 if (!empty)
3707 return -EBUSY;
3708
3709 /*
Tejun Heoedae0c32013-08-13 20:22:51 -04003710 * Initiate massacre of all css's. cgroup_destroy_css_killed()
3711 * will be invoked to perform the rest of destruction once the
Tejun Heo4ac06012014-02-11 11:52:47 -05003712 * percpu refs of all css's are confirmed to be killed. This
3713 * involves removing the subsystem's files, drop cgroup_mutex.
Tejun Heo1a90dd52012-11-05 09:16:59 -08003714 */
Tejun Heo4ac06012014-02-11 11:52:47 -05003715 mutex_unlock(&cgroup_mutex);
Tejun Heo1c6727a2013-12-06 15:11:56 -05003716 for_each_css(css, ssid, cgrp)
3717 kill_css(css);
Tejun Heo4ac06012014-02-11 11:52:47 -05003718 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07003719
3720 /*
3721 * Mark @cgrp dead. This prevents further task migration and child
3722 * creation by disabling cgroup_lock_live_group(). Note that
Tejun Heo492eb212013-08-08 20:11:25 -04003723 * CGRP_DEAD assertion is depended upon by css_next_child() to
Tejun Heo455050d2013-06-13 19:27:41 -07003724 * resume iteration after dropping RCU read lock. See
Tejun Heo492eb212013-08-08 20:11:25 -04003725 * css_next_child() for details.
Tejun Heo455050d2013-06-13 19:27:41 -07003726 */
Tejun Heo54766d42013-06-12 21:04:53 -07003727 set_bit(CGRP_DEAD, &cgrp->flags);
Tejun Heo1a90dd52012-11-05 09:16:59 -08003728
Tejun Heo455050d2013-06-13 19:27:41 -07003729 /* CGRP_DEAD is set, remove from ->release_list for the last time */
3730 raw_spin_lock(&release_list_lock);
3731 if (!list_empty(&cgrp->release_list))
3732 list_del_init(&cgrp->release_list);
3733 raw_spin_unlock(&release_list_lock);
3734
3735 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003736 * If @cgrp has css's attached, the second stage of cgroup
3737 * destruction is kicked off from css_killed_work_fn() after the
3738 * refs of all attached css's are killed. If @cgrp doesn't have
3739 * any css, we kick it off here.
Tejun Heo455050d2013-06-13 19:27:41 -07003740 */
Tejun Heof20104d2013-08-13 20:22:50 -04003741 if (!cgrp->nr_css)
3742 cgroup_destroy_css_killed(cgrp);
3743
Tejun Heo2bd59d42014-02-11 11:52:49 -05003744 /* remove @cgrp directory along with the base files */
Tejun Heo4ac06012014-02-11 11:52:47 -05003745 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003746
3747 /*
3748 * There are two control paths which try to determine cgroup from
3749 * dentry without going through kernfs - cgroupstats_build() and
3750 * css_tryget_from_dir(). Those are supported by RCU protecting
3751 * clearing of cgrp->kn->priv backpointer, which should happen
3752 * after all files under it have been removed.
3753 */
Tejun Heo6f305582014-02-12 09:29:50 -05003754 kernfs_remove(cgrp->kn); /* @cgrp has an extra ref on its kn */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003755 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003756
Tejun Heo4ac06012014-02-11 11:52:47 -05003757 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07003758
Tejun Heoea15f8c2013-06-13 19:27:42 -07003759 return 0;
3760};
3761
Tejun Heod3daf282013-06-13 19:39:16 -07003762/**
Tejun Heof20104d2013-08-13 20:22:50 -04003763 * cgroup_destroy_css_killed - the second step of cgroup destruction
Tejun Heod3daf282013-06-13 19:39:16 -07003764 * @work: cgroup->destroy_free_work
3765 *
3766 * This function is invoked from a work item for a cgroup which is being
Tejun Heo09a503ea2013-08-13 20:22:50 -04003767 * destroyed after all css's are offlined and performs the rest of
3768 * destruction. This is the second step of destruction described in the
3769 * comment above cgroup_destroy_locked().
Tejun Heod3daf282013-06-13 19:39:16 -07003770 */
Tejun Heof20104d2013-08-13 20:22:50 -04003771static void cgroup_destroy_css_killed(struct cgroup *cgrp)
Tejun Heoea15f8c2013-06-13 19:27:42 -07003772{
Tejun Heoea15f8c2013-06-13 19:27:42 -07003773 struct cgroup *parent = cgrp->parent;
Tejun Heoea15f8c2013-06-13 19:27:42 -07003774
Tejun Heoace2bee812014-02-11 11:52:47 -05003775 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003776 lockdep_assert_held(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003777
Paul Menage999cd8a2009-01-07 18:08:36 -08003778 /* delete this cgroup from parent->children */
Tejun Heoeb6fd502012-11-09 09:12:29 -08003779 list_del_rcu(&cgrp->sibling);
Tejun Heob0ca5a82012-04-01 12:09:54 -07003780
Tejun Heo59f52962014-02-11 11:52:49 -05003781 cgroup_put(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003782
Paul Menagebd89aab2007-10-18 23:40:44 -07003783 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003784 check_for_release(parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003785}
3786
Tejun Heo2bd59d42014-02-11 11:52:49 -05003787static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08003788{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003789 struct cgroup *cgrp = kn->priv;
3790 int ret = 0;
3791
3792 /*
3793 * This is self-destruction but @kn can't be removed while this
3794 * callback is in progress. Let's break active protection. Once
3795 * the protection is broken, @cgrp can be destroyed at any point.
3796 * Pin it so that it stays accessible.
3797 */
3798 cgroup_get(cgrp);
3799 kernfs_break_active_protection(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08003800
Tejun Heoace2bee812014-02-11 11:52:47 -05003801 mutex_lock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003802 mutex_lock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003803
3804 /*
3805 * @cgrp might already have been destroyed while we're trying to
3806 * grab the mutexes.
3807 */
3808 if (!cgroup_is_dead(cgrp))
3809 ret = cgroup_destroy_locked(cgrp);
3810
Tejun Heo42809dd2012-11-19 08:13:37 -08003811 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee812014-02-11 11:52:47 -05003812 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003813
Tejun Heo2bd59d42014-02-11 11:52:49 -05003814 kernfs_unbreak_active_protection(kn);
3815 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08003816 return ret;
3817}
3818
Tejun Heo2bd59d42014-02-11 11:52:49 -05003819static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
3820 .remount_fs = cgroup_remount,
3821 .show_options = cgroup_show_options,
3822 .mkdir = cgroup_mkdir,
3823 .rmdir = cgroup_rmdir,
3824 .rename = cgroup_rename,
3825};
3826
Li Zefan06a11922008-04-29 01:00:07 -07003827static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003828{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003829 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08003830
3831 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003832
Tejun Heoace2bee812014-02-11 11:52:47 -05003833 mutex_lock(&cgroup_tree_mutex);
Tejun Heo648bb562012-11-19 08:13:36 -08003834 mutex_lock(&cgroup_mutex);
3835
Tejun Heo0adb0702014-02-12 09:29:48 -05003836 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003837
Paul Menageddbcc7e2007-10-18 23:39:30 -07003838 /* Create the top cgroup state for this subsystem */
Tejun Heo9871bf92013-06-24 15:21:47 -07003839 ss->root = &cgroup_dummy_root;
Tejun Heoca8bdca2013-08-26 18:40:56 -04003840 css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003841 /* We don't handle early failures gracefully */
3842 BUG_ON(IS_ERR(css));
Tejun Heo623f9262013-08-13 11:01:55 -04003843 init_css(css, ss, cgroup_dummy_top);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003844
Li Zefane8d55fd2008-04-29 01:00:13 -07003845 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07003846 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07003847 * newly registered, all tasks and hence the
3848 * init_css_set is in the subsystem's top cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05003849 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003850
3851 need_forkexit_callback |= ss->fork || ss->exit;
3852
Li Zefane8d55fd2008-04-29 01:00:13 -07003853 /* At system boot, before all subsystems have been
3854 * registered, no tasks have been forked, so we don't
3855 * need to invoke fork callbacks here. */
3856 BUG_ON(!list_empty(&init_task.tasks));
3857
Tejun Heoae7f1642013-08-13 20:22:50 -04003858 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08003859
Tejun Heo648bb562012-11-19 08:13:36 -08003860 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee812014-02-11 11:52:47 -05003861 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003862}
3863
3864/**
Li Zefana043e3b2008-02-23 15:24:09 -08003865 * cgroup_init_early - cgroup initialization at system boot
3866 *
3867 * Initialize cgroups at system boot, and initialize any
3868 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003869 */
3870int __init cgroup_init_early(void)
3871{
Tejun Heo30159ec2013-06-25 11:53:37 -07003872 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003873 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07003874
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07003875 atomic_set(&init_css_set.refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07003876 INIT_LIST_HEAD(&init_css_set.cgrp_links);
Paul Menage817929e2007-10-18 23:39:36 -07003877 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07003878 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07003879 css_set_count = 1;
Tejun Heo9871bf92013-06-24 15:21:47 -07003880 init_cgroup_root(&cgroup_dummy_root);
3881 cgroup_root_count = 1;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07003882 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07003883
Tejun Heo69d02062013-06-12 21:04:50 -07003884 init_cgrp_cset_link.cset = &init_css_set;
Tejun Heo9871bf92013-06-24 15:21:47 -07003885 init_cgrp_cset_link.cgrp = cgroup_dummy_top;
3886 list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -07003887 list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003888
Tejun Heo3ed80a62014-02-08 10:36:58 -05003889 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05003890 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05003891 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
3892 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05003893 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05003894 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
3895 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
3896
Tejun Heoaec25022014-02-08 10:36:58 -05003897 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05003898 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07003899
3900 if (ss->early_init)
3901 cgroup_init_subsys(ss);
3902 }
3903 return 0;
3904}
3905
3906/**
Li Zefana043e3b2008-02-23 15:24:09 -08003907 * cgroup_init - cgroup initialization
3908 *
3909 * Register cgroup filesystem and /proc file, and initialize
3910 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003911 */
3912int __init cgroup_init(void)
3913{
Tejun Heo30159ec2013-06-25 11:53:37 -07003914 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08003915 unsigned long key;
Tejun Heo30159ec2013-06-25 11:53:37 -07003916 int i, err;
Paul Menagea4243162007-10-18 23:39:35 -07003917
Tejun Heo2bd59d42014-02-11 11:52:49 -05003918 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Tejun Heo2da440a2014-02-11 11:52:48 -05003919
Tejun Heo3ed80a62014-02-08 10:36:58 -05003920 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003921 if (!ss->early_init)
3922 cgroup_init_subsys(ss);
Tejun Heode00ffa2014-02-11 11:52:48 -05003923
3924 /*
3925 * cftype registration needs kmalloc and can't be done
3926 * during early_init. Register base cftypes separately.
3927 */
3928 if (ss->base_cftypes)
3929 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003930 }
3931
Tejun Heofa3ca072013-04-14 11:36:56 -07003932 /* allocate id for the dummy hierarchy */
Tejun Heo54e7b4e2013-04-14 11:36:57 -07003933 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07003934
Tejun Heo82fe9b02013-06-25 11:53:37 -07003935 /* Add init_css_set to the hash table */
3936 key = css_set_hash(init_css_set.subsys);
3937 hash_add(css_set_table, &init_css_set.hlist, key);
3938
Tejun Heofc76df72013-06-25 11:53:37 -07003939 BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1));
Greg KH676db4a2010-08-05 13:53:35 -07003940
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003941 err = idr_alloc(&cgroup_dummy_root.cgroup_idr, cgroup_dummy_top,
3942 0, 1, GFP_KERNEL);
3943 BUG_ON(err < 0);
3944
Tejun Heo54e7b4e2013-04-14 11:36:57 -07003945 mutex_unlock(&cgroup_mutex);
3946
Greg KH676db4a2010-08-05 13:53:35 -07003947 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003948 if (!cgroup_kobj)
3949 return -ENOMEM;
Greg KH676db4a2010-08-05 13:53:35 -07003950
3951 err = register_filesystem(&cgroup_fs_type);
3952 if (err < 0) {
3953 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003954 return err;
Greg KH676db4a2010-08-05 13:53:35 -07003955 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003956
Li Zefan46ae2202008-04-29 01:00:08 -07003957 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003958 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003959}
Paul Menageb4f48b62007-10-18 23:39:33 -07003960
Tejun Heoe5fca242013-11-22 17:14:39 -05003961static int __init cgroup_wq_init(void)
3962{
3963 /*
3964 * There isn't much point in executing destruction path in
3965 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08003966 *
3967 * XXX: Must be ordered to make sure parent is offlined after
3968 * children. The ordering requirement is for memcg where a
3969 * parent's offline may wait for a child's leading to deadlock. In
3970 * the long term, this should be fixed from memcg side.
Tejun Heoe5fca242013-11-22 17:14:39 -05003971 *
3972 * We would prefer to do this in cgroup_init() above, but that
3973 * is called before init_workqueues(): so leave this until after.
3974 */
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08003975 cgroup_destroy_wq = alloc_ordered_workqueue("cgroup_destroy", 0);
Tejun Heoe5fca242013-11-22 17:14:39 -05003976 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05003977
3978 /*
3979 * Used to destroy pidlists and separate to serve as flush domain.
3980 * Cap @max_active to 1 too.
3981 */
3982 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
3983 0, 1);
3984 BUG_ON(!cgroup_pidlist_destroy_wq);
3985
Tejun Heoe5fca242013-11-22 17:14:39 -05003986 return 0;
3987}
3988core_initcall(cgroup_wq_init);
3989
Paul Menagea4243162007-10-18 23:39:35 -07003990/*
3991 * proc_cgroup_show()
3992 * - Print task's cgroup paths into seq_file, one line for each hierarchy
3993 * - Used for /proc/<pid>/cgroup.
3994 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
3995 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08003996 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07003997 * anyway. No need to check that tsk->cgroup != NULL, thanks to
3998 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
3999 * cgroup to top_cgroup.
4000 */
4001
4002/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004003int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004004{
4005 struct pid *pid;
4006 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05004007 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07004008 int retval;
4009 struct cgroupfs_root *root;
4010
4011 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05004012 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07004013 if (!buf)
4014 goto out;
4015
4016 retval = -ESRCH;
4017 pid = m->private;
4018 tsk = get_pid_task(pid, PIDTYPE_PID);
4019 if (!tsk)
4020 goto out_free;
4021
4022 retval = 0;
4023
4024 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05004025 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004026
Li Zefane5f6a862009-01-07 18:07:41 -08004027 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004028 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004029 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004030 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004031
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004032 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004033 for_each_subsys(ss, ssid)
4034 if (root->subsys_mask & (1 << ssid))
4035 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f332009-09-23 15:56:19 -07004036 if (strlen(root->name))
4037 seq_printf(m, "%sname=%s", count ? "," : "",
4038 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004039 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004040 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05004041 path = cgroup_path(cgrp, buf, PATH_MAX);
4042 if (!path) {
4043 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07004044 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05004045 }
4046 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07004047 seq_putc(m, '\n');
4048 }
4049
4050out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05004051 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004052 mutex_unlock(&cgroup_mutex);
4053 put_task_struct(tsk);
4054out_free:
4055 kfree(buf);
4056out:
4057 return retval;
4058}
4059
Paul Menagea4243162007-10-18 23:39:35 -07004060/* Display information about each subsystem and each hierarchy */
4061static int proc_cgroupstats_show(struct seq_file *m, void *v)
4062{
Tejun Heo30159ec2013-06-25 11:53:37 -07004063 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004064 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004065
Paul Menage8bab8dd2008-04-04 14:29:57 -07004066 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004067 /*
4068 * ideally we don't want subsystems moving around while we do this.
4069 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4070 * subsys/hierarchy state.
4071 */
Paul Menagea4243162007-10-18 23:39:35 -07004072 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004073
4074 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004075 seq_printf(m, "%s\t%d\t%d\t%d\n",
4076 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05004077 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004078
Paul Menagea4243162007-10-18 23:39:35 -07004079 mutex_unlock(&cgroup_mutex);
4080 return 0;
4081}
4082
4083static int cgroupstats_open(struct inode *inode, struct file *file)
4084{
Al Viro9dce07f2008-03-29 03:07:28 +00004085 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004086}
4087
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004088static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004089 .open = cgroupstats_open,
4090 .read = seq_read,
4091 .llseek = seq_lseek,
4092 .release = single_release,
4093};
4094
Paul Menageb4f48b62007-10-18 23:39:33 -07004095/**
4096 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004097 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004098 *
4099 * Description: A task inherits its parent's cgroup at fork().
4100 *
4101 * A pointer to the shared css_set was automatically copied in
4102 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo9bb71302012-10-18 17:52:07 -07004103 * it was not made under the protection of RCU or cgroup_mutex, so
4104 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4105 * have already changed current->cgroups, allowing the previously
4106 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004107 *
4108 * At the point that cgroup_fork() is called, 'current' is the parent
4109 * task, and the passed argument 'child' points to the child task.
4110 */
4111void cgroup_fork(struct task_struct *child)
4112{
Tejun Heo9bb71302012-10-18 17:52:07 -07004113 task_lock(current);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004114 get_css_set(task_css_set(current));
Paul Menage817929e2007-10-18 23:39:36 -07004115 child->cgroups = current->cgroups;
Tejun Heo9bb71302012-10-18 17:52:07 -07004116 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004117 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004118}
4119
4120/**
Li Zefana043e3b2008-02-23 15:24:09 -08004121 * cgroup_post_fork - called on a new task after adding it to the task list
4122 * @child: the task in question
4123 *
Tejun Heo5edee612012-10-16 15:03:14 -07004124 * Adds the task to the list running through its css_set if necessary and
4125 * call the subsystem fork() callbacks. Has to be after the task is
4126 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04004127 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07004128 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004129 */
Paul Menage817929e2007-10-18 23:39:36 -07004130void cgroup_post_fork(struct task_struct *child)
4131{
Tejun Heo30159ec2013-06-25 11:53:37 -07004132 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07004133 int i;
4134
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004135 /*
4136 * use_task_css_set_links is set to 1 before we walk the tasklist
4137 * under the tasklist_lock and we read it here after we added the child
4138 * to the tasklist under the tasklist_lock as well. If the child wasn't
4139 * yet in the tasklist when we walked through it from
4140 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4141 * should be visible now due to the paired locking and barriers implied
4142 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4143 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4144 * lock on fork.
4145 */
Paul Menage817929e2007-10-18 23:39:36 -07004146 if (use_task_css_set_links) {
Tejun Heo96d365e2014-02-13 06:58:40 -05004147 down_write(&css_set_rwsem);
Tejun Heod8783832012-10-18 17:40:30 -07004148 task_lock(child);
4149 if (list_empty(&child->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07004150 list_add(&child->cg_list, &task_css_set(child)->tasks);
Tejun Heod8783832012-10-18 17:40:30 -07004151 task_unlock(child);
Tejun Heo96d365e2014-02-13 06:58:40 -05004152 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004153 }
Tejun Heo5edee612012-10-16 15:03:14 -07004154
4155 /*
4156 * Call ss->fork(). This must happen after @child is linked on
4157 * css_set; otherwise, @child might change state between ->fork()
4158 * and addition to css_set.
4159 */
4160 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004161 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07004162 if (ss->fork)
4163 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07004164 }
Paul Menage817929e2007-10-18 23:39:36 -07004165}
Tejun Heo5edee612012-10-16 15:03:14 -07004166
Paul Menage817929e2007-10-18 23:39:36 -07004167/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004168 * cgroup_exit - detach cgroup from exiting task
4169 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004170 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004171 *
4172 * Description: Detach cgroup from @tsk and release it.
4173 *
4174 * Note that cgroups marked notify_on_release force every task in
4175 * them to take the global cgroup_mutex mutex when exiting.
4176 * This could impact scaling on very large systems. Be reluctant to
4177 * use notify_on_release cgroups where very high task exit scaling
4178 * is required on large systems.
4179 *
4180 * the_top_cgroup_hack:
4181 *
4182 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4183 *
4184 * We call cgroup_exit() while the task is still competent to
4185 * handle notify_on_release(), then leave the task attached to the
4186 * root cgroup in each hierarchy for the remainder of its exit.
4187 *
4188 * To do this properly, we would increment the reference count on
4189 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4190 * code we would add a second cgroup function call, to drop that
4191 * reference. This would just create an unnecessary hot spot on
4192 * the top_cgroup reference count, to no avail.
4193 *
4194 * Normally, holding a reference to a cgroup without bumping its
4195 * count is unsafe. The cgroup could go away, or someone could
4196 * attach us to a different cgroup, decrementing the count on
4197 * the first cgroup that we never incremented. But in this case,
4198 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004199 * which wards off any cgroup_attach_task() attempts, or task is a failed
4200 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004201 */
4202void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4203{
Tejun Heo30159ec2013-06-25 11:53:37 -07004204 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07004205 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004206 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004207
4208 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004209 * Unlink from the css_set task list if necessary. Optimistically
4210 * check cg_list before taking css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07004211 */
4212 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05004213 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004214 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004215 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05004216 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004217 }
4218
Paul Menageb4f48b62007-10-18 23:39:33 -07004219 /* Reassign the task to the init_css_set. */
4220 task_lock(tsk);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004221 cset = task_css_set(tsk);
4222 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004223
4224 if (run_callbacks && need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004225 /* see cgroup_post_fork() for details */
4226 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004227 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04004228 struct cgroup_subsys_state *old_css = cset->subsys[i];
4229 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07004230
Tejun Heoeb954192013-08-08 20:11:23 -04004231 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004232 }
4233 }
4234 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004235 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004236
Tejun Heo89c55092014-02-13 06:58:40 -05004237 put_css_set(cset, true);
Paul Menageb4f48b62007-10-18 23:39:33 -07004238}
Paul Menage697f4162007-10-18 23:39:34 -07004239
Paul Menagebd89aab2007-10-18 23:40:44 -07004240static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004241{
Li Zefanf50daa72013-03-01 15:06:07 +08004242 if (cgroup_is_releasable(cgrp) &&
Tejun Heo6f3d828f02013-06-12 21:04:55 -07004243 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
Li Zefanf50daa72013-03-01 15:06:07 +08004244 /*
4245 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07004246 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08004247 * it now
4248 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004249 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08004250
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004251 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07004252 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07004253 list_empty(&cgrp->release_list)) {
4254 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004255 need_schedule_work = 1;
4256 }
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004257 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004258 if (need_schedule_work)
4259 schedule_work(&release_agent_work);
4260 }
4261}
4262
Paul Menage81a6a5c2007-10-18 23:39:38 -07004263/*
4264 * Notify userspace when a cgroup is released, by running the
4265 * configured release agent with the name of the cgroup (path
4266 * relative to the root of cgroup file system) as the argument.
4267 *
4268 * Most likely, this user command will try to rmdir this cgroup.
4269 *
4270 * This races with the possibility that some other task will be
4271 * attached to this cgroup before it is removed, or that some other
4272 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4273 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4274 * unused, and this cgroup will be reprieved from its death sentence,
4275 * to continue to serve a useful existence. Next time it's released,
4276 * we will get notified again, if it still has 'notify_on_release' set.
4277 *
4278 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4279 * means only wait until the task is successfully execve()'d. The
4280 * separate release agent task is forked by call_usermodehelper(),
4281 * then control in this thread returns here, without waiting for the
4282 * release agent task. We don't bother to wait because the caller of
4283 * this routine has no use for the exit status of the release agent
4284 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004285 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004286static void cgroup_release_agent(struct work_struct *work)
4287{
4288 BUG_ON(work != &release_agent_work);
4289 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004290 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004291 while (!list_empty(&release_list)) {
4292 char *argv[3], *envp[3];
4293 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05004294 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07004295 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004296 struct cgroup,
4297 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004298 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004299 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05004300 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e0662008-07-25 01:46:59 -07004301 if (!pathbuf)
4302 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05004303 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
4304 if (!path)
Paul Menagee788e0662008-07-25 01:46:59 -07004305 goto continue_free;
4306 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4307 if (!agentbuf)
4308 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004309
4310 i = 0;
Paul Menagee788e0662008-07-25 01:46:59 -07004311 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05004312 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004313 argv[i] = NULL;
4314
4315 i = 0;
4316 /* minimal command environment */
4317 envp[i++] = "HOME=/";
4318 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4319 envp[i] = NULL;
4320
4321 /* Drop the lock while we invoke the usermode helper,
4322 * since the exec could involve hitting disk and hence
4323 * be a slow process */
4324 mutex_unlock(&cgroup_mutex);
4325 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004326 mutex_lock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07004327 continue_free:
4328 kfree(pathbuf);
4329 kfree(agentbuf);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004330 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004331 }
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004332 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004333 mutex_unlock(&cgroup_mutex);
4334}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004335
4336static int __init cgroup_disable(char *str)
4337{
Tejun Heo30159ec2013-06-25 11:53:37 -07004338 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004339 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07004340 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004341
4342 while ((token = strsep(&str, ",")) != NULL) {
4343 if (!*token)
4344 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004345
Tejun Heo3ed80a62014-02-08 10:36:58 -05004346 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004347 if (!strcmp(token, ss->name)) {
4348 ss->disabled = 1;
4349 printk(KERN_INFO "Disabling %s control group"
4350 " subsystem\n", ss->name);
4351 break;
4352 }
4353 }
4354 }
4355 return 1;
4356}
4357__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004358
Tejun Heob77d7b62013-08-13 11:01:54 -04004359/**
Tejun Heo5a17f542014-02-11 11:52:47 -05004360 * css_tryget_from_dir - get corresponding css from the dentry of a cgroup dir
Tejun Heo35cf0832013-08-26 18:40:56 -04004361 * @dentry: directory dentry of interest
4362 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04004363 *
Tejun Heo5a17f542014-02-11 11:52:47 -05004364 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
4365 * to get the corresponding css and return it. If such css doesn't exist
4366 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02004367 */
Tejun Heo5a17f542014-02-11 11:52:47 -05004368struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry,
4369 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004370{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004371 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
4372 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004373 struct cgroup *cgrp;
Tejun Heob77d7b62013-08-13 11:01:54 -04004374
Tejun Heo35cf0832013-08-26 18:40:56 -04004375 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004376 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4377 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004378 return ERR_PTR(-EBADF);
4379
Tejun Heo5a17f542014-02-11 11:52:47 -05004380 rcu_read_lock();
4381
Tejun Heo2bd59d42014-02-11 11:52:49 -05004382 /*
4383 * This path doesn't originate from kernfs and @kn could already
4384 * have been or be removed at any point. @kn->priv is RCU
4385 * protected for this access. See destroy_locked() for details.
4386 */
4387 cgrp = rcu_dereference(kn->priv);
4388 if (cgrp)
4389 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05004390
4391 if (!css || !css_tryget(css))
4392 css = ERR_PTR(-ENOENT);
4393
4394 rcu_read_unlock();
4395 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004396}
Stephane Eraniane5d13672011-02-14 11:20:01 +02004397
Li Zefan1cb650b2013-08-19 10:05:24 +08004398/**
4399 * css_from_id - lookup css by id
4400 * @id: the cgroup id
4401 * @ss: cgroup subsys to be looked into
4402 *
4403 * Returns the css if there's valid one with @id, otherwise returns NULL.
4404 * Should be called under rcu_read_lock().
4405 */
4406struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
4407{
4408 struct cgroup *cgrp;
4409
Tejun Heoace2bee812014-02-11 11:52:47 -05004410 cgroup_assert_mutexes_or_rcu_locked();
Li Zefan1cb650b2013-08-19 10:05:24 +08004411
4412 cgrp = idr_find(&ss->root->cgroup_idr, id);
4413 if (cgrp)
Tejun Heod1625962013-08-27 14:27:23 -04004414 return cgroup_css(cgrp, ss);
Li Zefan1cb650b2013-08-19 10:05:24 +08004415 return NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004416}
4417
Paul Menagefe693432009-09-23 15:56:20 -07004418#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04004419static struct cgroup_subsys_state *
4420debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07004421{
4422 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4423
4424 if (!css)
4425 return ERR_PTR(-ENOMEM);
4426
4427 return css;
4428}
4429
Tejun Heoeb954192013-08-08 20:11:23 -04004430static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07004431{
Tejun Heoeb954192013-08-08 20:11:23 -04004432 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07004433}
4434
Tejun Heo182446d2013-08-08 20:11:24 -04004435static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
4436 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004437{
Tejun Heo182446d2013-08-08 20:11:24 -04004438 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07004439}
4440
Tejun Heo182446d2013-08-08 20:11:24 -04004441static u64 current_css_set_read(struct cgroup_subsys_state *css,
4442 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004443{
4444 return (u64)(unsigned long)current->cgroups;
4445}
4446
Tejun Heo182446d2013-08-08 20:11:24 -04004447static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08004448 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004449{
4450 u64 count;
4451
4452 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07004453 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07004454 rcu_read_unlock();
4455 return count;
4456}
4457
Tejun Heo2da8ca82013-12-05 12:28:04 -05004458static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004459{
Tejun Heo69d02062013-06-12 21:04:50 -07004460 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07004461 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05004462 char *name_buf;
4463
4464 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
4465 if (!name_buf)
4466 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07004467
Tejun Heo96d365e2014-02-13 06:58:40 -05004468 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07004469 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07004470 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07004471 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004472 struct cgroup *c = link->cgrp;
Tejun Heo59f52962014-02-11 11:52:49 -05004473 const char *name = "?";
Paul Menage7717f7b2009-09-23 15:56:22 -07004474
Tejun Heoe61734c2014-02-12 09:29:50 -05004475 if (c != cgroup_dummy_top) {
4476 cgroup_name(c, name_buf, NAME_MAX + 1);
4477 name = name_buf;
4478 }
Tejun Heo59f52962014-02-11 11:52:49 -05004479
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004480 seq_printf(seq, "Root %d group %s\n",
4481 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004482 }
4483 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05004484 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05004485 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07004486 return 0;
4487}
4488
4489#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05004490static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004491{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004492 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07004493 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07004494
Tejun Heo96d365e2014-02-13 06:58:40 -05004495 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04004496 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07004497 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07004498 struct task_struct *task;
4499 int count = 0;
Tejun Heo5abb8852013-06-12 21:04:49 -07004500 seq_printf(seq, "css_set %p\n", cset);
4501 list_for_each_entry(task, &cset->tasks, cg_list) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004502 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4503 seq_puts(seq, " ...\n");
4504 break;
4505 } else {
4506 seq_printf(seq, " task %d\n",
4507 task_pid_vnr(task));
4508 }
4509 }
4510 }
Tejun Heo96d365e2014-02-13 06:58:40 -05004511 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07004512 return 0;
4513}
4514
Tejun Heo182446d2013-08-08 20:11:24 -04004515static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004516{
Tejun Heo182446d2013-08-08 20:11:24 -04004517 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07004518}
4519
4520static struct cftype debug_files[] = {
4521 {
Paul Menagefe693432009-09-23 15:56:20 -07004522 .name = "taskcount",
4523 .read_u64 = debug_taskcount_read,
4524 },
4525
4526 {
4527 .name = "current_css_set",
4528 .read_u64 = current_css_set_read,
4529 },
4530
4531 {
4532 .name = "current_css_set_refcount",
4533 .read_u64 = current_css_set_refcount_read,
4534 },
4535
4536 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004537 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004538 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004539 },
4540
4541 {
4542 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004543 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004544 },
4545
4546 {
Paul Menagefe693432009-09-23 15:56:20 -07004547 .name = "releasable",
4548 .read_u64 = releasable_read,
4549 },
Paul Menagefe693432009-09-23 15:56:20 -07004550
Tejun Heo4baf6e32012-04-01 12:09:55 -07004551 { } /* terminate */
4552};
Paul Menagefe693432009-09-23 15:56:20 -07004553
Tejun Heo073219e2014-02-08 10:36:58 -05004554struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08004555 .css_alloc = debug_css_alloc,
4556 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07004557 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07004558};
4559#endif /* CONFIG_CGROUP_DEBUG */