blob: 878cd1810ad1bd31031b3d0fcc801513b3f4f3ef [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08007 * Notifications support
8 * Copyright (C) 2009 Nokia Corporation
9 * Author: Kirill A. Shutemov
10 *
Paul Menageddbcc7e2007-10-18 23:39:30 -070011 * Copyright notices from the original cpuset code:
12 * --------------------------------------------------
13 * Copyright (C) 2003 BULL SA.
14 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
15 *
16 * Portions derived from Patrick Mochel's sysfs code.
17 * sysfs is Copyright (c) 2001-3 Patrick Mochel
18 *
19 * 2003-10-10 Written by Simon Derr.
20 * 2003-10-22 Updates by Stephen Hemminger.
21 * 2004 May-July Rework by Paul Jackson.
22 * ---------------------------------------------------
23 *
24 * This file is subject to the terms and conditions of the GNU General Public
25 * License. See the file COPYING in the main directory of the Linux
26 * distribution for more details.
27 */
28
29#include <linux/cgroup.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100030#include <linux/cred.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070031#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070032#include <linux/errno.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100033#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070034#include <linux/kernel.h>
35#include <linux/list.h>
36#include <linux/mm.h>
37#include <linux/mutex.h>
38#include <linux/mount.h>
39#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070040#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070041#include <linux/rcupdate.h>
42#include <linux/sched.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070043#include <linux/slab.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070044#include <linux/spinlock.h>
45#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070046#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070047#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070048#include <linux/delayacct.h>
49#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080050#include <linux/hashtable.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070051#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070052#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070053#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Li Zefan081aa452013-03-13 09:17:09 +080054#include <linux/flex_array.h> /* used in cgroup_attach_task */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020055#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050056#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070057
Arun Sharma600634972011-07-26 16:09:06 -070058#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070059
Tejun Heoe25e2cb2011-12-12 18:12:21 -080060/*
Tejun Heob1a21362013-11-29 10:42:58 -050061 * pidlists linger the following amount before being destroyed. The goal
62 * is avoiding frequent destruction in the middle of consecutive read calls
63 * Expiring in the middle is a performance problem not a correctness one.
64 * 1 sec should be enough.
65 */
66#define CGROUP_PIDLIST_DESTROY_DELAY HZ
67
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050068#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
69 MAX_CFTYPE_NAME + 2)
70
Tejun Heob1a21362013-11-29 10:42:58 -050071/*
Tejun Heoace2bee2014-02-11 11:52:47 -050072 * cgroup_tree_mutex nests above cgroup_mutex and protects cftypes, file
73 * creation/removal and hierarchy changing operations including cgroup
74 * creation, removal, css association and controller rebinding. This outer
75 * lock is needed mainly to resolve the circular dependency between kernfs
76 * active ref and cgroup_mutex. cgroup_tree_mutex nests above both.
77 */
78static DEFINE_MUTEX(cgroup_tree_mutex);
79
80/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080081 * cgroup_mutex is the master lock. Any modification to cgroup or its
82 * hierarchy must be performed while holding it.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083 */
Tejun Heo22194492013-04-07 09:29:51 -070084#ifdef CONFIG_PROVE_RCU
85DEFINE_MUTEX(cgroup_mutex);
Tejun Heo8af01f52013-08-08 20:11:22 -040086EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for lockdep */
Tejun Heo22194492013-04-07 09:29:51 -070087#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070088static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo22194492013-04-07 09:29:51 -070089#endif
90
Tejun Heo69e943b2014-02-08 10:36:58 -050091/*
92 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
93 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
94 */
95static DEFINE_SPINLOCK(release_agent_path_lock);
96
Tejun Heoace2bee2014-02-11 11:52:47 -050097#define cgroup_assert_mutexes_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -050098 rcu_lockdep_assert(rcu_read_lock_held() || \
Tejun Heoace2bee2014-02-11 11:52:47 -050099 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500100 lockdep_is_held(&cgroup_mutex), \
Tejun Heoace2bee2014-02-11 11:52:47 -0500101 "cgroup_[tree_]mutex or RCU read lock required");
Tejun Heo87fb54f2013-12-06 15:11:55 -0500102
Ben Blumaae8aab2010-03-10 15:22:07 -0800103/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500104 * cgroup destruction makes heavy use of work items and there can be a lot
105 * of concurrent destructions. Use a separate workqueue so that cgroup
106 * destruction work items don't end up filling up max_active of system_wq
107 * which may lead to deadlock.
108 */
109static struct workqueue_struct *cgroup_destroy_wq;
110
111/*
Tejun Heob1a21362013-11-29 10:42:58 -0500112 * pidlist destructions need to be flushed on cgroup destruction. Use a
113 * separate workqueue as flush domain.
114 */
115static struct workqueue_struct *cgroup_pidlist_destroy_wq;
116
Tejun Heo3ed80a62014-02-08 10:36:58 -0500117/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500118#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500119static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700120#include <linux/cgroup_subsys.h>
121};
Tejun Heo073219e2014-02-08 10:36:58 -0500122#undef SUBSYS
123
124/* array of cgroup subsystem names */
125#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
126static const char *cgroup_subsys_name[] = {
127#include <linux/cgroup_subsys.h>
128};
129#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700130
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131/*
Tejun Heo9871bf92013-06-24 15:21:47 -0700132 * The dummy hierarchy, reserved for the subsystems that are otherwise
133 * unattached - it never has more than a single cgroup, and all tasks are
134 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700135 */
Tejun Heo9871bf92013-06-24 15:21:47 -0700136static struct cgroupfs_root cgroup_dummy_root;
137
138/* dummy_top is a shorthand for the dummy hierarchy's top cgroup */
139static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700140
141/* The list of hierarchy roots */
142
Tejun Heo9871bf92013-06-24 15:21:47 -0700143static LIST_HEAD(cgroup_roots);
144static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700145
Tejun Heo3417ae12014-02-08 10:37:01 -0500146/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700147static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700148
Li Zefan794611a2013-06-18 18:53:53 +0800149/*
150 * Assign a monotonically increasing serial number to cgroups. It
151 * guarantees cgroups with bigger numbers are newer than those with smaller
152 * numbers. Also, as cgroups are always appended to the parent's
153 * ->children list, it guarantees that sibling cgroups are always sorted in
Tejun Heo00356bd2013-06-18 11:14:22 -0700154 * the ascending serial number order on the list. Protected by
155 * cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800156 */
Tejun Heo00356bd2013-06-18 11:14:22 -0700157static u64 cgroup_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800158
Paul Menageddbcc7e2007-10-18 23:39:30 -0700159/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800160 * check for fork/exit handlers to call. This avoids us having to do
161 * extra work in the fork/exit path if none of the subsystems need to
162 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700163 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700164static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700165
Tejun Heo628f7cd2013-06-28 16:24:11 -0700166static struct cftype cgroup_base_files[];
167
Tejun Heo59f52962014-02-11 11:52:49 -0500168static void cgroup_put(struct cgroup *cgrp);
Tejun Heof2e85d52014-02-11 11:52:49 -0500169static int rebind_subsystems(struct cgroupfs_root *root,
170 unsigned long added_mask, unsigned removed_mask);
Tejun Heof20104d2013-08-13 20:22:50 -0400171static void cgroup_destroy_css_killed(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800172static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400173static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
174 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500175static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800176
Tejun Heo95109b62013-08-08 20:11:27 -0400177/**
178 * cgroup_css - obtain a cgroup's css for the specified subsystem
179 * @cgrp: the cgroup of interest
Tejun Heoca8bdca2013-08-26 18:40:56 -0400180 * @ss: the subsystem of interest (%NULL returns the dummy_css)
Tejun Heo95109b62013-08-08 20:11:27 -0400181 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400182 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
183 * function must be called either under cgroup_mutex or rcu_read_lock() and
184 * the caller is responsible for pinning the returned css if it wants to
185 * keep accessing it outside the said locks. This function may return
186 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400187 */
188static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400189 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400190{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400191 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500192 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500193 lockdep_is_held(&cgroup_tree_mutex) ||
194 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400195 else
196 return &cgrp->dummy_css;
Tejun Heo95109b62013-08-08 20:11:27 -0400197}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700198
Paul Menageddbcc7e2007-10-18 23:39:30 -0700199/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700200static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700201{
Tejun Heo54766d42013-06-12 21:04:53 -0700202 return test_bit(CGRP_DEAD, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700203}
204
Tejun Heo59f52962014-02-11 11:52:49 -0500205struct cgroup_subsys_state *seq_css(struct seq_file *seq)
206{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500207 struct kernfs_open_file *of = seq->private;
208 struct cgroup *cgrp = of->kn->parent->priv;
209 struct cftype *cft = seq_cft(seq);
210
211 /*
212 * This is open and unprotected implementation of cgroup_css().
213 * seq_css() is only called from a kernfs file operation which has
214 * an active reference on the file. Because all the subsystem
215 * files are drained before a css is disassociated with a cgroup,
216 * the matching css from the cgroup's subsys table is guaranteed to
217 * be and stay valid until the enclosing operation is complete.
218 */
219 if (cft->ss)
220 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
221 else
222 return &cgrp->dummy_css;
Tejun Heo59f52962014-02-11 11:52:49 -0500223}
224EXPORT_SYMBOL_GPL(seq_css);
225
Li Zefan78574cf2013-04-08 19:00:38 -0700226/**
227 * cgroup_is_descendant - test ancestry
228 * @cgrp: the cgroup to be tested
229 * @ancestor: possible ancestor of @cgrp
230 *
231 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
232 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
233 * and @ancestor are accessible.
234 */
235bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
236{
237 while (cgrp) {
238 if (cgrp == ancestor)
239 return true;
240 cgrp = cgrp->parent;
241 }
242 return false;
243}
244EXPORT_SYMBOL_GPL(cgroup_is_descendant);
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 Heoace2bee2014-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 Heo5549c492013-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 Gleixnercdcc1362009-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/*
344 * css_set_lock protects the list of css_set objects, and the chain of
345 * tasks off each css_set. Nests outside task->alloc_lock due to
Tejun Heo72ec7022013-08-08 20:11:26 -0400346 * css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -0400347 */
Paul Menage817929e2007-10-18 23:39:36 -0700348static DEFINE_RWLOCK(css_set_lock);
349static int css_set_count;
350
Paul Menage7717f7b2009-09-23 15:56:22 -0700351/*
352 * hash table for cgroup groups. This improves the performance to find
353 * an existing css_set. This hash doesn't (currently) take into
354 * account cgroups in empty hierarchies.
355 */
Li Zefan472b1052008-04-29 01:00:11 -0700356#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800357static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700358
Li Zefan0ac801f2013-01-10 11:49:27 +0800359static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700360{
Li Zefan0ac801f2013-01-10 11:49:27 +0800361 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700362 struct cgroup_subsys *ss;
363 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700364
Tejun Heo30159ec2013-06-25 11:53:37 -0700365 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800366 key += (unsigned long)css[i];
367 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700368
Li Zefan0ac801f2013-01-10 11:49:27 +0800369 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700370}
371
Tejun Heo0942eee2013-08-08 20:11:26 -0400372/*
373 * We don't maintain the lists running through each css_set to its task
Tejun Heo72ec7022013-08-08 20:11:26 -0400374 * until after the first call to css_task_iter_start(). This reduces the
375 * fork()/exit() overhead for people who have cgroups compiled into their
376 * kernel but not actually in use.
Tejun Heo0942eee2013-08-08 20:11:26 -0400377 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700378static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700379
Tejun Heo5abb8852013-06-12 21:04:49 -0700380static void __put_css_set(struct css_set *cset, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700381{
Tejun Heo69d02062013-06-12 21:04:50 -0700382 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo5abb8852013-06-12 21:04:49 -0700383
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700384 /*
385 * Ensure that the refcount doesn't hit zero while any readers
386 * can see it. Similar to atomic_dec_and_lock(), but for an
387 * rwlock
388 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700389 if (atomic_add_unless(&cset->refcount, -1, 1))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700390 return;
391 write_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700392 if (!atomic_dec_and_test(&cset->refcount)) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700393 write_unlock(&css_set_lock);
394 return;
395 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700396
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700397 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo5abb8852013-06-12 21:04:49 -0700398 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700399 css_set_count--;
400
Tejun Heo69d02062013-06-12 21:04:50 -0700401 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700402 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700403
Tejun Heo69d02062013-06-12 21:04:50 -0700404 list_del(&link->cset_link);
405 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800406
Tejun Heoddd69142013-06-12 21:04:54 -0700407 /* @cgrp can't go away while we're holding css_set_lock */
Tejun Heo6f3d828f02013-06-12 21:04:55 -0700408 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700409 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700410 set_bit(CGRP_RELEASABLE, &cgrp->flags);
411 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700412 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700413
414 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700415 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700416
417 write_unlock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700418 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700419}
420
421/*
422 * refcounted get/put for css_set objects
423 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700424static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700425{
Tejun Heo5abb8852013-06-12 21:04:49 -0700426 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700427}
428
Tejun Heo5abb8852013-06-12 21:04:49 -0700429static inline void put_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700430{
Tejun Heo5abb8852013-06-12 21:04:49 -0700431 __put_css_set(cset, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700432}
433
Tejun Heo5abb8852013-06-12 21:04:49 -0700434static inline void put_css_set_taskexit(struct css_set *cset)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700435{
Tejun Heo5abb8852013-06-12 21:04:49 -0700436 __put_css_set(cset, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700437}
438
Tejun Heob326f9d2013-06-24 15:21:48 -0700439/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700440 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700441 * @cset: candidate css_set being tested
442 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700443 * @new_cgrp: cgroup that's being entered by the task
444 * @template: desired set of css pointers in css_set (pre-calculated)
445 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800446 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700447 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
448 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700449static bool compare_css_sets(struct css_set *cset,
450 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700451 struct cgroup *new_cgrp,
452 struct cgroup_subsys_state *template[])
453{
454 struct list_head *l1, *l2;
455
Tejun Heo5abb8852013-06-12 21:04:49 -0700456 if (memcmp(template, cset->subsys, sizeof(cset->subsys))) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700457 /* Not all subsystems matched */
458 return false;
459 }
460
461 /*
462 * Compare cgroup pointers in order to distinguish between
463 * different cgroups in heirarchies with no subsystems. We
464 * could get by with just this check alone (and skip the
465 * memcmp above) but on most setups the memcmp check will
466 * avoid the need for this more expensive check on almost all
467 * candidates.
468 */
469
Tejun Heo69d02062013-06-12 21:04:50 -0700470 l1 = &cset->cgrp_links;
471 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700472 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700473 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700474 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700475
476 l1 = l1->next;
477 l2 = l2->next;
478 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700479 if (l1 == &cset->cgrp_links) {
480 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700481 break;
482 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700483 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700484 }
485 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700486 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
487 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
488 cgrp1 = link1->cgrp;
489 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700490 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700491 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700492
493 /*
494 * If this hierarchy is the hierarchy of the cgroup
495 * that's changing, then we need to check that this
496 * css_set points to the new cgroup; if it's any other
497 * hierarchy, then this css_set should point to the
498 * same cgroup as the old css_set.
499 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700500 if (cgrp1->root == new_cgrp->root) {
501 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700502 return false;
503 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700504 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700505 return false;
506 }
507 }
508 return true;
509}
510
Tejun Heob326f9d2013-06-24 15:21:48 -0700511/**
512 * find_existing_css_set - init css array and find the matching css_set
513 * @old_cset: the css_set that we're using before the cgroup transition
514 * @cgrp: the cgroup that we're moving into
515 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700516 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700517static struct css_set *find_existing_css_set(struct css_set *old_cset,
518 struct cgroup *cgrp,
519 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700520{
Paul Menagebd89aab2007-10-18 23:40:44 -0700521 struct cgroupfs_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700522 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700523 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800524 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700525 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700526
Ben Blumaae8aab2010-03-10 15:22:07 -0800527 /*
528 * Build the set of subsystem state objects that we want to see in the
529 * new css_set. while subsystems can change globally, the entries here
530 * won't change, so no need for locking.
531 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700532 for_each_subsys(ss, i) {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -0400533 if (root->subsys_mask & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700534 /* Subsystem is in this hierarchy. So we want
535 * the subsystem state from the new
536 * cgroup */
Tejun Heoca8bdca2013-08-26 18:40:56 -0400537 template[i] = cgroup_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700538 } else {
539 /* Subsystem is not in this hierarchy, so we
540 * don't want to change the subsystem state */
Tejun Heo5abb8852013-06-12 21:04:49 -0700541 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700542 }
543 }
544
Li Zefan0ac801f2013-01-10 11:49:27 +0800545 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700546 hash_for_each_possible(css_set_table, cset, hlist, key) {
547 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700548 continue;
549
550 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700551 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700552 }
Paul Menage817929e2007-10-18 23:39:36 -0700553
554 /* No existing cgroup group matched */
555 return NULL;
556}
557
Tejun Heo69d02062013-06-12 21:04:50 -0700558static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700559{
Tejun Heo69d02062013-06-12 21:04:50 -0700560 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700561
Tejun Heo69d02062013-06-12 21:04:50 -0700562 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
563 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700564 kfree(link);
565 }
566}
567
Tejun Heo69d02062013-06-12 21:04:50 -0700568/**
569 * allocate_cgrp_cset_links - allocate cgrp_cset_links
570 * @count: the number of links to allocate
571 * @tmp_links: list_head the allocated links are put on
572 *
573 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
574 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700575 */
Tejun Heo69d02062013-06-12 21:04:50 -0700576static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700577{
Tejun Heo69d02062013-06-12 21:04:50 -0700578 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700579 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700580
581 INIT_LIST_HEAD(tmp_links);
582
Li Zefan36553432008-07-29 22:33:19 -0700583 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700584 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700585 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700586 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700587 return -ENOMEM;
588 }
Tejun Heo69d02062013-06-12 21:04:50 -0700589 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700590 }
591 return 0;
592}
593
Li Zefanc12f65d2009-01-07 18:07:42 -0800594/**
595 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700596 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700597 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800598 * @cgrp: the destination cgroup
599 */
Tejun Heo69d02062013-06-12 21:04:50 -0700600static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
601 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800602{
Tejun Heo69d02062013-06-12 21:04:50 -0700603 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800604
Tejun Heo69d02062013-06-12 21:04:50 -0700605 BUG_ON(list_empty(tmp_links));
606 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
607 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700608 link->cgrp = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700609 list_move(&link->cset_link, &cgrp->cset_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700610 /*
611 * Always add links to the tail of the list so that the list
612 * is sorted by order of hierarchy creation
613 */
Tejun Heo69d02062013-06-12 21:04:50 -0700614 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800615}
616
Tejun Heob326f9d2013-06-24 15:21:48 -0700617/**
618 * find_css_set - return a new css_set with one cgroup updated
619 * @old_cset: the baseline css_set
620 * @cgrp: the cgroup to be updated
621 *
622 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
623 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700624 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700625static struct css_set *find_css_set(struct css_set *old_cset,
626 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700627{
Tejun Heob326f9d2013-06-24 15:21:48 -0700628 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700629 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700630 struct list_head tmp_links;
631 struct cgrp_cset_link *link;
Li Zefan0ac801f2013-01-10 11:49:27 +0800632 unsigned long key;
Li Zefan472b1052008-04-29 01:00:11 -0700633
Tejun Heob326f9d2013-06-24 15:21:48 -0700634 lockdep_assert_held(&cgroup_mutex);
635
Paul Menage817929e2007-10-18 23:39:36 -0700636 /* First see if we already have a cgroup group that matches
637 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700638 read_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700639 cset = find_existing_css_set(old_cset, cgrp, template);
640 if (cset)
641 get_css_set(cset);
Li Zefan7e9abd82008-07-25 01:46:54 -0700642 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700643
Tejun Heo5abb8852013-06-12 21:04:49 -0700644 if (cset)
645 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700646
Tejun Heof4f4be22013-06-12 21:04:51 -0700647 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700648 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700649 return NULL;
650
Tejun Heo69d02062013-06-12 21:04:50 -0700651 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700652 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700653 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700654 return NULL;
655 }
656
Tejun Heo5abb8852013-06-12 21:04:49 -0700657 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700658 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700659 INIT_LIST_HEAD(&cset->tasks);
660 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700661
662 /* Copy the set of subsystem state objects generated in
663 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700664 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700665
666 write_lock(&css_set_lock);
667 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700668 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700669 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700670
Paul Menage7717f7b2009-09-23 15:56:22 -0700671 if (c->root == cgrp->root)
672 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700673 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700674 }
Paul Menage817929e2007-10-18 23:39:36 -0700675
Tejun Heo69d02062013-06-12 21:04:50 -0700676 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700677
Paul Menage817929e2007-10-18 23:39:36 -0700678 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700679
680 /* Add this cgroup group to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700681 key = css_set_hash(cset->subsys);
682 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700683
Paul Menage817929e2007-10-18 23:39:36 -0700684 write_unlock(&css_set_lock);
685
Tejun Heo5abb8852013-06-12 21:04:49 -0700686 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700687}
688
Tejun Heo2bd59d42014-02-11 11:52:49 -0500689static struct cgroupfs_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
690{
691 struct cgroup *top_cgrp = kf_root->kn->priv;
692
693 return top_cgrp->root;
694}
695
Tejun Heof2e85d52014-02-11 11:52:49 -0500696static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end)
697{
698 int id;
699
700 lockdep_assert_held(&cgroup_mutex);
701
702 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end,
703 GFP_KERNEL);
704 if (id < 0)
705 return id;
706
707 root->hierarchy_id = id;
708 return 0;
709}
710
711static void cgroup_exit_root_id(struct cgroupfs_root *root)
712{
713 lockdep_assert_held(&cgroup_mutex);
714
715 if (root->hierarchy_id) {
716 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
717 root->hierarchy_id = 0;
718 }
719}
720
721static void cgroup_free_root(struct cgroupfs_root *root)
722{
723 if (root) {
724 /* hierarhcy ID shoulid already have been released */
725 WARN_ON_ONCE(root->hierarchy_id);
726
727 idr_destroy(&root->cgroup_idr);
728 kfree(root);
729 }
730}
731
Tejun Heo776f02f2014-02-12 09:29:50 -0500732static void cgroup_destroy_root(struct cgroupfs_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500733{
Tejun Heof2e85d52014-02-11 11:52:49 -0500734 struct cgroup *cgrp = &root->top_cgroup;
735 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500736
Tejun Heo2bd59d42014-02-11 11:52:49 -0500737 mutex_lock(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500738 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500739
Tejun Heo776f02f2014-02-12 09:29:50 -0500740 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heof2e85d52014-02-11 11:52:49 -0500741 BUG_ON(!list_empty(&cgrp->children));
742
Tejun Heof2e85d52014-02-11 11:52:49 -0500743 /* Rebind all subsystems back to the default hierarchy */
Tejun Heo35585572014-02-13 06:58:38 -0500744 WARN_ON(rebind_subsystems(root, 0, root->subsys_mask));
Tejun Heof2e85d52014-02-11 11:52:49 -0500745
746 /*
747 * Release all the links from cset_links to this hierarchy's
748 * root cgroup
749 */
750 write_lock(&css_set_lock);
751
752 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
753 list_del(&link->cset_link);
754 list_del(&link->cgrp_link);
755 kfree(link);
756 }
757 write_unlock(&css_set_lock);
758
759 if (!list_empty(&root->root_list)) {
760 list_del(&root->root_list);
761 cgroup_root_count--;
762 }
763
764 cgroup_exit_root_id(root);
765
766 mutex_unlock(&cgroup_mutex);
767 mutex_unlock(&cgroup_tree_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500768
Tejun Heo2bd59d42014-02-11 11:52:49 -0500769 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500770 cgroup_free_root(root);
771}
772
Paul Menageddbcc7e2007-10-18 23:39:30 -0700773/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700774 * Return the cgroup for "task" from the given hierarchy. Must be
775 * called with cgroup_mutex held.
776 */
777static struct cgroup *task_cgroup_from_root(struct task_struct *task,
778 struct cgroupfs_root *root)
779{
Tejun Heo5abb8852013-06-12 21:04:49 -0700780 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700781 struct cgroup *res = NULL;
782
783 BUG_ON(!mutex_is_locked(&cgroup_mutex));
784 read_lock(&css_set_lock);
785 /*
786 * No need to lock the task - since we hold cgroup_mutex the
787 * task can't change groups, so the only thing that can happen
788 * is that it exits and its css is set back to init_css_set.
789 */
Tejun Heoa8ad8052013-06-21 15:52:04 -0700790 cset = task_css_set(task);
Tejun Heo5abb8852013-06-12 21:04:49 -0700791 if (cset == &init_css_set) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700792 res = &root->top_cgroup;
793 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700794 struct cgrp_cset_link *link;
795
796 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700797 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700798
Paul Menage7717f7b2009-09-23 15:56:22 -0700799 if (c->root == root) {
800 res = c;
801 break;
802 }
803 }
804 }
805 read_unlock(&css_set_lock);
806 BUG_ON(!res);
807 return res;
808}
809
810/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700811 * There is one global cgroup mutex. We also require taking
812 * task_lock() when dereferencing a task's cgroup subsys pointers.
813 * See "The task_lock() exception", at the end of this comment.
814 *
815 * A task must hold cgroup_mutex to modify cgroups.
816 *
817 * Any task can increment and decrement the count field without lock.
818 * So in general, code holding cgroup_mutex can't rely on the count
819 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800820 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700821 * means that no tasks are currently attached, therefore there is no
822 * way a task attached to that cgroup can fork (the other way to
823 * increment the count). So code holding cgroup_mutex can safely
824 * assume that if the count is zero, it will stay zero. Similarly, if
825 * a task holds cgroup_mutex on a cgroup with zero count, it
826 * knows that the cgroup won't be removed, as cgroup_rmdir()
827 * needs that mutex.
828 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700829 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
830 * (usually) take cgroup_mutex. These are the two most performance
831 * critical pieces of code here. The exception occurs on cgroup_exit(),
832 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
833 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800834 * to the release agent with the name of the cgroup (path relative to
835 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700836 *
837 * A cgroup can only be deleted if both its 'count' of using tasks
838 * is zero, and its list of 'children' cgroups is empty. Since all
839 * tasks in the system use _some_ cgroup, and since there is always at
840 * least one task in the system (init, pid == 1), therefore, top_cgroup
841 * always has either children cgroups and/or using tasks. So we don't
842 * need a special hack to ensure that top_cgroup cannot be deleted.
843 *
844 * The task_lock() exception
845 *
846 * The need for this exception arises from the action of
Tao Mad0b2fdd2012-11-20 22:06:18 +0800847 * cgroup_attach_task(), which overwrites one task's cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800848 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700849 * several performance critical places that need to reference
850 * task->cgroup without the expense of grabbing a system global
851 * mutex. Therefore except as noted below, when dereferencing or, as
Tao Mad0b2fdd2012-11-20 22:06:18 +0800852 * in cgroup_attach_task(), modifying a task's cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700853 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
854 * the task_struct routinely used for such matters.
855 *
856 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800857 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700858 */
859
Tejun Heo628f7cd2013-06-28 16:24:11 -0700860static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500861static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700862static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700863
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500864static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
865 char *buf)
866{
867 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
868 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
869 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
870 cft->ss->name, cft->name);
871 else
872 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
873 return buf;
874}
875
Tejun Heof2e85d52014-02-11 11:52:49 -0500876/**
877 * cgroup_file_mode - deduce file mode of a control file
878 * @cft: the control file in question
879 *
880 * returns cft->mode if ->mode is not 0
881 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
882 * returns S_IRUGO if it has only a read handler
883 * returns S_IWUSR if it has only a write hander
884 */
885static umode_t cgroup_file_mode(const struct cftype *cft)
886{
887 umode_t mode = 0;
888
889 if (cft->mode)
890 return cft->mode;
891
892 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
893 mode |= S_IRUGO;
894
895 if (cft->write_u64 || cft->write_s64 || cft->write_string ||
896 cft->trigger)
897 mode |= S_IWUSR;
898
899 return mode;
900}
901
Li Zefanbe445622013-01-24 14:31:42 +0800902static void cgroup_free_fn(struct work_struct *work)
903{
Tejun Heoea15f8c2013-06-13 19:27:42 -0700904 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800905
Tejun Heo3c9c8252014-02-12 09:29:50 -0500906 atomic_dec(&cgrp->root->nr_cgrps);
Tejun Heob1a21362013-11-29 10:42:58 -0500907 cgroup_pidlist_destroy_all(cgrp);
Li Zefanbe445622013-01-24 14:31:42 +0800908
Tejun Heo776f02f2014-02-12 09:29:50 -0500909 if (cgrp->parent) {
910 /*
911 * We get a ref to the parent, and put the ref when this
912 * cgroup is being freed, so it's guaranteed that the
913 * parent won't be destroyed before its children.
914 */
915 cgroup_put(cgrp->parent);
916 kernfs_put(cgrp->kn);
917 kfree(cgrp);
918 } else {
919 /*
920 * This is top cgroup's refcnt reaching zero, which
921 * indicates that the root should be released.
922 */
923 cgroup_destroy_root(cgrp->root);
924 }
Li Zefanbe445622013-01-24 14:31:42 +0800925}
926
927static void cgroup_free_rcu(struct rcu_head *head)
928{
929 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
930
Tejun Heoea15f8c2013-06-13 19:27:42 -0700931 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -0500932 queue_work(cgroup_destroy_wq, &cgrp->destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800933}
934
Tejun Heo59f52962014-02-11 11:52:49 -0500935static void cgroup_get(struct cgroup *cgrp)
936{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500937 WARN_ON_ONCE(cgroup_is_dead(cgrp));
938 WARN_ON_ONCE(atomic_read(&cgrp->refcnt) <= 0);
939 atomic_inc(&cgrp->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700940}
941
Tejun Heo59f52962014-02-11 11:52:49 -0500942static void cgroup_put(struct cgroup *cgrp)
943{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500944 if (!atomic_dec_and_test(&cgrp->refcnt))
945 return;
Tejun Heo776f02f2014-02-12 09:29:50 -0500946 if (WARN_ON_ONCE(cgrp->parent && !cgroup_is_dead(cgrp)))
Tejun Heo2bd59d42014-02-11 11:52:49 -0500947 return;
Tejun Heo59f52962014-02-11 11:52:49 -0500948
Tejun Heo2bd59d42014-02-11 11:52:49 -0500949 /*
950 * XXX: cgrp->id is only used to look up css's. As cgroup and
951 * css's lifetimes will be decoupled, it should be made
952 * per-subsystem and moved to css->id so that lookups are
953 * successful until the target css is released.
954 */
955 mutex_lock(&cgroup_mutex);
956 idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
957 mutex_unlock(&cgroup_mutex);
958 cgrp->id = -1;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700959
Tejun Heo2bd59d42014-02-11 11:52:49 -0500960 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700961}
962
Li Zefan2739d3c2013-01-21 18:18:33 +0800963static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700964{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500965 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700966
Tejun Heoace2bee2014-02-11 11:52:47 -0500967 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500968 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -0700969}
970
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400971/**
Tejun Heo628f7cd2013-06-28 16:24:11 -0700972 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -0700973 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400974 * @subsys_mask: mask of the subsystem ids whose files should be removed
975 */
Tejun Heo628f7cd2013-06-28 16:24:11 -0700976static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -0700977{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400978 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -0700979 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700980
Tejun Heob420ba72013-07-12 12:34:02 -0700981 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -0500982 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -0700983
984 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400985 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -0500986 list_for_each_entry(cfts, &ss->cfts, node)
987 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400988 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700989}
990
Paul Menageddbcc7e2007-10-18 23:39:30 -0700991static int rebind_subsystems(struct cgroupfs_root *root,
Tejun Heoa8a648c2013-06-24 15:21:47 -0700992 unsigned long added_mask, unsigned removed_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993{
Paul Menagebd89aab2007-10-18 23:40:44 -0700994 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heo30159ec2013-06-25 11:53:37 -0700995 struct cgroup_subsys *ss;
Tejun Heo31261212013-06-28 17:07:30 -0700996 int i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700997
Tejun Heoace2bee2014-02-11 11:52:47 -0500998 lockdep_assert_held(&cgroup_tree_mutex);
999 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001000
Paul Menageddbcc7e2007-10-18 23:39:30 -07001001 /* Check that any added subsystems are currently free */
Tejun Heo3ed80a62014-02-08 10:36:58 -05001002 for_each_subsys(ss, i)
1003 if ((added_mask & (1 << i)) && ss->root != &cgroup_dummy_root)
1004 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001005
Tejun Heo31261212013-06-28 17:07:30 -07001006 ret = cgroup_populate_dir(cgrp, added_mask);
1007 if (ret)
Tejun Heo3ed80a62014-02-08 10:36:58 -05001008 return ret;
Tejun Heo31261212013-06-28 17:07:30 -07001009
1010 /*
1011 * Nothing can fail from this point on. Remove files for the
1012 * removed subsystems and rebind each subsystem.
1013 */
Tejun Heo4ac06012014-02-11 11:52:47 -05001014 mutex_unlock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001015 cgroup_clear_dir(cgrp, removed_mask);
Tejun Heo4ac06012014-02-11 11:52:47 -05001016 mutex_lock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001017
Tejun Heo30159ec2013-06-25 11:53:37 -07001018 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001019 unsigned long bit = 1UL << i;
Tejun Heo30159ec2013-06-25 11:53:37 -07001020
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001021 if (bit & added_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001022 /* We're binding this subsystem to this hierarchy */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001023 BUG_ON(cgroup_css(cgrp, ss));
1024 BUG_ON(!cgroup_css(cgroup_dummy_top, ss));
1025 BUG_ON(cgroup_css(cgroup_dummy_top, ss)->cgroup != cgroup_dummy_top);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001026
Tejun Heo73e80ed2013-08-13 11:01:55 -04001027 rcu_assign_pointer(cgrp->subsys[i],
Tejun Heoca8bdca2013-08-26 18:40:56 -04001028 cgroup_css(cgroup_dummy_top, ss));
1029 cgroup_css(cgrp, ss)->cgroup = cgrp;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001030
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001031 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001032 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001033 ss->bind(cgroup_css(cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001034
Ben Blumcf5d5942010-03-10 15:22:09 -08001035 /* refcount was already taken, and we're keeping it */
Tejun Heoa8a648c2013-06-24 15:21:47 -07001036 root->subsys_mask |= bit;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001037 } else if (bit & removed_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001038 /* We're removing this subsystem */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001039 BUG_ON(cgroup_css(cgrp, ss) != cgroup_css(cgroup_dummy_top, ss));
1040 BUG_ON(cgroup_css(cgrp, ss)->cgroup != cgrp);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001041
Paul Menageddbcc7e2007-10-18 23:39:30 -07001042 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001043 ss->bind(cgroup_css(cgroup_dummy_top, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001044
Tejun Heoca8bdca2013-08-26 18:40:56 -04001045 cgroup_css(cgroup_dummy_top, ss)->cgroup = cgroup_dummy_top;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001046 RCU_INIT_POINTER(cgrp->subsys[i], NULL);
1047
Tejun Heo9871bf92013-06-24 15:21:47 -07001048 cgroup_subsys[i]->root = &cgroup_dummy_root;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001049 root->subsys_mask &= ~bit;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001050 }
1051 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001052
Tejun Heo2bd59d42014-02-11 11:52:49 -05001053 kernfs_activate(cgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001054 return 0;
1055}
1056
Tejun Heo2bd59d42014-02-11 11:52:49 -05001057static int cgroup_show_options(struct seq_file *seq,
1058 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001059{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001060 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001061 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001062 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001063
Tejun Heob85d2042013-12-06 15:11:57 -05001064 for_each_subsys(ss, ssid)
1065 if (root->subsys_mask & (1 << ssid))
1066 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001067 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1068 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001069 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001070 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001071 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001072 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001073
1074 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001075 if (strlen(root->release_agent_path))
1076 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001077 spin_unlock(&release_agent_path_lock);
1078
Tejun Heo2260e7f2012-11-19 08:13:38 -08001079 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001080 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001081 if (strlen(root->name))
1082 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001083 return 0;
1084}
1085
1086struct cgroup_sb_opts {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001087 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001088 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001089 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001090 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001091 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001092 /* User explicitly requested empty subsystem */
1093 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001094};
1095
Ben Blumaae8aab2010-03-10 15:22:07 -08001096/*
Tejun Heo9871bf92013-06-24 15:21:47 -07001097 * Convert a hierarchy specifier into a bitmask of subsystems and
1098 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1099 * array. This function takes refcounts on subsystems to be used, unless it
1100 * returns error, in which case no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001101 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001102static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001103{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001104 char *token, *o = data;
1105 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001106 unsigned long mask = (unsigned long)-1;
Tejun Heo30159ec2013-06-25 11:53:37 -07001107 struct cgroup_subsys *ss;
1108 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001109
Ben Blumaae8aab2010-03-10 15:22:07 -08001110 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1111
Li Zefanf9ab5b52009-06-17 16:26:33 -07001112#ifdef CONFIG_CPUSETS
Tejun Heo073219e2014-02-08 10:36:58 -05001113 mask = ~(1UL << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001114#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001115
Paul Menagec6d57f32009-09-23 15:56:19 -07001116 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001117
1118 while ((token = strsep(&o, ",")) != NULL) {
1119 if (!*token)
1120 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001121 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001122 /* Explicitly have no subsystems */
1123 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001124 continue;
1125 }
1126 if (!strcmp(token, "all")) {
1127 /* Mutually exclusive option 'all' + subsystem name */
1128 if (one_ss)
1129 return -EINVAL;
1130 all_ss = true;
1131 continue;
1132 }
Tejun Heo873fe092013-04-14 20:15:26 -07001133 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1134 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1135 continue;
1136 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001137 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001138 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001139 continue;
1140 }
1141 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001142 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001143 continue;
1144 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001145 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001146 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001147 continue;
1148 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001149 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001150 /* Specifying two release agents is forbidden */
1151 if (opts->release_agent)
1152 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001153 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001154 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001155 if (!opts->release_agent)
1156 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001157 continue;
1158 }
1159 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001160 const char *name = token + 5;
1161 /* Can't specify an empty name */
1162 if (!strlen(name))
1163 return -EINVAL;
1164 /* Must match [\w.-]+ */
1165 for (i = 0; i < strlen(name); i++) {
1166 char c = name[i];
1167 if (isalnum(c))
1168 continue;
1169 if ((c == '.') || (c == '-') || (c == '_'))
1170 continue;
1171 return -EINVAL;
1172 }
1173 /* Specifying two names is forbidden */
1174 if (opts->name)
1175 return -EINVAL;
1176 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001177 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001178 GFP_KERNEL);
1179 if (!opts->name)
1180 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001181
1182 continue;
1183 }
1184
Tejun Heo30159ec2013-06-25 11:53:37 -07001185 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001186 if (strcmp(token, ss->name))
1187 continue;
1188 if (ss->disabled)
1189 continue;
1190
1191 /* Mutually exclusive option 'all' + subsystem name */
1192 if (all_ss)
1193 return -EINVAL;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001194 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001195 one_ss = true;
1196
1197 break;
1198 }
1199 if (i == CGROUP_SUBSYS_COUNT)
1200 return -ENOENT;
1201 }
1202
1203 /*
1204 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001205 * otherwise if 'none', 'name=' and a subsystem name options
1206 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001207 */
Tejun Heo30159ec2013-06-25 11:53:37 -07001208 if (all_ss || (!one_ss && !opts->none && !opts->name))
1209 for_each_subsys(ss, i)
1210 if (!ss->disabled)
1211 set_bit(i, &opts->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001212
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001213 /* Consistency checks */
1214
Tejun Heo873fe092013-04-14 20:15:26 -07001215 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1216 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1217
Tejun Heod3ba07c2014-02-13 06:58:38 -05001218 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1219 opts->cpuset_clone_children || opts->release_agent ||
1220 opts->name) {
1221 pr_err("cgroup: sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001222 return -EINVAL;
1223 }
Tejun Heo873fe092013-04-14 20:15:26 -07001224 }
1225
Li Zefanf9ab5b52009-06-17 16:26:33 -07001226 /*
1227 * Option noprefix was introduced just for backward compatibility
1228 * with the old cpuset, so we allow noprefix only if mounting just
1229 * the cpuset subsystem.
1230 */
Tejun Heo93438622013-04-14 20:15:25 -07001231 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001232 return -EINVAL;
1233
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001234
1235 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001236 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001237 return -EINVAL;
1238
1239 /*
1240 * We either have to specify by name or by subsystems. (So all
1241 * empty hierarchies must have a name).
1242 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001243 if (!opts->subsys_mask && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001244 return -EINVAL;
1245
1246 return 0;
1247}
1248
Tejun Heo2bd59d42014-02-11 11:52:49 -05001249static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001250{
1251 int ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001252 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001253 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001254 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001255
Tejun Heo873fe092013-04-14 20:15:26 -07001256 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1257 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1258 return -EINVAL;
1259 }
1260
Tejun Heoace2bee2014-02-11 11:52:47 -05001261 mutex_lock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001262 mutex_lock(&cgroup_mutex);
1263
1264 /* See what subsystems are wanted */
1265 ret = parse_cgroupfs_options(data, &opts);
1266 if (ret)
1267 goto out_unlock;
1268
Tejun Heoa8a648c2013-06-24 15:21:47 -07001269 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001270 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1271 task_tgid_nr(current), current->comm);
1272
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001273 added_mask = opts.subsys_mask & ~root->subsys_mask;
1274 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001275
Ben Blumcf5d5942010-03-10 15:22:09 -08001276 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001277 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001278 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001279 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1280 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1281 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001282 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001283 goto out_unlock;
1284 }
1285
Tejun Heof172e672013-06-28 17:07:30 -07001286 /* remounting is not allowed for populated hierarchies */
Tejun Heo3c9c8252014-02-12 09:29:50 -05001287 if (!list_empty(&root->top_cgroup.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001288 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001289 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001290 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001291
Paul Menageddbcc7e2007-10-18 23:39:30 -07001292 ret = rebind_subsystems(root, added_mask, removed_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001293 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001294 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001295
Tejun Heo69e943b2014-02-08 10:36:58 -05001296 if (opts.release_agent) {
1297 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001298 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001299 spin_unlock(&release_agent_path_lock);
1300 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001301 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001302 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001303 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001304 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001305 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001306 return ret;
1307}
1308
Paul Menagecc31edc2008-10-18 20:28:04 -07001309static void init_cgroup_housekeeping(struct cgroup *cgrp)
1310{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001311 atomic_set(&cgrp->refcnt, 1);
Paul Menagecc31edc2008-10-18 20:28:04 -07001312 INIT_LIST_HEAD(&cgrp->sibling);
1313 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo69d02062013-06-12 21:04:50 -07001314 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001315 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001316 INIT_LIST_HEAD(&cgrp->pidlists);
1317 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo67f4c362013-08-08 20:11:24 -04001318 cgrp->dummy_css.cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001319}
Paul Menagec6d57f32009-09-23 15:56:19 -07001320
Paul Menageddbcc7e2007-10-18 23:39:30 -07001321static void init_cgroup_root(struct cgroupfs_root *root)
1322{
Paul Menagebd89aab2007-10-18 23:40:44 -07001323 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001324
Paul Menageddbcc7e2007-10-18 23:39:30 -07001325 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001326 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001327 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001328 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001329 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001330}
1331
Paul Menagec6d57f32009-09-23 15:56:19 -07001332static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1333{
1334 struct cgroupfs_root *root;
1335
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001336 if (!opts->subsys_mask && !opts->none)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001337 return ERR_PTR(-EINVAL);
Paul Menagec6d57f32009-09-23 15:56:19 -07001338
1339 root = kzalloc(sizeof(*root), GFP_KERNEL);
1340 if (!root)
1341 return ERR_PTR(-ENOMEM);
1342
1343 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001344
Paul Menagec6d57f32009-09-23 15:56:19 -07001345 root->flags = opts->flags;
1346 if (opts->release_agent)
1347 strcpy(root->release_agent_path, opts->release_agent);
1348 if (opts->name)
1349 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001350 if (opts->cpuset_clone_children)
1351 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001352 return root;
1353}
1354
Tejun Heo35585572014-02-13 06:58:38 -05001355static int cgroup_setup_root(struct cgroupfs_root *root, unsigned long ss_mask)
Tejun Heod427dfe2014-02-11 11:52:48 -05001356{
1357 LIST_HEAD(tmp_links);
Tejun Heod427dfe2014-02-11 11:52:48 -05001358 struct cgroup *root_cgrp = &root->top_cgroup;
Tejun Heod427dfe2014-02-11 11:52:48 -05001359 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001360 int i, ret;
1361
1362 lockdep_assert_held(&cgroup_tree_mutex);
1363 lockdep_assert_held(&cgroup_mutex);
Tejun Heod427dfe2014-02-11 11:52:48 -05001364
1365 ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL);
1366 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001367 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001368 root_cgrp->id = ret;
1369
Tejun Heod427dfe2014-02-11 11:52:48 -05001370 /*
1371 * We're accessing css_set_count without locking css_set_lock here,
1372 * but that's OK - it can only be increased by someone holding
1373 * cgroup_lock, and that's us. The worst that can happen is that we
1374 * have some link structures left over
1375 */
1376 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
1377 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001378 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001379
1380 /* ID 0 is reserved for dummy root, 1 for unified hierarchy */
1381 ret = cgroup_init_root_id(root, 2, 0);
1382 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001383 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001384
Tejun Heo2bd59d42014-02-11 11:52:49 -05001385 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1386 KERNFS_ROOT_CREATE_DEACTIVATED,
1387 root_cgrp);
1388 if (IS_ERR(root->kf_root)) {
1389 ret = PTR_ERR(root->kf_root);
1390 goto exit_root_id;
1391 }
1392 root_cgrp->kn = root->kf_root->kn;
Tejun Heod427dfe2014-02-11 11:52:48 -05001393
1394 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1395 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001396 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001397
Tejun Heo35585572014-02-13 06:58:38 -05001398 ret = rebind_subsystems(root, ss_mask, 0);
Tejun Heod427dfe2014-02-11 11:52:48 -05001399 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001400 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001401
1402 /*
1403 * There must be no failure case after here, since rebinding takes
1404 * care of subsystems' refcounts, which are explicitly dropped in
1405 * the failure exit path.
1406 */
1407 list_add(&root->root_list, &cgroup_roots);
1408 cgroup_root_count++;
1409
1410 /*
1411 * Link the top cgroup in this hierarchy into all the css_set
1412 * objects.
1413 */
1414 write_lock(&css_set_lock);
1415 hash_for_each(css_set_table, i, cset, hlist)
1416 link_css_set(&tmp_links, cset, root_cgrp);
1417 write_unlock(&css_set_lock);
1418
1419 BUG_ON(!list_empty(&root_cgrp->children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001420 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001421
Tejun Heo2bd59d42014-02-11 11:52:49 -05001422 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001423 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001424 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001425
Tejun Heo2bd59d42014-02-11 11:52:49 -05001426destroy_root:
1427 kernfs_destroy_root(root->kf_root);
1428 root->kf_root = NULL;
1429exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001430 cgroup_exit_root_id(root);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001431out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001432 free_cgrp_cset_links(&tmp_links);
1433 return ret;
1434}
1435
Al Virof7e83572010-07-26 13:23:11 +04001436static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001437 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001438 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001439{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001440 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001441 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001442 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001443 int ret;
Tejun Heo776f02f2014-02-12 09:29:50 -05001444retry:
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001445 mutex_lock(&cgroup_tree_mutex);
1446 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001447
1448 /* First find the desired set of subsystems */
1449 ret = parse_cgroupfs_options(data, &opts);
Paul Menagec6d57f32009-09-23 15:56:19 -07001450 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001451 goto out_unlock;
Paul Menagec6d57f32009-09-23 15:56:19 -07001452
Tejun Heo2bd59d42014-02-11 11:52:49 -05001453 /* look for a matching existing root */
1454 for_each_active_root(root) {
1455 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001456
Paul Menagec6d57f32009-09-23 15:56:19 -07001457 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001458 * If we asked for a name then it must match. Also, if
1459 * name matches but sybsys_mask doesn't, we should fail.
1460 * Remember whether name matched.
Paul Menagec6d57f32009-09-23 15:56:19 -07001461 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001462 if (opts.name) {
1463 if (strcmp(opts.name, root->name))
1464 continue;
1465 name_match = true;
1466 }
1467
1468 /*
1469 * If we asked for subsystems (or explicitly for no
1470 * subsystems) then they must match.
1471 */
1472 if ((opts.subsys_mask || opts.none) &&
1473 (opts.subsys_mask != root->subsys_mask)) {
1474 if (!name_match)
1475 continue;
1476 ret = -EBUSY;
1477 goto out_unlock;
1478 }
Tejun Heo873fe092013-04-14 20:15:26 -07001479
Tejun Heoc7ba8282013-06-29 14:06:10 -07001480 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001481 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1482 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1483 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001484 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001485 } else {
1486 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1487 }
Tejun Heo873fe092013-04-14 20:15:26 -07001488 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001489
Tejun Heo776f02f2014-02-12 09:29:50 -05001490 /*
1491 * A root's lifetime is governed by its top cgroup. Zero
1492 * ref indicate that the root is being destroyed. Wait for
1493 * destruction to complete so that the subsystems are free.
1494 * We can use wait_queue for the wait but this path is
1495 * super cold. Let's just sleep for a bit and retry.
1496 */
1497 if (!atomic_inc_not_zero(&root->top_cgroup.refcnt)) {
1498 mutex_unlock(&cgroup_mutex);
1499 mutex_unlock(&cgroup_tree_mutex);
1500 msleep(10);
1501 goto retry;
1502 }
1503
1504 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001505 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001506 }
1507
Tejun Heo2bd59d42014-02-11 11:52:49 -05001508 /* no such thing, create a new one */
1509 root = cgroup_root_from_opts(&opts);
1510 if (IS_ERR(root)) {
1511 ret = PTR_ERR(root);
1512 goto out_unlock;
1513 }
1514
Tejun Heo35585572014-02-13 06:58:38 -05001515 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001516 if (ret)
1517 cgroup_free_root(root);
1518
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001519out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001520 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001521 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001522
Paul Menagec6d57f32009-09-23 15:56:19 -07001523 kfree(opts.release_agent);
1524 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001525
Tejun Heo2bd59d42014-02-11 11:52:49 -05001526 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001527 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001528
1529 dentry = kernfs_mount(fs_type, flags, root->kf_root);
1530 if (IS_ERR(dentry))
Tejun Heo776f02f2014-02-12 09:29:50 -05001531 cgroup_put(&root->top_cgroup);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001532 return dentry;
1533}
1534
1535static void cgroup_kill_sb(struct super_block *sb)
1536{
1537 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
1538 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
1539
Tejun Heo776f02f2014-02-12 09:29:50 -05001540 cgroup_put(&root->top_cgroup);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001541 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001542}
1543
Paul Menageddbcc7e2007-10-18 23:39:30 -07001544static struct file_system_type cgroup_fs_type = {
1545 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001546 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001547 .kill_sb = cgroup_kill_sb,
1548};
1549
Greg KH676db4a2010-08-05 13:53:35 -07001550static struct kobject *cgroup_kobj;
1551
Li Zefana043e3b2008-02-23 15:24:09 -08001552/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001553 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001554 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001555 * @buf: the buffer to write the path into
1556 * @buflen: the length of the buffer
1557 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001558 * Determine @task's cgroup on the first (the one with the lowest non-zero
1559 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1560 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1561 * cgroup controller callbacks.
1562 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001563 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001564 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001565char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001566{
1567 struct cgroupfs_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001568 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001569 int hierarchy_id = 1;
1570 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001571
1572 mutex_lock(&cgroup_mutex);
1573
Tejun Heo913ffdb2013-07-11 16:34:48 -07001574 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1575
Tejun Heo857a2be2013-04-14 20:50:08 -07001576 if (root) {
1577 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001578 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001579 } else {
1580 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001581 if (strlcpy(buf, "/", buflen) < buflen)
1582 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001583 }
1584
1585 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001586 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001587}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001588EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001589
Ben Blum74a11662011-05-26 16:25:20 -07001590/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001591 * Control Group taskset
1592 */
Tejun Heo134d3372011-12-12 18:12:21 -08001593struct task_and_cgroup {
1594 struct task_struct *task;
1595 struct cgroup *cgrp;
Li Zefan6f4b7e62013-07-31 16:18:36 +08001596 struct css_set *cset;
Tejun Heo134d3372011-12-12 18:12:21 -08001597};
1598
Tejun Heo2f7ee562011-12-12 18:12:21 -08001599struct cgroup_taskset {
1600 struct task_and_cgroup single;
1601 struct flex_array *tc_array;
1602 int tc_array_len;
1603 int idx;
1604 struct cgroup *cur_cgrp;
1605};
1606
1607/**
1608 * cgroup_taskset_first - reset taskset and return the first task
1609 * @tset: taskset of interest
1610 *
1611 * @tset iteration is initialized and the first task is returned.
1612 */
1613struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1614{
1615 if (tset->tc_array) {
1616 tset->idx = 0;
1617 return cgroup_taskset_next(tset);
1618 } else {
1619 tset->cur_cgrp = tset->single.cgrp;
1620 return tset->single.task;
1621 }
1622}
1623EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1624
1625/**
1626 * cgroup_taskset_next - iterate to the next task in taskset
1627 * @tset: taskset of interest
1628 *
1629 * Return the next task in @tset. Iteration must have been initialized
1630 * with cgroup_taskset_first().
1631 */
1632struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1633{
1634 struct task_and_cgroup *tc;
1635
1636 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1637 return NULL;
1638
1639 tc = flex_array_get(tset->tc_array, tset->idx++);
1640 tset->cur_cgrp = tc->cgrp;
1641 return tc->task;
1642}
1643EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1644
1645/**
Tejun Heod99c8722013-08-08 20:11:27 -04001646 * cgroup_taskset_cur_css - return the matching css for the current task
Tejun Heo2f7ee562011-12-12 18:12:21 -08001647 * @tset: taskset of interest
Tejun Heod99c8722013-08-08 20:11:27 -04001648 * @subsys_id: the ID of the target subsystem
Tejun Heo2f7ee562011-12-12 18:12:21 -08001649 *
Tejun Heod99c8722013-08-08 20:11:27 -04001650 * Return the css for the current (last returned) task of @tset for
1651 * subsystem specified by @subsys_id. This function must be preceded by
1652 * either cgroup_taskset_first() or cgroup_taskset_next().
Tejun Heo2f7ee562011-12-12 18:12:21 -08001653 */
Tejun Heod99c8722013-08-08 20:11:27 -04001654struct cgroup_subsys_state *cgroup_taskset_cur_css(struct cgroup_taskset *tset,
1655 int subsys_id)
Tejun Heo2f7ee562011-12-12 18:12:21 -08001656{
Tejun Heoca8bdca2013-08-26 18:40:56 -04001657 return cgroup_css(tset->cur_cgrp, cgroup_subsys[subsys_id]);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001658}
Tejun Heod99c8722013-08-08 20:11:27 -04001659EXPORT_SYMBOL_GPL(cgroup_taskset_cur_css);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001660
1661/**
1662 * cgroup_taskset_size - return the number of tasks in taskset
1663 * @tset: taskset of interest
1664 */
1665int cgroup_taskset_size(struct cgroup_taskset *tset)
1666{
1667 return tset->tc_array ? tset->tc_array_len : 1;
1668}
1669EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1670
1671
Ben Blum74a11662011-05-26 16:25:20 -07001672/*
1673 * cgroup_task_migrate - move a task from one cgroup to another.
1674 *
Tao Mad0b2fdd2012-11-20 22:06:18 +08001675 * Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001676 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001677static void cgroup_task_migrate(struct cgroup *old_cgrp,
1678 struct task_struct *tsk,
1679 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001680{
Tejun Heo5abb8852013-06-12 21:04:49 -07001681 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001682
1683 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001684 * We are synchronized through threadgroup_lock() against PF_EXITING
1685 * setting such that we can't race against cgroup_exit() changing the
1686 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001687 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001688 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001689 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001690
Ben Blum74a11662011-05-26 16:25:20 -07001691 task_lock(tsk);
Tejun Heo5abb8852013-06-12 21:04:49 -07001692 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001693 task_unlock(tsk);
1694
1695 /* Update the css_set linked lists if we're using them */
1696 write_lock(&css_set_lock);
1697 if (!list_empty(&tsk->cg_list))
Tejun Heo5abb8852013-06-12 21:04:49 -07001698 list_move(&tsk->cg_list, &new_cset->tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001699 write_unlock(&css_set_lock);
1700
1701 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001702 * We just gained a reference on old_cset by taking it from the
1703 * task. As trading it for new_cset is protected by cgroup_mutex,
1704 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001705 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001706 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
1707 put_css_set(old_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001708}
1709
Li Zefana043e3b2008-02-23 15:24:09 -08001710/**
Li Zefan081aa452013-03-13 09:17:09 +08001711 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
Ben Blum74a11662011-05-26 16:25:20 -07001712 * @cgrp: the cgroup to attach to
Li Zefan081aa452013-03-13 09:17:09 +08001713 * @tsk: the task or the leader of the threadgroup to be attached
1714 * @threadgroup: attach the whole threadgroup?
Ben Blum74a11662011-05-26 16:25:20 -07001715 *
Tejun Heo257058a2011-12-12 18:12:21 -08001716 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
Li Zefan081aa452013-03-13 09:17:09 +08001717 * task_lock of @tsk or each thread in the threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07001718 */
Tejun Heo47cfcd02013-04-07 09:29:51 -07001719static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk,
1720 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07001721{
1722 int retval, i, group_size;
Ben Blum74a11662011-05-26 16:25:20 -07001723 struct cgroupfs_root *root = cgrp->root;
Tejun Heo1c6727a2013-12-06 15:11:56 -05001724 struct cgroup_subsys_state *css, *failed_css = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07001725 /* threadgroup list cursor and array */
Li Zefan081aa452013-03-13 09:17:09 +08001726 struct task_struct *leader = tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08001727 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07001728 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001729 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07001730
1731 /*
1732 * step 0: in order to do expensive, possibly blocking operations for
1733 * every thread, we cannot iterate the thread group list, since it needs
1734 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08001735 * group - group_rwsem prevents new threads from appearing, and if
1736 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07001737 */
Li Zefan081aa452013-03-13 09:17:09 +08001738 if (threadgroup)
1739 group_size = get_nr_threads(tsk);
1740 else
1741 group_size = 1;
Ben Blumd8466872011-05-26 16:25:21 -07001742 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08001743 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07001744 if (!group)
1745 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07001746 /* pre-allocate to guarantee space while iterating in rcu read-side. */
Li Zefan3ac17072013-03-12 15:36:00 -07001747 retval = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
Ben Blumd8466872011-05-26 16:25:21 -07001748 if (retval)
1749 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07001750
Ben Blum74a11662011-05-26 16:25:20 -07001751 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001752 /*
1753 * Prevent freeing of tasks while we take a snapshot. Tasks that are
1754 * already PF_EXITING could be freed from underneath us unless we
1755 * take an rcu_read_lock.
1756 */
1757 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07001758 do {
Tejun Heo134d3372011-12-12 18:12:21 -08001759 struct task_and_cgroup ent;
1760
Tejun Heocd3d0952011-12-12 18:12:21 -08001761 /* @tsk either already exited or can't exit until the end */
1762 if (tsk->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08001763 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08001764
Ben Blum74a11662011-05-26 16:25:20 -07001765 /* as per above, nr_threads may decrease, but not increase. */
1766 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08001767 ent.task = tsk;
1768 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001769 /* nothing to do if this task is already in the cgroup */
1770 if (ent.cgrp == cgrp)
Anjana V Kumarea847532013-10-12 10:59:17 +08001771 goto next;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001772 /*
1773 * saying GFP_ATOMIC has no effect here because we did prealloc
1774 * earlier, but it's good form to communicate our expectations.
1775 */
Tejun Heo134d3372011-12-12 18:12:21 -08001776 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07001777 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07001778 i++;
Anjana V Kumarea847532013-10-12 10:59:17 +08001779 next:
Li Zefan081aa452013-03-13 09:17:09 +08001780 if (!threadgroup)
1781 break;
Ben Blum74a11662011-05-26 16:25:20 -07001782 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001783 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07001784 /* remember the number of threads in the array for later. */
1785 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001786 tset.tc_array = group;
1787 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07001788
Tejun Heo134d3372011-12-12 18:12:21 -08001789 /* methods shouldn't be called if no task is actually migrating */
1790 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001791 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08001792 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08001793
Ben Blum74a11662011-05-26 16:25:20 -07001794 /*
1795 * step 1: check that we can legitimately attach to the cgroup.
1796 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001797 for_each_css(css, i, cgrp) {
1798 if (css->ss->can_attach) {
1799 retval = css->ss->can_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001800 if (retval) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05001801 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07001802 goto out_cancel_attach;
1803 }
1804 }
Ben Blum74a11662011-05-26 16:25:20 -07001805 }
1806
1807 /*
1808 * step 2: make sure css_sets exist for all threads to be migrated.
1809 * we use find_css_set, which allocates a new one if necessary.
1810 */
Ben Blum74a11662011-05-26 16:25:20 -07001811 for (i = 0; i < group_size; i++) {
Tejun Heoa8ad8052013-06-21 15:52:04 -07001812 struct css_set *old_cset;
1813
Tejun Heo134d3372011-12-12 18:12:21 -08001814 tc = flex_array_get(group, i);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001815 old_cset = task_css_set(tc->task);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001816 tc->cset = find_css_set(old_cset, cgrp);
1817 if (!tc->cset) {
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001818 retval = -ENOMEM;
1819 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07001820 }
1821 }
1822
1823 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001824 * step 3: now that we're guaranteed success wrt the css_sets,
1825 * proceed to move all tasks to the new cgroup. There are no
1826 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07001827 */
Ben Blum74a11662011-05-26 16:25:20 -07001828 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08001829 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001830 cgroup_task_migrate(tc->cgrp, tc->task, tc->cset);
Ben Blum74a11662011-05-26 16:25:20 -07001831 }
1832 /* nothing is sensitive to fork() after this point. */
1833
1834 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001835 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07001836 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001837 for_each_css(css, i, cgrp)
1838 if (css->ss->attach)
1839 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001840
1841 /*
1842 * step 5: success! and cleanup
1843 */
Ben Blum74a11662011-05-26 16:25:20 -07001844 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001845out_put_css_set_refs:
1846 if (retval) {
1847 for (i = 0; i < group_size; i++) {
1848 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001849 if (!tc->cset)
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001850 break;
Li Zefan6f4b7e62013-07-31 16:18:36 +08001851 put_css_set(tc->cset);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001852 }
Ben Blum74a11662011-05-26 16:25:20 -07001853 }
1854out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07001855 if (retval) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05001856 for_each_css(css, i, cgrp) {
1857 if (css == failed_css)
Ben Blum74a11662011-05-26 16:25:20 -07001858 break;
Tejun Heo1c6727a2013-12-06 15:11:56 -05001859 if (css->ss->cancel_attach)
1860 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001861 }
1862 }
Ben Blum74a11662011-05-26 16:25:20 -07001863out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07001864 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07001865 return retval;
1866}
1867
1868/*
1869 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08001870 * function to attach either it or all tasks in its threadgroup. Will lock
1871 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07001872 */
1873static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001874{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001875 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001876 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001877 int ret;
1878
Ben Blum74a11662011-05-26 16:25:20 -07001879 if (!cgroup_lock_live_group(cgrp))
1880 return -ENODEV;
1881
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001882retry_find_task:
1883 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001884 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001885 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07001886 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07001887 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001888 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001889 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001890 }
Ben Blum74a11662011-05-26 16:25:20 -07001891 /*
1892 * even if we're attaching all tasks in the thread group, we
1893 * only need to check permissions on one of them.
1894 */
David Howellsc69e8d92008-11-14 10:39:19 +11001895 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07001896 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
1897 !uid_eq(cred->euid, tcred->uid) &&
1898 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001899 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001900 ret = -EACCES;
1901 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001902 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001903 } else
1904 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08001905
1906 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001907 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001908
1909 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07001910 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001911 * trapped in a cpuset, or RT worker may be born in a cgroup
1912 * with no rt_runtime allocated. Just say no.
1913 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07001914 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001915 ret = -EINVAL;
1916 rcu_read_unlock();
1917 goto out_unlock_cgroup;
1918 }
1919
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001920 get_task_struct(tsk);
1921 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08001922
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001923 threadgroup_lock(tsk);
1924 if (threadgroup) {
1925 if (!thread_group_leader(tsk)) {
1926 /*
1927 * a race with de_thread from another thread's exec()
1928 * may strip us of our leadership, if this happens,
1929 * there is no choice but to throw this task away and
1930 * try again; this is
1931 * "double-double-toil-and-trouble-check locking".
1932 */
1933 threadgroup_unlock(tsk);
1934 put_task_struct(tsk);
1935 goto retry_find_task;
1936 }
Li Zefan081aa452013-03-13 09:17:09 +08001937 }
1938
1939 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
1940
Tejun Heocd3d0952011-12-12 18:12:21 -08001941 threadgroup_unlock(tsk);
1942
Paul Menagebbcb81d2007-10-18 23:39:32 -07001943 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001944out_unlock_cgroup:
Tejun Heo47cfcd02013-04-07 09:29:51 -07001945 mutex_unlock(&cgroup_mutex);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001946 return ret;
1947}
1948
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001949/**
1950 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1951 * @from: attach to all cgroups of a given task
1952 * @tsk: the task to be attached
1953 */
1954int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
1955{
1956 struct cgroupfs_root *root;
1957 int retval = 0;
1958
Tejun Heo47cfcd02013-04-07 09:29:51 -07001959 mutex_lock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001960 for_each_active_root(root) {
Li Zefan6f4b7e62013-07-31 16:18:36 +08001961 struct cgroup *from_cgrp = task_cgroup_from_root(from, root);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001962
Li Zefan6f4b7e62013-07-31 16:18:36 +08001963 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001964 if (retval)
1965 break;
1966 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07001967 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07001968
1969 return retval;
1970}
1971EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
1972
Tejun Heo182446d2013-08-08 20:11:24 -04001973static int cgroup_tasks_write(struct cgroup_subsys_state *css,
1974 struct cftype *cft, u64 pid)
Paul Menageaf351022008-07-25 01:47:01 -07001975{
Tejun Heo182446d2013-08-08 20:11:24 -04001976 return attach_task_by_pid(css->cgroup, pid, false);
Ben Blum74a11662011-05-26 16:25:20 -07001977}
1978
Tejun Heo182446d2013-08-08 20:11:24 -04001979static int cgroup_procs_write(struct cgroup_subsys_state *css,
1980 struct cftype *cft, u64 tgid)
Ben Blum74a11662011-05-26 16:25:20 -07001981{
Tejun Heo182446d2013-08-08 20:11:24 -04001982 return attach_task_by_pid(css->cgroup, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07001983}
1984
Tejun Heo182446d2013-08-08 20:11:24 -04001985static int cgroup_release_agent_write(struct cgroup_subsys_state *css,
1986 struct cftype *cft, const char *buffer)
Paul Menagee788e062008-07-25 01:46:59 -07001987{
Tejun Heo5f469902014-02-11 11:52:48 -05001988 struct cgroupfs_root *root = css->cgroup->root;
1989
1990 BUILD_BUG_ON(sizeof(root->release_agent_path) < PATH_MAX);
Tejun Heo182446d2013-08-08 20:11:24 -04001991 if (!cgroup_lock_live_group(css->cgroup))
Paul Menagee788e062008-07-25 01:46:59 -07001992 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05001993 spin_lock(&release_agent_path_lock);
Tejun Heo5f469902014-02-11 11:52:48 -05001994 strlcpy(root->release_agent_path, buffer,
1995 sizeof(root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05001996 spin_unlock(&release_agent_path_lock);
Tejun Heo47cfcd02013-04-07 09:29:51 -07001997 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07001998 return 0;
1999}
2000
Tejun Heo2da8ca82013-12-05 12:28:04 -05002001static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002002{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002003 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002004
Paul Menagee788e062008-07-25 01:46:59 -07002005 if (!cgroup_lock_live_group(cgrp))
2006 return -ENODEV;
2007 seq_puts(seq, cgrp->root->release_agent_path);
2008 seq_putc(seq, '\n');
Tejun Heo47cfcd02013-04-07 09:29:51 -07002009 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002010 return 0;
2011}
2012
Tejun Heo2da8ca82013-12-05 12:28:04 -05002013static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002014{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002015 struct cgroup *cgrp = seq_css(seq)->cgroup;
2016
2017 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002018 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002019}
2020
Tejun Heo2bd59d42014-02-11 11:52:49 -05002021static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2022 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002023{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002024 struct cgroup *cgrp = of->kn->parent->priv;
2025 struct cftype *cft = of->kn->priv;
2026 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002027 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002028
Tejun Heo2bd59d42014-02-11 11:52:49 -05002029 /*
2030 * kernfs guarantees that a file isn't deleted with operations in
2031 * flight, which means that the matching css is and stays alive and
2032 * doesn't need to be pinned. The RCU locking is not necessary
2033 * either. It's just for the convenience of using cgroup_css().
2034 */
2035 rcu_read_lock();
2036 css = cgroup_css(cgrp, cft->ss);
2037 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002038
Tejun Heoa742c592013-12-05 12:28:03 -05002039 if (cft->write_string) {
2040 ret = cft->write_string(css, cft, strstrip(buf));
2041 } else if (cft->write_u64) {
2042 unsigned long long v;
2043 ret = kstrtoull(buf, 0, &v);
2044 if (!ret)
2045 ret = cft->write_u64(css, cft, v);
2046 } else if (cft->write_s64) {
2047 long long v;
2048 ret = kstrtoll(buf, 0, &v);
2049 if (!ret)
2050 ret = cft->write_s64(css, cft, v);
2051 } else if (cft->trigger) {
2052 ret = cft->trigger(css, (unsigned int)cft->private);
2053 } else {
2054 ret = -EINVAL;
2055 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002056
Tejun Heoa742c592013-12-05 12:28:03 -05002057 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002058}
2059
Tejun Heo6612f052013-12-05 12:28:04 -05002060static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002061{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002062 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002063}
2064
2065static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2066{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002067 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002068}
2069
2070static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2071{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002072 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002073}
2074
2075static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2076{
Tejun Heo7da11272013-12-05 12:28:04 -05002077 struct cftype *cft = seq_cft(m);
2078 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002079
Tejun Heo2da8ca82013-12-05 12:28:04 -05002080 if (cft->seq_show)
2081 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002082
Tejun Heo896f5192013-12-05 12:28:04 -05002083 if (cft->read_u64)
2084 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2085 else if (cft->read_s64)
2086 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2087 else
2088 return -EINVAL;
2089 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002090}
2091
Tejun Heo2bd59d42014-02-11 11:52:49 -05002092static struct kernfs_ops cgroup_kf_single_ops = {
2093 .atomic_write_len = PAGE_SIZE,
2094 .write = cgroup_file_write,
2095 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002096};
2097
Tejun Heo2bd59d42014-02-11 11:52:49 -05002098static struct kernfs_ops cgroup_kf_ops = {
2099 .atomic_write_len = PAGE_SIZE,
2100 .write = cgroup_file_write,
2101 .seq_start = cgroup_seqfile_start,
2102 .seq_next = cgroup_seqfile_next,
2103 .seq_stop = cgroup_seqfile_stop,
2104 .seq_show = cgroup_seqfile_show,
2105};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002106
2107/*
2108 * cgroup_rename - Only allow simple rename of directories in place.
2109 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002110static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2111 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002112{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002113 struct cgroup *cgrp = kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002114 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002115
Tejun Heo2bd59d42014-02-11 11:52:49 -05002116 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002117 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002118 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002119 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002120
Tejun Heo6db8e852013-06-14 11:18:22 -07002121 /*
2122 * This isn't a proper migration and its usefulness is very
2123 * limited. Disallow if sane_behavior.
2124 */
2125 if (cgroup_sane_behavior(cgrp))
2126 return -EPERM;
2127
Tejun Heo2bd59d42014-02-11 11:52:49 -05002128 mutex_lock(&cgroup_tree_mutex);
2129 mutex_lock(&cgroup_mutex);
2130
2131 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002132
Tejun Heo2bd59d42014-02-11 11:52:49 -05002133 mutex_unlock(&cgroup_mutex);
2134 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002135 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002136}
2137
Tejun Heo2bb566c2013-08-08 20:11:23 -04002138static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002139{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002140 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002141 struct kernfs_node *kn;
2142 struct lock_class_key *key = NULL;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002143
Tejun Heo2bd59d42014-02-11 11:52:49 -05002144#ifdef CONFIG_DEBUG_LOCK_ALLOC
2145 key = &cft->lockdep_key;
2146#endif
2147 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2148 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2149 NULL, false, key);
2150 if (IS_ERR(kn))
2151 return PTR_ERR(kn);
2152 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002153}
2154
Tejun Heob1f28d32013-06-28 16:24:10 -07002155/**
2156 * cgroup_addrm_files - add or remove files to a cgroup directory
2157 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002158 * @cfts: array of cftypes to be added
2159 * @is_add: whether to add or remove
2160 *
2161 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002162 * For removals, this function never fails. If addition fails, this
2163 * function doesn't remove files already added. The caller is responsible
2164 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002165 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002166static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2167 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002168{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002169 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002170 int ret;
2171
Tejun Heoace2bee2014-02-11 11:52:47 -05002172 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002173
2174 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002175 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo873fe092013-04-14 20:15:26 -07002176 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2177 continue;
Gao fengf33fddc2012-12-06 14:38:57 +08002178 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2179 continue;
2180 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2181 continue;
2182
Li Zefan2739d3c2013-01-21 18:18:33 +08002183 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002184 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002185 if (ret) {
Li Zefan2739d3c2013-01-21 18:18:33 +08002186 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
Tejun Heob1f28d32013-06-28 16:24:10 -07002187 cft->name, ret);
2188 return ret;
2189 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002190 } else {
2191 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002192 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002193 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002194 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002195}
2196
Tejun Heo21a2d342014-02-12 09:29:49 -05002197static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002198{
2199 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002200 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo492eb212013-08-08 20:11:25 -04002201 struct cgroup *root = &ss->root->top_cgroup;
Tejun Heo492eb212013-08-08 20:11:25 -04002202 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07002203 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002204
Tejun Heo21a2d342014-02-12 09:29:49 -05002205 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo4ac06012014-02-11 11:52:47 -05002206
Tejun Heo21a2d342014-02-12 09:29:49 -05002207 /* don't bother if @ss isn't attached */
2208 if (ss->root == &cgroup_dummy_root)
Tejun Heo9ccece82013-06-28 16:24:11 -07002209 return 0;
Li Zefane8c82d22013-06-18 18:48:37 +08002210
Li Zefane8c82d22013-06-18 18:48:37 +08002211 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04002212 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002213 struct cgroup *cgrp = css->cgroup;
2214
Li Zefane8c82d22013-06-18 18:48:37 +08002215 if (cgroup_is_dead(cgrp))
2216 continue;
2217
Tejun Heo21a2d342014-02-12 09:29:49 -05002218 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07002219 if (ret)
2220 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002221 }
Tejun Heo21a2d342014-02-12 09:29:49 -05002222
2223 if (is_add && !ret)
2224 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07002225 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002226}
2227
Tejun Heo2da440a2014-02-11 11:52:48 -05002228static void cgroup_exit_cftypes(struct cftype *cfts)
2229{
2230 struct cftype *cft;
2231
Tejun Heo2bd59d42014-02-11 11:52:49 -05002232 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2233 /* free copy for custom atomic_write_len, see init_cftypes() */
2234 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
2235 kfree(cft->kf_ops);
2236 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05002237 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002238 }
Tejun Heo2da440a2014-02-11 11:52:48 -05002239}
2240
Tejun Heo2bd59d42014-02-11 11:52:49 -05002241static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05002242{
2243 struct cftype *cft;
2244
Tejun Heo2bd59d42014-02-11 11:52:49 -05002245 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2246 struct kernfs_ops *kf_ops;
2247
Tejun Heo0adb0702014-02-12 09:29:48 -05002248 WARN_ON(cft->ss || cft->kf_ops);
2249
Tejun Heo2bd59d42014-02-11 11:52:49 -05002250 if (cft->seq_start)
2251 kf_ops = &cgroup_kf_ops;
2252 else
2253 kf_ops = &cgroup_kf_single_ops;
2254
2255 /*
2256 * Ugh... if @cft wants a custom max_write_len, we need to
2257 * make a copy of kf_ops to set its atomic_write_len.
2258 */
2259 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
2260 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
2261 if (!kf_ops) {
2262 cgroup_exit_cftypes(cfts);
2263 return -ENOMEM;
2264 }
2265 kf_ops->atomic_write_len = cft->max_write_len;
2266 }
2267
2268 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05002269 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002270 }
2271
2272 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05002273}
2274
Tejun Heo21a2d342014-02-12 09:29:49 -05002275static int cgroup_rm_cftypes_locked(struct cftype *cfts)
2276{
2277 lockdep_assert_held(&cgroup_tree_mutex);
2278
2279 if (!cfts || !cfts[0].ss)
2280 return -ENOENT;
2281
2282 list_del(&cfts->node);
2283 cgroup_apply_cftypes(cfts, false);
2284 cgroup_exit_cftypes(cfts);
2285 return 0;
2286}
2287
Tejun Heo8e3f6542012-04-01 12:09:55 -07002288/**
Tejun Heo80b13582014-02-12 09:29:48 -05002289 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2290 * @cfts: zero-length name terminated array of cftypes
2291 *
2292 * Unregister @cfts. Files described by @cfts are removed from all
2293 * existing cgroups and all future cgroups won't have them either. This
2294 * function can be called anytime whether @cfts' subsys is attached or not.
2295 *
2296 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2297 * registered.
2298 */
2299int cgroup_rm_cftypes(struct cftype *cfts)
2300{
Tejun Heo21a2d342014-02-12 09:29:49 -05002301 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002302
Tejun Heo21a2d342014-02-12 09:29:49 -05002303 mutex_lock(&cgroup_tree_mutex);
2304 ret = cgroup_rm_cftypes_locked(cfts);
2305 mutex_unlock(&cgroup_tree_mutex);
2306 return ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002307}
2308
2309/**
Tejun Heo8e3f6542012-04-01 12:09:55 -07002310 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2311 * @ss: target cgroup subsystem
2312 * @cfts: zero-length name terminated array of cftypes
2313 *
2314 * Register @cfts to @ss. Files described by @cfts are created for all
2315 * existing cgroups to which @ss is attached and all future cgroups will
2316 * have them too. This function can be called anytime whether @ss is
2317 * attached or not.
2318 *
2319 * Returns 0 on successful registration, -errno on failure. Note that this
2320 * function currently returns 0 as long as @cfts registration is successful
2321 * even if some file creation attempts on existing cgroups fail.
2322 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002323int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002324{
Tejun Heo9ccece82013-06-28 16:24:11 -07002325 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002326
Tejun Heo2bd59d42014-02-11 11:52:49 -05002327 ret = cgroup_init_cftypes(ss, cfts);
2328 if (ret)
2329 return ret;
Tejun Heo2bb566c2013-08-08 20:11:23 -04002330
Tejun Heo21a2d342014-02-12 09:29:49 -05002331 mutex_lock(&cgroup_tree_mutex);
2332
Tejun Heo0adb0702014-02-12 09:29:48 -05002333 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05002334 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07002335 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05002336 cgroup_rm_cftypes_locked(cfts);
2337
2338 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07002339 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002340}
2341EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2342
Li Zefana043e3b2008-02-23 15:24:09 -08002343/**
2344 * cgroup_task_count - count the number of tasks in a cgroup.
2345 * @cgrp: the cgroup in question
2346 *
2347 * Return the number of tasks in the cgroup.
2348 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002349int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002350{
2351 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07002352 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002353
Paul Menage817929e2007-10-18 23:39:36 -07002354 read_lock(&css_set_lock);
Tejun Heo69d02062013-06-12 21:04:50 -07002355 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2356 count += atomic_read(&link->cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002357 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002358 return count;
2359}
2360
2361/*
Tejun Heo0942eee2013-08-08 20:11:26 -04002362 * To reduce the fork() overhead for systems that are not actually using
2363 * their cgroups capability, we don't maintain the lists running through
2364 * each css_set to its tasks until we see the list actually used - in other
Tejun Heo72ec7022013-08-08 20:11:26 -04002365 * words after the first call to css_task_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002366 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002367static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002368{
2369 struct task_struct *p, *g;
2370 write_lock(&css_set_lock);
2371 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002372 /*
2373 * We need tasklist_lock because RCU is not safe against
2374 * while_each_thread(). Besides, a forking task that has passed
2375 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2376 * is not guaranteed to have its child immediately visible in the
2377 * tasklist if we walk through it with RCU.
2378 */
2379 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002380 do_each_thread(g, p) {
2381 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002382 /*
2383 * We should check if the process is exiting, otherwise
2384 * it will race with cgroup_exit() in that the list
2385 * entry won't be deleted though the process has exited.
2386 */
2387 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07002388 list_add(&p->cg_list, &task_css_set(p)->tasks);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002389 task_unlock(p);
2390 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002391 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002392 write_unlock(&css_set_lock);
2393}
2394
Tejun Heo574bd9f2012-11-09 09:12:29 -08002395/**
Tejun Heo492eb212013-08-08 20:11:25 -04002396 * css_next_child - find the next child of a given css
2397 * @pos_css: the current position (%NULL to initiate traversal)
2398 * @parent_css: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09002399 *
Tejun Heo492eb212013-08-08 20:11:25 -04002400 * This function returns the next child of @parent_css and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05002401 * under either cgroup_mutex or RCU read lock. The only requirement is
2402 * that @parent_css and @pos_css are accessible. The next sibling is
2403 * guaranteed to be returned regardless of their states.
Tejun Heo53fa5262013-05-24 10:55:38 +09002404 */
Tejun Heo492eb212013-08-08 20:11:25 -04002405struct cgroup_subsys_state *
2406css_next_child(struct cgroup_subsys_state *pos_css,
2407 struct cgroup_subsys_state *parent_css)
Tejun Heo53fa5262013-05-24 10:55:38 +09002408{
Tejun Heo492eb212013-08-08 20:11:25 -04002409 struct cgroup *pos = pos_css ? pos_css->cgroup : NULL;
2410 struct cgroup *cgrp = parent_css->cgroup;
Tejun Heo53fa5262013-05-24 10:55:38 +09002411 struct cgroup *next;
2412
Tejun Heoace2bee2014-02-11 11:52:47 -05002413 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09002414
2415 /*
2416 * @pos could already have been removed. Once a cgroup is removed,
2417 * its ->sibling.next is no longer updated when its next sibling
Tejun Heoea15f8c2013-06-13 19:27:42 -07002418 * changes. As CGRP_DEAD assertion is serialized and happens
2419 * before the cgroup is taken off the ->sibling list, if we see it
2420 * unasserted, it's guaranteed that the next sibling hasn't
2421 * finished its grace period even if it's already removed, and thus
2422 * safe to dereference from this RCU critical section. If
2423 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
2424 * to be visible as %true here.
Tejun Heo3b287a52013-08-08 20:11:24 -04002425 *
2426 * If @pos is dead, its next pointer can't be dereferenced;
2427 * however, as each cgroup is given a monotonically increasing
2428 * unique serial number and always appended to the sibling list,
2429 * the next one can be found by walking the parent's children until
2430 * we see a cgroup with higher serial number than @pos's. While
2431 * this path can be slower, it's taken only when either the current
2432 * cgroup is removed or iteration and removal race.
Tejun Heo53fa5262013-05-24 10:55:38 +09002433 */
Tejun Heo3b287a52013-08-08 20:11:24 -04002434 if (!pos) {
2435 next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling);
2436 } else if (likely(!cgroup_is_dead(pos))) {
Tejun Heo53fa5262013-05-24 10:55:38 +09002437 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04002438 } else {
2439 list_for_each_entry_rcu(next, &cgrp->children, sibling)
2440 if (next->serial_nr > pos->serial_nr)
2441 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09002442 }
2443
Tejun Heo492eb212013-08-08 20:11:25 -04002444 if (&next->sibling == &cgrp->children)
2445 return NULL;
2446
Tejun Heoca8bdca2013-08-26 18:40:56 -04002447 return cgroup_css(next, parent_css->ss);
Tejun Heo53fa5262013-05-24 10:55:38 +09002448}
Tejun Heo492eb212013-08-08 20:11:25 -04002449EXPORT_SYMBOL_GPL(css_next_child);
Tejun Heo53fa5262013-05-24 10:55:38 +09002450
2451/**
Tejun Heo492eb212013-08-08 20:11:25 -04002452 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002453 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002454 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002455 *
Tejun Heo492eb212013-08-08 20:11:25 -04002456 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002457 * to visit for pre-order traversal of @root's descendants. @root is
2458 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002459 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002460 * While this function requires cgroup_mutex or RCU read locking, it
2461 * doesn't require the whole traversal to be contained in a single critical
2462 * section. This function will return the correct next descendant as long
2463 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002464 */
Tejun Heo492eb212013-08-08 20:11:25 -04002465struct cgroup_subsys_state *
2466css_next_descendant_pre(struct cgroup_subsys_state *pos,
2467 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002468{
Tejun Heo492eb212013-08-08 20:11:25 -04002469 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002470
Tejun Heoace2bee2014-02-11 11:52:47 -05002471 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002472
Tejun Heobd8815a2013-08-08 20:11:27 -04002473 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09002474 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04002475 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002476
2477 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04002478 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002479 if (next)
2480 return next;
2481
2482 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04002483 while (pos != root) {
2484 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002485 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002486 return next;
Tejun Heo492eb212013-08-08 20:11:25 -04002487 pos = css_parent(pos);
Tejun Heo7805d002013-05-24 10:50:24 +09002488 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08002489
2490 return NULL;
2491}
Tejun Heo492eb212013-08-08 20:11:25 -04002492EXPORT_SYMBOL_GPL(css_next_descendant_pre);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002493
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002494/**
Tejun Heo492eb212013-08-08 20:11:25 -04002495 * css_rightmost_descendant - return the rightmost descendant of a css
2496 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002497 *
Tejun Heo492eb212013-08-08 20:11:25 -04002498 * Return the rightmost descendant of @pos. If there's no descendant, @pos
2499 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002500 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09002501 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002502 * While this function requires cgroup_mutex or RCU read locking, it
2503 * doesn't require the whole traversal to be contained in a single critical
2504 * section. This function will return the correct rightmost descendant as
2505 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002506 */
Tejun Heo492eb212013-08-08 20:11:25 -04002507struct cgroup_subsys_state *
2508css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002509{
Tejun Heo492eb212013-08-08 20:11:25 -04002510 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002511
Tejun Heoace2bee2014-02-11 11:52:47 -05002512 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002513
2514 do {
2515 last = pos;
2516 /* ->prev isn't RCU safe, walk ->next till the end */
2517 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04002518 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002519 pos = tmp;
2520 } while (pos);
2521
2522 return last;
2523}
Tejun Heo492eb212013-08-08 20:11:25 -04002524EXPORT_SYMBOL_GPL(css_rightmost_descendant);
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002525
Tejun Heo492eb212013-08-08 20:11:25 -04002526static struct cgroup_subsys_state *
2527css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002528{
Tejun Heo492eb212013-08-08 20:11:25 -04002529 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002530
2531 do {
2532 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04002533 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002534 } while (pos);
2535
2536 return last;
2537}
2538
2539/**
Tejun Heo492eb212013-08-08 20:11:25 -04002540 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002541 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002542 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002543 *
Tejun Heo492eb212013-08-08 20:11:25 -04002544 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002545 * to visit for post-order traversal of @root's descendants. @root is
2546 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002547 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002548 * While this function requires cgroup_mutex or RCU read locking, it
2549 * doesn't require the whole traversal to be contained in a single critical
2550 * section. This function will return the correct next descendant as long
2551 * as both @pos and @cgroup are accessible and @pos is a descendant of
2552 * @cgroup.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002553 */
Tejun Heo492eb212013-08-08 20:11:25 -04002554struct cgroup_subsys_state *
2555css_next_descendant_post(struct cgroup_subsys_state *pos,
2556 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002557{
Tejun Heo492eb212013-08-08 20:11:25 -04002558 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002559
Tejun Heoace2bee2014-02-11 11:52:47 -05002560 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002561
Tejun Heo58b79a92013-09-06 15:31:08 -04002562 /* if first iteration, visit leftmost descendant which may be @root */
2563 if (!pos)
2564 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002565
Tejun Heobd8815a2013-08-08 20:11:27 -04002566 /* if we visited @root, we're done */
2567 if (pos == root)
2568 return NULL;
2569
Tejun Heo574bd9f2012-11-09 09:12:29 -08002570 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo492eb212013-08-08 20:11:25 -04002571 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002572 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04002573 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002574
2575 /* no sibling left, visit parent */
Tejun Heobd8815a2013-08-08 20:11:27 -04002576 return css_parent(pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002577}
Tejun Heo492eb212013-08-08 20:11:25 -04002578EXPORT_SYMBOL_GPL(css_next_descendant_post);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002579
Tejun Heo0942eee2013-08-08 20:11:26 -04002580/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002581 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04002582 * @it: the iterator to advance
2583 *
2584 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04002585 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002586static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04002587{
2588 struct list_head *l = it->cset_link;
2589 struct cgrp_cset_link *link;
2590 struct css_set *cset;
2591
2592 /* Advance to the next non-empty css_set */
2593 do {
2594 l = l->next;
Tejun Heo72ec7022013-08-08 20:11:26 -04002595 if (l == &it->origin_css->cgroup->cset_links) {
Tejun Heod5158762013-08-08 20:11:26 -04002596 it->cset_link = NULL;
2597 return;
2598 }
2599 link = list_entry(l, struct cgrp_cset_link, cset_link);
2600 cset = link->cset;
2601 } while (list_empty(&cset->tasks));
2602 it->cset_link = l;
2603 it->task = cset->tasks.next;
2604}
2605
Tejun Heo0942eee2013-08-08 20:11:26 -04002606/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002607 * css_task_iter_start - initiate task iteration
2608 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04002609 * @it: the task iterator to use
2610 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002611 * Initiate iteration through the tasks of @css. The caller can call
2612 * css_task_iter_next() to walk through the tasks until the function
2613 * returns NULL. On completion of iteration, css_task_iter_end() must be
2614 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04002615 *
2616 * Note that this function acquires a lock which is released when the
2617 * iteration finishes. The caller can't sleep while iteration is in
2618 * progress.
2619 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002620void css_task_iter_start(struct cgroup_subsys_state *css,
2621 struct css_task_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002622 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002623{
2624 /*
Tejun Heo72ec7022013-08-08 20:11:26 -04002625 * The first time anyone tries to iterate across a css, we need to
2626 * enable the list linking each css_set to its tasks, and fix up
2627 * all existing tasks.
Paul Menage817929e2007-10-18 23:39:36 -07002628 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002629 if (!use_task_css_set_links)
2630 cgroup_enable_task_cg_lists();
2631
Paul Menage817929e2007-10-18 23:39:36 -07002632 read_lock(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002633
Tejun Heo72ec7022013-08-08 20:11:26 -04002634 it->origin_css = css;
2635 it->cset_link = &css->cgroup->cset_links;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002636
Tejun Heo72ec7022013-08-08 20:11:26 -04002637 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002638}
2639
Tejun Heo0942eee2013-08-08 20:11:26 -04002640/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002641 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04002642 * @it: the task iterator being iterated
2643 *
2644 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04002645 * initialized via css_task_iter_start(). Returns NULL when the iteration
2646 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04002647 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002648struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002649{
2650 struct task_struct *res;
2651 struct list_head *l = it->task;
Tejun Heo69d02062013-06-12 21:04:50 -07002652 struct cgrp_cset_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002653
2654 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo69d02062013-06-12 21:04:50 -07002655 if (!it->cset_link)
Paul Menage817929e2007-10-18 23:39:36 -07002656 return NULL;
2657 res = list_entry(l, struct task_struct, cg_list);
2658 /* Advance iterator to find next entry */
2659 l = l->next;
Tejun Heo69d02062013-06-12 21:04:50 -07002660 link = list_entry(it->cset_link, struct cgrp_cset_link, cset_link);
2661 if (l == &link->cset->tasks) {
Tejun Heo0942eee2013-08-08 20:11:26 -04002662 /*
2663 * We reached the end of this task list - move on to the
2664 * next cgrp_cset_link.
2665 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002666 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002667 } else {
2668 it->task = l;
2669 }
2670 return res;
2671}
2672
Tejun Heo0942eee2013-08-08 20:11:26 -04002673/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002674 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04002675 * @it: the task iterator to finish
2676 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002677 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04002678 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002679void css_task_iter_end(struct css_task_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002680 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002681{
2682 read_unlock(&css_set_lock);
2683}
2684
Cliff Wickman31a7df02008-02-07 00:14:42 -08002685static inline int started_after_time(struct task_struct *t1,
2686 struct timespec *time,
2687 struct task_struct *t2)
2688{
2689 int start_diff = timespec_compare(&t1->start_time, time);
2690 if (start_diff > 0) {
2691 return 1;
2692 } else if (start_diff < 0) {
2693 return 0;
2694 } else {
2695 /*
2696 * Arbitrarily, if two processes started at the same
2697 * time, we'll say that the lower pointer value
2698 * started first. Note that t2 may have exited by now
2699 * so this may not be a valid pointer any longer, but
2700 * that's fine - it still serves to distinguish
2701 * between two tasks started (effectively) simultaneously.
2702 */
2703 return t1 > t2;
2704 }
2705}
2706
2707/*
2708 * This function is a callback from heap_insert() and is used to order
2709 * the heap.
2710 * In this case we order the heap in descending task start time.
2711 */
2712static inline int started_after(void *p1, void *p2)
2713{
2714 struct task_struct *t1 = p1;
2715 struct task_struct *t2 = p2;
2716 return started_after_time(t1, &t2->start_time, t2);
2717}
2718
2719/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002720 * css_scan_tasks - iterate though all the tasks in a css
2721 * @css: the css to iterate tasks of
Tejun Heoe5358372013-08-08 20:11:26 -04002722 * @test: optional test callback
2723 * @process: process callback
2724 * @data: data passed to @test and @process
2725 * @heap: optional pre-allocated heap used for task iteration
Cliff Wickman31a7df02008-02-07 00:14:42 -08002726 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002727 * Iterate through all the tasks in @css, calling @test for each, and if it
2728 * returns %true, call @process for it also.
Cliff Wickman31a7df02008-02-07 00:14:42 -08002729 *
Tejun Heoe5358372013-08-08 20:11:26 -04002730 * @test may be NULL, meaning always true (select all tasks), which
Tejun Heo72ec7022013-08-08 20:11:26 -04002731 * effectively duplicates css_task_iter_{start,next,end}() but does not
Tejun Heoe5358372013-08-08 20:11:26 -04002732 * lock css_set_lock for the call to @process.
2733 *
2734 * It is guaranteed that @process will act on every task that is a member
Tejun Heo72ec7022013-08-08 20:11:26 -04002735 * of @css for the duration of this call. This function may or may not
2736 * call @process for tasks that exit or move to a different css during the
2737 * call, or are forked or move into the css during the call.
Tejun Heoe5358372013-08-08 20:11:26 -04002738 *
2739 * Note that @test may be called with locks held, and may in some
2740 * situations be called multiple times for the same task, so it should be
2741 * cheap.
2742 *
2743 * If @heap is non-NULL, a heap has been pre-allocated and will be used for
2744 * heap operations (and its "gt" member will be overwritten), else a
2745 * temporary heap will be used (allocation of which may cause this function
2746 * to fail).
Cliff Wickman31a7df02008-02-07 00:14:42 -08002747 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002748int css_scan_tasks(struct cgroup_subsys_state *css,
2749 bool (*test)(struct task_struct *, void *),
2750 void (*process)(struct task_struct *, void *),
2751 void *data, struct ptr_heap *heap)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002752{
2753 int retval, i;
Tejun Heo72ec7022013-08-08 20:11:26 -04002754 struct css_task_iter it;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002755 struct task_struct *p, *dropped;
2756 /* Never dereference latest_task, since it's not refcounted */
2757 struct task_struct *latest_task = NULL;
2758 struct ptr_heap tmp_heap;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002759 struct timespec latest_time = { 0, 0 };
2760
Tejun Heoe5358372013-08-08 20:11:26 -04002761 if (heap) {
Cliff Wickman31a7df02008-02-07 00:14:42 -08002762 /* The caller supplied our heap and pre-allocated its memory */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002763 heap->gt = &started_after;
2764 } else {
2765 /* We need to allocate our own heap memory */
2766 heap = &tmp_heap;
2767 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2768 if (retval)
2769 /* cannot allocate the heap */
2770 return retval;
2771 }
2772
2773 again:
2774 /*
Tejun Heo72ec7022013-08-08 20:11:26 -04002775 * Scan tasks in the css, using the @test callback to determine
Tejun Heoe5358372013-08-08 20:11:26 -04002776 * which are of interest, and invoking @process callback on the
2777 * ones which need an update. Since we don't want to hold any
2778 * locks during the task updates, gather tasks to be processed in a
2779 * heap structure. The heap is sorted by descending task start
2780 * time. If the statically-sized heap fills up, we overflow tasks
2781 * that started later, and in future iterations only consider tasks
2782 * that started after the latest task in the previous pass. This
Cliff Wickman31a7df02008-02-07 00:14:42 -08002783 * guarantees forward progress and that we don't miss any tasks.
2784 */
2785 heap->size = 0;
Tejun Heo72ec7022013-08-08 20:11:26 -04002786 css_task_iter_start(css, &it);
2787 while ((p = css_task_iter_next(&it))) {
Cliff Wickman31a7df02008-02-07 00:14:42 -08002788 /*
2789 * Only affect tasks that qualify per the caller's callback,
2790 * if he provided one
2791 */
Tejun Heoe5358372013-08-08 20:11:26 -04002792 if (test && !test(p, data))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002793 continue;
2794 /*
2795 * Only process tasks that started after the last task
2796 * we processed
2797 */
2798 if (!started_after_time(p, &latest_time, latest_task))
2799 continue;
2800 dropped = heap_insert(heap, p);
2801 if (dropped == NULL) {
2802 /*
2803 * The new task was inserted; the heap wasn't
2804 * previously full
2805 */
2806 get_task_struct(p);
2807 } else if (dropped != p) {
2808 /*
2809 * The new task was inserted, and pushed out a
2810 * different task
2811 */
2812 get_task_struct(p);
2813 put_task_struct(dropped);
2814 }
2815 /*
2816 * Else the new task was newer than anything already in
2817 * the heap and wasn't inserted
2818 */
2819 }
Tejun Heo72ec7022013-08-08 20:11:26 -04002820 css_task_iter_end(&it);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002821
2822 if (heap->size) {
2823 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002824 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002825 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002826 latest_time = q->start_time;
2827 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002828 }
2829 /* Process the task per the caller's callback */
Tejun Heoe5358372013-08-08 20:11:26 -04002830 process(q, data);
Paul Jackson4fe91d52008-04-29 00:59:55 -07002831 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002832 }
2833 /*
2834 * If we had to process any tasks at all, scan again
2835 * in case some of them were in the middle of forking
2836 * children that didn't get processed.
2837 * Not the most efficient way to do it, but it avoids
2838 * having to take callback_mutex in the fork path
2839 */
2840 goto again;
2841 }
2842 if (heap == &tmp_heap)
2843 heap_free(&tmp_heap);
2844 return 0;
2845}
2846
Tejun Heoe5358372013-08-08 20:11:26 -04002847static void cgroup_transfer_one_task(struct task_struct *task, void *data)
Tejun Heo8cc99342013-04-07 09:29:50 -07002848{
Tejun Heoe5358372013-08-08 20:11:26 -04002849 struct cgroup *new_cgroup = data;
Tejun Heo8cc99342013-04-07 09:29:50 -07002850
Tejun Heo47cfcd02013-04-07 09:29:51 -07002851 mutex_lock(&cgroup_mutex);
Tejun Heo8cc99342013-04-07 09:29:50 -07002852 cgroup_attach_task(new_cgroup, task, false);
Tejun Heo47cfcd02013-04-07 09:29:51 -07002853 mutex_unlock(&cgroup_mutex);
Tejun Heo8cc99342013-04-07 09:29:50 -07002854}
2855
2856/**
2857 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
2858 * @to: cgroup to which the tasks will be moved
2859 * @from: cgroup in which the tasks currently reside
2860 */
2861int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
2862{
Tejun Heo72ec7022013-08-08 20:11:26 -04002863 return css_scan_tasks(&from->dummy_css, NULL, cgroup_transfer_one_task,
2864 to, NULL);
Tejun Heo8cc99342013-04-07 09:29:50 -07002865}
2866
Paul Menage817929e2007-10-18 23:39:36 -07002867/*
Ben Blum102a7752009-09-23 15:56:26 -07002868 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002869 *
2870 * Reading this file can return large amounts of data if a cgroup has
2871 * *lots* of attached tasks. So it may need several calls to read(),
2872 * but we cannot guarantee that the information we produce is correct
2873 * unless we produce it entirely atomically.
2874 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002875 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002876
Li Zefan24528252012-01-20 11:58:43 +08002877/* which pidlist file are we talking about? */
2878enum cgroup_filetype {
2879 CGROUP_FILE_PROCS,
2880 CGROUP_FILE_TASKS,
2881};
2882
2883/*
2884 * A pidlist is a list of pids that virtually represents the contents of one
2885 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
2886 * a pair (one each for procs, tasks) for each pid namespace that's relevant
2887 * to the cgroup.
2888 */
2889struct cgroup_pidlist {
2890 /*
2891 * used to find which pidlist is wanted. doesn't change as long as
2892 * this particular list stays in the list.
2893 */
2894 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
2895 /* array of xids */
2896 pid_t *list;
2897 /* how many elements the above list has */
2898 int length;
Li Zefan24528252012-01-20 11:58:43 +08002899 /* each of these stored in a list by its cgroup */
2900 struct list_head links;
2901 /* pointer to the cgroup we belong to, for list removal purposes */
2902 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05002903 /* for delayed destruction */
2904 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08002905};
2906
Paul Menagebbcb81d2007-10-18 23:39:32 -07002907/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002908 * The following two functions "fix" the issue where there are more pids
2909 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2910 * TODO: replace with a kernel-wide solution to this problem
2911 */
2912#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2913static void *pidlist_allocate(int count)
2914{
2915 if (PIDLIST_TOO_LARGE(count))
2916 return vmalloc(count * sizeof(pid_t));
2917 else
2918 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2919}
Tejun Heob1a21362013-11-29 10:42:58 -05002920
Ben Blumd1d9fd32009-09-23 15:56:28 -07002921static void pidlist_free(void *p)
2922{
2923 if (is_vmalloc_addr(p))
2924 vfree(p);
2925 else
2926 kfree(p);
2927}
Ben Blumd1d9fd32009-09-23 15:56:28 -07002928
2929/*
Tejun Heob1a21362013-11-29 10:42:58 -05002930 * Used to destroy all pidlists lingering waiting for destroy timer. None
2931 * should be left afterwards.
2932 */
2933static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
2934{
2935 struct cgroup_pidlist *l, *tmp_l;
2936
2937 mutex_lock(&cgrp->pidlist_mutex);
2938 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
2939 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
2940 mutex_unlock(&cgrp->pidlist_mutex);
2941
2942 flush_workqueue(cgroup_pidlist_destroy_wq);
2943 BUG_ON(!list_empty(&cgrp->pidlists));
2944}
2945
2946static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
2947{
2948 struct delayed_work *dwork = to_delayed_work(work);
2949 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
2950 destroy_dwork);
2951 struct cgroup_pidlist *tofree = NULL;
2952
2953 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05002954
2955 /*
Tejun Heo04502362013-11-29 10:42:59 -05002956 * Destroy iff we didn't get queued again. The state won't change
2957 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05002958 */
Tejun Heo04502362013-11-29 10:42:59 -05002959 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05002960 list_del(&l->links);
2961 pidlist_free(l->list);
2962 put_pid_ns(l->key.ns);
2963 tofree = l;
2964 }
2965
Tejun Heob1a21362013-11-29 10:42:58 -05002966 mutex_unlock(&l->owner->pidlist_mutex);
2967 kfree(tofree);
2968}
2969
2970/*
Ben Blum102a7752009-09-23 15:56:26 -07002971 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07002972 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002973 */
Li Zefan6ee211a2013-03-12 15:36:00 -07002974static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002975{
Ben Blum102a7752009-09-23 15:56:26 -07002976 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07002977
2978 /*
2979 * we presume the 0th element is unique, so i starts at 1. trivial
2980 * edge cases first; no work needs to be done for either
2981 */
2982 if (length == 0 || length == 1)
2983 return length;
2984 /* src and dest walk down the list; dest counts unique elements */
2985 for (src = 1; src < length; src++) {
2986 /* find next unique element */
2987 while (list[src] == list[src-1]) {
2988 src++;
2989 if (src == length)
2990 goto after;
2991 }
2992 /* dest always points to where the next unique element goes */
2993 list[dest] = list[src];
2994 dest++;
2995 }
2996after:
Ben Blum102a7752009-09-23 15:56:26 -07002997 return dest;
2998}
2999
Tejun Heoafb2bc12013-11-29 10:42:59 -05003000/*
3001 * The two pid files - task and cgroup.procs - guaranteed that the result
3002 * is sorted, which forced this whole pidlist fiasco. As pid order is
3003 * different per namespace, each namespace needs differently sorted list,
3004 * making it impossible to use, for example, single rbtree of member tasks
3005 * sorted by task pointer. As pidlists can be fairly large, allocating one
3006 * per open file is dangerous, so cgroup had to implement shared pool of
3007 * pidlists keyed by cgroup and namespace.
3008 *
3009 * All this extra complexity was caused by the original implementation
3010 * committing to an entirely unnecessary property. In the long term, we
3011 * want to do away with it. Explicitly scramble sort order if
3012 * sane_behavior so that no such expectation exists in the new interface.
3013 *
3014 * Scrambling is done by swapping every two consecutive bits, which is
3015 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3016 */
3017static pid_t pid_fry(pid_t pid)
3018{
3019 unsigned a = pid & 0x55555555;
3020 unsigned b = pid & 0xAAAAAAAA;
3021
3022 return (a << 1) | (b >> 1);
3023}
3024
3025static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3026{
3027 if (cgroup_sane_behavior(cgrp))
3028 return pid_fry(pid);
3029 else
3030 return pid;
3031}
3032
Ben Blum102a7752009-09-23 15:56:26 -07003033static int cmppid(const void *a, const void *b)
3034{
3035 return *(pid_t *)a - *(pid_t *)b;
3036}
3037
Tejun Heoafb2bc12013-11-29 10:42:59 -05003038static int fried_cmppid(const void *a, const void *b)
3039{
3040 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3041}
3042
Ben Blum72a8cb32009-09-23 15:56:27 -07003043static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3044 enum cgroup_filetype type)
3045{
3046 struct cgroup_pidlist *l;
3047 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003048 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003049
Tejun Heoe6b81712013-11-29 10:42:59 -05003050 lockdep_assert_held(&cgrp->pidlist_mutex);
3051
3052 list_for_each_entry(l, &cgrp->pidlists, links)
3053 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003054 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003055 return NULL;
3056}
3057
Ben Blum72a8cb32009-09-23 15:56:27 -07003058/*
3059 * find the appropriate pidlist for our purpose (given procs vs tasks)
3060 * returns with the lock on that pidlist already held, and takes care
3061 * of the use count, or returns NULL with no locks held if we're out of
3062 * memory.
3063 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003064static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3065 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003066{
3067 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003068
Tejun Heoe6b81712013-11-29 10:42:59 -05003069 lockdep_assert_held(&cgrp->pidlist_mutex);
3070
3071 l = cgroup_pidlist_find(cgrp, type);
3072 if (l)
3073 return l;
3074
Ben Blum72a8cb32009-09-23 15:56:27 -07003075 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003076 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003077 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003078 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003079
Tejun Heob1a21362013-11-29 10:42:58 -05003080 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003081 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003082 /* don't need task_nsproxy() if we're looking at ourself */
3083 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003084 l->owner = cgrp;
3085 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003086 return l;
3087}
3088
3089/*
Ben Blum102a7752009-09-23 15:56:26 -07003090 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3091 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003092static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3093 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003094{
3095 pid_t *array;
3096 int length;
3097 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003098 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003099 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003100 struct cgroup_pidlist *l;
3101
Tejun Heo4bac00d2013-11-29 10:42:59 -05003102 lockdep_assert_held(&cgrp->pidlist_mutex);
3103
Ben Blum102a7752009-09-23 15:56:26 -07003104 /*
3105 * If cgroup gets more users after we read count, we won't have
3106 * enough space - tough. This race is indistinguishable to the
3107 * caller from the case that the additional cgroup users didn't
3108 * show up until sometime later on.
3109 */
3110 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003111 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003112 if (!array)
3113 return -ENOMEM;
3114 /* now, populate the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003115 css_task_iter_start(&cgrp->dummy_css, &it);
3116 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003117 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003118 break;
Ben Blum102a7752009-09-23 15:56:26 -07003119 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003120 if (type == CGROUP_FILE_PROCS)
3121 pid = task_tgid_vnr(tsk);
3122 else
3123 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003124 if (pid > 0) /* make sure to only use valid results */
3125 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003126 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003127 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003128 length = n;
3129 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05003130 if (cgroup_sane_behavior(cgrp))
3131 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3132 else
3133 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003134 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003135 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003136
Tejun Heoe6b81712013-11-29 10:42:59 -05003137 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003138 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003139 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003140 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003141 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003142 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003143
3144 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003145 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003146 l->list = array;
3147 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003148 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003149 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003150}
3151
Balbir Singh846c7bb2007-10-18 23:39:44 -07003152/**
Li Zefana043e3b2008-02-23 15:24:09 -08003153 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003154 * @stats: cgroupstats to fill information into
3155 * @dentry: A dentry entry belonging to the cgroup for which stats have
3156 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003157 *
3158 * Build and fill cgroupstats so that taskstats can export it to user
3159 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003160 */
3161int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3162{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003163 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003164 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003165 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003166 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003167
Tejun Heo2bd59d42014-02-11 11:52:49 -05003168 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3169 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3170 kernfs_type(kn) != KERNFS_DIR)
3171 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003172
Tejun Heo2bd59d42014-02-11 11:52:49 -05003173 /*
3174 * We aren't being called from kernfs and there's no guarantee on
3175 * @kn->priv's validity. For this and css_tryget_from_dir(),
3176 * @kn->priv is RCU safe. Let's do the RCU dancing.
3177 */
3178 rcu_read_lock();
3179 cgrp = rcu_dereference(kn->priv);
3180 if (!cgrp) {
3181 rcu_read_unlock();
3182 return -ENOENT;
3183 }
Balbir Singh846c7bb2007-10-18 23:39:44 -07003184
Tejun Heo72ec7022013-08-08 20:11:26 -04003185 css_task_iter_start(&cgrp->dummy_css, &it);
3186 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003187 switch (tsk->state) {
3188 case TASK_RUNNING:
3189 stats->nr_running++;
3190 break;
3191 case TASK_INTERRUPTIBLE:
3192 stats->nr_sleeping++;
3193 break;
3194 case TASK_UNINTERRUPTIBLE:
3195 stats->nr_uninterruptible++;
3196 break;
3197 case TASK_STOPPED:
3198 stats->nr_stopped++;
3199 break;
3200 default:
3201 if (delayacct_is_task_waiting_on_io(tsk))
3202 stats->nr_io_wait++;
3203 break;
3204 }
3205 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003206 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003207
Tejun Heo2bd59d42014-02-11 11:52:49 -05003208 rcu_read_unlock();
3209 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003210}
3211
Paul Menage8f3ff202009-09-23 15:56:25 -07003212
Paul Menagecc31edc2008-10-18 20:28:04 -07003213/*
Ben Blum102a7752009-09-23 15:56:26 -07003214 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003215 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003216 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003217 */
3218
Ben Blum102a7752009-09-23 15:56:26 -07003219static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003220{
3221 /*
3222 * Initially we receive a position value that corresponds to
3223 * one more than the last pid shown (or 0 on the first call or
3224 * after a seek to the start). Use a binary-search to find the
3225 * next pid to display, if any
3226 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003227 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003228 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003229 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003230 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003231 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003232 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003233
Tejun Heo4bac00d2013-11-29 10:42:59 -05003234 mutex_lock(&cgrp->pidlist_mutex);
3235
3236 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003237 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003238 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003239 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003240 * could already have been destroyed.
3241 */
Tejun Heo5d224442013-12-05 12:28:04 -05003242 if (of->priv)
3243 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003244
3245 /*
3246 * Either this is the first start() after open or the matching
3247 * pidlist has been destroyed inbetween. Create a new one.
3248 */
Tejun Heo5d224442013-12-05 12:28:04 -05003249 if (!of->priv) {
3250 ret = pidlist_array_load(cgrp, type,
3251 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003252 if (ret)
3253 return ERR_PTR(ret);
3254 }
Tejun Heo5d224442013-12-05 12:28:04 -05003255 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003256
Paul Menagecc31edc2008-10-18 20:28:04 -07003257 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003258 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003259
Paul Menagecc31edc2008-10-18 20:28:04 -07003260 while (index < end) {
3261 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003262 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003263 index = mid;
3264 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003265 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003266 index = mid + 1;
3267 else
3268 end = mid;
3269 }
3270 }
3271 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003272 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003273 return NULL;
3274 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003275 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003276 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003277 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003278}
3279
Ben Blum102a7752009-09-23 15:56:26 -07003280static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003281{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003282 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003283 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05003284
Tejun Heo5d224442013-12-05 12:28:04 -05003285 if (l)
3286 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05003287 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05003288 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003289}
3290
Ben Blum102a7752009-09-23 15:56:26 -07003291static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003292{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003293 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003294 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07003295 pid_t *p = v;
3296 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003297 /*
3298 * Advance to the next pid in the array. If this goes off the
3299 * end, we're done
3300 */
3301 p++;
3302 if (p >= end) {
3303 return NULL;
3304 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05003305 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07003306 return p;
3307 }
3308}
3309
Ben Blum102a7752009-09-23 15:56:26 -07003310static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003311{
3312 return seq_printf(s, "%d\n", *(int *)v);
3313}
3314
Ben Blum102a7752009-09-23 15:56:26 -07003315/*
3316 * seq_operations functions for iterating on pidlists through seq_file -
3317 * independent of whether it's tasks or procs
3318 */
3319static const struct seq_operations cgroup_pidlist_seq_operations = {
3320 .start = cgroup_pidlist_start,
3321 .stop = cgroup_pidlist_stop,
3322 .next = cgroup_pidlist_next,
3323 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003324};
3325
Tejun Heo182446d2013-08-08 20:11:24 -04003326static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3327 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003328{
Tejun Heo182446d2013-08-08 20:11:24 -04003329 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003330}
3331
Tejun Heo182446d2013-08-08 20:11:24 -04003332static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3333 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003334{
Tejun Heo182446d2013-08-08 20:11:24 -04003335 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003336 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003337 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003338 else
Tejun Heo182446d2013-08-08 20:11:24 -04003339 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003340 return 0;
3341}
3342
Tejun Heo182446d2013-08-08 20:11:24 -04003343static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3344 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003345{
Tejun Heo182446d2013-08-08 20:11:24 -04003346 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003347}
3348
Tejun Heo182446d2013-08-08 20:11:24 -04003349static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
3350 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003351{
3352 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003353 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003354 else
Tejun Heo182446d2013-08-08 20:11:24 -04003355 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003356 return 0;
3357}
3358
Tejun Heod5c56ce2013-06-03 19:14:34 -07003359static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07003360 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07003361 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05003362 .seq_start = cgroup_pidlist_start,
3363 .seq_next = cgroup_pidlist_next,
3364 .seq_stop = cgroup_pidlist_stop,
3365 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003366 .private = CGROUP_FILE_PROCS,
Ben Blum74a11662011-05-26 16:25:20 -07003367 .write_u64 = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07003368 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003369 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003370 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07003371 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07003372 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07003373 .read_u64 = cgroup_clone_children_read,
3374 .write_u64 = cgroup_clone_children_write,
3375 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003376 {
Tejun Heo873fe092013-04-14 20:15:26 -07003377 .name = "cgroup.sane_behavior",
3378 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003379 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07003380 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07003381
3382 /*
3383 * Historical crazy stuff. These don't have "cgroup." prefix and
3384 * don't exist if sane_behavior. If you're depending on these, be
3385 * prepared to be burned.
3386 */
3387 {
3388 .name = "tasks",
3389 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05003390 .seq_start = cgroup_pidlist_start,
3391 .seq_next = cgroup_pidlist_next,
3392 .seq_stop = cgroup_pidlist_stop,
3393 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003394 .private = CGROUP_FILE_TASKS,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003395 .write_u64 = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003396 .mode = S_IRUGO | S_IWUSR,
3397 },
3398 {
3399 .name = "notify_on_release",
3400 .flags = CFTYPE_INSANE,
3401 .read_u64 = cgroup_read_notify_on_release,
3402 .write_u64 = cgroup_write_notify_on_release,
3403 },
Tejun Heo873fe092013-04-14 20:15:26 -07003404 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07003405 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07003406 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003407 .seq_show = cgroup_release_agent_show,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003408 .write_string = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05003409 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003410 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003411 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003412};
3413
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003414/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07003415 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003416 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003417 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07003418 *
3419 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003420 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07003421static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003422{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003423 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07003424 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003425
Tejun Heo8e3f6542012-04-01 12:09:55 -07003426 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07003427 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05003428 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07003429
3430 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003431 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003432
Tejun Heo0adb0702014-02-12 09:29:48 -05003433 list_for_each_entry(cfts, &ss->cfts, node) {
3434 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07003435 if (ret < 0)
3436 goto err;
3437 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003438 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003439 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07003440err:
3441 cgroup_clear_dir(cgrp, subsys_mask);
3442 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003443}
3444
Tejun Heo0c21ead2013-08-13 20:22:51 -04003445/*
3446 * css destruction is four-stage process.
3447 *
3448 * 1. Destruction starts. Killing of the percpu_ref is initiated.
3449 * Implemented in kill_css().
3450 *
3451 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
3452 * and thus css_tryget() is guaranteed to fail, the css can be offlined
3453 * by invoking offline_css(). After offlining, the base ref is put.
3454 * Implemented in css_killed_work_fn().
3455 *
3456 * 3. When the percpu_ref reaches zero, the only possible remaining
3457 * accessors are inside RCU read sections. css_release() schedules the
3458 * RCU callback.
3459 *
3460 * 4. After the grace period, the css can be freed. Implemented in
3461 * css_free_work_fn().
3462 *
3463 * It is actually hairier because both step 2 and 4 require process context
3464 * and thus involve punting to css->destroy_work adding two additional
3465 * steps to the already complex sequence.
3466 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04003467static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07003468{
3469 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04003470 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003471 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003472
Tejun Heo0ae78e02013-08-13 11:01:54 -04003473 if (css->parent)
3474 css_put(css->parent);
3475
Tejun Heo0c21ead2013-08-13 20:22:51 -04003476 css->ss->css_free(css);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003477 cgroup_put(cgrp);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003478}
3479
3480static void css_free_rcu_fn(struct rcu_head *rcu_head)
3481{
3482 struct cgroup_subsys_state *css =
3483 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
3484
Tejun Heo0c21ead2013-08-13 20:22:51 -04003485 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003486 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07003487}
3488
Tejun Heod3daf282013-06-13 19:39:16 -07003489static void css_release(struct percpu_ref *ref)
3490{
3491 struct cgroup_subsys_state *css =
3492 container_of(ref, struct cgroup_subsys_state, refcnt);
3493
Tejun Heoaec25022014-02-08 10:36:58 -05003494 rcu_assign_pointer(css->cgroup->subsys[css->ss->id], NULL);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003495 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003496}
3497
Tejun Heo623f9262013-08-13 11:01:55 -04003498static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss,
3499 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003500{
Paul Menagebd89aab2007-10-18 23:40:44 -07003501 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04003502 css->ss = ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003503 css->flags = 0;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003504
Tejun Heo0ae78e02013-08-13 11:01:54 -04003505 if (cgrp->parent)
Tejun Heoca8bdca2013-08-26 18:40:56 -04003506 css->parent = cgroup_css(cgrp->parent, ss);
Tejun Heo0ae78e02013-08-13 11:01:54 -04003507 else
Paul Menageddbcc7e2007-10-18 23:39:30 -07003508 css->flags |= CSS_ROOT;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003509
Tejun Heoca8bdca2013-08-26 18:40:56 -04003510 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003511}
3512
Li Zefan2a4ac632013-07-31 16:16:40 +08003513/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04003514static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003515{
Tejun Heo623f9262013-08-13 11:01:55 -04003516 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08003517 int ret = 0;
3518
Tejun Heoace2bee2014-02-11 11:52:47 -05003519 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003520 lockdep_assert_held(&cgroup_mutex);
3521
Tejun Heo92fb9742012-11-19 08:13:38 -08003522 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04003523 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003524 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04003525 css->flags |= CSS_ONLINE;
Tejun Heof20104d2013-08-13 20:22:50 -04003526 css->cgroup->nr_css++;
Tejun Heoaec25022014-02-08 10:36:58 -05003527 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003528 }
Tejun Heob1929db2012-11-19 08:13:38 -08003529 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003530}
3531
Li Zefan2a4ac632013-07-31 16:16:40 +08003532/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04003533static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003534{
Tejun Heo623f9262013-08-13 11:01:55 -04003535 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003536
Tejun Heoace2bee2014-02-11 11:52:47 -05003537 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003538 lockdep_assert_held(&cgroup_mutex);
3539
3540 if (!(css->flags & CSS_ONLINE))
3541 return;
3542
Li Zefand7eeac12013-03-12 15:35:59 -07003543 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04003544 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003545
Tejun Heoeb954192013-08-08 20:11:23 -04003546 css->flags &= ~CSS_ONLINE;
Tejun Heo09a503ea2013-08-13 20:22:50 -04003547 css->cgroup->nr_css--;
Tejun Heoaec25022014-02-08 10:36:58 -05003548 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003549}
3550
Tejun Heoc81c925a2013-12-06 15:11:56 -05003551/**
3552 * create_css - create a cgroup_subsys_state
3553 * @cgrp: the cgroup new css will be associated with
3554 * @ss: the subsys of new css
3555 *
3556 * Create a new css associated with @cgrp - @ss pair. On success, the new
3557 * css is online and installed in @cgrp with all interface files created.
3558 * Returns 0 on success, -errno on failure.
3559 */
3560static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
3561{
3562 struct cgroup *parent = cgrp->parent;
3563 struct cgroup_subsys_state *css;
3564 int err;
3565
Tejun Heoc81c925a2013-12-06 15:11:56 -05003566 lockdep_assert_held(&cgroup_mutex);
3567
3568 css = ss->css_alloc(cgroup_css(parent, ss));
3569 if (IS_ERR(css))
3570 return PTR_ERR(css);
3571
3572 err = percpu_ref_init(&css->refcnt, css_release);
3573 if (err)
3574 goto err_free;
3575
3576 init_css(css, ss, cgrp);
3577
Tejun Heoaec25022014-02-08 10:36:58 -05003578 err = cgroup_populate_dir(cgrp, 1 << ss->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003579 if (err)
3580 goto err_free;
3581
3582 err = online_css(css);
3583 if (err)
3584 goto err_free;
3585
Tejun Heo59f52962014-02-11 11:52:49 -05003586 cgroup_get(cgrp);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003587 css_get(css->parent);
3588
3589 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
3590 parent->parent) {
3591 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",
3592 current->comm, current->pid, ss->name);
3593 if (!strcmp(ss->name, "memory"))
3594 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
3595 ss->warned_broken_hierarchy = true;
3596 }
3597
3598 return 0;
3599
3600err_free:
3601 percpu_ref_cancel_init(&css->refcnt);
3602 ss->css_free(css);
3603 return err;
3604}
3605
Tejun Heo2bd59d42014-02-11 11:52:49 -05003606/**
Li Zefana043e3b2008-02-23 15:24:09 -08003607 * cgroup_create - create a cgroup
3608 * @parent: cgroup that will be parent of the new cgroup
Tejun Heoe61734c2014-02-12 09:29:50 -05003609 * @name: name of the new cgroup
Tejun Heo2bd59d42014-02-11 11:52:49 -05003610 * @mode: mode to set on new cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07003611 */
Tejun Heoe61734c2014-02-12 09:29:50 -05003612static long cgroup_create(struct cgroup *parent, const char *name,
Tejun Heo2bd59d42014-02-11 11:52:49 -05003613 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003614{
Paul Menagebd89aab2007-10-18 23:40:44 -07003615 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003616 struct cgroupfs_root *root = parent->root;
Tejun Heob58c8992014-02-08 10:26:33 -05003617 int ssid, err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003618 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003619 struct kernfs_node *kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003620
Tejun Heo0a950f62012-11-19 09:02:12 -08003621 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07003622 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3623 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003624 return -ENOMEM;
3625
Tejun Heoace2bee2014-02-11 11:52:47 -05003626 mutex_lock(&cgroup_tree_mutex);
3627
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003628 /*
Tejun Heo976c06b2012-11-05 09:16:59 -08003629 * Only live parents can have children. Note that the liveliness
3630 * check isn't strictly necessary because cgroup_mkdir() and
3631 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
3632 * anyway so that locking is contained inside cgroup proper and we
3633 * don't get nasty surprises if we ever grow another caller.
3634 */
3635 if (!cgroup_lock_live_group(parent)) {
3636 err = -ENODEV;
Tejun Heoace2bee2014-02-11 11:52:47 -05003637 goto err_unlock_tree;
Li Zefan0ab02ca2014-02-11 16:05:46 +08003638 }
3639
3640 /*
3641 * Temporarily set the pointer to NULL, so idr_find() won't return
3642 * a half-baked cgroup.
3643 */
3644 cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL);
3645 if (cgrp->id < 0) {
3646 err = -ENOMEM;
3647 goto err_unlock;
Tejun Heo976c06b2012-11-05 09:16:59 -08003648 }
3649
Paul Menagecc31edc2008-10-18 20:28:04 -07003650 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003651
Paul Menagebd89aab2007-10-18 23:40:44 -07003652 cgrp->parent = parent;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003653 cgrp->dummy_css.parent = &parent->dummy_css;
Paul Menagebd89aab2007-10-18 23:40:44 -07003654 cgrp->root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003655
Li Zefanb6abdb02008-03-04 14:28:19 -08003656 if (notify_on_release(parent))
3657 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3658
Tejun Heo2260e7f2012-11-19 08:13:38 -08003659 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
3660 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003661
Tejun Heo2bd59d42014-02-11 11:52:49 -05003662 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05003663 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003664 if (IS_ERR(kn)) {
3665 err = PTR_ERR(kn);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003666 goto err_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003667 }
3668 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003669
Tejun Heo6f305582014-02-12 09:29:50 -05003670 /*
3671 * This extra ref will be put in cgroup_free_fn() and guarantees
3672 * that @cgrp->kn is always accessible.
3673 */
3674 kernfs_get(kn);
3675
Tejun Heo00356bd2013-06-18 11:14:22 -07003676 cgrp->serial_nr = cgroup_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09003677
Tejun Heo4e139af2012-11-19 08:13:36 -08003678 /* allocation complete, commit to creation */
Tejun Heo4e139af2012-11-19 08:13:36 -08003679 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05003680 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05003681 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08003682
Tejun Heo0d802552013-12-06 15:11:56 -05003683 /*
3684 * @cgrp is now fully operational. If something fails after this
3685 * point, it'll be released via the normal destruction path.
3686 */
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003687 idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
3688
Tejun Heo2bb566c2013-08-08 20:11:23 -04003689 err = cgroup_addrm_files(cgrp, cgroup_base_files, true);
Tejun Heo628f7cd2013-06-28 16:24:11 -07003690 if (err)
3691 goto err_destroy;
3692
Tejun Heo9d403e92013-12-06 15:11:56 -05003693 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05003694 for_each_subsys(ss, ssid) {
3695 if (root->subsys_mask & (1 << ssid)) {
3696 err = create_css(cgrp, ss);
3697 if (err)
3698 goto err_destroy;
3699 }
Tejun Heoa8638032012-11-09 09:12:29 -08003700 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003701
Tejun Heo2bd59d42014-02-11 11:52:49 -05003702 kernfs_activate(kn);
3703
Paul Menageddbcc7e2007-10-18 23:39:30 -07003704 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003705 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003706
3707 return 0;
3708
Tejun Heo0a950f62012-11-19 09:02:12 -08003709err_free_id:
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003710 idr_remove(&root->cgroup_idr, cgrp->id);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003711err_unlock:
3712 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003713err_unlock_tree:
3714 mutex_unlock(&cgroup_tree_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003715 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003716 return err;
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003717
3718err_destroy:
3719 cgroup_destroy_locked(cgrp);
3720 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003721 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003722 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003723}
3724
Tejun Heo2bd59d42014-02-11 11:52:49 -05003725static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
3726 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003727{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003728 struct cgroup *parent = parent_kn->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003729
Tejun Heo2bd59d42014-02-11 11:52:49 -05003730 return cgroup_create(parent, name, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003731}
3732
Tejun Heo223dbc32013-08-13 20:22:50 -04003733/*
3734 * This is called when the refcnt of a css is confirmed to be killed.
3735 * css_tryget() is now guaranteed to fail.
3736 */
3737static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07003738{
Tejun Heo223dbc32013-08-13 20:22:50 -04003739 struct cgroup_subsys_state *css =
3740 container_of(work, struct cgroup_subsys_state, destroy_work);
3741 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07003742
Tejun Heoace2bee2014-02-11 11:52:47 -05003743 mutex_lock(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003744 mutex_lock(&cgroup_mutex);
3745
3746 /*
Tejun Heo09a503ea2013-08-13 20:22:50 -04003747 * css_tryget() is guaranteed to fail now. Tell subsystems to
3748 * initate destruction.
3749 */
3750 offline_css(css);
3751
3752 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003753 * If @cgrp is marked dead, it's waiting for refs of all css's to
3754 * be disabled before proceeding to the second phase of cgroup
3755 * destruction. If we are the last one, kick it off.
3756 */
Tejun Heo09a503ea2013-08-13 20:22:50 -04003757 if (!cgrp->nr_css && cgroup_is_dead(cgrp))
Tejun Heof20104d2013-08-13 20:22:50 -04003758 cgroup_destroy_css_killed(cgrp);
3759
3760 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003761 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04003762
3763 /*
3764 * Put the css refs from kill_css(). Each css holds an extra
3765 * reference to the cgroup's dentry and cgroup removal proceeds
3766 * regardless of css refs. On the last put of each css, whenever
3767 * that may be, the extra dentry ref is put so that dentry
3768 * destruction happens only after all css's are released.
3769 */
3770 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07003771}
3772
Tejun Heo223dbc32013-08-13 20:22:50 -04003773/* css kill confirmation processing requires process context, bounce */
3774static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07003775{
3776 struct cgroup_subsys_state *css =
3777 container_of(ref, struct cgroup_subsys_state, refcnt);
3778
Tejun Heo223dbc32013-08-13 20:22:50 -04003779 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003780 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07003781}
3782
3783/**
Tejun Heoedae0c32013-08-13 20:22:51 -04003784 * kill_css - destroy a css
3785 * @css: css to destroy
3786 *
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003787 * This function initiates destruction of @css by removing cgroup interface
3788 * files and putting its base reference. ->css_offline() will be invoked
3789 * asynchronously once css_tryget() is guaranteed to fail and when the
3790 * reference count reaches zero, @css will be released.
Tejun Heoedae0c32013-08-13 20:22:51 -04003791 */
3792static void kill_css(struct cgroup_subsys_state *css)
3793{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003794 /*
3795 * This must happen before css is disassociated with its cgroup.
3796 * See seq_css() for details.
3797 */
Tejun Heoaec25022014-02-08 10:36:58 -05003798 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003799
Tejun Heoedae0c32013-08-13 20:22:51 -04003800 /*
3801 * Killing would put the base ref, but we need to keep it alive
3802 * until after ->css_offline().
3803 */
3804 css_get(css);
3805
3806 /*
3807 * cgroup core guarantees that, by the time ->css_offline() is
3808 * invoked, no new css reference will be given out via
3809 * css_tryget(). We can't simply call percpu_ref_kill() and
3810 * proceed to offlining css's because percpu_ref_kill() doesn't
3811 * guarantee that the ref is seen as killed on all CPUs on return.
3812 *
3813 * Use percpu_ref_kill_and_confirm() to get notifications as each
3814 * css is confirmed to be seen as killed on all CPUs.
3815 */
3816 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003817}
3818
3819/**
3820 * cgroup_destroy_locked - the first stage of cgroup destruction
3821 * @cgrp: cgroup to be destroyed
3822 *
3823 * css's make use of percpu refcnts whose killing latency shouldn't be
3824 * exposed to userland and are RCU protected. Also, cgroup core needs to
3825 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
3826 * invoked. To satisfy all the requirements, destruction is implemented in
3827 * the following two steps.
3828 *
3829 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
3830 * userland visible parts and start killing the percpu refcnts of
3831 * css's. Set up so that the next stage will be kicked off once all
3832 * the percpu refcnts are confirmed to be killed.
3833 *
3834 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
3835 * rest of destruction. Once all cgroup references are gone, the
3836 * cgroup is RCU-freed.
3837 *
3838 * This function implements s1. After this step, @cgrp is gone as far as
3839 * the userland is concerned and a new cgroup with the same name may be
3840 * created. As cgroup doesn't care about the names internally, this
3841 * doesn't cause any problem.
3842 */
Tejun Heo42809dd2012-11-19 08:13:37 -08003843static int cgroup_destroy_locked(struct cgroup *cgrp)
3844 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003845{
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003846 struct cgroup *child;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003847 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07003848 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05003849 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003850
Tejun Heoace2bee2014-02-11 11:52:47 -05003851 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003852 lockdep_assert_held(&cgroup_mutex);
3853
Tejun Heoddd69142013-06-12 21:04:54 -07003854 /*
Tejun Heo6f3d828f02013-06-12 21:04:55 -07003855 * css_set_lock synchronizes access to ->cset_links and prevents
3856 * @cgrp from being removed while __put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07003857 */
3858 read_lock(&css_set_lock);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003859 empty = list_empty(&cgrp->cset_links);
Tejun Heoddd69142013-06-12 21:04:54 -07003860 read_unlock(&css_set_lock);
3861 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003862 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08003863
Tejun Heo1a90dd52012-11-05 09:16:59 -08003864 /*
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003865 * Make sure there's no live children. We can't test ->children
3866 * emptiness as dead children linger on it while being destroyed;
3867 * otherwise, "rmdir parent/child parent" may fail with -EBUSY.
3868 */
3869 empty = true;
3870 rcu_read_lock();
3871 list_for_each_entry_rcu(child, &cgrp->children, sibling) {
3872 empty = cgroup_is_dead(child);
3873 if (!empty)
3874 break;
3875 }
3876 rcu_read_unlock();
3877 if (!empty)
3878 return -EBUSY;
3879
3880 /*
Tejun Heoedae0c32013-08-13 20:22:51 -04003881 * Initiate massacre of all css's. cgroup_destroy_css_killed()
3882 * will be invoked to perform the rest of destruction once the
Tejun Heo4ac06012014-02-11 11:52:47 -05003883 * percpu refs of all css's are confirmed to be killed. This
3884 * involves removing the subsystem's files, drop cgroup_mutex.
Tejun Heo1a90dd52012-11-05 09:16:59 -08003885 */
Tejun Heo4ac06012014-02-11 11:52:47 -05003886 mutex_unlock(&cgroup_mutex);
Tejun Heo1c6727a2013-12-06 15:11:56 -05003887 for_each_css(css, ssid, cgrp)
3888 kill_css(css);
Tejun Heo4ac06012014-02-11 11:52:47 -05003889 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07003890
3891 /*
3892 * Mark @cgrp dead. This prevents further task migration and child
3893 * creation by disabling cgroup_lock_live_group(). Note that
Tejun Heo492eb212013-08-08 20:11:25 -04003894 * CGRP_DEAD assertion is depended upon by css_next_child() to
Tejun Heo455050d2013-06-13 19:27:41 -07003895 * resume iteration after dropping RCU read lock. See
Tejun Heo492eb212013-08-08 20:11:25 -04003896 * css_next_child() for details.
Tejun Heo455050d2013-06-13 19:27:41 -07003897 */
Tejun Heo54766d42013-06-12 21:04:53 -07003898 set_bit(CGRP_DEAD, &cgrp->flags);
Tejun Heo1a90dd52012-11-05 09:16:59 -08003899
Tejun Heo455050d2013-06-13 19:27:41 -07003900 /* CGRP_DEAD is set, remove from ->release_list for the last time */
3901 raw_spin_lock(&release_list_lock);
3902 if (!list_empty(&cgrp->release_list))
3903 list_del_init(&cgrp->release_list);
3904 raw_spin_unlock(&release_list_lock);
3905
3906 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003907 * If @cgrp has css's attached, the second stage of cgroup
3908 * destruction is kicked off from css_killed_work_fn() after the
3909 * refs of all attached css's are killed. If @cgrp doesn't have
3910 * any css, we kick it off here.
Tejun Heo455050d2013-06-13 19:27:41 -07003911 */
Tejun Heof20104d2013-08-13 20:22:50 -04003912 if (!cgrp->nr_css)
3913 cgroup_destroy_css_killed(cgrp);
3914
Tejun Heo2bd59d42014-02-11 11:52:49 -05003915 /* remove @cgrp directory along with the base files */
Tejun Heo4ac06012014-02-11 11:52:47 -05003916 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003917
3918 /*
3919 * There are two control paths which try to determine cgroup from
3920 * dentry without going through kernfs - cgroupstats_build() and
3921 * css_tryget_from_dir(). Those are supported by RCU protecting
3922 * clearing of cgrp->kn->priv backpointer, which should happen
3923 * after all files under it have been removed.
3924 */
Tejun Heo6f305582014-02-12 09:29:50 -05003925 kernfs_remove(cgrp->kn); /* @cgrp has an extra ref on its kn */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003926 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003927
Tejun Heo4ac06012014-02-11 11:52:47 -05003928 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07003929
Tejun Heoea15f8c2013-06-13 19:27:42 -07003930 return 0;
3931};
3932
Tejun Heod3daf282013-06-13 19:39:16 -07003933/**
Tejun Heof20104d2013-08-13 20:22:50 -04003934 * cgroup_destroy_css_killed - the second step of cgroup destruction
Tejun Heod3daf282013-06-13 19:39:16 -07003935 * @work: cgroup->destroy_free_work
3936 *
3937 * This function is invoked from a work item for a cgroup which is being
Tejun Heo09a503ea2013-08-13 20:22:50 -04003938 * destroyed after all css's are offlined and performs the rest of
3939 * destruction. This is the second step of destruction described in the
3940 * comment above cgroup_destroy_locked().
Tejun Heod3daf282013-06-13 19:39:16 -07003941 */
Tejun Heof20104d2013-08-13 20:22:50 -04003942static void cgroup_destroy_css_killed(struct cgroup *cgrp)
Tejun Heoea15f8c2013-06-13 19:27:42 -07003943{
Tejun Heoea15f8c2013-06-13 19:27:42 -07003944 struct cgroup *parent = cgrp->parent;
Tejun Heoea15f8c2013-06-13 19:27:42 -07003945
Tejun Heoace2bee2014-02-11 11:52:47 -05003946 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003947 lockdep_assert_held(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003948
Paul Menage999cd8a2009-01-07 18:08:36 -08003949 /* delete this cgroup from parent->children */
Tejun Heoeb6fd502012-11-09 09:12:29 -08003950 list_del_rcu(&cgrp->sibling);
Tejun Heob0ca5a82012-04-01 12:09:54 -07003951
Tejun Heo59f52962014-02-11 11:52:49 -05003952 cgroup_put(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003953
Paul Menagebd89aab2007-10-18 23:40:44 -07003954 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003955 check_for_release(parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003956}
3957
Tejun Heo2bd59d42014-02-11 11:52:49 -05003958static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08003959{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003960 struct cgroup *cgrp = kn->priv;
3961 int ret = 0;
3962
3963 /*
3964 * This is self-destruction but @kn can't be removed while this
3965 * callback is in progress. Let's break active protection. Once
3966 * the protection is broken, @cgrp can be destroyed at any point.
3967 * Pin it so that it stays accessible.
3968 */
3969 cgroup_get(cgrp);
3970 kernfs_break_active_protection(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08003971
Tejun Heoace2bee2014-02-11 11:52:47 -05003972 mutex_lock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003973 mutex_lock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003974
3975 /*
3976 * @cgrp might already have been destroyed while we're trying to
3977 * grab the mutexes.
3978 */
3979 if (!cgroup_is_dead(cgrp))
3980 ret = cgroup_destroy_locked(cgrp);
3981
Tejun Heo42809dd2012-11-19 08:13:37 -08003982 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003983 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003984
Tejun Heo2bd59d42014-02-11 11:52:49 -05003985 kernfs_unbreak_active_protection(kn);
3986 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08003987 return ret;
3988}
3989
Tejun Heo2bd59d42014-02-11 11:52:49 -05003990static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
3991 .remount_fs = cgroup_remount,
3992 .show_options = cgroup_show_options,
3993 .mkdir = cgroup_mkdir,
3994 .rmdir = cgroup_rmdir,
3995 .rename = cgroup_rename,
3996};
3997
Li Zefan06a11922008-04-29 01:00:07 -07003998static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003999{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004000 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004001
4002 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004003
Tejun Heoace2bee2014-02-11 11:52:47 -05004004 mutex_lock(&cgroup_tree_mutex);
Tejun Heo648bb562012-11-19 08:13:36 -08004005 mutex_lock(&cgroup_mutex);
4006
Tejun Heo0adb0702014-02-12 09:29:48 -05004007 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004008
Paul Menageddbcc7e2007-10-18 23:39:30 -07004009 /* Create the top cgroup state for this subsystem */
Tejun Heo9871bf92013-06-24 15:21:47 -07004010 ss->root = &cgroup_dummy_root;
Tejun Heoca8bdca2013-08-26 18:40:56 -04004011 css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004012 /* We don't handle early failures gracefully */
4013 BUG_ON(IS_ERR(css));
Tejun Heo623f9262013-08-13 11:01:55 -04004014 init_css(css, ss, cgroup_dummy_top);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004015
Li Zefane8d55fd2008-04-29 01:00:13 -07004016 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004017 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004018 * newly registered, all tasks and hence the
4019 * init_css_set is in the subsystem's top cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004020 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004021
4022 need_forkexit_callback |= ss->fork || ss->exit;
4023
Li Zefane8d55fd2008-04-29 01:00:13 -07004024 /* At system boot, before all subsystems have been
4025 * registered, no tasks have been forked, so we don't
4026 * need to invoke fork callbacks here. */
4027 BUG_ON(!list_empty(&init_task.tasks));
4028
Tejun Heoae7f1642013-08-13 20:22:50 -04004029 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004030
Tejun Heo648bb562012-11-19 08:13:36 -08004031 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004032 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004033}
4034
4035/**
Li Zefana043e3b2008-02-23 15:24:09 -08004036 * cgroup_init_early - cgroup initialization at system boot
4037 *
4038 * Initialize cgroups at system boot, and initialize any
4039 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004040 */
4041int __init cgroup_init_early(void)
4042{
Tejun Heo30159ec2013-06-25 11:53:37 -07004043 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004044 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004045
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004046 atomic_set(&init_css_set.refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07004047 INIT_LIST_HEAD(&init_css_set.cgrp_links);
Paul Menage817929e2007-10-18 23:39:36 -07004048 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004049 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004050 css_set_count = 1;
Tejun Heo9871bf92013-06-24 15:21:47 -07004051 init_cgroup_root(&cgroup_dummy_root);
4052 cgroup_root_count = 1;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004053 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004054
Tejun Heo69d02062013-06-12 21:04:50 -07004055 init_cgrp_cset_link.cset = &init_css_set;
Tejun Heo9871bf92013-06-24 15:21:47 -07004056 init_cgrp_cset_link.cgrp = cgroup_dummy_top;
4057 list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -07004058 list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004059
Tejun Heo3ed80a62014-02-08 10:36:58 -05004060 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004061 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004062 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4063 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004064 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004065 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4066 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
4067
Tejun Heoaec25022014-02-08 10:36:58 -05004068 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004069 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004070
4071 if (ss->early_init)
4072 cgroup_init_subsys(ss);
4073 }
4074 return 0;
4075}
4076
4077/**
Li Zefana043e3b2008-02-23 15:24:09 -08004078 * cgroup_init - cgroup initialization
4079 *
4080 * Register cgroup filesystem and /proc file, and initialize
4081 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004082 */
4083int __init cgroup_init(void)
4084{
Tejun Heo30159ec2013-06-25 11:53:37 -07004085 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004086 unsigned long key;
Tejun Heo30159ec2013-06-25 11:53:37 -07004087 int i, err;
Paul Menagea4243162007-10-18 23:39:35 -07004088
Tejun Heo2bd59d42014-02-11 11:52:49 -05004089 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Tejun Heo2da440a2014-02-11 11:52:48 -05004090
Tejun Heo3ed80a62014-02-08 10:36:58 -05004091 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004092 if (!ss->early_init)
4093 cgroup_init_subsys(ss);
Tejun Heode00ffa2014-02-11 11:52:48 -05004094
4095 /*
4096 * cftype registration needs kmalloc and can't be done
4097 * during early_init. Register base cftypes separately.
4098 */
4099 if (ss->base_cftypes)
4100 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004101 }
4102
Tejun Heofa3ca072013-04-14 11:36:56 -07004103 /* allocate id for the dummy hierarchy */
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004104 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004105
Tejun Heo82fe9b02013-06-25 11:53:37 -07004106 /* Add init_css_set to the hash table */
4107 key = css_set_hash(init_css_set.subsys);
4108 hash_add(css_set_table, &init_css_set.hlist, key);
4109
Tejun Heofc76df72013-06-25 11:53:37 -07004110 BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1));
Greg KH676db4a2010-08-05 13:53:35 -07004111
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004112 err = idr_alloc(&cgroup_dummy_root.cgroup_idr, cgroup_dummy_top,
4113 0, 1, GFP_KERNEL);
4114 BUG_ON(err < 0);
4115
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004116 mutex_unlock(&cgroup_mutex);
4117
Greg KH676db4a2010-08-05 13:53:35 -07004118 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004119 if (!cgroup_kobj)
4120 return -ENOMEM;
Greg KH676db4a2010-08-05 13:53:35 -07004121
4122 err = register_filesystem(&cgroup_fs_type);
4123 if (err < 0) {
4124 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004125 return err;
Greg KH676db4a2010-08-05 13:53:35 -07004126 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004127
Li Zefan46ae2202008-04-29 01:00:08 -07004128 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004129 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004130}
Paul Menageb4f48b62007-10-18 23:39:33 -07004131
Tejun Heoe5fca242013-11-22 17:14:39 -05004132static int __init cgroup_wq_init(void)
4133{
4134 /*
4135 * There isn't much point in executing destruction path in
4136 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08004137 *
4138 * XXX: Must be ordered to make sure parent is offlined after
4139 * children. The ordering requirement is for memcg where a
4140 * parent's offline may wait for a child's leading to deadlock. In
4141 * the long term, this should be fixed from memcg side.
Tejun Heoe5fca242013-11-22 17:14:39 -05004142 *
4143 * We would prefer to do this in cgroup_init() above, but that
4144 * is called before init_workqueues(): so leave this until after.
4145 */
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08004146 cgroup_destroy_wq = alloc_ordered_workqueue("cgroup_destroy", 0);
Tejun Heoe5fca242013-11-22 17:14:39 -05004147 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004148
4149 /*
4150 * Used to destroy pidlists and separate to serve as flush domain.
4151 * Cap @max_active to 1 too.
4152 */
4153 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4154 0, 1);
4155 BUG_ON(!cgroup_pidlist_destroy_wq);
4156
Tejun Heoe5fca242013-11-22 17:14:39 -05004157 return 0;
4158}
4159core_initcall(cgroup_wq_init);
4160
Paul Menagea4243162007-10-18 23:39:35 -07004161/*
4162 * proc_cgroup_show()
4163 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4164 * - Used for /proc/<pid>/cgroup.
4165 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4166 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004167 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004168 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4169 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4170 * cgroup to top_cgroup.
4171 */
4172
4173/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004174int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004175{
4176 struct pid *pid;
4177 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05004178 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07004179 int retval;
4180 struct cgroupfs_root *root;
4181
4182 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05004183 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07004184 if (!buf)
4185 goto out;
4186
4187 retval = -ESRCH;
4188 pid = m->private;
4189 tsk = get_pid_task(pid, PIDTYPE_PID);
4190 if (!tsk)
4191 goto out_free;
4192
4193 retval = 0;
4194
4195 mutex_lock(&cgroup_mutex);
4196
Li Zefane5f6a862009-01-07 18:07:41 -08004197 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004198 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004199 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004200 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004201
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004202 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004203 for_each_subsys(ss, ssid)
4204 if (root->subsys_mask & (1 << ssid))
4205 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004206 if (strlen(root->name))
4207 seq_printf(m, "%sname=%s", count ? "," : "",
4208 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004209 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004210 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05004211 path = cgroup_path(cgrp, buf, PATH_MAX);
4212 if (!path) {
4213 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07004214 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05004215 }
4216 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07004217 seq_putc(m, '\n');
4218 }
4219
4220out_unlock:
4221 mutex_unlock(&cgroup_mutex);
4222 put_task_struct(tsk);
4223out_free:
4224 kfree(buf);
4225out:
4226 return retval;
4227}
4228
Paul Menagea4243162007-10-18 23:39:35 -07004229/* Display information about each subsystem and each hierarchy */
4230static int proc_cgroupstats_show(struct seq_file *m, void *v)
4231{
Tejun Heo30159ec2013-06-25 11:53:37 -07004232 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004233 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004234
Paul Menage8bab8dd2008-04-04 14:29:57 -07004235 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004236 /*
4237 * ideally we don't want subsystems moving around while we do this.
4238 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4239 * subsys/hierarchy state.
4240 */
Paul Menagea4243162007-10-18 23:39:35 -07004241 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004242
4243 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004244 seq_printf(m, "%s\t%d\t%d\t%d\n",
4245 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05004246 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004247
Paul Menagea4243162007-10-18 23:39:35 -07004248 mutex_unlock(&cgroup_mutex);
4249 return 0;
4250}
4251
4252static int cgroupstats_open(struct inode *inode, struct file *file)
4253{
Al Viro9dce07f2008-03-29 03:07:28 +00004254 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004255}
4256
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004257static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004258 .open = cgroupstats_open,
4259 .read = seq_read,
4260 .llseek = seq_lseek,
4261 .release = single_release,
4262};
4263
Paul Menageb4f48b62007-10-18 23:39:33 -07004264/**
4265 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004266 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004267 *
4268 * Description: A task inherits its parent's cgroup at fork().
4269 *
4270 * A pointer to the shared css_set was automatically copied in
4271 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo9bb71302012-10-18 17:52:07 -07004272 * it was not made under the protection of RCU or cgroup_mutex, so
4273 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4274 * have already changed current->cgroups, allowing the previously
4275 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004276 *
4277 * At the point that cgroup_fork() is called, 'current' is the parent
4278 * task, and the passed argument 'child' points to the child task.
4279 */
4280void cgroup_fork(struct task_struct *child)
4281{
Tejun Heo9bb71302012-10-18 17:52:07 -07004282 task_lock(current);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004283 get_css_set(task_css_set(current));
Paul Menage817929e2007-10-18 23:39:36 -07004284 child->cgroups = current->cgroups;
Tejun Heo9bb71302012-10-18 17:52:07 -07004285 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004286 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004287}
4288
4289/**
Li Zefana043e3b2008-02-23 15:24:09 -08004290 * cgroup_post_fork - called on a new task after adding it to the task list
4291 * @child: the task in question
4292 *
Tejun Heo5edee612012-10-16 15:03:14 -07004293 * Adds the task to the list running through its css_set if necessary and
4294 * call the subsystem fork() callbacks. Has to be after the task is
4295 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04004296 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07004297 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004298 */
Paul Menage817929e2007-10-18 23:39:36 -07004299void cgroup_post_fork(struct task_struct *child)
4300{
Tejun Heo30159ec2013-06-25 11:53:37 -07004301 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07004302 int i;
4303
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004304 /*
4305 * use_task_css_set_links is set to 1 before we walk the tasklist
4306 * under the tasklist_lock and we read it here after we added the child
4307 * to the tasklist under the tasklist_lock as well. If the child wasn't
4308 * yet in the tasklist when we walked through it from
4309 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4310 * should be visible now due to the paired locking and barriers implied
4311 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4312 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4313 * lock on fork.
4314 */
Paul Menage817929e2007-10-18 23:39:36 -07004315 if (use_task_css_set_links) {
4316 write_lock(&css_set_lock);
Tejun Heod8783832012-10-18 17:40:30 -07004317 task_lock(child);
4318 if (list_empty(&child->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07004319 list_add(&child->cg_list, &task_css_set(child)->tasks);
Tejun Heod8783832012-10-18 17:40:30 -07004320 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004321 write_unlock(&css_set_lock);
4322 }
Tejun Heo5edee612012-10-16 15:03:14 -07004323
4324 /*
4325 * Call ss->fork(). This must happen after @child is linked on
4326 * css_set; otherwise, @child might change state between ->fork()
4327 * and addition to css_set.
4328 */
4329 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004330 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07004331 if (ss->fork)
4332 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07004333 }
Paul Menage817929e2007-10-18 23:39:36 -07004334}
Tejun Heo5edee612012-10-16 15:03:14 -07004335
Paul Menage817929e2007-10-18 23:39:36 -07004336/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004337 * cgroup_exit - detach cgroup from exiting task
4338 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004339 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004340 *
4341 * Description: Detach cgroup from @tsk and release it.
4342 *
4343 * Note that cgroups marked notify_on_release force every task in
4344 * them to take the global cgroup_mutex mutex when exiting.
4345 * This could impact scaling on very large systems. Be reluctant to
4346 * use notify_on_release cgroups where very high task exit scaling
4347 * is required on large systems.
4348 *
4349 * the_top_cgroup_hack:
4350 *
4351 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4352 *
4353 * We call cgroup_exit() while the task is still competent to
4354 * handle notify_on_release(), then leave the task attached to the
4355 * root cgroup in each hierarchy for the remainder of its exit.
4356 *
4357 * To do this properly, we would increment the reference count on
4358 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4359 * code we would add a second cgroup function call, to drop that
4360 * reference. This would just create an unnecessary hot spot on
4361 * the top_cgroup reference count, to no avail.
4362 *
4363 * Normally, holding a reference to a cgroup without bumping its
4364 * count is unsafe. The cgroup could go away, or someone could
4365 * attach us to a different cgroup, decrementing the count on
4366 * the first cgroup that we never incremented. But in this case,
4367 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004368 * which wards off any cgroup_attach_task() attempts, or task is a failed
4369 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004370 */
4371void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4372{
Tejun Heo30159ec2013-06-25 11:53:37 -07004373 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07004374 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004375 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004376
4377 /*
4378 * Unlink from the css_set task list if necessary.
4379 * Optimistically check cg_list before taking
4380 * css_set_lock
4381 */
4382 if (!list_empty(&tsk->cg_list)) {
4383 write_lock(&css_set_lock);
4384 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004385 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004386 write_unlock(&css_set_lock);
4387 }
4388
Paul Menageb4f48b62007-10-18 23:39:33 -07004389 /* Reassign the task to the init_css_set. */
4390 task_lock(tsk);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004391 cset = task_css_set(tsk);
4392 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004393
4394 if (run_callbacks && need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004395 /* see cgroup_post_fork() for details */
4396 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004397 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04004398 struct cgroup_subsys_state *old_css = cset->subsys[i];
4399 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07004400
Tejun Heoeb954192013-08-08 20:11:23 -04004401 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004402 }
4403 }
4404 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004405 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004406
Tejun Heo5abb8852013-06-12 21:04:49 -07004407 put_css_set_taskexit(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07004408}
Paul Menage697f4162007-10-18 23:39:34 -07004409
Paul Menagebd89aab2007-10-18 23:40:44 -07004410static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004411{
Li Zefanf50daa72013-03-01 15:06:07 +08004412 if (cgroup_is_releasable(cgrp) &&
Tejun Heo6f3d828f02013-06-12 21:04:55 -07004413 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
Li Zefanf50daa72013-03-01 15:06:07 +08004414 /*
4415 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07004416 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08004417 * it now
4418 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004419 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08004420
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004421 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07004422 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07004423 list_empty(&cgrp->release_list)) {
4424 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004425 need_schedule_work = 1;
4426 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004427 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004428 if (need_schedule_work)
4429 schedule_work(&release_agent_work);
4430 }
4431}
4432
Paul Menage81a6a5c2007-10-18 23:39:38 -07004433/*
4434 * Notify userspace when a cgroup is released, by running the
4435 * configured release agent with the name of the cgroup (path
4436 * relative to the root of cgroup file system) as the argument.
4437 *
4438 * Most likely, this user command will try to rmdir this cgroup.
4439 *
4440 * This races with the possibility that some other task will be
4441 * attached to this cgroup before it is removed, or that some other
4442 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4443 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4444 * unused, and this cgroup will be reprieved from its death sentence,
4445 * to continue to serve a useful existence. Next time it's released,
4446 * we will get notified again, if it still has 'notify_on_release' set.
4447 *
4448 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4449 * means only wait until the task is successfully execve()'d. The
4450 * separate release agent task is forked by call_usermodehelper(),
4451 * then control in this thread returns here, without waiting for the
4452 * release agent task. We don't bother to wait because the caller of
4453 * this routine has no use for the exit status of the release agent
4454 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004455 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004456static void cgroup_release_agent(struct work_struct *work)
4457{
4458 BUG_ON(work != &release_agent_work);
4459 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004460 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004461 while (!list_empty(&release_list)) {
4462 char *argv[3], *envp[3];
4463 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05004464 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07004465 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004466 struct cgroup,
4467 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004468 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004469 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05004470 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004471 if (!pathbuf)
4472 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05004473 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
4474 if (!path)
Paul Menagee788e062008-07-25 01:46:59 -07004475 goto continue_free;
4476 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4477 if (!agentbuf)
4478 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004479
4480 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004481 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05004482 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004483 argv[i] = NULL;
4484
4485 i = 0;
4486 /* minimal command environment */
4487 envp[i++] = "HOME=/";
4488 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4489 envp[i] = NULL;
4490
4491 /* Drop the lock while we invoke the usermode helper,
4492 * since the exec could involve hitting disk and hence
4493 * be a slow process */
4494 mutex_unlock(&cgroup_mutex);
4495 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004496 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004497 continue_free:
4498 kfree(pathbuf);
4499 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004500 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004501 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004502 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004503 mutex_unlock(&cgroup_mutex);
4504}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004505
4506static int __init cgroup_disable(char *str)
4507{
Tejun Heo30159ec2013-06-25 11:53:37 -07004508 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004509 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07004510 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004511
4512 while ((token = strsep(&str, ",")) != NULL) {
4513 if (!*token)
4514 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004515
Tejun Heo3ed80a62014-02-08 10:36:58 -05004516 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004517 if (!strcmp(token, ss->name)) {
4518 ss->disabled = 1;
4519 printk(KERN_INFO "Disabling %s control group"
4520 " subsystem\n", ss->name);
4521 break;
4522 }
4523 }
4524 }
4525 return 1;
4526}
4527__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004528
Tejun Heob77d7b62013-08-13 11:01:54 -04004529/**
Tejun Heo5a17f542014-02-11 11:52:47 -05004530 * css_tryget_from_dir - get corresponding css from the dentry of a cgroup dir
Tejun Heo35cf0832013-08-26 18:40:56 -04004531 * @dentry: directory dentry of interest
4532 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04004533 *
Tejun Heo5a17f542014-02-11 11:52:47 -05004534 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
4535 * to get the corresponding css and return it. If such css doesn't exist
4536 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02004537 */
Tejun Heo5a17f542014-02-11 11:52:47 -05004538struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry,
4539 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004540{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004541 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
4542 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004543 struct cgroup *cgrp;
Tejun Heob77d7b62013-08-13 11:01:54 -04004544
Tejun Heo35cf0832013-08-26 18:40:56 -04004545 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004546 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4547 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004548 return ERR_PTR(-EBADF);
4549
Tejun Heo5a17f542014-02-11 11:52:47 -05004550 rcu_read_lock();
4551
Tejun Heo2bd59d42014-02-11 11:52:49 -05004552 /*
4553 * This path doesn't originate from kernfs and @kn could already
4554 * have been or be removed at any point. @kn->priv is RCU
4555 * protected for this access. See destroy_locked() for details.
4556 */
4557 cgrp = rcu_dereference(kn->priv);
4558 if (cgrp)
4559 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05004560
4561 if (!css || !css_tryget(css))
4562 css = ERR_PTR(-ENOENT);
4563
4564 rcu_read_unlock();
4565 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004566}
Stephane Eraniane5d13672011-02-14 11:20:01 +02004567
Li Zefan1cb650b2013-08-19 10:05:24 +08004568/**
4569 * css_from_id - lookup css by id
4570 * @id: the cgroup id
4571 * @ss: cgroup subsys to be looked into
4572 *
4573 * Returns the css if there's valid one with @id, otherwise returns NULL.
4574 * Should be called under rcu_read_lock().
4575 */
4576struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
4577{
4578 struct cgroup *cgrp;
4579
Tejun Heoace2bee2014-02-11 11:52:47 -05004580 cgroup_assert_mutexes_or_rcu_locked();
Li Zefan1cb650b2013-08-19 10:05:24 +08004581
4582 cgrp = idr_find(&ss->root->cgroup_idr, id);
4583 if (cgrp)
Tejun Heod1625962013-08-27 14:27:23 -04004584 return cgroup_css(cgrp, ss);
Li Zefan1cb650b2013-08-19 10:05:24 +08004585 return NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004586}
4587
Paul Menagefe693432009-09-23 15:56:20 -07004588#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04004589static struct cgroup_subsys_state *
4590debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07004591{
4592 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4593
4594 if (!css)
4595 return ERR_PTR(-ENOMEM);
4596
4597 return css;
4598}
4599
Tejun Heoeb954192013-08-08 20:11:23 -04004600static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07004601{
Tejun Heoeb954192013-08-08 20:11:23 -04004602 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07004603}
4604
Tejun Heo182446d2013-08-08 20:11:24 -04004605static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
4606 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004607{
Tejun Heo182446d2013-08-08 20:11:24 -04004608 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07004609}
4610
Tejun Heo182446d2013-08-08 20:11:24 -04004611static u64 current_css_set_read(struct cgroup_subsys_state *css,
4612 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004613{
4614 return (u64)(unsigned long)current->cgroups;
4615}
4616
Tejun Heo182446d2013-08-08 20:11:24 -04004617static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08004618 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004619{
4620 u64 count;
4621
4622 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07004623 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07004624 rcu_read_unlock();
4625 return count;
4626}
4627
Tejun Heo2da8ca82013-12-05 12:28:04 -05004628static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004629{
Tejun Heo69d02062013-06-12 21:04:50 -07004630 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07004631 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05004632 char *name_buf;
4633
4634 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
4635 if (!name_buf)
4636 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07004637
4638 read_lock(&css_set_lock);
4639 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07004640 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07004641 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004642 struct cgroup *c = link->cgrp;
Tejun Heo59f52962014-02-11 11:52:49 -05004643 const char *name = "?";
Paul Menage7717f7b2009-09-23 15:56:22 -07004644
Tejun Heoe61734c2014-02-12 09:29:50 -05004645 if (c != cgroup_dummy_top) {
4646 cgroup_name(c, name_buf, NAME_MAX + 1);
4647 name = name_buf;
4648 }
Tejun Heo59f52962014-02-11 11:52:49 -05004649
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004650 seq_printf(seq, "Root %d group %s\n",
4651 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004652 }
4653 rcu_read_unlock();
4654 read_unlock(&css_set_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05004655 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07004656 return 0;
4657}
4658
4659#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05004660static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004661{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004662 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07004663 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07004664
4665 read_lock(&css_set_lock);
Tejun Heo182446d2013-08-08 20:11:24 -04004666 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07004667 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07004668 struct task_struct *task;
4669 int count = 0;
Tejun Heo5abb8852013-06-12 21:04:49 -07004670 seq_printf(seq, "css_set %p\n", cset);
4671 list_for_each_entry(task, &cset->tasks, cg_list) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004672 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4673 seq_puts(seq, " ...\n");
4674 break;
4675 } else {
4676 seq_printf(seq, " task %d\n",
4677 task_pid_vnr(task));
4678 }
4679 }
4680 }
4681 read_unlock(&css_set_lock);
4682 return 0;
4683}
4684
Tejun Heo182446d2013-08-08 20:11:24 -04004685static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004686{
Tejun Heo182446d2013-08-08 20:11:24 -04004687 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07004688}
4689
4690static struct cftype debug_files[] = {
4691 {
Paul Menagefe693432009-09-23 15:56:20 -07004692 .name = "taskcount",
4693 .read_u64 = debug_taskcount_read,
4694 },
4695
4696 {
4697 .name = "current_css_set",
4698 .read_u64 = current_css_set_read,
4699 },
4700
4701 {
4702 .name = "current_css_set_refcount",
4703 .read_u64 = current_css_set_refcount_read,
4704 },
4705
4706 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004707 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004708 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004709 },
4710
4711 {
4712 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004713 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004714 },
4715
4716 {
Paul Menagefe693432009-09-23 15:56:20 -07004717 .name = "releasable",
4718 .read_u64 = releasable_read,
4719 },
Paul Menagefe693432009-09-23 15:56:20 -07004720
Tejun Heo4baf6e32012-04-01 12:09:55 -07004721 { } /* terminate */
4722};
Paul Menagefe693432009-09-23 15:56:20 -07004723
Tejun Heo073219e2014-02-08 10:36:58 -05004724struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08004725 .css_alloc = debug_css_alloc,
4726 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07004727 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07004728};
4729#endif /* CONFIG_CGROUP_DEBUG */