blob: f4409715a2f59ca1798df2314ebcb0e33db45fb6 [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>
Balbir Singh846c7bb2007-10-18 23:39:44 -070056
Arun Sharma600634972011-07-26 16:09:06 -070057#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070058
Tejun Heoe25e2cb2011-12-12 18:12:21 -080059/*
Tejun Heob1a21362013-11-29 10:42:58 -050060 * pidlists linger the following amount before being destroyed. The goal
61 * is avoiding frequent destruction in the middle of consecutive read calls
62 * Expiring in the middle is a performance problem not a correctness one.
63 * 1 sec should be enough.
64 */
65#define CGROUP_PIDLIST_DESTROY_DELAY HZ
66
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050067#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
68 MAX_CFTYPE_NAME + 2)
69
Tejun Heob1a21362013-11-29 10:42:58 -050070/*
Tejun Heoace2bee2014-02-11 11:52:47 -050071 * cgroup_tree_mutex nests above cgroup_mutex and protects cftypes, file
72 * creation/removal and hierarchy changing operations including cgroup
73 * creation, removal, css association and controller rebinding. This outer
74 * lock is needed mainly to resolve the circular dependency between kernfs
75 * active ref and cgroup_mutex. cgroup_tree_mutex nests above both.
76 */
77static DEFINE_MUTEX(cgroup_tree_mutex);
78
79/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080080 * cgroup_mutex is the master lock. Any modification to cgroup or its
81 * hierarchy must be performed while holding it.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080082 */
Tejun Heo22194492013-04-07 09:29:51 -070083#ifdef CONFIG_PROVE_RCU
84DEFINE_MUTEX(cgroup_mutex);
Tejun Heo8af01f52013-08-08 20:11:22 -040085EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for lockdep */
Tejun Heo22194492013-04-07 09:29:51 -070086#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070087static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo22194492013-04-07 09:29:51 -070088#endif
89
Tejun Heo69e943b2014-02-08 10:36:58 -050090/*
91 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
92 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
93 */
94static DEFINE_SPINLOCK(release_agent_path_lock);
95
Tejun Heoace2bee2014-02-11 11:52:47 -050096#define cgroup_assert_mutexes_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -050097 rcu_lockdep_assert(rcu_read_lock_held() || \
Tejun Heoace2bee2014-02-11 11:52:47 -050098 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo87fb54f2013-12-06 15:11:55 -050099 lockdep_is_held(&cgroup_mutex), \
Tejun Heoace2bee2014-02-11 11:52:47 -0500100 "cgroup_[tree_]mutex or RCU read lock required");
Tejun Heo87fb54f2013-12-06 15:11:55 -0500101
Ben Blumaae8aab2010-03-10 15:22:07 -0800102/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500103 * cgroup destruction makes heavy use of work items and there can be a lot
104 * of concurrent destructions. Use a separate workqueue so that cgroup
105 * destruction work items don't end up filling up max_active of system_wq
106 * which may lead to deadlock.
107 */
108static struct workqueue_struct *cgroup_destroy_wq;
109
110/*
Tejun Heob1a21362013-11-29 10:42:58 -0500111 * pidlist destructions need to be flushed on cgroup destruction. Use a
112 * separate workqueue as flush domain.
113 */
114static struct workqueue_struct *cgroup_pidlist_destroy_wq;
115
Tejun Heo3ed80a62014-02-08 10:36:58 -0500116/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500117#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500118static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700119#include <linux/cgroup_subsys.h>
120};
Tejun Heo073219e2014-02-08 10:36:58 -0500121#undef SUBSYS
122
123/* array of cgroup subsystem names */
124#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
125static const char *cgroup_subsys_name[] = {
126#include <linux/cgroup_subsys.h>
127};
128#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700129
Paul Menageddbcc7e2007-10-18 23:39:30 -0700130/*
Tejun Heo9871bf92013-06-24 15:21:47 -0700131 * The dummy hierarchy, reserved for the subsystems that are otherwise
132 * unattached - it never has more than a single cgroup, and all tasks are
133 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700134 */
Tejun Heo9871bf92013-06-24 15:21:47 -0700135static struct cgroupfs_root cgroup_dummy_root;
136
137/* dummy_top is a shorthand for the dummy hierarchy's top cgroup */
138static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700139
140/* The list of hierarchy roots */
141
Tejun Heo9871bf92013-06-24 15:21:47 -0700142static LIST_HEAD(cgroup_roots);
143static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700144
Tejun Heo3417ae12014-02-08 10:37:01 -0500145/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700146static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700147
Li Zefan65dff752013-03-01 15:01:56 +0800148static struct cgroup_name root_cgroup_name = { .name = "/" };
149
Li Zefan794611a2013-06-18 18:53:53 +0800150/*
151 * Assign a monotonically increasing serial number to cgroups. It
152 * guarantees cgroups with bigger numbers are newer than those with smaller
153 * numbers. Also, as cgroups are always appended to the parent's
154 * ->children list, it guarantees that sibling cgroups are always sorted in
Tejun Heo00356bd2013-06-18 11:14:22 -0700155 * the ascending serial number order on the list. Protected by
156 * cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800157 */
Tejun Heo00356bd2013-06-18 11:14:22 -0700158static u64 cgroup_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800159
Paul Menageddbcc7e2007-10-18 23:39:30 -0700160/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800161 * check for fork/exit handlers to call. This avoids us having to do
162 * extra work in the fork/exit path if none of the subsystems need to
163 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700164 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700165static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700166
Tejun Heo628f7cd2013-06-28 16:24:11 -0700167static struct cftype cgroup_base_files[];
168
Tejun Heo59f52962014-02-11 11:52:49 -0500169static void cgroup_put(struct cgroup *cgrp);
Tejun Heof2e85d52014-02-11 11:52:49 -0500170static int rebind_subsystems(struct cgroupfs_root *root,
171 unsigned long added_mask, unsigned removed_mask);
Tejun Heof20104d2013-08-13 20:22:50 -0400172static void cgroup_destroy_css_killed(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800173static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400174static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
175 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500176static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800177
Tejun Heo95109b62013-08-08 20:11:27 -0400178/**
179 * cgroup_css - obtain a cgroup's css for the specified subsystem
180 * @cgrp: the cgroup of interest
Tejun Heoca8bdca2013-08-26 18:40:56 -0400181 * @ss: the subsystem of interest (%NULL returns the dummy_css)
Tejun Heo95109b62013-08-08 20:11:27 -0400182 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400183 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
184 * function must be called either under cgroup_mutex or rcu_read_lock() and
185 * the caller is responsible for pinning the returned css if it wants to
186 * keep accessing it outside the said locks. This function may return
187 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400188 */
189static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400190 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400191{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400192 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500193 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500194 lockdep_is_held(&cgroup_tree_mutex) ||
195 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400196 else
197 return &cgrp->dummy_css;
Tejun Heo95109b62013-08-08 20:11:27 -0400198}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700199
Paul Menageddbcc7e2007-10-18 23:39:30 -0700200/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700201static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700202{
Tejun Heo54766d42013-06-12 21:04:53 -0700203 return test_bit(CGRP_DEAD, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700204}
205
Tejun Heo59f52962014-02-11 11:52:49 -0500206struct cgroup_subsys_state *seq_css(struct seq_file *seq)
207{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500208 struct kernfs_open_file *of = seq->private;
209 struct cgroup *cgrp = of->kn->parent->priv;
210 struct cftype *cft = seq_cft(seq);
211
212 /*
213 * This is open and unprotected implementation of cgroup_css().
214 * seq_css() is only called from a kernfs file operation which has
215 * an active reference on the file. Because all the subsystem
216 * files are drained before a css is disassociated with a cgroup,
217 * the matching css from the cgroup's subsys table is guaranteed to
218 * be and stay valid until the enclosing operation is complete.
219 */
220 if (cft->ss)
221 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
222 else
223 return &cgrp->dummy_css;
Tejun Heo59f52962014-02-11 11:52:49 -0500224}
225EXPORT_SYMBOL_GPL(seq_css);
226
Li Zefan78574cf2013-04-08 19:00:38 -0700227/**
228 * cgroup_is_descendant - test ancestry
229 * @cgrp: the cgroup to be tested
230 * @ancestor: possible ancestor of @cgrp
231 *
232 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
233 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
234 * and @ancestor are accessible.
235 */
236bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
237{
238 while (cgrp) {
239 if (cgrp == ancestor)
240 return true;
241 cgrp = cgrp->parent;
242 }
243 return false;
244}
245EXPORT_SYMBOL_GPL(cgroup_is_descendant);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700246
Adrian Bunke9685a02008-02-07 00:13:46 -0800247static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700248{
249 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700250 (1 << CGRP_RELEASABLE) |
251 (1 << CGRP_NOTIFY_ON_RELEASE);
252 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700253}
254
Adrian Bunke9685a02008-02-07 00:13:46 -0800255static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700256{
Paul Menagebd89aab2007-10-18 23:40:44 -0700257 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700258}
259
Tejun Heo30159ec2013-06-25 11:53:37 -0700260/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500261 * for_each_css - iterate all css's of a cgroup
262 * @css: the iteration cursor
263 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
264 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700265 *
266 * Should be called under cgroup_mutex.
267 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500268#define for_each_css(css, ssid, cgrp) \
269 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
270 if (!((css) = rcu_dereference_check( \
271 (cgrp)->subsys[(ssid)], \
Tejun Heoace2bee2014-02-11 11:52:47 -0500272 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo1c6727a2013-12-06 15:11:56 -0500273 lockdep_is_held(&cgroup_mutex)))) { } \
274 else
275
276/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500277 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700278 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500279 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700280 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500281#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500282 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
283 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700284
Tejun Heo5549c492013-06-24 15:21:48 -0700285/* iterate across the active hierarchies */
286#define for_each_active_root(root) \
287 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700288
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700289/**
290 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
291 * @cgrp: the cgroup to be checked for liveness
292 *
Tejun Heo47cfcd02013-04-07 09:29:51 -0700293 * On success, returns true; the mutex should be later unlocked. On
294 * failure returns false with no lock held.
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700295 */
Tejun Heob9777cf2013-04-07 09:29:51 -0700296static bool cgroup_lock_live_group(struct cgroup *cgrp)
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700297{
298 mutex_lock(&cgroup_mutex);
Tejun Heo54766d42013-06-12 21:04:53 -0700299 if (cgroup_is_dead(cgrp)) {
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700300 mutex_unlock(&cgroup_mutex);
301 return false;
302 }
303 return true;
304}
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700305
Paul Menage81a6a5c2007-10-18 23:39:38 -0700306/* the list of cgroups eligible for automatic release. Protected by
307 * release_list_lock */
308static LIST_HEAD(release_list);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +0200309static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700310static void cgroup_release_agent(struct work_struct *work);
311static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700312static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700313
Tejun Heo69d02062013-06-12 21:04:50 -0700314/*
315 * A cgroup can be associated with multiple css_sets as different tasks may
316 * belong to different cgroups on different hierarchies. In the other
317 * direction, a css_set is naturally associated with multiple cgroups.
318 * This M:N relationship is represented by the following link structure
319 * which exists for each association and allows traversing the associations
320 * from both sides.
321 */
322struct cgrp_cset_link {
323 /* the cgroup and css_set this link associates */
324 struct cgroup *cgrp;
325 struct css_set *cset;
326
327 /* list of cgrp_cset_links anchored at cgrp->cset_links */
328 struct list_head cset_link;
329
330 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
331 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700332};
333
334/* The default css_set - used by init and its children prior to any
335 * hierarchies being mounted. It contains a pointer to the root state
336 * for each subsystem. Also used to anchor the list of css_sets. Not
337 * reference-counted, to improve performance when child cgroups
338 * haven't been created.
339 */
340
341static struct css_set init_css_set;
Tejun Heo69d02062013-06-12 21:04:50 -0700342static struct cgrp_cset_link init_cgrp_cset_link;
Paul Menage817929e2007-10-18 23:39:36 -0700343
Tejun Heo0942eee2013-08-08 20:11:26 -0400344/*
345 * css_set_lock protects the list of css_set objects, and the chain of
346 * tasks off each css_set. Nests outside task->alloc_lock due to
Tejun Heo72ec7022013-08-08 20:11:26 -0400347 * css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -0400348 */
Paul Menage817929e2007-10-18 23:39:36 -0700349static DEFINE_RWLOCK(css_set_lock);
350static int css_set_count;
351
Paul Menage7717f7b2009-09-23 15:56:22 -0700352/*
353 * hash table for cgroup groups. This improves the performance to find
354 * an existing css_set. This hash doesn't (currently) take into
355 * account cgroups in empty hierarchies.
356 */
Li Zefan472b1052008-04-29 01:00:11 -0700357#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800358static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700359
Li Zefan0ac801f2013-01-10 11:49:27 +0800360static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700361{
Li Zefan0ac801f2013-01-10 11:49:27 +0800362 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700363 struct cgroup_subsys *ss;
364 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700365
Tejun Heo30159ec2013-06-25 11:53:37 -0700366 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800367 key += (unsigned long)css[i];
368 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700369
Li Zefan0ac801f2013-01-10 11:49:27 +0800370 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700371}
372
Tejun Heo0942eee2013-08-08 20:11:26 -0400373/*
374 * We don't maintain the lists running through each css_set to its task
Tejun Heo72ec7022013-08-08 20:11:26 -0400375 * until after the first call to css_task_iter_start(). This reduces the
376 * fork()/exit() overhead for people who have cgroups compiled into their
377 * kernel but not actually in use.
Tejun Heo0942eee2013-08-08 20:11:26 -0400378 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700379static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700380
Tejun Heo5abb8852013-06-12 21:04:49 -0700381static void __put_css_set(struct css_set *cset, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700382{
Tejun Heo69d02062013-06-12 21:04:50 -0700383 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo5abb8852013-06-12 21:04:49 -0700384
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700385 /*
386 * Ensure that the refcount doesn't hit zero while any readers
387 * can see it. Similar to atomic_dec_and_lock(), but for an
388 * rwlock
389 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700390 if (atomic_add_unless(&cset->refcount, -1, 1))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700391 return;
392 write_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700393 if (!atomic_dec_and_test(&cset->refcount)) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700394 write_unlock(&css_set_lock);
395 return;
396 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700397
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700398 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo5abb8852013-06-12 21:04:49 -0700399 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700400 css_set_count--;
401
Tejun Heo69d02062013-06-12 21:04:50 -0700402 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700403 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700404
Tejun Heo69d02062013-06-12 21:04:50 -0700405 list_del(&link->cset_link);
406 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800407
Tejun Heoddd69142013-06-12 21:04:54 -0700408 /* @cgrp can't go away while we're holding css_set_lock */
Tejun Heo6f3d828f02013-06-12 21:04:55 -0700409 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700410 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700411 set_bit(CGRP_RELEASABLE, &cgrp->flags);
412 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700413 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700414
415 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700416 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700417
418 write_unlock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700419 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700420}
421
422/*
423 * refcounted get/put for css_set objects
424 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700425static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700426{
Tejun Heo5abb8852013-06-12 21:04:49 -0700427 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700428}
429
Tejun Heo5abb8852013-06-12 21:04:49 -0700430static inline void put_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700431{
Tejun Heo5abb8852013-06-12 21:04:49 -0700432 __put_css_set(cset, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700433}
434
Tejun Heo5abb8852013-06-12 21:04:49 -0700435static inline void put_css_set_taskexit(struct css_set *cset)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700436{
Tejun Heo5abb8852013-06-12 21:04:49 -0700437 __put_css_set(cset, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700438}
439
Tejun Heob326f9d2013-06-24 15:21:48 -0700440/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700441 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700442 * @cset: candidate css_set being tested
443 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700444 * @new_cgrp: cgroup that's being entered by the task
445 * @template: desired set of css pointers in css_set (pre-calculated)
446 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800447 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700448 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
449 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700450static bool compare_css_sets(struct css_set *cset,
451 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700452 struct cgroup *new_cgrp,
453 struct cgroup_subsys_state *template[])
454{
455 struct list_head *l1, *l2;
456
Tejun Heo5abb8852013-06-12 21:04:49 -0700457 if (memcmp(template, cset->subsys, sizeof(cset->subsys))) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700458 /* Not all subsystems matched */
459 return false;
460 }
461
462 /*
463 * Compare cgroup pointers in order to distinguish between
464 * different cgroups in heirarchies with no subsystems. We
465 * could get by with just this check alone (and skip the
466 * memcmp above) but on most setups the memcmp check will
467 * avoid the need for this more expensive check on almost all
468 * candidates.
469 */
470
Tejun Heo69d02062013-06-12 21:04:50 -0700471 l1 = &cset->cgrp_links;
472 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700473 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700474 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700475 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700476
477 l1 = l1->next;
478 l2 = l2->next;
479 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700480 if (l1 == &cset->cgrp_links) {
481 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700482 break;
483 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700484 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700485 }
486 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700487 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
488 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
489 cgrp1 = link1->cgrp;
490 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700491 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700492 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700493
494 /*
495 * If this hierarchy is the hierarchy of the cgroup
496 * that's changing, then we need to check that this
497 * css_set points to the new cgroup; if it's any other
498 * hierarchy, then this css_set should point to the
499 * same cgroup as the old css_set.
500 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700501 if (cgrp1->root == new_cgrp->root) {
502 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700503 return false;
504 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700505 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700506 return false;
507 }
508 }
509 return true;
510}
511
Tejun Heob326f9d2013-06-24 15:21:48 -0700512/**
513 * find_existing_css_set - init css array and find the matching css_set
514 * @old_cset: the css_set that we're using before the cgroup transition
515 * @cgrp: the cgroup that we're moving into
516 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700517 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700518static struct css_set *find_existing_css_set(struct css_set *old_cset,
519 struct cgroup *cgrp,
520 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700521{
Paul Menagebd89aab2007-10-18 23:40:44 -0700522 struct cgroupfs_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700523 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700524 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800525 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700526 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700527
Ben Blumaae8aab2010-03-10 15:22:07 -0800528 /*
529 * Build the set of subsystem state objects that we want to see in the
530 * new css_set. while subsystems can change globally, the entries here
531 * won't change, so no need for locking.
532 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700533 for_each_subsys(ss, i) {
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -0400534 if (root->subsys_mask & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700535 /* Subsystem is in this hierarchy. So we want
536 * the subsystem state from the new
537 * cgroup */
Tejun Heoca8bdca2013-08-26 18:40:56 -0400538 template[i] = cgroup_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700539 } else {
540 /* Subsystem is not in this hierarchy, so we
541 * don't want to change the subsystem state */
Tejun Heo5abb8852013-06-12 21:04:49 -0700542 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700543 }
544 }
545
Li Zefan0ac801f2013-01-10 11:49:27 +0800546 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700547 hash_for_each_possible(css_set_table, cset, hlist, key) {
548 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700549 continue;
550
551 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700552 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700553 }
Paul Menage817929e2007-10-18 23:39:36 -0700554
555 /* No existing cgroup group matched */
556 return NULL;
557}
558
Tejun Heo69d02062013-06-12 21:04:50 -0700559static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700560{
Tejun Heo69d02062013-06-12 21:04:50 -0700561 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700562
Tejun Heo69d02062013-06-12 21:04:50 -0700563 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
564 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700565 kfree(link);
566 }
567}
568
Tejun Heo69d02062013-06-12 21:04:50 -0700569/**
570 * allocate_cgrp_cset_links - allocate cgrp_cset_links
571 * @count: the number of links to allocate
572 * @tmp_links: list_head the allocated links are put on
573 *
574 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
575 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700576 */
Tejun Heo69d02062013-06-12 21:04:50 -0700577static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700578{
Tejun Heo69d02062013-06-12 21:04:50 -0700579 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700580 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700581
582 INIT_LIST_HEAD(tmp_links);
583
Li Zefan36553432008-07-29 22:33:19 -0700584 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700585 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700586 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700587 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700588 return -ENOMEM;
589 }
Tejun Heo69d02062013-06-12 21:04:50 -0700590 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700591 }
592 return 0;
593}
594
Li Zefanc12f65d2009-01-07 18:07:42 -0800595/**
596 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700597 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700598 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800599 * @cgrp: the destination cgroup
600 */
Tejun Heo69d02062013-06-12 21:04:50 -0700601static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
602 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800603{
Tejun Heo69d02062013-06-12 21:04:50 -0700604 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800605
Tejun Heo69d02062013-06-12 21:04:50 -0700606 BUG_ON(list_empty(tmp_links));
607 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
608 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700609 link->cgrp = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700610 list_move(&link->cset_link, &cgrp->cset_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700611 /*
612 * Always add links to the tail of the list so that the list
613 * is sorted by order of hierarchy creation
614 */
Tejun Heo69d02062013-06-12 21:04:50 -0700615 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800616}
617
Tejun Heob326f9d2013-06-24 15:21:48 -0700618/**
619 * find_css_set - return a new css_set with one cgroup updated
620 * @old_cset: the baseline css_set
621 * @cgrp: the cgroup to be updated
622 *
623 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
624 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700625 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700626static struct css_set *find_css_set(struct css_set *old_cset,
627 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700628{
Tejun Heob326f9d2013-06-24 15:21:48 -0700629 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700630 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700631 struct list_head tmp_links;
632 struct cgrp_cset_link *link;
Li Zefan0ac801f2013-01-10 11:49:27 +0800633 unsigned long key;
Li Zefan472b1052008-04-29 01:00:11 -0700634
Tejun Heob326f9d2013-06-24 15:21:48 -0700635 lockdep_assert_held(&cgroup_mutex);
636
Paul Menage817929e2007-10-18 23:39:36 -0700637 /* First see if we already have a cgroup group that matches
638 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700639 read_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700640 cset = find_existing_css_set(old_cset, cgrp, template);
641 if (cset)
642 get_css_set(cset);
Li Zefan7e9abd82008-07-25 01:46:54 -0700643 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700644
Tejun Heo5abb8852013-06-12 21:04:49 -0700645 if (cset)
646 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700647
Tejun Heof4f4be22013-06-12 21:04:51 -0700648 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700649 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700650 return NULL;
651
Tejun Heo69d02062013-06-12 21:04:50 -0700652 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700653 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700654 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700655 return NULL;
656 }
657
Tejun Heo5abb8852013-06-12 21:04:49 -0700658 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700659 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700660 INIT_LIST_HEAD(&cset->tasks);
661 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700662
663 /* Copy the set of subsystem state objects generated in
664 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700665 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700666
667 write_lock(&css_set_lock);
668 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700669 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700670 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700671
Paul Menage7717f7b2009-09-23 15:56:22 -0700672 if (c->root == cgrp->root)
673 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700674 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700675 }
Paul Menage817929e2007-10-18 23:39:36 -0700676
Tejun Heo69d02062013-06-12 21:04:50 -0700677 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700678
Paul Menage817929e2007-10-18 23:39:36 -0700679 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700680
681 /* Add this cgroup group to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700682 key = css_set_hash(cset->subsys);
683 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700684
Paul Menage817929e2007-10-18 23:39:36 -0700685 write_unlock(&css_set_lock);
686
Tejun Heo5abb8852013-06-12 21:04:49 -0700687 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700688}
689
Tejun Heo2bd59d42014-02-11 11:52:49 -0500690static struct cgroupfs_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
691{
692 struct cgroup *top_cgrp = kf_root->kn->priv;
693
694 return top_cgrp->root;
695}
696
Tejun Heof2e85d52014-02-11 11:52:49 -0500697static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end)
698{
699 int id;
700
701 lockdep_assert_held(&cgroup_mutex);
702
703 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end,
704 GFP_KERNEL);
705 if (id < 0)
706 return id;
707
708 root->hierarchy_id = id;
709 return 0;
710}
711
712static void cgroup_exit_root_id(struct cgroupfs_root *root)
713{
714 lockdep_assert_held(&cgroup_mutex);
715
716 if (root->hierarchy_id) {
717 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
718 root->hierarchy_id = 0;
719 }
720}
721
722static void cgroup_free_root(struct cgroupfs_root *root)
723{
724 if (root) {
725 /* hierarhcy ID shoulid already have been released */
726 WARN_ON_ONCE(root->hierarchy_id);
727
728 idr_destroy(&root->cgroup_idr);
729 kfree(root);
730 }
731}
732
Tejun Heo59f52962014-02-11 11:52:49 -0500733static void cgroup_get_root(struct cgroupfs_root *root)
734{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500735 /*
736 * The caller must ensure that @root is alive, which can be
737 * achieved by holding a ref on one of the member cgroups or
738 * following a registered reference to @root while holding
739 * cgroup_tree_mutex.
740 */
741 WARN_ON_ONCE(atomic_read(&root->refcnt) <= 0);
742 atomic_inc(&root->refcnt);
Tejun Heo59f52962014-02-11 11:52:49 -0500743}
744
745static void cgroup_put_root(struct cgroupfs_root *root)
746{
Tejun Heof2e85d52014-02-11 11:52:49 -0500747 struct cgroup *cgrp = &root->top_cgroup;
748 struct cgrp_cset_link *link, *tmp_link;
749 int ret;
750
Tejun Heo2bd59d42014-02-11 11:52:49 -0500751 /*
752 * @root's refcnt reaching zero and its deregistration should be
753 * atomic w.r.t. cgroup_tree_mutex. This ensures that
754 * cgroup_get_root() is safe to invoke if @root is registered.
755 */
756 mutex_lock(&cgroup_tree_mutex);
757 if (!atomic_dec_and_test(&root->refcnt)) {
758 mutex_unlock(&cgroup_tree_mutex);
759 return;
760 }
761 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500762
763 BUG_ON(root->number_of_cgroups != 1);
764 BUG_ON(!list_empty(&cgrp->children));
765
Tejun Heof2e85d52014-02-11 11:52:49 -0500766 /* Rebind all subsystems back to the default hierarchy */
767 if (root->flags & CGRP_ROOT_SUBSYS_BOUND) {
768 ret = rebind_subsystems(root, 0, root->subsys_mask);
769 /* Shouldn't be able to fail ... */
770 BUG_ON(ret);
771 }
772
773 /*
774 * Release all the links from cset_links to this hierarchy's
775 * root cgroup
776 */
777 write_lock(&css_set_lock);
778
779 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
780 list_del(&link->cset_link);
781 list_del(&link->cgrp_link);
782 kfree(link);
783 }
784 write_unlock(&css_set_lock);
785
786 if (!list_empty(&root->root_list)) {
787 list_del(&root->root_list);
788 cgroup_root_count--;
789 }
790
791 cgroup_exit_root_id(root);
792
793 mutex_unlock(&cgroup_mutex);
794 mutex_unlock(&cgroup_tree_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500795
Tejun Heo2bd59d42014-02-11 11:52:49 -0500796 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500797 cgroup_free_root(root);
798}
799
Paul Menageddbcc7e2007-10-18 23:39:30 -0700800/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700801 * Return the cgroup for "task" from the given hierarchy. Must be
802 * called with cgroup_mutex held.
803 */
804static struct cgroup *task_cgroup_from_root(struct task_struct *task,
805 struct cgroupfs_root *root)
806{
Tejun Heo5abb8852013-06-12 21:04:49 -0700807 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700808 struct cgroup *res = NULL;
809
810 BUG_ON(!mutex_is_locked(&cgroup_mutex));
811 read_lock(&css_set_lock);
812 /*
813 * No need to lock the task - since we hold cgroup_mutex the
814 * task can't change groups, so the only thing that can happen
815 * is that it exits and its css is set back to init_css_set.
816 */
Tejun Heoa8ad8052013-06-21 15:52:04 -0700817 cset = task_css_set(task);
Tejun Heo5abb8852013-06-12 21:04:49 -0700818 if (cset == &init_css_set) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700819 res = &root->top_cgroup;
820 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700821 struct cgrp_cset_link *link;
822
823 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700824 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700825
Paul Menage7717f7b2009-09-23 15:56:22 -0700826 if (c->root == root) {
827 res = c;
828 break;
829 }
830 }
831 }
832 read_unlock(&css_set_lock);
833 BUG_ON(!res);
834 return res;
835}
836
837/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700838 * There is one global cgroup mutex. We also require taking
839 * task_lock() when dereferencing a task's cgroup subsys pointers.
840 * See "The task_lock() exception", at the end of this comment.
841 *
842 * A task must hold cgroup_mutex to modify cgroups.
843 *
844 * Any task can increment and decrement the count field without lock.
845 * So in general, code holding cgroup_mutex can't rely on the count
846 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800847 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700848 * means that no tasks are currently attached, therefore there is no
849 * way a task attached to that cgroup can fork (the other way to
850 * increment the count). So code holding cgroup_mutex can safely
851 * assume that if the count is zero, it will stay zero. Similarly, if
852 * a task holds cgroup_mutex on a cgroup with zero count, it
853 * knows that the cgroup won't be removed, as cgroup_rmdir()
854 * needs that mutex.
855 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700856 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
857 * (usually) take cgroup_mutex. These are the two most performance
858 * critical pieces of code here. The exception occurs on cgroup_exit(),
859 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
860 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800861 * to the release agent with the name of the cgroup (path relative to
862 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700863 *
864 * A cgroup can only be deleted if both its 'count' of using tasks
865 * is zero, and its list of 'children' cgroups is empty. Since all
866 * tasks in the system use _some_ cgroup, and since there is always at
867 * least one task in the system (init, pid == 1), therefore, top_cgroup
868 * always has either children cgroups and/or using tasks. So we don't
869 * need a special hack to ensure that top_cgroup cannot be deleted.
870 *
871 * The task_lock() exception
872 *
873 * The need for this exception arises from the action of
Tao Mad0b2fdd2012-11-20 22:06:18 +0800874 * cgroup_attach_task(), which overwrites one task's cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800875 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700876 * several performance critical places that need to reference
877 * task->cgroup without the expense of grabbing a system global
878 * mutex. Therefore except as noted below, when dereferencing or, as
Tao Mad0b2fdd2012-11-20 22:06:18 +0800879 * in cgroup_attach_task(), modifying a task's cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700880 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
881 * the task_struct routinely used for such matters.
882 *
883 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800884 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700885 */
886
Tejun Heo628f7cd2013-06-28 16:24:11 -0700887static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500888static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700889static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700890
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500891static struct cgroup_name *cgroup_alloc_name(const char *name_str)
Li Zefan65dff752013-03-01 15:01:56 +0800892{
893 struct cgroup_name *name;
894
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500895 name = kmalloc(sizeof(*name) + strlen(name_str) + 1, GFP_KERNEL);
Li Zefan65dff752013-03-01 15:01:56 +0800896 if (!name)
897 return NULL;
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500898 strcpy(name->name, name_str);
Li Zefan65dff752013-03-01 15:01:56 +0800899 return name;
900}
901
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500902static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
903 char *buf)
904{
905 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
906 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
907 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
908 cft->ss->name, cft->name);
909 else
910 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
911 return buf;
912}
913
Tejun Heof2e85d52014-02-11 11:52:49 -0500914/**
915 * cgroup_file_mode - deduce file mode of a control file
916 * @cft: the control file in question
917 *
918 * returns cft->mode if ->mode is not 0
919 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
920 * returns S_IRUGO if it has only a read handler
921 * returns S_IWUSR if it has only a write hander
922 */
923static umode_t cgroup_file_mode(const struct cftype *cft)
924{
925 umode_t mode = 0;
926
927 if (cft->mode)
928 return cft->mode;
929
930 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
931 mode |= S_IRUGO;
932
933 if (cft->write_u64 || cft->write_s64 || cft->write_string ||
934 cft->trigger)
935 mode |= S_IWUSR;
936
937 return mode;
938}
939
Li Zefanbe445622013-01-24 14:31:42 +0800940static void cgroup_free_fn(struct work_struct *work)
941{
Tejun Heoea15f8c2013-06-13 19:27:42 -0700942 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800943
944 mutex_lock(&cgroup_mutex);
Li Zefanbe445622013-01-24 14:31:42 +0800945 cgrp->root->number_of_cgroups--;
946 mutex_unlock(&cgroup_mutex);
947
948 /*
Tejun Heo59f52962014-02-11 11:52:49 -0500949 * We get a ref to the parent, and put the ref when this cgroup is
950 * being freed, so it's guaranteed that the parent won't be
951 * destroyed before its children.
Li Zefan415cf072013-04-08 14:35:02 +0800952 */
Tejun Heo59f52962014-02-11 11:52:49 -0500953 cgroup_put(cgrp->parent);
Li Zefan415cf072013-04-08 14:35:02 +0800954
Tejun Heo59f52962014-02-11 11:52:49 -0500955 /* put the root reference that we took when we created the cgroup */
956 cgroup_put_root(cgrp->root);
Li Zefanbe445622013-01-24 14:31:42 +0800957
Tejun Heob1a21362013-11-29 10:42:58 -0500958 cgroup_pidlist_destroy_all(cgrp);
Li Zefanbe445622013-01-24 14:31:42 +0800959
Li Zefan65dff752013-03-01 15:01:56 +0800960 kfree(rcu_dereference_raw(cgrp->name));
Li Zefanbe445622013-01-24 14:31:42 +0800961 kfree(cgrp);
962}
963
964static void cgroup_free_rcu(struct rcu_head *head)
965{
966 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
967
Tejun Heoea15f8c2013-06-13 19:27:42 -0700968 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -0500969 queue_work(cgroup_destroy_wq, &cgrp->destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800970}
971
Tejun Heo59f52962014-02-11 11:52:49 -0500972static void cgroup_get(struct cgroup *cgrp)
973{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500974 WARN_ON_ONCE(cgroup_is_dead(cgrp));
975 WARN_ON_ONCE(atomic_read(&cgrp->refcnt) <= 0);
976 atomic_inc(&cgrp->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700977}
978
Tejun Heo59f52962014-02-11 11:52:49 -0500979static void cgroup_put(struct cgroup *cgrp)
980{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500981 if (!atomic_dec_and_test(&cgrp->refcnt))
982 return;
983 if (WARN_ON_ONCE(!cgroup_is_dead(cgrp)))
984 return;
Tejun Heo59f52962014-02-11 11:52:49 -0500985
Tejun Heo2bd59d42014-02-11 11:52:49 -0500986 /*
987 * XXX: cgrp->id is only used to look up css's. As cgroup and
988 * css's lifetimes will be decoupled, it should be made
989 * per-subsystem and moved to css->id so that lookups are
990 * successful until the target css is released.
991 */
992 mutex_lock(&cgroup_mutex);
993 idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
994 mutex_unlock(&cgroup_mutex);
995 cgrp->id = -1;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700996
Tejun Heo2bd59d42014-02-11 11:52:49 -0500997 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700998}
999
Li Zefan2739d3c2013-01-21 18:18:33 +08001000static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001001{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001002 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001003
Tejun Heoace2bee2014-02-11 11:52:47 -05001004 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001005 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001006}
1007
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001008/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001009 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001010 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001011 * @subsys_mask: mask of the subsystem ids whose files should be removed
1012 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07001013static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001014{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001015 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001016 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001017
Tejun Heob420ba72013-07-12 12:34:02 -07001018 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001019 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001020
1021 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001022 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001023 list_for_each_entry(cfts, &ss->cfts, node)
1024 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001025 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001026}
1027
Paul Menageddbcc7e2007-10-18 23:39:30 -07001028static int rebind_subsystems(struct cgroupfs_root *root,
Tejun Heoa8a648c2013-06-24 15:21:47 -07001029 unsigned long added_mask, unsigned removed_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030{
Paul Menagebd89aab2007-10-18 23:40:44 -07001031 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heo30159ec2013-06-25 11:53:37 -07001032 struct cgroup_subsys *ss;
Tejun Heo31261212013-06-28 17:07:30 -07001033 int i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001034
Tejun Heoace2bee2014-02-11 11:52:47 -05001035 lockdep_assert_held(&cgroup_tree_mutex);
1036 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001037
Paul Menageddbcc7e2007-10-18 23:39:30 -07001038 /* Check that any added subsystems are currently free */
Tejun Heo3ed80a62014-02-08 10:36:58 -05001039 for_each_subsys(ss, i)
1040 if ((added_mask & (1 << i)) && ss->root != &cgroup_dummy_root)
1041 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001042
Tejun Heo31261212013-06-28 17:07:30 -07001043 ret = cgroup_populate_dir(cgrp, added_mask);
1044 if (ret)
Tejun Heo3ed80a62014-02-08 10:36:58 -05001045 return ret;
Tejun Heo31261212013-06-28 17:07:30 -07001046
1047 /*
1048 * Nothing can fail from this point on. Remove files for the
1049 * removed subsystems and rebind each subsystem.
1050 */
Tejun Heo4ac06012014-02-11 11:52:47 -05001051 mutex_unlock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001052 cgroup_clear_dir(cgrp, removed_mask);
Tejun Heo4ac06012014-02-11 11:52:47 -05001053 mutex_lock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001054
Tejun Heo30159ec2013-06-25 11:53:37 -07001055 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001056 unsigned long bit = 1UL << i;
Tejun Heo30159ec2013-06-25 11:53:37 -07001057
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001058 if (bit & added_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001059 /* We're binding this subsystem to this hierarchy */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001060 BUG_ON(cgroup_css(cgrp, ss));
1061 BUG_ON(!cgroup_css(cgroup_dummy_top, ss));
1062 BUG_ON(cgroup_css(cgroup_dummy_top, ss)->cgroup != cgroup_dummy_top);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001063
Tejun Heo73e80ed2013-08-13 11:01:55 -04001064 rcu_assign_pointer(cgrp->subsys[i],
Tejun Heoca8bdca2013-08-26 18:40:56 -04001065 cgroup_css(cgroup_dummy_top, ss));
1066 cgroup_css(cgrp, ss)->cgroup = cgrp;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001067
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001068 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001069 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001070 ss->bind(cgroup_css(cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001071
Ben Blumcf5d5942010-03-10 15:22:09 -08001072 /* refcount was already taken, and we're keeping it */
Tejun Heoa8a648c2013-06-24 15:21:47 -07001073 root->subsys_mask |= bit;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001074 } else if (bit & removed_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001075 /* We're removing this subsystem */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001076 BUG_ON(cgroup_css(cgrp, ss) != cgroup_css(cgroup_dummy_top, ss));
1077 BUG_ON(cgroup_css(cgrp, ss)->cgroup != cgrp);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001078
Paul Menageddbcc7e2007-10-18 23:39:30 -07001079 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001080 ss->bind(cgroup_css(cgroup_dummy_top, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001081
Tejun Heoca8bdca2013-08-26 18:40:56 -04001082 cgroup_css(cgroup_dummy_top, ss)->cgroup = cgroup_dummy_top;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001083 RCU_INIT_POINTER(cgrp->subsys[i], NULL);
1084
Tejun Heo9871bf92013-06-24 15:21:47 -07001085 cgroup_subsys[i]->root = &cgroup_dummy_root;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001086 root->subsys_mask &= ~bit;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001087 }
1088 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001089
Tejun Heo1672d042013-06-25 18:04:54 -07001090 /*
1091 * Mark @root has finished binding subsystems. @root->subsys_mask
1092 * now matches the bound subsystems.
1093 */
1094 root->flags |= CGRP_ROOT_SUBSYS_BOUND;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001095 kernfs_activate(cgrp->kn);
Tejun Heo1672d042013-06-25 18:04:54 -07001096
Paul Menageddbcc7e2007-10-18 23:39:30 -07001097 return 0;
1098}
1099
Tejun Heo2bd59d42014-02-11 11:52:49 -05001100static int cgroup_show_options(struct seq_file *seq,
1101 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001102{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001103 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001104 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001105 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001106
Tejun Heob85d2042013-12-06 15:11:57 -05001107 for_each_subsys(ss, ssid)
1108 if (root->subsys_mask & (1 << ssid))
1109 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001110 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1111 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001112 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001113 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001114 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001115 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001116
1117 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001118 if (strlen(root->release_agent_path))
1119 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001120 spin_unlock(&release_agent_path_lock);
1121
Tejun Heo2260e7f2012-11-19 08:13:38 -08001122 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001123 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001124 if (strlen(root->name))
1125 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001126 return 0;
1127}
1128
1129struct cgroup_sb_opts {
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001130 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001131 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001132 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001133 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001134 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001135 /* User explicitly requested empty subsystem */
1136 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001137};
1138
Ben Blumaae8aab2010-03-10 15:22:07 -08001139/*
Tejun Heo9871bf92013-06-24 15:21:47 -07001140 * Convert a hierarchy specifier into a bitmask of subsystems and
1141 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1142 * array. This function takes refcounts on subsystems to be used, unless it
1143 * returns error, in which case no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001144 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001145static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001146{
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001147 char *token, *o = data;
1148 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001149 unsigned long mask = (unsigned long)-1;
Tejun Heo30159ec2013-06-25 11:53:37 -07001150 struct cgroup_subsys *ss;
1151 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001152
Ben Blumaae8aab2010-03-10 15:22:07 -08001153 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1154
Li Zefanf9ab5b52009-06-17 16:26:33 -07001155#ifdef CONFIG_CPUSETS
Tejun Heo073219e2014-02-08 10:36:58 -05001156 mask = ~(1UL << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001157#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001158
Paul Menagec6d57f32009-09-23 15:56:19 -07001159 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001160
1161 while ((token = strsep(&o, ",")) != NULL) {
1162 if (!*token)
1163 return -EINVAL;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001164 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001165 /* Explicitly have no subsystems */
1166 opts->none = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001167 continue;
1168 }
1169 if (!strcmp(token, "all")) {
1170 /* Mutually exclusive option 'all' + subsystem name */
1171 if (one_ss)
1172 return -EINVAL;
1173 all_ss = true;
1174 continue;
1175 }
Tejun Heo873fe092013-04-14 20:15:26 -07001176 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1177 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1178 continue;
1179 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001180 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001181 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001182 continue;
1183 }
1184 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001185 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001186 continue;
1187 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001188 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001189 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001190 continue;
1191 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001192 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001193 /* Specifying two release agents is forbidden */
1194 if (opts->release_agent)
1195 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001196 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001197 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001198 if (!opts->release_agent)
1199 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001200 continue;
1201 }
1202 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001203 const char *name = token + 5;
1204 /* Can't specify an empty name */
1205 if (!strlen(name))
1206 return -EINVAL;
1207 /* Must match [\w.-]+ */
1208 for (i = 0; i < strlen(name); i++) {
1209 char c = name[i];
1210 if (isalnum(c))
1211 continue;
1212 if ((c == '.') || (c == '-') || (c == '_'))
1213 continue;
1214 return -EINVAL;
1215 }
1216 /* Specifying two names is forbidden */
1217 if (opts->name)
1218 return -EINVAL;
1219 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001220 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001221 GFP_KERNEL);
1222 if (!opts->name)
1223 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001224
1225 continue;
1226 }
1227
Tejun Heo30159ec2013-06-25 11:53:37 -07001228 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001229 if (strcmp(token, ss->name))
1230 continue;
1231 if (ss->disabled)
1232 continue;
1233
1234 /* Mutually exclusive option 'all' + subsystem name */
1235 if (all_ss)
1236 return -EINVAL;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001237 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001238 one_ss = true;
1239
1240 break;
1241 }
1242 if (i == CGROUP_SUBSYS_COUNT)
1243 return -ENOENT;
1244 }
1245
1246 /*
1247 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001248 * otherwise if 'none', 'name=' and a subsystem name options
1249 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001250 */
Tejun Heo30159ec2013-06-25 11:53:37 -07001251 if (all_ss || (!one_ss && !opts->none && !opts->name))
1252 for_each_subsys(ss, i)
1253 if (!ss->disabled)
1254 set_bit(i, &opts->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001255
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001256 /* Consistency checks */
1257
Tejun Heo873fe092013-04-14 20:15:26 -07001258 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1259 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1260
1261 if (opts->flags & CGRP_ROOT_NOPREFIX) {
1262 pr_err("cgroup: sane_behavior: noprefix is not allowed\n");
1263 return -EINVAL;
1264 }
1265
1266 if (opts->cpuset_clone_children) {
1267 pr_err("cgroup: sane_behavior: clone_children is not allowed\n");
1268 return -EINVAL;
1269 }
Tejun Heo86bf4b62014-02-12 09:29:48 -05001270
1271 if (opts->flags & CGRP_ROOT_XATTR)
1272 pr_warning("cgroup: sane_behavior: xattr is always available, flag unnecessary\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001273 }
1274
Li Zefanf9ab5b52009-06-17 16:26:33 -07001275 /*
1276 * Option noprefix was introduced just for backward compatibility
1277 * with the old cpuset, so we allow noprefix only if mounting just
1278 * the cpuset subsystem.
1279 */
Tejun Heo93438622013-04-14 20:15:25 -07001280 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001281 return -EINVAL;
1282
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001283
1284 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001285 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001286 return -EINVAL;
1287
1288 /*
1289 * We either have to specify by name or by subsystems. (So all
1290 * empty hierarchies must have a name).
1291 */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001292 if (!opts->subsys_mask && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001293 return -EINVAL;
1294
1295 return 0;
1296}
1297
Tejun Heo2bd59d42014-02-11 11:52:49 -05001298static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001299{
1300 int ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001301 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001302 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001303 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001304
Tejun Heo873fe092013-04-14 20:15:26 -07001305 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1306 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1307 return -EINVAL;
1308 }
1309
Tejun Heoace2bee2014-02-11 11:52:47 -05001310 mutex_lock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001311 mutex_lock(&cgroup_mutex);
1312
1313 /* See what subsystems are wanted */
1314 ret = parse_cgroupfs_options(data, &opts);
1315 if (ret)
1316 goto out_unlock;
1317
Tejun Heoa8a648c2013-06-24 15:21:47 -07001318 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001319 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1320 task_tgid_nr(current), current->comm);
1321
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001322 added_mask = opts.subsys_mask & ~root->subsys_mask;
1323 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001324
Ben Blumcf5d5942010-03-10 15:22:09 -08001325 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001326 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001327 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001328 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1329 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1330 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001331 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001332 goto out_unlock;
1333 }
1334
Tejun Heof172e672013-06-28 17:07:30 -07001335 /* remounting is not allowed for populated hierarchies */
1336 if (root->number_of_cgroups > 1) {
1337 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001338 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001339 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001340
Paul Menageddbcc7e2007-10-18 23:39:30 -07001341 ret = rebind_subsystems(root, added_mask, removed_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001342 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001343 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001344
Tejun Heo69e943b2014-02-08 10:36:58 -05001345 if (opts.release_agent) {
1346 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001347 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001348 spin_unlock(&release_agent_path_lock);
1349 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001350 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001351 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001352 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001353 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001354 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001355 return ret;
1356}
1357
Paul Menagecc31edc2008-10-18 20:28:04 -07001358static void init_cgroup_housekeeping(struct cgroup *cgrp)
1359{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001360 atomic_set(&cgrp->refcnt, 1);
Paul Menagecc31edc2008-10-18 20:28:04 -07001361 INIT_LIST_HEAD(&cgrp->sibling);
1362 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo69d02062013-06-12 21:04:50 -07001363 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001364 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001365 INIT_LIST_HEAD(&cgrp->pidlists);
1366 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo67f4c362013-08-08 20:11:24 -04001367 cgrp->dummy_css.cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001368}
Paul Menagec6d57f32009-09-23 15:56:19 -07001369
Paul Menageddbcc7e2007-10-18 23:39:30 -07001370static void init_cgroup_root(struct cgroupfs_root *root)
1371{
Paul Menagebd89aab2007-10-18 23:40:44 -07001372 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001373
Tejun Heo2bd59d42014-02-11 11:52:49 -05001374 atomic_set(&root->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001375 INIT_LIST_HEAD(&root->root_list);
1376 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001377 cgrp->root = root;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07001378 RCU_INIT_POINTER(cgrp->name, &root_cgroup_name);
Paul Menagecc31edc2008-10-18 20:28:04 -07001379 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001380 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001381}
1382
Paul Menagec6d57f32009-09-23 15:56:19 -07001383static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1384{
1385 struct cgroupfs_root *root;
1386
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001387 if (!opts->subsys_mask && !opts->none)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001388 return ERR_PTR(-EINVAL);
Paul Menagec6d57f32009-09-23 15:56:19 -07001389
1390 root = kzalloc(sizeof(*root), GFP_KERNEL);
1391 if (!root)
1392 return ERR_PTR(-ENOMEM);
1393
1394 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001395
Tejun Heo1672d042013-06-25 18:04:54 -07001396 /*
1397 * We need to set @root->subsys_mask now so that @root can be
1398 * matched by cgroup_test_super() before it finishes
1399 * initialization; otherwise, competing mounts with the same
1400 * options may try to bind the same subsystems instead of waiting
1401 * for the first one leading to unexpected mount errors.
1402 * SUBSYS_BOUND will be set once actual binding is complete.
1403 */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001404 root->subsys_mask = opts->subsys_mask;
Paul Menagec6d57f32009-09-23 15:56:19 -07001405 root->flags = opts->flags;
1406 if (opts->release_agent)
1407 strcpy(root->release_agent_path, opts->release_agent);
1408 if (opts->name)
1409 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001410 if (opts->cpuset_clone_children)
1411 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001412 return root;
1413}
1414
Tejun Heod427dfe2014-02-11 11:52:48 -05001415static int cgroup_setup_root(struct cgroupfs_root *root)
1416{
1417 LIST_HEAD(tmp_links);
Tejun Heod427dfe2014-02-11 11:52:48 -05001418 struct cgroup *root_cgrp = &root->top_cgroup;
Tejun Heod427dfe2014-02-11 11:52:48 -05001419 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001420 int i, ret;
1421
1422 lockdep_assert_held(&cgroup_tree_mutex);
1423 lockdep_assert_held(&cgroup_mutex);
Tejun Heod427dfe2014-02-11 11:52:48 -05001424
1425 ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL);
1426 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001427 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001428 root_cgrp->id = ret;
1429
Tejun Heod427dfe2014-02-11 11:52:48 -05001430 /*
1431 * We're accessing css_set_count without locking css_set_lock here,
1432 * but that's OK - it can only be increased by someone holding
1433 * cgroup_lock, and that's us. The worst that can happen is that we
1434 * have some link structures left over
1435 */
1436 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
1437 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001438 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001439
1440 /* ID 0 is reserved for dummy root, 1 for unified hierarchy */
1441 ret = cgroup_init_root_id(root, 2, 0);
1442 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001443 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001444
Tejun Heo2bd59d42014-02-11 11:52:49 -05001445 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1446 KERNFS_ROOT_CREATE_DEACTIVATED,
1447 root_cgrp);
1448 if (IS_ERR(root->kf_root)) {
1449 ret = PTR_ERR(root->kf_root);
1450 goto exit_root_id;
1451 }
1452 root_cgrp->kn = root->kf_root->kn;
Tejun Heod427dfe2014-02-11 11:52:48 -05001453
1454 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1455 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001456 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001457
1458 ret = rebind_subsystems(root, root->subsys_mask, 0);
1459 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001460 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001461
1462 /*
1463 * There must be no failure case after here, since rebinding takes
1464 * care of subsystems' refcounts, which are explicitly dropped in
1465 * the failure exit path.
1466 */
1467 list_add(&root->root_list, &cgroup_roots);
1468 cgroup_root_count++;
1469
1470 /*
1471 * Link the top cgroup in this hierarchy into all the css_set
1472 * objects.
1473 */
1474 write_lock(&css_set_lock);
1475 hash_for_each(css_set_table, i, cset, hlist)
1476 link_css_set(&tmp_links, cset, root_cgrp);
1477 write_unlock(&css_set_lock);
1478
1479 BUG_ON(!list_empty(&root_cgrp->children));
1480 BUG_ON(root->number_of_cgroups != 1);
1481
Tejun Heo2bd59d42014-02-11 11:52:49 -05001482 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001483 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001484 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001485
Tejun Heo2bd59d42014-02-11 11:52:49 -05001486destroy_root:
1487 kernfs_destroy_root(root->kf_root);
1488 root->kf_root = NULL;
1489exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001490 cgroup_exit_root_id(root);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001491out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001492 free_cgrp_cset_links(&tmp_links);
1493 return ret;
1494}
1495
Al Virof7e83572010-07-26 13:23:11 +04001496static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001497 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001498 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001499{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001500 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001501 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001502 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001503 int ret;
1504
1505 mutex_lock(&cgroup_tree_mutex);
1506 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001507
1508 /* First find the desired set of subsystems */
1509 ret = parse_cgroupfs_options(data, &opts);
Paul Menagec6d57f32009-09-23 15:56:19 -07001510 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001511 goto out_unlock;
Paul Menagec6d57f32009-09-23 15:56:19 -07001512
Tejun Heo2bd59d42014-02-11 11:52:49 -05001513 /* look for a matching existing root */
1514 for_each_active_root(root) {
1515 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001516
Paul Menagec6d57f32009-09-23 15:56:19 -07001517 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001518 * If we asked for a name then it must match. Also, if
1519 * name matches but sybsys_mask doesn't, we should fail.
1520 * Remember whether name matched.
Paul Menagec6d57f32009-09-23 15:56:19 -07001521 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001522 if (opts.name) {
1523 if (strcmp(opts.name, root->name))
1524 continue;
1525 name_match = true;
1526 }
1527
1528 /*
1529 * If we asked for subsystems (or explicitly for no
1530 * subsystems) then they must match.
1531 */
1532 if ((opts.subsys_mask || opts.none) &&
1533 (opts.subsys_mask != root->subsys_mask)) {
1534 if (!name_match)
1535 continue;
1536 ret = -EBUSY;
1537 goto out_unlock;
1538 }
Tejun Heo873fe092013-04-14 20:15:26 -07001539
Tejun Heoc7ba8282013-06-29 14:06:10 -07001540 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001541 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1542 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1543 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001544 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001545 } else {
1546 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1547 }
Tejun Heo873fe092013-04-14 20:15:26 -07001548 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001549
1550 cgroup_get_root(root);
1551 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552 }
1553
Tejun Heo2bd59d42014-02-11 11:52:49 -05001554 /* no such thing, create a new one */
1555 root = cgroup_root_from_opts(&opts);
1556 if (IS_ERR(root)) {
1557 ret = PTR_ERR(root);
1558 goto out_unlock;
1559 }
1560
1561 ret = cgroup_setup_root(root);
1562 if (ret)
1563 cgroup_free_root(root);
1564
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001565out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001566 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001567 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001568
Paul Menagec6d57f32009-09-23 15:56:19 -07001569 kfree(opts.release_agent);
1570 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001571
Tejun Heo2bd59d42014-02-11 11:52:49 -05001572 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001573 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001574
1575 dentry = kernfs_mount(fs_type, flags, root->kf_root);
1576 if (IS_ERR(dentry))
1577 cgroup_put_root(root);
1578 return dentry;
1579}
1580
1581static void cgroup_kill_sb(struct super_block *sb)
1582{
1583 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
1584 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
1585
1586 cgroup_put_root(root);
1587 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001588}
1589
Paul Menageddbcc7e2007-10-18 23:39:30 -07001590static struct file_system_type cgroup_fs_type = {
1591 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001592 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001593 .kill_sb = cgroup_kill_sb,
1594};
1595
Greg KH676db4a2010-08-05 13:53:35 -07001596static struct kobject *cgroup_kobj;
1597
Li Zefana043e3b2008-02-23 15:24:09 -08001598/**
1599 * cgroup_path - generate the path of a cgroup
1600 * @cgrp: the cgroup in question
1601 * @buf: the buffer to write the path into
1602 * @buflen: the length of the buffer
1603 *
Li Zefan65dff752013-03-01 15:01:56 +08001604 * Writes path of cgroup into buf. Returns 0 on success, -errno on error.
1605 *
1606 * We can't generate cgroup path using dentry->d_name, as accessing
1607 * dentry->name must be protected by irq-unsafe dentry->d_lock or parent
1608 * inode's i_mutex, while on the other hand cgroup_path() can be called
1609 * with some irq-safe spinlocks held.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001610 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001611int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001612{
Li Zefan65dff752013-03-01 15:01:56 +08001613 int ret = -ENAMETOOLONG;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001614 char *start;
Tejun Heofebfcef2012-11-19 08:13:36 -08001615
Tejun Heoda1f2962013-04-14 10:32:19 -07001616 if (!cgrp->parent) {
1617 if (strlcpy(buf, "/", buflen) >= buflen)
1618 return -ENAMETOOLONG;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001619 return 0;
1620 }
1621
Tao Ma316eb662012-11-08 21:36:38 +08001622 start = buf + buflen - 1;
Tao Ma316eb662012-11-08 21:36:38 +08001623 *start = '\0';
Li Zefan9a9686b2010-04-22 17:29:24 +08001624
Li Zefan65dff752013-03-01 15:01:56 +08001625 rcu_read_lock();
Tejun Heoda1f2962013-04-14 10:32:19 -07001626 do {
Li Zefan65dff752013-03-01 15:01:56 +08001627 const char *name = cgroup_name(cgrp);
1628 int len;
1629
1630 len = strlen(name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001631 if ((start -= len) < buf)
Li Zefan65dff752013-03-01 15:01:56 +08001632 goto out;
1633 memcpy(start, name, len);
Li Zefan9a9686b2010-04-22 17:29:24 +08001634
Paul Menageddbcc7e2007-10-18 23:39:30 -07001635 if (--start < buf)
Li Zefan65dff752013-03-01 15:01:56 +08001636 goto out;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001637 *start = '/';
Li Zefan65dff752013-03-01 15:01:56 +08001638
1639 cgrp = cgrp->parent;
Tejun Heoda1f2962013-04-14 10:32:19 -07001640 } while (cgrp->parent);
Li Zefan65dff752013-03-01 15:01:56 +08001641 ret = 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001642 memmove(buf, start, buf + buflen - start);
Li Zefan65dff752013-03-01 15:01:56 +08001643out:
1644 rcu_read_unlock();
1645 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001646}
Ben Blum67523c42010-03-10 15:22:11 -08001647EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001648
Tejun Heo857a2be2013-04-14 20:50:08 -07001649/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001650 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001651 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001652 * @buf: the buffer to write the path into
1653 * @buflen: the length of the buffer
1654 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001655 * Determine @task's cgroup on the first (the one with the lowest non-zero
1656 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1657 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1658 * cgroup controller callbacks.
1659 *
1660 * Returns 0 on success, fails with -%ENAMETOOLONG if @buflen is too short.
Tejun Heo857a2be2013-04-14 20:50:08 -07001661 */
Tejun Heo913ffdb2013-07-11 16:34:48 -07001662int task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001663{
1664 struct cgroupfs_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001665 struct cgroup *cgrp;
1666 int hierarchy_id = 1, ret = 0;
1667
1668 if (buflen < 2)
1669 return -ENAMETOOLONG;
Tejun Heo857a2be2013-04-14 20:50:08 -07001670
1671 mutex_lock(&cgroup_mutex);
1672
Tejun Heo913ffdb2013-07-11 16:34:48 -07001673 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1674
Tejun Heo857a2be2013-04-14 20:50:08 -07001675 if (root) {
1676 cgrp = task_cgroup_from_root(task, root);
1677 ret = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001678 } else {
1679 /* if no hierarchy exists, everyone is in "/" */
1680 memcpy(buf, "/", 2);
Tejun Heo857a2be2013-04-14 20:50:08 -07001681 }
1682
1683 mutex_unlock(&cgroup_mutex);
Tejun Heo857a2be2013-04-14 20:50:08 -07001684 return ret;
1685}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001686EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001687
Ben Blum74a11662011-05-26 16:25:20 -07001688/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001689 * Control Group taskset
1690 */
Tejun Heo134d3372011-12-12 18:12:21 -08001691struct task_and_cgroup {
1692 struct task_struct *task;
1693 struct cgroup *cgrp;
Li Zefan6f4b7e62013-07-31 16:18:36 +08001694 struct css_set *cset;
Tejun Heo134d3372011-12-12 18:12:21 -08001695};
1696
Tejun Heo2f7ee562011-12-12 18:12:21 -08001697struct cgroup_taskset {
1698 struct task_and_cgroup single;
1699 struct flex_array *tc_array;
1700 int tc_array_len;
1701 int idx;
1702 struct cgroup *cur_cgrp;
1703};
1704
1705/**
1706 * cgroup_taskset_first - reset taskset and return the first task
1707 * @tset: taskset of interest
1708 *
1709 * @tset iteration is initialized and the first task is returned.
1710 */
1711struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1712{
1713 if (tset->tc_array) {
1714 tset->idx = 0;
1715 return cgroup_taskset_next(tset);
1716 } else {
1717 tset->cur_cgrp = tset->single.cgrp;
1718 return tset->single.task;
1719 }
1720}
1721EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1722
1723/**
1724 * cgroup_taskset_next - iterate to the next task in taskset
1725 * @tset: taskset of interest
1726 *
1727 * Return the next task in @tset. Iteration must have been initialized
1728 * with cgroup_taskset_first().
1729 */
1730struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1731{
1732 struct task_and_cgroup *tc;
1733
1734 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1735 return NULL;
1736
1737 tc = flex_array_get(tset->tc_array, tset->idx++);
1738 tset->cur_cgrp = tc->cgrp;
1739 return tc->task;
1740}
1741EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1742
1743/**
Tejun Heod99c8722013-08-08 20:11:27 -04001744 * cgroup_taskset_cur_css - return the matching css for the current task
Tejun Heo2f7ee562011-12-12 18:12:21 -08001745 * @tset: taskset of interest
Tejun Heod99c8722013-08-08 20:11:27 -04001746 * @subsys_id: the ID of the target subsystem
Tejun Heo2f7ee562011-12-12 18:12:21 -08001747 *
Tejun Heod99c8722013-08-08 20:11:27 -04001748 * Return the css for the current (last returned) task of @tset for
1749 * subsystem specified by @subsys_id. This function must be preceded by
1750 * either cgroup_taskset_first() or cgroup_taskset_next().
Tejun Heo2f7ee562011-12-12 18:12:21 -08001751 */
Tejun Heod99c8722013-08-08 20:11:27 -04001752struct cgroup_subsys_state *cgroup_taskset_cur_css(struct cgroup_taskset *tset,
1753 int subsys_id)
Tejun Heo2f7ee562011-12-12 18:12:21 -08001754{
Tejun Heoca8bdca2013-08-26 18:40:56 -04001755 return cgroup_css(tset->cur_cgrp, cgroup_subsys[subsys_id]);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001756}
Tejun Heod99c8722013-08-08 20:11:27 -04001757EXPORT_SYMBOL_GPL(cgroup_taskset_cur_css);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001758
1759/**
1760 * cgroup_taskset_size - return the number of tasks in taskset
1761 * @tset: taskset of interest
1762 */
1763int cgroup_taskset_size(struct cgroup_taskset *tset)
1764{
1765 return tset->tc_array ? tset->tc_array_len : 1;
1766}
1767EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1768
1769
Ben Blum74a11662011-05-26 16:25:20 -07001770/*
1771 * cgroup_task_migrate - move a task from one cgroup to another.
1772 *
Tao Mad0b2fdd2012-11-20 22:06:18 +08001773 * Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001774 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001775static void cgroup_task_migrate(struct cgroup *old_cgrp,
1776 struct task_struct *tsk,
1777 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001778{
Tejun Heo5abb8852013-06-12 21:04:49 -07001779 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001780
1781 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001782 * We are synchronized through threadgroup_lock() against PF_EXITING
1783 * setting such that we can't race against cgroup_exit() changing the
1784 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001785 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001786 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001787 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001788
Ben Blum74a11662011-05-26 16:25:20 -07001789 task_lock(tsk);
Tejun Heo5abb8852013-06-12 21:04:49 -07001790 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001791 task_unlock(tsk);
1792
1793 /* Update the css_set linked lists if we're using them */
1794 write_lock(&css_set_lock);
1795 if (!list_empty(&tsk->cg_list))
Tejun Heo5abb8852013-06-12 21:04:49 -07001796 list_move(&tsk->cg_list, &new_cset->tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001797 write_unlock(&css_set_lock);
1798
1799 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001800 * We just gained a reference on old_cset by taking it from the
1801 * task. As trading it for new_cset is protected by cgroup_mutex,
1802 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001803 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001804 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
1805 put_css_set(old_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001806}
1807
Li Zefana043e3b2008-02-23 15:24:09 -08001808/**
Li Zefan081aa452013-03-13 09:17:09 +08001809 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
Ben Blum74a11662011-05-26 16:25:20 -07001810 * @cgrp: the cgroup to attach to
Li Zefan081aa452013-03-13 09:17:09 +08001811 * @tsk: the task or the leader of the threadgroup to be attached
1812 * @threadgroup: attach the whole threadgroup?
Ben Blum74a11662011-05-26 16:25:20 -07001813 *
Tejun Heo257058a2011-12-12 18:12:21 -08001814 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
Li Zefan081aa452013-03-13 09:17:09 +08001815 * task_lock of @tsk or each thread in the threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07001816 */
Tejun Heo47cfcd02013-04-07 09:29:51 -07001817static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk,
1818 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07001819{
1820 int retval, i, group_size;
Ben Blum74a11662011-05-26 16:25:20 -07001821 struct cgroupfs_root *root = cgrp->root;
Tejun Heo1c6727a2013-12-06 15:11:56 -05001822 struct cgroup_subsys_state *css, *failed_css = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07001823 /* threadgroup list cursor and array */
Li Zefan081aa452013-03-13 09:17:09 +08001824 struct task_struct *leader = tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08001825 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07001826 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001827 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07001828
1829 /*
1830 * step 0: in order to do expensive, possibly blocking operations for
1831 * every thread, we cannot iterate the thread group list, since it needs
1832 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08001833 * group - group_rwsem prevents new threads from appearing, and if
1834 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07001835 */
Li Zefan081aa452013-03-13 09:17:09 +08001836 if (threadgroup)
1837 group_size = get_nr_threads(tsk);
1838 else
1839 group_size = 1;
Ben Blumd8466872011-05-26 16:25:21 -07001840 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08001841 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07001842 if (!group)
1843 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07001844 /* pre-allocate to guarantee space while iterating in rcu read-side. */
Li Zefan3ac17072013-03-12 15:36:00 -07001845 retval = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
Ben Blumd8466872011-05-26 16:25:21 -07001846 if (retval)
1847 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07001848
Ben Blum74a11662011-05-26 16:25:20 -07001849 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001850 /*
1851 * Prevent freeing of tasks while we take a snapshot. Tasks that are
1852 * already PF_EXITING could be freed from underneath us unless we
1853 * take an rcu_read_lock.
1854 */
1855 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07001856 do {
Tejun Heo134d3372011-12-12 18:12:21 -08001857 struct task_and_cgroup ent;
1858
Tejun Heocd3d0952011-12-12 18:12:21 -08001859 /* @tsk either already exited or can't exit until the end */
1860 if (tsk->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08001861 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08001862
Ben Blum74a11662011-05-26 16:25:20 -07001863 /* as per above, nr_threads may decrease, but not increase. */
1864 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08001865 ent.task = tsk;
1866 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001867 /* nothing to do if this task is already in the cgroup */
1868 if (ent.cgrp == cgrp)
Anjana V Kumarea847532013-10-12 10:59:17 +08001869 goto next;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001870 /*
1871 * saying GFP_ATOMIC has no effect here because we did prealloc
1872 * earlier, but it's good form to communicate our expectations.
1873 */
Tejun Heo134d3372011-12-12 18:12:21 -08001874 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07001875 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07001876 i++;
Anjana V Kumarea847532013-10-12 10:59:17 +08001877 next:
Li Zefan081aa452013-03-13 09:17:09 +08001878 if (!threadgroup)
1879 break;
Ben Blum74a11662011-05-26 16:25:20 -07001880 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001881 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07001882 /* remember the number of threads in the array for later. */
1883 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001884 tset.tc_array = group;
1885 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07001886
Tejun Heo134d3372011-12-12 18:12:21 -08001887 /* methods shouldn't be called if no task is actually migrating */
1888 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001889 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08001890 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08001891
Ben Blum74a11662011-05-26 16:25:20 -07001892 /*
1893 * step 1: check that we can legitimately attach to the cgroup.
1894 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001895 for_each_css(css, i, cgrp) {
1896 if (css->ss->can_attach) {
1897 retval = css->ss->can_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001898 if (retval) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05001899 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07001900 goto out_cancel_attach;
1901 }
1902 }
Ben Blum74a11662011-05-26 16:25:20 -07001903 }
1904
1905 /*
1906 * step 2: make sure css_sets exist for all threads to be migrated.
1907 * we use find_css_set, which allocates a new one if necessary.
1908 */
Ben Blum74a11662011-05-26 16:25:20 -07001909 for (i = 0; i < group_size; i++) {
Tejun Heoa8ad8052013-06-21 15:52:04 -07001910 struct css_set *old_cset;
1911
Tejun Heo134d3372011-12-12 18:12:21 -08001912 tc = flex_array_get(group, i);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001913 old_cset = task_css_set(tc->task);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001914 tc->cset = find_css_set(old_cset, cgrp);
1915 if (!tc->cset) {
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001916 retval = -ENOMEM;
1917 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07001918 }
1919 }
1920
1921 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001922 * step 3: now that we're guaranteed success wrt the css_sets,
1923 * proceed to move all tasks to the new cgroup. There are no
1924 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07001925 */
Ben Blum74a11662011-05-26 16:25:20 -07001926 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08001927 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001928 cgroup_task_migrate(tc->cgrp, tc->task, tc->cset);
Ben Blum74a11662011-05-26 16:25:20 -07001929 }
1930 /* nothing is sensitive to fork() after this point. */
1931
1932 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001933 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07001934 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001935 for_each_css(css, i, cgrp)
1936 if (css->ss->attach)
1937 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001938
1939 /*
1940 * step 5: success! and cleanup
1941 */
Ben Blum74a11662011-05-26 16:25:20 -07001942 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001943out_put_css_set_refs:
1944 if (retval) {
1945 for (i = 0; i < group_size; i++) {
1946 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001947 if (!tc->cset)
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001948 break;
Li Zefan6f4b7e62013-07-31 16:18:36 +08001949 put_css_set(tc->cset);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001950 }
Ben Blum74a11662011-05-26 16:25:20 -07001951 }
1952out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07001953 if (retval) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05001954 for_each_css(css, i, cgrp) {
1955 if (css == failed_css)
Ben Blum74a11662011-05-26 16:25:20 -07001956 break;
Tejun Heo1c6727a2013-12-06 15:11:56 -05001957 if (css->ss->cancel_attach)
1958 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001959 }
1960 }
Ben Blum74a11662011-05-26 16:25:20 -07001961out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07001962 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07001963 return retval;
1964}
1965
1966/*
1967 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08001968 * function to attach either it or all tasks in its threadgroup. Will lock
1969 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07001970 */
1971static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001972{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001973 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001974 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001975 int ret;
1976
Ben Blum74a11662011-05-26 16:25:20 -07001977 if (!cgroup_lock_live_group(cgrp))
1978 return -ENODEV;
1979
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001980retry_find_task:
1981 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001982 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001983 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07001984 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07001985 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001986 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001987 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001988 }
Ben Blum74a11662011-05-26 16:25:20 -07001989 /*
1990 * even if we're attaching all tasks in the thread group, we
1991 * only need to check permissions on one of them.
1992 */
David Howellsc69e8d92008-11-14 10:39:19 +11001993 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07001994 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
1995 !uid_eq(cred->euid, tcred->uid) &&
1996 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001997 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001998 ret = -EACCES;
1999 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002000 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002001 } else
2002 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002003
2004 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002005 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002006
2007 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002008 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002009 * trapped in a cpuset, or RT worker may be born in a cgroup
2010 * with no rt_runtime allocated. Just say no.
2011 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002012 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002013 ret = -EINVAL;
2014 rcu_read_unlock();
2015 goto out_unlock_cgroup;
2016 }
2017
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002018 get_task_struct(tsk);
2019 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002020
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002021 threadgroup_lock(tsk);
2022 if (threadgroup) {
2023 if (!thread_group_leader(tsk)) {
2024 /*
2025 * a race with de_thread from another thread's exec()
2026 * may strip us of our leadership, if this happens,
2027 * there is no choice but to throw this task away and
2028 * try again; this is
2029 * "double-double-toil-and-trouble-check locking".
2030 */
2031 threadgroup_unlock(tsk);
2032 put_task_struct(tsk);
2033 goto retry_find_task;
2034 }
Li Zefan081aa452013-03-13 09:17:09 +08002035 }
2036
2037 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2038
Tejun Heocd3d0952011-12-12 18:12:21 -08002039 threadgroup_unlock(tsk);
2040
Paul Menagebbcb81d2007-10-18 23:39:32 -07002041 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002042out_unlock_cgroup:
Tejun Heo47cfcd02013-04-07 09:29:51 -07002043 mutex_unlock(&cgroup_mutex);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002044 return ret;
2045}
2046
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002047/**
2048 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2049 * @from: attach to all cgroups of a given task
2050 * @tsk: the task to be attached
2051 */
2052int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2053{
2054 struct cgroupfs_root *root;
2055 int retval = 0;
2056
Tejun Heo47cfcd02013-04-07 09:29:51 -07002057 mutex_lock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002058 for_each_active_root(root) {
Li Zefan6f4b7e62013-07-31 16:18:36 +08002059 struct cgroup *from_cgrp = task_cgroup_from_root(from, root);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002060
Li Zefan6f4b7e62013-07-31 16:18:36 +08002061 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002062 if (retval)
2063 break;
2064 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002065 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002066
2067 return retval;
2068}
2069EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2070
Tejun Heo182446d2013-08-08 20:11:24 -04002071static int cgroup_tasks_write(struct cgroup_subsys_state *css,
2072 struct cftype *cft, u64 pid)
Paul Menageaf351022008-07-25 01:47:01 -07002073{
Tejun Heo182446d2013-08-08 20:11:24 -04002074 return attach_task_by_pid(css->cgroup, pid, false);
Ben Blum74a11662011-05-26 16:25:20 -07002075}
2076
Tejun Heo182446d2013-08-08 20:11:24 -04002077static int cgroup_procs_write(struct cgroup_subsys_state *css,
2078 struct cftype *cft, u64 tgid)
Ben Blum74a11662011-05-26 16:25:20 -07002079{
Tejun Heo182446d2013-08-08 20:11:24 -04002080 return attach_task_by_pid(css->cgroup, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002081}
2082
Tejun Heo182446d2013-08-08 20:11:24 -04002083static int cgroup_release_agent_write(struct cgroup_subsys_state *css,
2084 struct cftype *cft, const char *buffer)
Paul Menagee788e0662008-07-25 01:46:59 -07002085{
Tejun Heo5f469902014-02-11 11:52:48 -05002086 struct cgroupfs_root *root = css->cgroup->root;
2087
2088 BUILD_BUG_ON(sizeof(root->release_agent_path) < PATH_MAX);
Tejun Heo182446d2013-08-08 20:11:24 -04002089 if (!cgroup_lock_live_group(css->cgroup))
Paul Menagee788e0662008-07-25 01:46:59 -07002090 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002091 spin_lock(&release_agent_path_lock);
Tejun Heo5f469902014-02-11 11:52:48 -05002092 strlcpy(root->release_agent_path, buffer,
2093 sizeof(root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002094 spin_unlock(&release_agent_path_lock);
Tejun Heo47cfcd02013-04-07 09:29:51 -07002095 mutex_unlock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07002096 return 0;
2097}
2098
Tejun Heo2da8ca82013-12-05 12:28:04 -05002099static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e0662008-07-25 01:46:59 -07002100{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002101 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002102
Paul Menagee788e0662008-07-25 01:46:59 -07002103 if (!cgroup_lock_live_group(cgrp))
2104 return -ENODEV;
2105 seq_puts(seq, cgrp->root->release_agent_path);
2106 seq_putc(seq, '\n');
Tejun Heo47cfcd02013-04-07 09:29:51 -07002107 mutex_unlock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07002108 return 0;
2109}
2110
Tejun Heo2da8ca82013-12-05 12:28:04 -05002111static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002112{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002113 struct cgroup *cgrp = seq_css(seq)->cgroup;
2114
2115 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002116 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002117}
2118
Tejun Heo2bd59d42014-02-11 11:52:49 -05002119static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2120 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002121{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002122 struct cgroup *cgrp = of->kn->parent->priv;
2123 struct cftype *cft = of->kn->priv;
2124 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002125 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002126
Tejun Heo2bd59d42014-02-11 11:52:49 -05002127 /*
2128 * kernfs guarantees that a file isn't deleted with operations in
2129 * flight, which means that the matching css is and stays alive and
2130 * doesn't need to be pinned. The RCU locking is not necessary
2131 * either. It's just for the convenience of using cgroup_css().
2132 */
2133 rcu_read_lock();
2134 css = cgroup_css(cgrp, cft->ss);
2135 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002136
Tejun Heoa742c592013-12-05 12:28:03 -05002137 if (cft->write_string) {
2138 ret = cft->write_string(css, cft, strstrip(buf));
2139 } else if (cft->write_u64) {
2140 unsigned long long v;
2141 ret = kstrtoull(buf, 0, &v);
2142 if (!ret)
2143 ret = cft->write_u64(css, cft, v);
2144 } else if (cft->write_s64) {
2145 long long v;
2146 ret = kstrtoll(buf, 0, &v);
2147 if (!ret)
2148 ret = cft->write_s64(css, cft, v);
2149 } else if (cft->trigger) {
2150 ret = cft->trigger(css, (unsigned int)cft->private);
2151 } else {
2152 ret = -EINVAL;
2153 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002154
Tejun Heoa742c592013-12-05 12:28:03 -05002155 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002156}
2157
Tejun Heo6612f052013-12-05 12:28:04 -05002158static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002159{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002160 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002161}
2162
2163static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2164{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002165 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002166}
2167
2168static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2169{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002170 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002171}
2172
2173static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2174{
Tejun Heo7da11272013-12-05 12:28:04 -05002175 struct cftype *cft = seq_cft(m);
2176 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002177
Tejun Heo2da8ca82013-12-05 12:28:04 -05002178 if (cft->seq_show)
2179 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002180
Tejun Heo896f5192013-12-05 12:28:04 -05002181 if (cft->read_u64)
2182 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2183 else if (cft->read_s64)
2184 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2185 else
2186 return -EINVAL;
2187 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002188}
2189
Tejun Heo2bd59d42014-02-11 11:52:49 -05002190static struct kernfs_ops cgroup_kf_single_ops = {
2191 .atomic_write_len = PAGE_SIZE,
2192 .write = cgroup_file_write,
2193 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002194};
2195
Tejun Heo2bd59d42014-02-11 11:52:49 -05002196static struct kernfs_ops cgroup_kf_ops = {
2197 .atomic_write_len = PAGE_SIZE,
2198 .write = cgroup_file_write,
2199 .seq_start = cgroup_seqfile_start,
2200 .seq_next = cgroup_seqfile_next,
2201 .seq_stop = cgroup_seqfile_stop,
2202 .seq_show = cgroup_seqfile_show,
2203};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002204
2205/*
2206 * cgroup_rename - Only allow simple rename of directories in place.
2207 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002208static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2209 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002210{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002211 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08002212 struct cgroup_name *name, *old_name;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002213 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002214
Tejun Heo2bd59d42014-02-11 11:52:49 -05002215 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002216 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002217 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002218 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002219
Tejun Heo6db8e852013-06-14 11:18:22 -07002220 /*
2221 * This isn't a proper migration and its usefulness is very
2222 * limited. Disallow if sane_behavior.
2223 */
2224 if (cgroup_sane_behavior(cgrp))
2225 return -EPERM;
2226
Tejun Heo2bd59d42014-02-11 11:52:49 -05002227 name = cgroup_alloc_name(new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002228 if (!name)
2229 return -ENOMEM;
2230
Tejun Heo2bd59d42014-02-11 11:52:49 -05002231 mutex_lock(&cgroup_tree_mutex);
2232 mutex_lock(&cgroup_mutex);
2233
2234 ret = kernfs_rename(kn, new_parent, new_name_str);
2235 if (!ret) {
2236 old_name = rcu_dereference_protected(cgrp->name, true);
2237 rcu_assign_pointer(cgrp->name, name);
2238 } else {
2239 old_name = name;
Li Zefan65dff752013-03-01 15:01:56 +08002240 }
2241
Tejun Heo2bd59d42014-02-11 11:52:49 -05002242 mutex_unlock(&cgroup_mutex);
2243 mutex_unlock(&cgroup_tree_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08002244
2245 kfree_rcu(old_name, rcu_head);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002246 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002247}
2248
Tejun Heo2bb566c2013-08-08 20:11:23 -04002249static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002250{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002251 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002252 struct kernfs_node *kn;
2253 struct lock_class_key *key = NULL;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002254
Tejun Heo2bd59d42014-02-11 11:52:49 -05002255#ifdef CONFIG_DEBUG_LOCK_ALLOC
2256 key = &cft->lockdep_key;
2257#endif
2258 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2259 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2260 NULL, false, key);
2261 if (IS_ERR(kn))
2262 return PTR_ERR(kn);
2263 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002264}
2265
Tejun Heob1f28d32013-06-28 16:24:10 -07002266/**
2267 * cgroup_addrm_files - add or remove files to a cgroup directory
2268 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002269 * @cfts: array of cftypes to be added
2270 * @is_add: whether to add or remove
2271 *
2272 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002273 * For removals, this function never fails. If addition fails, this
2274 * function doesn't remove files already added. The caller is responsible
2275 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002276 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002277static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2278 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002279{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002280 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002281 int ret;
2282
Tejun Heoace2bee2014-02-11 11:52:47 -05002283 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002284
2285 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002286 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo873fe092013-04-14 20:15:26 -07002287 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2288 continue;
Gao fengf33fddc2012-12-06 14:38:57 +08002289 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2290 continue;
2291 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2292 continue;
2293
Li Zefan2739d3c2013-01-21 18:18:33 +08002294 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002295 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002296 if (ret) {
Li Zefan2739d3c2013-01-21 18:18:33 +08002297 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
Tejun Heob1f28d32013-06-28 16:24:10 -07002298 cft->name, ret);
2299 return ret;
2300 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002301 } else {
2302 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002303 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002304 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002305 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002306}
2307
Tejun Heo21a2d342014-02-12 09:29:49 -05002308static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002309{
2310 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002311 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo492eb212013-08-08 20:11:25 -04002312 struct cgroup *root = &ss->root->top_cgroup;
Tejun Heo492eb212013-08-08 20:11:25 -04002313 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07002314 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002315
Tejun Heo21a2d342014-02-12 09:29:49 -05002316 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo4ac06012014-02-11 11:52:47 -05002317
Tejun Heo21a2d342014-02-12 09:29:49 -05002318 /* don't bother if @ss isn't attached */
2319 if (ss->root == &cgroup_dummy_root)
Tejun Heo9ccece82013-06-28 16:24:11 -07002320 return 0;
Li Zefane8c82d22013-06-18 18:48:37 +08002321
Li Zefane8c82d22013-06-18 18:48:37 +08002322 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04002323 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002324 struct cgroup *cgrp = css->cgroup;
2325
Li Zefane8c82d22013-06-18 18:48:37 +08002326 if (cgroup_is_dead(cgrp))
2327 continue;
2328
Tejun Heo21a2d342014-02-12 09:29:49 -05002329 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07002330 if (ret)
2331 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002332 }
Tejun Heo21a2d342014-02-12 09:29:49 -05002333
2334 if (is_add && !ret)
2335 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07002336 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002337}
2338
Tejun Heo2da440a2014-02-11 11:52:48 -05002339static void cgroup_exit_cftypes(struct cftype *cfts)
2340{
2341 struct cftype *cft;
2342
Tejun Heo2bd59d42014-02-11 11:52:49 -05002343 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2344 /* free copy for custom atomic_write_len, see init_cftypes() */
2345 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
2346 kfree(cft->kf_ops);
2347 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05002348 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002349 }
Tejun Heo2da440a2014-02-11 11:52:48 -05002350}
2351
Tejun Heo2bd59d42014-02-11 11:52:49 -05002352static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05002353{
2354 struct cftype *cft;
2355
Tejun Heo2bd59d42014-02-11 11:52:49 -05002356 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2357 struct kernfs_ops *kf_ops;
2358
Tejun Heo0adb0702014-02-12 09:29:48 -05002359 WARN_ON(cft->ss || cft->kf_ops);
2360
Tejun Heo2bd59d42014-02-11 11:52:49 -05002361 if (cft->seq_start)
2362 kf_ops = &cgroup_kf_ops;
2363 else
2364 kf_ops = &cgroup_kf_single_ops;
2365
2366 /*
2367 * Ugh... if @cft wants a custom max_write_len, we need to
2368 * make a copy of kf_ops to set its atomic_write_len.
2369 */
2370 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
2371 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
2372 if (!kf_ops) {
2373 cgroup_exit_cftypes(cfts);
2374 return -ENOMEM;
2375 }
2376 kf_ops->atomic_write_len = cft->max_write_len;
2377 }
2378
2379 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05002380 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002381 }
2382
2383 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05002384}
2385
Tejun Heo21a2d342014-02-12 09:29:49 -05002386static int cgroup_rm_cftypes_locked(struct cftype *cfts)
2387{
2388 lockdep_assert_held(&cgroup_tree_mutex);
2389
2390 if (!cfts || !cfts[0].ss)
2391 return -ENOENT;
2392
2393 list_del(&cfts->node);
2394 cgroup_apply_cftypes(cfts, false);
2395 cgroup_exit_cftypes(cfts);
2396 return 0;
2397}
2398
Tejun Heo8e3f6542012-04-01 12:09:55 -07002399/**
Tejun Heo80b13582014-02-12 09:29:48 -05002400 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2401 * @cfts: zero-length name terminated array of cftypes
2402 *
2403 * Unregister @cfts. Files described by @cfts are removed from all
2404 * existing cgroups and all future cgroups won't have them either. This
2405 * function can be called anytime whether @cfts' subsys is attached or not.
2406 *
2407 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2408 * registered.
2409 */
2410int cgroup_rm_cftypes(struct cftype *cfts)
2411{
Tejun Heo21a2d342014-02-12 09:29:49 -05002412 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002413
Tejun Heo21a2d342014-02-12 09:29:49 -05002414 mutex_lock(&cgroup_tree_mutex);
2415 ret = cgroup_rm_cftypes_locked(cfts);
2416 mutex_unlock(&cgroup_tree_mutex);
2417 return ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002418}
2419
2420/**
Tejun Heo8e3f6542012-04-01 12:09:55 -07002421 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2422 * @ss: target cgroup subsystem
2423 * @cfts: zero-length name terminated array of cftypes
2424 *
2425 * Register @cfts to @ss. Files described by @cfts are created for all
2426 * existing cgroups to which @ss is attached and all future cgroups will
2427 * have them too. This function can be called anytime whether @ss is
2428 * attached or not.
2429 *
2430 * Returns 0 on successful registration, -errno on failure. Note that this
2431 * function currently returns 0 as long as @cfts registration is successful
2432 * even if some file creation attempts on existing cgroups fail.
2433 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002434int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002435{
Tejun Heo9ccece82013-06-28 16:24:11 -07002436 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002437
Tejun Heo2bd59d42014-02-11 11:52:49 -05002438 ret = cgroup_init_cftypes(ss, cfts);
2439 if (ret)
2440 return ret;
Tejun Heo2bb566c2013-08-08 20:11:23 -04002441
Tejun Heo21a2d342014-02-12 09:29:49 -05002442 mutex_lock(&cgroup_tree_mutex);
2443
Tejun Heo0adb0702014-02-12 09:29:48 -05002444 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05002445 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07002446 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05002447 cgroup_rm_cftypes_locked(cfts);
2448
2449 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07002450 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002451}
2452EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2453
Li Zefana043e3b2008-02-23 15:24:09 -08002454/**
2455 * cgroup_task_count - count the number of tasks in a cgroup.
2456 * @cgrp: the cgroup in question
2457 *
2458 * Return the number of tasks in the cgroup.
2459 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002460int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002461{
2462 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07002463 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002464
Paul Menage817929e2007-10-18 23:39:36 -07002465 read_lock(&css_set_lock);
Tejun Heo69d02062013-06-12 21:04:50 -07002466 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2467 count += atomic_read(&link->cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002468 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002469 return count;
2470}
2471
2472/*
Tejun Heo0942eee2013-08-08 20:11:26 -04002473 * To reduce the fork() overhead for systems that are not actually using
2474 * their cgroups capability, we don't maintain the lists running through
2475 * each css_set to its tasks until we see the list actually used - in other
Tejun Heo72ec7022013-08-08 20:11:26 -04002476 * words after the first call to css_task_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002477 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002478static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002479{
2480 struct task_struct *p, *g;
2481 write_lock(&css_set_lock);
2482 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002483 /*
2484 * We need tasklist_lock because RCU is not safe against
2485 * while_each_thread(). Besides, a forking task that has passed
2486 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2487 * is not guaranteed to have its child immediately visible in the
2488 * tasklist if we walk through it with RCU.
2489 */
2490 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002491 do_each_thread(g, p) {
2492 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002493 /*
2494 * We should check if the process is exiting, otherwise
2495 * it will race with cgroup_exit() in that the list
2496 * entry won't be deleted though the process has exited.
2497 */
2498 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07002499 list_add(&p->cg_list, &task_css_set(p)->tasks);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002500 task_unlock(p);
2501 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002502 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002503 write_unlock(&css_set_lock);
2504}
2505
Tejun Heo574bd9f2012-11-09 09:12:29 -08002506/**
Tejun Heo492eb212013-08-08 20:11:25 -04002507 * css_next_child - find the next child of a given css
2508 * @pos_css: the current position (%NULL to initiate traversal)
2509 * @parent_css: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09002510 *
Tejun Heo492eb212013-08-08 20:11:25 -04002511 * This function returns the next child of @parent_css and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05002512 * under either cgroup_mutex or RCU read lock. The only requirement is
2513 * that @parent_css and @pos_css are accessible. The next sibling is
2514 * guaranteed to be returned regardless of their states.
Tejun Heo53fa5262013-05-24 10:55:38 +09002515 */
Tejun Heo492eb212013-08-08 20:11:25 -04002516struct cgroup_subsys_state *
2517css_next_child(struct cgroup_subsys_state *pos_css,
2518 struct cgroup_subsys_state *parent_css)
Tejun Heo53fa5262013-05-24 10:55:38 +09002519{
Tejun Heo492eb212013-08-08 20:11:25 -04002520 struct cgroup *pos = pos_css ? pos_css->cgroup : NULL;
2521 struct cgroup *cgrp = parent_css->cgroup;
Tejun Heo53fa5262013-05-24 10:55:38 +09002522 struct cgroup *next;
2523
Tejun Heoace2bee2014-02-11 11:52:47 -05002524 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09002525
2526 /*
2527 * @pos could already have been removed. Once a cgroup is removed,
2528 * its ->sibling.next is no longer updated when its next sibling
Tejun Heoea15f8c2013-06-13 19:27:42 -07002529 * changes. As CGRP_DEAD assertion is serialized and happens
2530 * before the cgroup is taken off the ->sibling list, if we see it
2531 * unasserted, it's guaranteed that the next sibling hasn't
2532 * finished its grace period even if it's already removed, and thus
2533 * safe to dereference from this RCU critical section. If
2534 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
2535 * to be visible as %true here.
Tejun Heo3b287a52013-08-08 20:11:24 -04002536 *
2537 * If @pos is dead, its next pointer can't be dereferenced;
2538 * however, as each cgroup is given a monotonically increasing
2539 * unique serial number and always appended to the sibling list,
2540 * the next one can be found by walking the parent's children until
2541 * we see a cgroup with higher serial number than @pos's. While
2542 * this path can be slower, it's taken only when either the current
2543 * cgroup is removed or iteration and removal race.
Tejun Heo53fa5262013-05-24 10:55:38 +09002544 */
Tejun Heo3b287a52013-08-08 20:11:24 -04002545 if (!pos) {
2546 next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling);
2547 } else if (likely(!cgroup_is_dead(pos))) {
Tejun Heo53fa5262013-05-24 10:55:38 +09002548 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04002549 } else {
2550 list_for_each_entry_rcu(next, &cgrp->children, sibling)
2551 if (next->serial_nr > pos->serial_nr)
2552 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09002553 }
2554
Tejun Heo492eb212013-08-08 20:11:25 -04002555 if (&next->sibling == &cgrp->children)
2556 return NULL;
2557
Tejun Heoca8bdca2013-08-26 18:40:56 -04002558 return cgroup_css(next, parent_css->ss);
Tejun Heo53fa5262013-05-24 10:55:38 +09002559}
Tejun Heo492eb212013-08-08 20:11:25 -04002560EXPORT_SYMBOL_GPL(css_next_child);
Tejun Heo53fa5262013-05-24 10:55:38 +09002561
2562/**
Tejun Heo492eb212013-08-08 20:11:25 -04002563 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002564 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002565 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002566 *
Tejun Heo492eb212013-08-08 20:11:25 -04002567 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002568 * to visit for pre-order traversal of @root's descendants. @root is
2569 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002570 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002571 * While this function requires cgroup_mutex or RCU read locking, it
2572 * doesn't require the whole traversal to be contained in a single critical
2573 * section. This function will return the correct next descendant as long
2574 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002575 */
Tejun Heo492eb212013-08-08 20:11:25 -04002576struct cgroup_subsys_state *
2577css_next_descendant_pre(struct cgroup_subsys_state *pos,
2578 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002579{
Tejun Heo492eb212013-08-08 20:11:25 -04002580 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002581
Tejun Heoace2bee2014-02-11 11:52:47 -05002582 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002583
Tejun Heobd8815a2013-08-08 20:11:27 -04002584 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09002585 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04002586 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002587
2588 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04002589 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002590 if (next)
2591 return next;
2592
2593 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04002594 while (pos != root) {
2595 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002596 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002597 return next;
Tejun Heo492eb212013-08-08 20:11:25 -04002598 pos = css_parent(pos);
Tejun Heo7805d002013-05-24 10:50:24 +09002599 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08002600
2601 return NULL;
2602}
Tejun Heo492eb212013-08-08 20:11:25 -04002603EXPORT_SYMBOL_GPL(css_next_descendant_pre);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002604
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002605/**
Tejun Heo492eb212013-08-08 20:11:25 -04002606 * css_rightmost_descendant - return the rightmost descendant of a css
2607 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002608 *
Tejun Heo492eb212013-08-08 20:11:25 -04002609 * Return the rightmost descendant of @pos. If there's no descendant, @pos
2610 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002611 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09002612 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002613 * While this function requires cgroup_mutex or RCU read locking, it
2614 * doesn't require the whole traversal to be contained in a single critical
2615 * section. This function will return the correct rightmost descendant as
2616 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002617 */
Tejun Heo492eb212013-08-08 20:11:25 -04002618struct cgroup_subsys_state *
2619css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002620{
Tejun Heo492eb212013-08-08 20:11:25 -04002621 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002622
Tejun Heoace2bee2014-02-11 11:52:47 -05002623 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002624
2625 do {
2626 last = pos;
2627 /* ->prev isn't RCU safe, walk ->next till the end */
2628 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04002629 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002630 pos = tmp;
2631 } while (pos);
2632
2633 return last;
2634}
Tejun Heo492eb212013-08-08 20:11:25 -04002635EXPORT_SYMBOL_GPL(css_rightmost_descendant);
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002636
Tejun Heo492eb212013-08-08 20:11:25 -04002637static struct cgroup_subsys_state *
2638css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002639{
Tejun Heo492eb212013-08-08 20:11:25 -04002640 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002641
2642 do {
2643 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04002644 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002645 } while (pos);
2646
2647 return last;
2648}
2649
2650/**
Tejun Heo492eb212013-08-08 20:11:25 -04002651 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002652 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002653 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002654 *
Tejun Heo492eb212013-08-08 20:11:25 -04002655 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002656 * to visit for post-order traversal of @root's descendants. @root is
2657 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002658 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002659 * While this function requires cgroup_mutex or RCU read locking, it
2660 * doesn't require the whole traversal to be contained in a single critical
2661 * section. This function will return the correct next descendant as long
2662 * as both @pos and @cgroup are accessible and @pos is a descendant of
2663 * @cgroup.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002664 */
Tejun Heo492eb212013-08-08 20:11:25 -04002665struct cgroup_subsys_state *
2666css_next_descendant_post(struct cgroup_subsys_state *pos,
2667 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002668{
Tejun Heo492eb212013-08-08 20:11:25 -04002669 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002670
Tejun Heoace2bee2014-02-11 11:52:47 -05002671 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002672
Tejun Heo58b79a92013-09-06 15:31:08 -04002673 /* if first iteration, visit leftmost descendant which may be @root */
2674 if (!pos)
2675 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002676
Tejun Heobd8815a2013-08-08 20:11:27 -04002677 /* if we visited @root, we're done */
2678 if (pos == root)
2679 return NULL;
2680
Tejun Heo574bd9f2012-11-09 09:12:29 -08002681 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo492eb212013-08-08 20:11:25 -04002682 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002683 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04002684 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002685
2686 /* no sibling left, visit parent */
Tejun Heobd8815a2013-08-08 20:11:27 -04002687 return css_parent(pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002688}
Tejun Heo492eb212013-08-08 20:11:25 -04002689EXPORT_SYMBOL_GPL(css_next_descendant_post);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002690
Tejun Heo0942eee2013-08-08 20:11:26 -04002691/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002692 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04002693 * @it: the iterator to advance
2694 *
2695 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04002696 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002697static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04002698{
2699 struct list_head *l = it->cset_link;
2700 struct cgrp_cset_link *link;
2701 struct css_set *cset;
2702
2703 /* Advance to the next non-empty css_set */
2704 do {
2705 l = l->next;
Tejun Heo72ec7022013-08-08 20:11:26 -04002706 if (l == &it->origin_css->cgroup->cset_links) {
Tejun Heod5158762013-08-08 20:11:26 -04002707 it->cset_link = NULL;
2708 return;
2709 }
2710 link = list_entry(l, struct cgrp_cset_link, cset_link);
2711 cset = link->cset;
2712 } while (list_empty(&cset->tasks));
2713 it->cset_link = l;
2714 it->task = cset->tasks.next;
2715}
2716
Tejun Heo0942eee2013-08-08 20:11:26 -04002717/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002718 * css_task_iter_start - initiate task iteration
2719 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04002720 * @it: the task iterator to use
2721 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002722 * Initiate iteration through the tasks of @css. The caller can call
2723 * css_task_iter_next() to walk through the tasks until the function
2724 * returns NULL. On completion of iteration, css_task_iter_end() must be
2725 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04002726 *
2727 * Note that this function acquires a lock which is released when the
2728 * iteration finishes. The caller can't sleep while iteration is in
2729 * progress.
2730 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002731void css_task_iter_start(struct cgroup_subsys_state *css,
2732 struct css_task_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002733 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002734{
2735 /*
Tejun Heo72ec7022013-08-08 20:11:26 -04002736 * The first time anyone tries to iterate across a css, we need to
2737 * enable the list linking each css_set to its tasks, and fix up
2738 * all existing tasks.
Paul Menage817929e2007-10-18 23:39:36 -07002739 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002740 if (!use_task_css_set_links)
2741 cgroup_enable_task_cg_lists();
2742
Paul Menage817929e2007-10-18 23:39:36 -07002743 read_lock(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002744
Tejun Heo72ec7022013-08-08 20:11:26 -04002745 it->origin_css = css;
2746 it->cset_link = &css->cgroup->cset_links;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002747
Tejun Heo72ec7022013-08-08 20:11:26 -04002748 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002749}
2750
Tejun Heo0942eee2013-08-08 20:11:26 -04002751/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002752 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04002753 * @it: the task iterator being iterated
2754 *
2755 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04002756 * initialized via css_task_iter_start(). Returns NULL when the iteration
2757 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04002758 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002759struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002760{
2761 struct task_struct *res;
2762 struct list_head *l = it->task;
Tejun Heo69d02062013-06-12 21:04:50 -07002763 struct cgrp_cset_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002764
2765 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo69d02062013-06-12 21:04:50 -07002766 if (!it->cset_link)
Paul Menage817929e2007-10-18 23:39:36 -07002767 return NULL;
2768 res = list_entry(l, struct task_struct, cg_list);
2769 /* Advance iterator to find next entry */
2770 l = l->next;
Tejun Heo69d02062013-06-12 21:04:50 -07002771 link = list_entry(it->cset_link, struct cgrp_cset_link, cset_link);
2772 if (l == &link->cset->tasks) {
Tejun Heo0942eee2013-08-08 20:11:26 -04002773 /*
2774 * We reached the end of this task list - move on to the
2775 * next cgrp_cset_link.
2776 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002777 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002778 } else {
2779 it->task = l;
2780 }
2781 return res;
2782}
2783
Tejun Heo0942eee2013-08-08 20:11:26 -04002784/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002785 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04002786 * @it: the task iterator to finish
2787 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002788 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04002789 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002790void css_task_iter_end(struct css_task_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002791 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002792{
2793 read_unlock(&css_set_lock);
2794}
2795
Cliff Wickman31a7df02008-02-07 00:14:42 -08002796static inline int started_after_time(struct task_struct *t1,
2797 struct timespec *time,
2798 struct task_struct *t2)
2799{
2800 int start_diff = timespec_compare(&t1->start_time, time);
2801 if (start_diff > 0) {
2802 return 1;
2803 } else if (start_diff < 0) {
2804 return 0;
2805 } else {
2806 /*
2807 * Arbitrarily, if two processes started at the same
2808 * time, we'll say that the lower pointer value
2809 * started first. Note that t2 may have exited by now
2810 * so this may not be a valid pointer any longer, but
2811 * that's fine - it still serves to distinguish
2812 * between two tasks started (effectively) simultaneously.
2813 */
2814 return t1 > t2;
2815 }
2816}
2817
2818/*
2819 * This function is a callback from heap_insert() and is used to order
2820 * the heap.
2821 * In this case we order the heap in descending task start time.
2822 */
2823static inline int started_after(void *p1, void *p2)
2824{
2825 struct task_struct *t1 = p1;
2826 struct task_struct *t2 = p2;
2827 return started_after_time(t1, &t2->start_time, t2);
2828}
2829
2830/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002831 * css_scan_tasks - iterate though all the tasks in a css
2832 * @css: the css to iterate tasks of
Tejun Heoe5358372013-08-08 20:11:26 -04002833 * @test: optional test callback
2834 * @process: process callback
2835 * @data: data passed to @test and @process
2836 * @heap: optional pre-allocated heap used for task iteration
Cliff Wickman31a7df02008-02-07 00:14:42 -08002837 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002838 * Iterate through all the tasks in @css, calling @test for each, and if it
2839 * returns %true, call @process for it also.
Cliff Wickman31a7df02008-02-07 00:14:42 -08002840 *
Tejun Heoe5358372013-08-08 20:11:26 -04002841 * @test may be NULL, meaning always true (select all tasks), which
Tejun Heo72ec7022013-08-08 20:11:26 -04002842 * effectively duplicates css_task_iter_{start,next,end}() but does not
Tejun Heoe5358372013-08-08 20:11:26 -04002843 * lock css_set_lock for the call to @process.
2844 *
2845 * It is guaranteed that @process will act on every task that is a member
Tejun Heo72ec7022013-08-08 20:11:26 -04002846 * of @css for the duration of this call. This function may or may not
2847 * call @process for tasks that exit or move to a different css during the
2848 * call, or are forked or move into the css during the call.
Tejun Heoe5358372013-08-08 20:11:26 -04002849 *
2850 * Note that @test may be called with locks held, and may in some
2851 * situations be called multiple times for the same task, so it should be
2852 * cheap.
2853 *
2854 * If @heap is non-NULL, a heap has been pre-allocated and will be used for
2855 * heap operations (and its "gt" member will be overwritten), else a
2856 * temporary heap will be used (allocation of which may cause this function
2857 * to fail).
Cliff Wickman31a7df02008-02-07 00:14:42 -08002858 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002859int css_scan_tasks(struct cgroup_subsys_state *css,
2860 bool (*test)(struct task_struct *, void *),
2861 void (*process)(struct task_struct *, void *),
2862 void *data, struct ptr_heap *heap)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002863{
2864 int retval, i;
Tejun Heo72ec7022013-08-08 20:11:26 -04002865 struct css_task_iter it;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002866 struct task_struct *p, *dropped;
2867 /* Never dereference latest_task, since it's not refcounted */
2868 struct task_struct *latest_task = NULL;
2869 struct ptr_heap tmp_heap;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002870 struct timespec latest_time = { 0, 0 };
2871
Tejun Heoe5358372013-08-08 20:11:26 -04002872 if (heap) {
Cliff Wickman31a7df02008-02-07 00:14:42 -08002873 /* The caller supplied our heap and pre-allocated its memory */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002874 heap->gt = &started_after;
2875 } else {
2876 /* We need to allocate our own heap memory */
2877 heap = &tmp_heap;
2878 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2879 if (retval)
2880 /* cannot allocate the heap */
2881 return retval;
2882 }
2883
2884 again:
2885 /*
Tejun Heo72ec7022013-08-08 20:11:26 -04002886 * Scan tasks in the css, using the @test callback to determine
Tejun Heoe5358372013-08-08 20:11:26 -04002887 * which are of interest, and invoking @process callback on the
2888 * ones which need an update. Since we don't want to hold any
2889 * locks during the task updates, gather tasks to be processed in a
2890 * heap structure. The heap is sorted by descending task start
2891 * time. If the statically-sized heap fills up, we overflow tasks
2892 * that started later, and in future iterations only consider tasks
2893 * that started after the latest task in the previous pass. This
Cliff Wickman31a7df02008-02-07 00:14:42 -08002894 * guarantees forward progress and that we don't miss any tasks.
2895 */
2896 heap->size = 0;
Tejun Heo72ec7022013-08-08 20:11:26 -04002897 css_task_iter_start(css, &it);
2898 while ((p = css_task_iter_next(&it))) {
Cliff Wickman31a7df02008-02-07 00:14:42 -08002899 /*
2900 * Only affect tasks that qualify per the caller's callback,
2901 * if he provided one
2902 */
Tejun Heoe5358372013-08-08 20:11:26 -04002903 if (test && !test(p, data))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002904 continue;
2905 /*
2906 * Only process tasks that started after the last task
2907 * we processed
2908 */
2909 if (!started_after_time(p, &latest_time, latest_task))
2910 continue;
2911 dropped = heap_insert(heap, p);
2912 if (dropped == NULL) {
2913 /*
2914 * The new task was inserted; the heap wasn't
2915 * previously full
2916 */
2917 get_task_struct(p);
2918 } else if (dropped != p) {
2919 /*
2920 * The new task was inserted, and pushed out a
2921 * different task
2922 */
2923 get_task_struct(p);
2924 put_task_struct(dropped);
2925 }
2926 /*
2927 * Else the new task was newer than anything already in
2928 * the heap and wasn't inserted
2929 */
2930 }
Tejun Heo72ec7022013-08-08 20:11:26 -04002931 css_task_iter_end(&it);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002932
2933 if (heap->size) {
2934 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002935 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002936 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002937 latest_time = q->start_time;
2938 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002939 }
2940 /* Process the task per the caller's callback */
Tejun Heoe5358372013-08-08 20:11:26 -04002941 process(q, data);
Paul Jackson4fe91d52008-04-29 00:59:55 -07002942 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002943 }
2944 /*
2945 * If we had to process any tasks at all, scan again
2946 * in case some of them were in the middle of forking
2947 * children that didn't get processed.
2948 * Not the most efficient way to do it, but it avoids
2949 * having to take callback_mutex in the fork path
2950 */
2951 goto again;
2952 }
2953 if (heap == &tmp_heap)
2954 heap_free(&tmp_heap);
2955 return 0;
2956}
2957
Tejun Heoe5358372013-08-08 20:11:26 -04002958static void cgroup_transfer_one_task(struct task_struct *task, void *data)
Tejun Heo8cc99342013-04-07 09:29:50 -07002959{
Tejun Heoe5358372013-08-08 20:11:26 -04002960 struct cgroup *new_cgroup = data;
Tejun Heo8cc99342013-04-07 09:29:50 -07002961
Tejun Heo47cfcd02013-04-07 09:29:51 -07002962 mutex_lock(&cgroup_mutex);
Tejun Heo8cc99342013-04-07 09:29:50 -07002963 cgroup_attach_task(new_cgroup, task, false);
Tejun Heo47cfcd02013-04-07 09:29:51 -07002964 mutex_unlock(&cgroup_mutex);
Tejun Heo8cc99342013-04-07 09:29:50 -07002965}
2966
2967/**
2968 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
2969 * @to: cgroup to which the tasks will be moved
2970 * @from: cgroup in which the tasks currently reside
2971 */
2972int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
2973{
Tejun Heo72ec7022013-08-08 20:11:26 -04002974 return css_scan_tasks(&from->dummy_css, NULL, cgroup_transfer_one_task,
2975 to, NULL);
Tejun Heo8cc99342013-04-07 09:29:50 -07002976}
2977
Paul Menage817929e2007-10-18 23:39:36 -07002978/*
Ben Blum102a7752009-09-23 15:56:26 -07002979 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002980 *
2981 * Reading this file can return large amounts of data if a cgroup has
2982 * *lots* of attached tasks. So it may need several calls to read(),
2983 * but we cannot guarantee that the information we produce is correct
2984 * unless we produce it entirely atomically.
2985 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002986 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002987
Li Zefan24528252012-01-20 11:58:43 +08002988/* which pidlist file are we talking about? */
2989enum cgroup_filetype {
2990 CGROUP_FILE_PROCS,
2991 CGROUP_FILE_TASKS,
2992};
2993
2994/*
2995 * A pidlist is a list of pids that virtually represents the contents of one
2996 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
2997 * a pair (one each for procs, tasks) for each pid namespace that's relevant
2998 * to the cgroup.
2999 */
3000struct cgroup_pidlist {
3001 /*
3002 * used to find which pidlist is wanted. doesn't change as long as
3003 * this particular list stays in the list.
3004 */
3005 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3006 /* array of xids */
3007 pid_t *list;
3008 /* how many elements the above list has */
3009 int length;
Li Zefan24528252012-01-20 11:58:43 +08003010 /* each of these stored in a list by its cgroup */
3011 struct list_head links;
3012 /* pointer to the cgroup we belong to, for list removal purposes */
3013 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003014 /* for delayed destruction */
3015 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003016};
3017
Paul Menagebbcb81d2007-10-18 23:39:32 -07003018/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003019 * The following two functions "fix" the issue where there are more pids
3020 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3021 * TODO: replace with a kernel-wide solution to this problem
3022 */
3023#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3024static void *pidlist_allocate(int count)
3025{
3026 if (PIDLIST_TOO_LARGE(count))
3027 return vmalloc(count * sizeof(pid_t));
3028 else
3029 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3030}
Tejun Heob1a21362013-11-29 10:42:58 -05003031
Ben Blumd1d9fd32009-09-23 15:56:28 -07003032static void pidlist_free(void *p)
3033{
3034 if (is_vmalloc_addr(p))
3035 vfree(p);
3036 else
3037 kfree(p);
3038}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003039
3040/*
Tejun Heob1a21362013-11-29 10:42:58 -05003041 * Used to destroy all pidlists lingering waiting for destroy timer. None
3042 * should be left afterwards.
3043 */
3044static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3045{
3046 struct cgroup_pidlist *l, *tmp_l;
3047
3048 mutex_lock(&cgrp->pidlist_mutex);
3049 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3050 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3051 mutex_unlock(&cgrp->pidlist_mutex);
3052
3053 flush_workqueue(cgroup_pidlist_destroy_wq);
3054 BUG_ON(!list_empty(&cgrp->pidlists));
3055}
3056
3057static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3058{
3059 struct delayed_work *dwork = to_delayed_work(work);
3060 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3061 destroy_dwork);
3062 struct cgroup_pidlist *tofree = NULL;
3063
3064 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003065
3066 /*
Tejun Heo04502362013-11-29 10:42:59 -05003067 * Destroy iff we didn't get queued again. The state won't change
3068 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003069 */
Tejun Heo04502362013-11-29 10:42:59 -05003070 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003071 list_del(&l->links);
3072 pidlist_free(l->list);
3073 put_pid_ns(l->key.ns);
3074 tofree = l;
3075 }
3076
Tejun Heob1a21362013-11-29 10:42:58 -05003077 mutex_unlock(&l->owner->pidlist_mutex);
3078 kfree(tofree);
3079}
3080
3081/*
Ben Blum102a7752009-09-23 15:56:26 -07003082 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003083 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003084 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003085static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003086{
Ben Blum102a7752009-09-23 15:56:26 -07003087 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003088
3089 /*
3090 * we presume the 0th element is unique, so i starts at 1. trivial
3091 * edge cases first; no work needs to be done for either
3092 */
3093 if (length == 0 || length == 1)
3094 return length;
3095 /* src and dest walk down the list; dest counts unique elements */
3096 for (src = 1; src < length; src++) {
3097 /* find next unique element */
3098 while (list[src] == list[src-1]) {
3099 src++;
3100 if (src == length)
3101 goto after;
3102 }
3103 /* dest always points to where the next unique element goes */
3104 list[dest] = list[src];
3105 dest++;
3106 }
3107after:
Ben Blum102a7752009-09-23 15:56:26 -07003108 return dest;
3109}
3110
Tejun Heoafb2bc12013-11-29 10:42:59 -05003111/*
3112 * The two pid files - task and cgroup.procs - guaranteed that the result
3113 * is sorted, which forced this whole pidlist fiasco. As pid order is
3114 * different per namespace, each namespace needs differently sorted list,
3115 * making it impossible to use, for example, single rbtree of member tasks
3116 * sorted by task pointer. As pidlists can be fairly large, allocating one
3117 * per open file is dangerous, so cgroup had to implement shared pool of
3118 * pidlists keyed by cgroup and namespace.
3119 *
3120 * All this extra complexity was caused by the original implementation
3121 * committing to an entirely unnecessary property. In the long term, we
3122 * want to do away with it. Explicitly scramble sort order if
3123 * sane_behavior so that no such expectation exists in the new interface.
3124 *
3125 * Scrambling is done by swapping every two consecutive bits, which is
3126 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3127 */
3128static pid_t pid_fry(pid_t pid)
3129{
3130 unsigned a = pid & 0x55555555;
3131 unsigned b = pid & 0xAAAAAAAA;
3132
3133 return (a << 1) | (b >> 1);
3134}
3135
3136static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3137{
3138 if (cgroup_sane_behavior(cgrp))
3139 return pid_fry(pid);
3140 else
3141 return pid;
3142}
3143
Ben Blum102a7752009-09-23 15:56:26 -07003144static int cmppid(const void *a, const void *b)
3145{
3146 return *(pid_t *)a - *(pid_t *)b;
3147}
3148
Tejun Heoafb2bc12013-11-29 10:42:59 -05003149static int fried_cmppid(const void *a, const void *b)
3150{
3151 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3152}
3153
Ben Blum72a8cb32009-09-23 15:56:27 -07003154static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3155 enum cgroup_filetype type)
3156{
3157 struct cgroup_pidlist *l;
3158 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003159 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003160
Tejun Heoe6b81712013-11-29 10:42:59 -05003161 lockdep_assert_held(&cgrp->pidlist_mutex);
3162
3163 list_for_each_entry(l, &cgrp->pidlists, links)
3164 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003165 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003166 return NULL;
3167}
3168
Ben Blum72a8cb32009-09-23 15:56:27 -07003169/*
3170 * find the appropriate pidlist for our purpose (given procs vs tasks)
3171 * returns with the lock on that pidlist already held, and takes care
3172 * of the use count, or returns NULL with no locks held if we're out of
3173 * memory.
3174 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003175static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3176 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003177{
3178 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003179
Tejun Heoe6b81712013-11-29 10:42:59 -05003180 lockdep_assert_held(&cgrp->pidlist_mutex);
3181
3182 l = cgroup_pidlist_find(cgrp, type);
3183 if (l)
3184 return l;
3185
Ben Blum72a8cb32009-09-23 15:56:27 -07003186 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003187 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003188 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003189 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003190
Tejun Heob1a21362013-11-29 10:42:58 -05003191 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003192 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003193 /* don't need task_nsproxy() if we're looking at ourself */
3194 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003195 l->owner = cgrp;
3196 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003197 return l;
3198}
3199
3200/*
Ben Blum102a7752009-09-23 15:56:26 -07003201 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3202 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003203static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3204 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003205{
3206 pid_t *array;
3207 int length;
3208 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003209 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003210 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003211 struct cgroup_pidlist *l;
3212
Tejun Heo4bac00d2013-11-29 10:42:59 -05003213 lockdep_assert_held(&cgrp->pidlist_mutex);
3214
Ben Blum102a7752009-09-23 15:56:26 -07003215 /*
3216 * If cgroup gets more users after we read count, we won't have
3217 * enough space - tough. This race is indistinguishable to the
3218 * caller from the case that the additional cgroup users didn't
3219 * show up until sometime later on.
3220 */
3221 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003222 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003223 if (!array)
3224 return -ENOMEM;
3225 /* now, populate the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003226 css_task_iter_start(&cgrp->dummy_css, &it);
3227 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003228 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003229 break;
Ben Blum102a7752009-09-23 15:56:26 -07003230 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003231 if (type == CGROUP_FILE_PROCS)
3232 pid = task_tgid_vnr(tsk);
3233 else
3234 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003235 if (pid > 0) /* make sure to only use valid results */
3236 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003237 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003238 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003239 length = n;
3240 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05003241 if (cgroup_sane_behavior(cgrp))
3242 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3243 else
3244 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003245 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003246 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003247
Tejun Heoe6b81712013-11-29 10:42:59 -05003248 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003249 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003250 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003251 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003252 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003253 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003254
3255 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003256 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003257 l->list = array;
3258 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003259 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003260 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003261}
3262
Balbir Singh846c7bb2007-10-18 23:39:44 -07003263/**
Li Zefana043e3b2008-02-23 15:24:09 -08003264 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003265 * @stats: cgroupstats to fill information into
3266 * @dentry: A dentry entry belonging to the cgroup for which stats have
3267 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003268 *
3269 * Build and fill cgroupstats so that taskstats can export it to user
3270 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003271 */
3272int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3273{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003274 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003275 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003276 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003277 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003278
Tejun Heo2bd59d42014-02-11 11:52:49 -05003279 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3280 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3281 kernfs_type(kn) != KERNFS_DIR)
3282 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003283
Tejun Heo2bd59d42014-02-11 11:52:49 -05003284 /*
3285 * We aren't being called from kernfs and there's no guarantee on
3286 * @kn->priv's validity. For this and css_tryget_from_dir(),
3287 * @kn->priv is RCU safe. Let's do the RCU dancing.
3288 */
3289 rcu_read_lock();
3290 cgrp = rcu_dereference(kn->priv);
3291 if (!cgrp) {
3292 rcu_read_unlock();
3293 return -ENOENT;
3294 }
Balbir Singh846c7bb2007-10-18 23:39:44 -07003295
Tejun Heo72ec7022013-08-08 20:11:26 -04003296 css_task_iter_start(&cgrp->dummy_css, &it);
3297 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003298 switch (tsk->state) {
3299 case TASK_RUNNING:
3300 stats->nr_running++;
3301 break;
3302 case TASK_INTERRUPTIBLE:
3303 stats->nr_sleeping++;
3304 break;
3305 case TASK_UNINTERRUPTIBLE:
3306 stats->nr_uninterruptible++;
3307 break;
3308 case TASK_STOPPED:
3309 stats->nr_stopped++;
3310 break;
3311 default:
3312 if (delayacct_is_task_waiting_on_io(tsk))
3313 stats->nr_io_wait++;
3314 break;
3315 }
3316 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003317 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003318
Tejun Heo2bd59d42014-02-11 11:52:49 -05003319 rcu_read_unlock();
3320 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003321}
3322
Paul Menage8f3ff202009-09-23 15:56:25 -07003323
Paul Menagecc31edc2008-10-18 20:28:04 -07003324/*
Ben Blum102a7752009-09-23 15:56:26 -07003325 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003326 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003327 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003328 */
3329
Ben Blum102a7752009-09-23 15:56:26 -07003330static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003331{
3332 /*
3333 * Initially we receive a position value that corresponds to
3334 * one more than the last pid shown (or 0 on the first call or
3335 * after a seek to the start). Use a binary-search to find the
3336 * next pid to display, if any
3337 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003338 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003339 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003340 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003341 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003342 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003343 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003344
Tejun Heo4bac00d2013-11-29 10:42:59 -05003345 mutex_lock(&cgrp->pidlist_mutex);
3346
3347 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003348 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003349 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003350 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003351 * could already have been destroyed.
3352 */
Tejun Heo5d224442013-12-05 12:28:04 -05003353 if (of->priv)
3354 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003355
3356 /*
3357 * Either this is the first start() after open or the matching
3358 * pidlist has been destroyed inbetween. Create a new one.
3359 */
Tejun Heo5d224442013-12-05 12:28:04 -05003360 if (!of->priv) {
3361 ret = pidlist_array_load(cgrp, type,
3362 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003363 if (ret)
3364 return ERR_PTR(ret);
3365 }
Tejun Heo5d224442013-12-05 12:28:04 -05003366 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003367
Paul Menagecc31edc2008-10-18 20:28:04 -07003368 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003369 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003370
Paul Menagecc31edc2008-10-18 20:28:04 -07003371 while (index < end) {
3372 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003373 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003374 index = mid;
3375 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003376 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003377 index = mid + 1;
3378 else
3379 end = mid;
3380 }
3381 }
3382 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003383 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003384 return NULL;
3385 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003386 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003387 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003388 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003389}
3390
Ben Blum102a7752009-09-23 15:56:26 -07003391static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003392{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003393 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003394 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05003395
Tejun Heo5d224442013-12-05 12:28:04 -05003396 if (l)
3397 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05003398 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05003399 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003400}
3401
Ben Blum102a7752009-09-23 15:56:26 -07003402static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003403{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003404 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003405 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07003406 pid_t *p = v;
3407 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003408 /*
3409 * Advance to the next pid in the array. If this goes off the
3410 * end, we're done
3411 */
3412 p++;
3413 if (p >= end) {
3414 return NULL;
3415 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05003416 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07003417 return p;
3418 }
3419}
3420
Ben Blum102a7752009-09-23 15:56:26 -07003421static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003422{
3423 return seq_printf(s, "%d\n", *(int *)v);
3424}
3425
Ben Blum102a7752009-09-23 15:56:26 -07003426/*
3427 * seq_operations functions for iterating on pidlists through seq_file -
3428 * independent of whether it's tasks or procs
3429 */
3430static const struct seq_operations cgroup_pidlist_seq_operations = {
3431 .start = cgroup_pidlist_start,
3432 .stop = cgroup_pidlist_stop,
3433 .next = cgroup_pidlist_next,
3434 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003435};
3436
Tejun Heo182446d2013-08-08 20:11:24 -04003437static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3438 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003439{
Tejun Heo182446d2013-08-08 20:11:24 -04003440 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003441}
3442
Tejun Heo182446d2013-08-08 20:11:24 -04003443static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3444 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003445{
Tejun Heo182446d2013-08-08 20:11:24 -04003446 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003447 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003448 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003449 else
Tejun Heo182446d2013-08-08 20:11:24 -04003450 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003451 return 0;
3452}
3453
Tejun Heo182446d2013-08-08 20:11:24 -04003454static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3455 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003456{
Tejun Heo182446d2013-08-08 20:11:24 -04003457 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003458}
3459
Tejun Heo182446d2013-08-08 20:11:24 -04003460static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
3461 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003462{
3463 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003464 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003465 else
Tejun Heo182446d2013-08-08 20:11:24 -04003466 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003467 return 0;
3468}
3469
Tejun Heod5c56ce2013-06-03 19:14:34 -07003470static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07003471 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07003472 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05003473 .seq_start = cgroup_pidlist_start,
3474 .seq_next = cgroup_pidlist_next,
3475 .seq_stop = cgroup_pidlist_stop,
3476 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003477 .private = CGROUP_FILE_PROCS,
Ben Blum74a11662011-05-26 16:25:20 -07003478 .write_u64 = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07003479 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003480 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003481 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07003482 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07003483 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07003484 .read_u64 = cgroup_clone_children_read,
3485 .write_u64 = cgroup_clone_children_write,
3486 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003487 {
Tejun Heo873fe092013-04-14 20:15:26 -07003488 .name = "cgroup.sane_behavior",
3489 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003490 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07003491 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07003492
3493 /*
3494 * Historical crazy stuff. These don't have "cgroup." prefix and
3495 * don't exist if sane_behavior. If you're depending on these, be
3496 * prepared to be burned.
3497 */
3498 {
3499 .name = "tasks",
3500 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05003501 .seq_start = cgroup_pidlist_start,
3502 .seq_next = cgroup_pidlist_next,
3503 .seq_stop = cgroup_pidlist_stop,
3504 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003505 .private = CGROUP_FILE_TASKS,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003506 .write_u64 = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003507 .mode = S_IRUGO | S_IWUSR,
3508 },
3509 {
3510 .name = "notify_on_release",
3511 .flags = CFTYPE_INSANE,
3512 .read_u64 = cgroup_read_notify_on_release,
3513 .write_u64 = cgroup_write_notify_on_release,
3514 },
Tejun Heo873fe092013-04-14 20:15:26 -07003515 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07003516 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07003517 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003518 .seq_show = cgroup_release_agent_show,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003519 .write_string = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05003520 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003521 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003522 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003523};
3524
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003525/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07003526 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003527 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003528 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07003529 *
3530 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003531 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07003532static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003533{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003534 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07003535 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003536
Tejun Heo8e3f6542012-04-01 12:09:55 -07003537 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07003538 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05003539 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07003540
3541 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003542 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003543
Tejun Heo0adb0702014-02-12 09:29:48 -05003544 list_for_each_entry(cfts, &ss->cfts, node) {
3545 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07003546 if (ret < 0)
3547 goto err;
3548 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003549 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003550 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07003551err:
3552 cgroup_clear_dir(cgrp, subsys_mask);
3553 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003554}
3555
Tejun Heo0c21ead2013-08-13 20:22:51 -04003556/*
3557 * css destruction is four-stage process.
3558 *
3559 * 1. Destruction starts. Killing of the percpu_ref is initiated.
3560 * Implemented in kill_css().
3561 *
3562 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
3563 * and thus css_tryget() is guaranteed to fail, the css can be offlined
3564 * by invoking offline_css(). After offlining, the base ref is put.
3565 * Implemented in css_killed_work_fn().
3566 *
3567 * 3. When the percpu_ref reaches zero, the only possible remaining
3568 * accessors are inside RCU read sections. css_release() schedules the
3569 * RCU callback.
3570 *
3571 * 4. After the grace period, the css can be freed. Implemented in
3572 * css_free_work_fn().
3573 *
3574 * It is actually hairier because both step 2 and 4 require process context
3575 * and thus involve punting to css->destroy_work adding two additional
3576 * steps to the already complex sequence.
3577 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04003578static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07003579{
3580 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04003581 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003582 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003583
Tejun Heo0ae78e02013-08-13 11:01:54 -04003584 if (css->parent)
3585 css_put(css->parent);
3586
Tejun Heo0c21ead2013-08-13 20:22:51 -04003587 css->ss->css_free(css);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003588 cgroup_put(cgrp);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003589}
3590
3591static void css_free_rcu_fn(struct rcu_head *rcu_head)
3592{
3593 struct cgroup_subsys_state *css =
3594 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
3595
Tejun Heo0c21ead2013-08-13 20:22:51 -04003596 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003597 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07003598}
3599
Tejun Heod3daf282013-06-13 19:39:16 -07003600static void css_release(struct percpu_ref *ref)
3601{
3602 struct cgroup_subsys_state *css =
3603 container_of(ref, struct cgroup_subsys_state, refcnt);
3604
Tejun Heoaec25022014-02-08 10:36:58 -05003605 rcu_assign_pointer(css->cgroup->subsys[css->ss->id], NULL);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003606 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003607}
3608
Tejun Heo623f9262013-08-13 11:01:55 -04003609static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss,
3610 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003611{
Paul Menagebd89aab2007-10-18 23:40:44 -07003612 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04003613 css->ss = ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003614 css->flags = 0;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003615
Tejun Heo0ae78e02013-08-13 11:01:54 -04003616 if (cgrp->parent)
Tejun Heoca8bdca2013-08-26 18:40:56 -04003617 css->parent = cgroup_css(cgrp->parent, ss);
Tejun Heo0ae78e02013-08-13 11:01:54 -04003618 else
Paul Menageddbcc7e2007-10-18 23:39:30 -07003619 css->flags |= CSS_ROOT;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003620
Tejun Heoca8bdca2013-08-26 18:40:56 -04003621 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003622}
3623
Li Zefan2a4ac632013-07-31 16:16:40 +08003624/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04003625static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003626{
Tejun Heo623f9262013-08-13 11:01:55 -04003627 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08003628 int ret = 0;
3629
Tejun Heoace2bee2014-02-11 11:52:47 -05003630 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003631 lockdep_assert_held(&cgroup_mutex);
3632
Tejun Heo92fb9742012-11-19 08:13:38 -08003633 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04003634 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003635 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04003636 css->flags |= CSS_ONLINE;
Tejun Heof20104d2013-08-13 20:22:50 -04003637 css->cgroup->nr_css++;
Tejun Heoaec25022014-02-08 10:36:58 -05003638 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003639 }
Tejun Heob1929db2012-11-19 08:13:38 -08003640 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003641}
3642
Li Zefan2a4ac632013-07-31 16:16:40 +08003643/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04003644static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003645{
Tejun Heo623f9262013-08-13 11:01:55 -04003646 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003647
Tejun Heoace2bee2014-02-11 11:52:47 -05003648 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003649 lockdep_assert_held(&cgroup_mutex);
3650
3651 if (!(css->flags & CSS_ONLINE))
3652 return;
3653
Li Zefand7eeac12013-03-12 15:35:59 -07003654 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04003655 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003656
Tejun Heoeb954192013-08-08 20:11:23 -04003657 css->flags &= ~CSS_ONLINE;
Tejun Heo09a503ea2013-08-13 20:22:50 -04003658 css->cgroup->nr_css--;
Tejun Heoaec25022014-02-08 10:36:58 -05003659 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003660}
3661
Tejun Heoc81c925a2013-12-06 15:11:56 -05003662/**
3663 * create_css - create a cgroup_subsys_state
3664 * @cgrp: the cgroup new css will be associated with
3665 * @ss: the subsys of new css
3666 *
3667 * Create a new css associated with @cgrp - @ss pair. On success, the new
3668 * css is online and installed in @cgrp with all interface files created.
3669 * Returns 0 on success, -errno on failure.
3670 */
3671static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
3672{
3673 struct cgroup *parent = cgrp->parent;
3674 struct cgroup_subsys_state *css;
3675 int err;
3676
Tejun Heoc81c925a2013-12-06 15:11:56 -05003677 lockdep_assert_held(&cgroup_mutex);
3678
3679 css = ss->css_alloc(cgroup_css(parent, ss));
3680 if (IS_ERR(css))
3681 return PTR_ERR(css);
3682
3683 err = percpu_ref_init(&css->refcnt, css_release);
3684 if (err)
3685 goto err_free;
3686
3687 init_css(css, ss, cgrp);
3688
Tejun Heoaec25022014-02-08 10:36:58 -05003689 err = cgroup_populate_dir(cgrp, 1 << ss->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003690 if (err)
3691 goto err_free;
3692
3693 err = online_css(css);
3694 if (err)
3695 goto err_free;
3696
Tejun Heo59f52962014-02-11 11:52:49 -05003697 cgroup_get(cgrp);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003698 css_get(css->parent);
3699
3700 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
3701 parent->parent) {
3702 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",
3703 current->comm, current->pid, ss->name);
3704 if (!strcmp(ss->name, "memory"))
3705 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
3706 ss->warned_broken_hierarchy = true;
3707 }
3708
3709 return 0;
3710
3711err_free:
3712 percpu_ref_cancel_init(&css->refcnt);
3713 ss->css_free(css);
3714 return err;
3715}
3716
Tejun Heo2bd59d42014-02-11 11:52:49 -05003717/**
Li Zefana043e3b2008-02-23 15:24:09 -08003718 * cgroup_create - create a cgroup
3719 * @parent: cgroup that will be parent of the new cgroup
Tejun Heo2bd59d42014-02-11 11:52:49 -05003720 * @name_str: name of the new cgroup
3721 * @mode: mode to set on new cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07003722 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003723static long cgroup_create(struct cgroup *parent, const char *name_str,
3724 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003725{
Paul Menagebd89aab2007-10-18 23:40:44 -07003726 struct cgroup *cgrp;
Li Zefan65dff752013-03-01 15:01:56 +08003727 struct cgroup_name *name;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003728 struct cgroupfs_root *root = parent->root;
Tejun Heob58c8992014-02-08 10:26:33 -05003729 int ssid, err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003730 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003731 struct kernfs_node *kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003732
Tejun Heo0a950f62012-11-19 09:02:12 -08003733 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07003734 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3735 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003736 return -ENOMEM;
3737
Tejun Heo2bd59d42014-02-11 11:52:49 -05003738 name = cgroup_alloc_name(name_str);
Tejun Heob58c8992014-02-08 10:26:33 -05003739 if (!name) {
3740 err = -ENOMEM;
Li Zefan65dff752013-03-01 15:01:56 +08003741 goto err_free_cgrp;
Tejun Heob58c8992014-02-08 10:26:33 -05003742 }
Li Zefan65dff752013-03-01 15:01:56 +08003743 rcu_assign_pointer(cgrp->name, name);
3744
Tejun Heoace2bee2014-02-11 11:52:47 -05003745 mutex_lock(&cgroup_tree_mutex);
3746
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003747 /*
Tejun Heo976c06b2012-11-05 09:16:59 -08003748 * Only live parents can have children. Note that the liveliness
3749 * check isn't strictly necessary because cgroup_mkdir() and
3750 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
3751 * anyway so that locking is contained inside cgroup proper and we
3752 * don't get nasty surprises if we ever grow another caller.
3753 */
3754 if (!cgroup_lock_live_group(parent)) {
3755 err = -ENODEV;
Tejun Heoace2bee2014-02-11 11:52:47 -05003756 goto err_unlock_tree;
Li Zefan0ab02ca2014-02-11 16:05:46 +08003757 }
3758
3759 /*
3760 * Temporarily set the pointer to NULL, so idr_find() won't return
3761 * a half-baked cgroup.
3762 */
3763 cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL);
3764 if (cgrp->id < 0) {
3765 err = -ENOMEM;
3766 goto err_unlock;
Tejun Heo976c06b2012-11-05 09:16:59 -08003767 }
3768
Paul Menagecc31edc2008-10-18 20:28:04 -07003769 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003770
Paul Menagebd89aab2007-10-18 23:40:44 -07003771 cgrp->parent = parent;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003772 cgrp->dummy_css.parent = &parent->dummy_css;
Paul Menagebd89aab2007-10-18 23:40:44 -07003773 cgrp->root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003774
Li Zefanb6abdb02008-03-04 14:28:19 -08003775 if (notify_on_release(parent))
3776 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3777
Tejun Heo2260e7f2012-11-19 08:13:38 -08003778 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
3779 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003780
Tejun Heo2bd59d42014-02-11 11:52:49 -05003781 /* create the directory */
3782 kn = kernfs_create_dir(parent->kn, name->name, mode, cgrp);
3783 if (IS_ERR(kn)) {
3784 err = PTR_ERR(kn);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003785 goto err_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003786 }
3787 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003788
Tejun Heo00356bd2013-06-18 11:14:22 -07003789 cgrp->serial_nr = cgroup_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09003790
Tejun Heo4e139af2012-11-19 08:13:36 -08003791 /* allocation complete, commit to creation */
Tejun Heo4e139af2012-11-19 08:13:36 -08003792 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
3793 root->number_of_cgroups++;
Tejun Heo28fd6f32012-11-19 08:13:36 -08003794
Tejun Heo2bd59d42014-02-11 11:52:49 -05003795 /*
3796 * Grab a reference on the root and parent so that they don't get
3797 * deleted while there are child cgroups.
3798 */
3799 cgroup_get_root(root);
Tejun Heo59f52962014-02-11 11:52:49 -05003800 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08003801
Tejun Heo0d802552013-12-06 15:11:56 -05003802 /*
3803 * @cgrp is now fully operational. If something fails after this
3804 * point, it'll be released via the normal destruction path.
3805 */
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003806 idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
3807
Tejun Heo2bb566c2013-08-08 20:11:23 -04003808 err = cgroup_addrm_files(cgrp, cgroup_base_files, true);
Tejun Heo628f7cd2013-06-28 16:24:11 -07003809 if (err)
3810 goto err_destroy;
3811
Tejun Heo9d403e92013-12-06 15:11:56 -05003812 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05003813 for_each_subsys(ss, ssid) {
3814 if (root->subsys_mask & (1 << ssid)) {
3815 err = create_css(cgrp, ss);
3816 if (err)
3817 goto err_destroy;
3818 }
Tejun Heoa8638032012-11-09 09:12:29 -08003819 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003820
Tejun Heo2bd59d42014-02-11 11:52:49 -05003821 kernfs_activate(kn);
3822
Paul Menageddbcc7e2007-10-18 23:39:30 -07003823 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003824 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003825
3826 return 0;
3827
Tejun Heo0a950f62012-11-19 09:02:12 -08003828err_free_id:
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003829 idr_remove(&root->cgroup_idr, cgrp->id);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003830err_unlock:
3831 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003832err_unlock_tree:
3833 mutex_unlock(&cgroup_tree_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003834 kfree(rcu_dereference_raw(cgrp->name));
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003835err_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07003836 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003837 return err;
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003838
3839err_destroy:
3840 cgroup_destroy_locked(cgrp);
3841 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003842 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003843 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003844}
3845
Tejun Heo2bd59d42014-02-11 11:52:49 -05003846static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
3847 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003848{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003849 struct cgroup *parent = parent_kn->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003850
Tejun Heo2bd59d42014-02-11 11:52:49 -05003851 return cgroup_create(parent, name, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003852}
3853
Tejun Heo223dbc32013-08-13 20:22:50 -04003854/*
3855 * This is called when the refcnt of a css is confirmed to be killed.
3856 * css_tryget() is now guaranteed to fail.
3857 */
3858static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07003859{
Tejun Heo223dbc32013-08-13 20:22:50 -04003860 struct cgroup_subsys_state *css =
3861 container_of(work, struct cgroup_subsys_state, destroy_work);
3862 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07003863
Tejun Heoace2bee2014-02-11 11:52:47 -05003864 mutex_lock(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003865 mutex_lock(&cgroup_mutex);
3866
3867 /*
Tejun Heo09a503ea2013-08-13 20:22:50 -04003868 * css_tryget() is guaranteed to fail now. Tell subsystems to
3869 * initate destruction.
3870 */
3871 offline_css(css);
3872
3873 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003874 * If @cgrp is marked dead, it's waiting for refs of all css's to
3875 * be disabled before proceeding to the second phase of cgroup
3876 * destruction. If we are the last one, kick it off.
3877 */
Tejun Heo09a503ea2013-08-13 20:22:50 -04003878 if (!cgrp->nr_css && cgroup_is_dead(cgrp))
Tejun Heof20104d2013-08-13 20:22:50 -04003879 cgroup_destroy_css_killed(cgrp);
3880
3881 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003882 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04003883
3884 /*
3885 * Put the css refs from kill_css(). Each css holds an extra
3886 * reference to the cgroup's dentry and cgroup removal proceeds
3887 * regardless of css refs. On the last put of each css, whenever
3888 * that may be, the extra dentry ref is put so that dentry
3889 * destruction happens only after all css's are released.
3890 */
3891 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07003892}
3893
Tejun Heo223dbc32013-08-13 20:22:50 -04003894/* css kill confirmation processing requires process context, bounce */
3895static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07003896{
3897 struct cgroup_subsys_state *css =
3898 container_of(ref, struct cgroup_subsys_state, refcnt);
3899
Tejun Heo223dbc32013-08-13 20:22:50 -04003900 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003901 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07003902}
3903
3904/**
Tejun Heoedae0c32013-08-13 20:22:51 -04003905 * kill_css - destroy a css
3906 * @css: css to destroy
3907 *
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003908 * This function initiates destruction of @css by removing cgroup interface
3909 * files and putting its base reference. ->css_offline() will be invoked
3910 * asynchronously once css_tryget() is guaranteed to fail and when the
3911 * reference count reaches zero, @css will be released.
Tejun Heoedae0c32013-08-13 20:22:51 -04003912 */
3913static void kill_css(struct cgroup_subsys_state *css)
3914{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003915 /*
3916 * This must happen before css is disassociated with its cgroup.
3917 * See seq_css() for details.
3918 */
Tejun Heoaec25022014-02-08 10:36:58 -05003919 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003920
Tejun Heoedae0c32013-08-13 20:22:51 -04003921 /*
3922 * Killing would put the base ref, but we need to keep it alive
3923 * until after ->css_offline().
3924 */
3925 css_get(css);
3926
3927 /*
3928 * cgroup core guarantees that, by the time ->css_offline() is
3929 * invoked, no new css reference will be given out via
3930 * css_tryget(). We can't simply call percpu_ref_kill() and
3931 * proceed to offlining css's because percpu_ref_kill() doesn't
3932 * guarantee that the ref is seen as killed on all CPUs on return.
3933 *
3934 * Use percpu_ref_kill_and_confirm() to get notifications as each
3935 * css is confirmed to be seen as killed on all CPUs.
3936 */
3937 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003938}
3939
3940/**
3941 * cgroup_destroy_locked - the first stage of cgroup destruction
3942 * @cgrp: cgroup to be destroyed
3943 *
3944 * css's make use of percpu refcnts whose killing latency shouldn't be
3945 * exposed to userland and are RCU protected. Also, cgroup core needs to
3946 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
3947 * invoked. To satisfy all the requirements, destruction is implemented in
3948 * the following two steps.
3949 *
3950 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
3951 * userland visible parts and start killing the percpu refcnts of
3952 * css's. Set up so that the next stage will be kicked off once all
3953 * the percpu refcnts are confirmed to be killed.
3954 *
3955 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
3956 * rest of destruction. Once all cgroup references are gone, the
3957 * cgroup is RCU-freed.
3958 *
3959 * This function implements s1. After this step, @cgrp is gone as far as
3960 * the userland is concerned and a new cgroup with the same name may be
3961 * created. As cgroup doesn't care about the names internally, this
3962 * doesn't cause any problem.
3963 */
Tejun Heo42809dd2012-11-19 08:13:37 -08003964static int cgroup_destroy_locked(struct cgroup *cgrp)
3965 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003966{
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003967 struct cgroup *child;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003968 struct cgroup_subsys_state *css;
3969 struct kernfs_node *kn;
Tejun Heoddd69142013-06-12 21:04:54 -07003970 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05003971 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003972
Tejun Heoace2bee2014-02-11 11:52:47 -05003973 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003974 lockdep_assert_held(&cgroup_mutex);
3975
Tejun Heoddd69142013-06-12 21:04:54 -07003976 /*
Tejun Heo6f3d828f02013-06-12 21:04:55 -07003977 * css_set_lock synchronizes access to ->cset_links and prevents
3978 * @cgrp from being removed while __put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07003979 */
3980 read_lock(&css_set_lock);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003981 empty = list_empty(&cgrp->cset_links);
Tejun Heoddd69142013-06-12 21:04:54 -07003982 read_unlock(&css_set_lock);
3983 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003984 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08003985
Tejun Heo1a90dd52012-11-05 09:16:59 -08003986 /*
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003987 * Make sure there's no live children. We can't test ->children
3988 * emptiness as dead children linger on it while being destroyed;
3989 * otherwise, "rmdir parent/child parent" may fail with -EBUSY.
3990 */
3991 empty = true;
3992 rcu_read_lock();
3993 list_for_each_entry_rcu(child, &cgrp->children, sibling) {
3994 empty = cgroup_is_dead(child);
3995 if (!empty)
3996 break;
3997 }
3998 rcu_read_unlock();
3999 if (!empty)
4000 return -EBUSY;
4001
4002 /*
Tejun Heoedae0c32013-08-13 20:22:51 -04004003 * Initiate massacre of all css's. cgroup_destroy_css_killed()
4004 * will be invoked to perform the rest of destruction once the
Tejun Heo4ac06012014-02-11 11:52:47 -05004005 * percpu refs of all css's are confirmed to be killed. This
4006 * involves removing the subsystem's files, drop cgroup_mutex.
Tejun Heo1a90dd52012-11-05 09:16:59 -08004007 */
Tejun Heo4ac06012014-02-11 11:52:47 -05004008 mutex_unlock(&cgroup_mutex);
Tejun Heo1c6727a2013-12-06 15:11:56 -05004009 for_each_css(css, ssid, cgrp)
4010 kill_css(css);
Tejun Heo4ac06012014-02-11 11:52:47 -05004011 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07004012
4013 /*
4014 * Mark @cgrp dead. This prevents further task migration and child
4015 * creation by disabling cgroup_lock_live_group(). Note that
Tejun Heo492eb212013-08-08 20:11:25 -04004016 * CGRP_DEAD assertion is depended upon by css_next_child() to
Tejun Heo455050d2013-06-13 19:27:41 -07004017 * resume iteration after dropping RCU read lock. See
Tejun Heo492eb212013-08-08 20:11:25 -04004018 * css_next_child() for details.
Tejun Heo455050d2013-06-13 19:27:41 -07004019 */
Tejun Heo54766d42013-06-12 21:04:53 -07004020 set_bit(CGRP_DEAD, &cgrp->flags);
Tejun Heo1a90dd52012-11-05 09:16:59 -08004021
Tejun Heo455050d2013-06-13 19:27:41 -07004022 /* CGRP_DEAD is set, remove from ->release_list for the last time */
4023 raw_spin_lock(&release_list_lock);
4024 if (!list_empty(&cgrp->release_list))
4025 list_del_init(&cgrp->release_list);
4026 raw_spin_unlock(&release_list_lock);
4027
4028 /*
Tejun Heof20104d2013-08-13 20:22:50 -04004029 * If @cgrp has css's attached, the second stage of cgroup
4030 * destruction is kicked off from css_killed_work_fn() after the
4031 * refs of all attached css's are killed. If @cgrp doesn't have
4032 * any css, we kick it off here.
Tejun Heo455050d2013-06-13 19:27:41 -07004033 */
Tejun Heof20104d2013-08-13 20:22:50 -04004034 if (!cgrp->nr_css)
4035 cgroup_destroy_css_killed(cgrp);
4036
Tejun Heo2bd59d42014-02-11 11:52:49 -05004037 /* remove @cgrp directory along with the base files */
Tejun Heo4ac06012014-02-11 11:52:47 -05004038 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004039
4040 /*
4041 * There are two control paths which try to determine cgroup from
4042 * dentry without going through kernfs - cgroupstats_build() and
4043 * css_tryget_from_dir(). Those are supported by RCU protecting
4044 * clearing of cgrp->kn->priv backpointer, which should happen
4045 * after all files under it have been removed.
4046 */
4047 kn = cgrp->kn;
4048 kernfs_get(kn);
4049
4050 kernfs_remove(cgrp->kn);
4051
4052 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
4053 kernfs_put(kn);
4054
Tejun Heo4ac06012014-02-11 11:52:47 -05004055 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07004056
Tejun Heoea15f8c2013-06-13 19:27:42 -07004057 return 0;
4058};
4059
Tejun Heod3daf282013-06-13 19:39:16 -07004060/**
Tejun Heof20104d2013-08-13 20:22:50 -04004061 * cgroup_destroy_css_killed - the second step of cgroup destruction
Tejun Heod3daf282013-06-13 19:39:16 -07004062 * @work: cgroup->destroy_free_work
4063 *
4064 * This function is invoked from a work item for a cgroup which is being
Tejun Heo09a503ea2013-08-13 20:22:50 -04004065 * destroyed after all css's are offlined and performs the rest of
4066 * destruction. This is the second step of destruction described in the
4067 * comment above cgroup_destroy_locked().
Tejun Heod3daf282013-06-13 19:39:16 -07004068 */
Tejun Heof20104d2013-08-13 20:22:50 -04004069static void cgroup_destroy_css_killed(struct cgroup *cgrp)
Tejun Heoea15f8c2013-06-13 19:27:42 -07004070{
Tejun Heoea15f8c2013-06-13 19:27:42 -07004071 struct cgroup *parent = cgrp->parent;
Tejun Heoea15f8c2013-06-13 19:27:42 -07004072
Tejun Heoace2bee2014-02-11 11:52:47 -05004073 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04004074 lockdep_assert_held(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004075
Paul Menage999cd8a2009-01-07 18:08:36 -08004076 /* delete this cgroup from parent->children */
Tejun Heoeb6fd502012-11-09 09:12:29 -08004077 list_del_rcu(&cgrp->sibling);
Tejun Heob0ca5a82012-04-01 12:09:54 -07004078
Tejun Heo59f52962014-02-11 11:52:49 -05004079 cgroup_put(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004080
Paul Menagebd89aab2007-10-18 23:40:44 -07004081 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004082 check_for_release(parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004083}
4084
Tejun Heo2bd59d42014-02-11 11:52:49 -05004085static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004086{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004087 struct cgroup *cgrp = kn->priv;
4088 int ret = 0;
4089
4090 /*
4091 * This is self-destruction but @kn can't be removed while this
4092 * callback is in progress. Let's break active protection. Once
4093 * the protection is broken, @cgrp can be destroyed at any point.
4094 * Pin it so that it stays accessible.
4095 */
4096 cgroup_get(cgrp);
4097 kernfs_break_active_protection(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004098
Tejun Heoace2bee2014-02-11 11:52:47 -05004099 mutex_lock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004100 mutex_lock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004101
4102 /*
4103 * @cgrp might already have been destroyed while we're trying to
4104 * grab the mutexes.
4105 */
4106 if (!cgroup_is_dead(cgrp))
4107 ret = cgroup_destroy_locked(cgrp);
4108
Tejun Heo42809dd2012-11-19 08:13:37 -08004109 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004110 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004111
Tejun Heo2bd59d42014-02-11 11:52:49 -05004112 kernfs_unbreak_active_protection(kn);
4113 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004114 return ret;
4115}
4116
Tejun Heo2bd59d42014-02-11 11:52:49 -05004117static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4118 .remount_fs = cgroup_remount,
4119 .show_options = cgroup_show_options,
4120 .mkdir = cgroup_mkdir,
4121 .rmdir = cgroup_rmdir,
4122 .rename = cgroup_rename,
4123};
4124
Li Zefan06a11922008-04-29 01:00:07 -07004125static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004126{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004127 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004128
4129 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004130
Tejun Heoace2bee2014-02-11 11:52:47 -05004131 mutex_lock(&cgroup_tree_mutex);
Tejun Heo648bb562012-11-19 08:13:36 -08004132 mutex_lock(&cgroup_mutex);
4133
Tejun Heo0adb0702014-02-12 09:29:48 -05004134 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004135
Paul Menageddbcc7e2007-10-18 23:39:30 -07004136 /* Create the top cgroup state for this subsystem */
Tejun Heo9871bf92013-06-24 15:21:47 -07004137 ss->root = &cgroup_dummy_root;
Tejun Heoca8bdca2013-08-26 18:40:56 -04004138 css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004139 /* We don't handle early failures gracefully */
4140 BUG_ON(IS_ERR(css));
Tejun Heo623f9262013-08-13 11:01:55 -04004141 init_css(css, ss, cgroup_dummy_top);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004142
Li Zefane8d55fd2008-04-29 01:00:13 -07004143 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004144 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004145 * newly registered, all tasks and hence the
4146 * init_css_set is in the subsystem's top cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004147 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004148
4149 need_forkexit_callback |= ss->fork || ss->exit;
4150
Li Zefane8d55fd2008-04-29 01:00:13 -07004151 /* At system boot, before all subsystems have been
4152 * registered, no tasks have been forked, so we don't
4153 * need to invoke fork callbacks here. */
4154 BUG_ON(!list_empty(&init_task.tasks));
4155
Tejun Heoae7f1642013-08-13 20:22:50 -04004156 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004157
Tejun Heo648bb562012-11-19 08:13:36 -08004158 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004159 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004160}
4161
4162/**
Li Zefana043e3b2008-02-23 15:24:09 -08004163 * cgroup_init_early - cgroup initialization at system boot
4164 *
4165 * Initialize cgroups at system boot, and initialize any
4166 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004167 */
4168int __init cgroup_init_early(void)
4169{
Tejun Heo30159ec2013-06-25 11:53:37 -07004170 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004171 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004172
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004173 atomic_set(&init_css_set.refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07004174 INIT_LIST_HEAD(&init_css_set.cgrp_links);
Paul Menage817929e2007-10-18 23:39:36 -07004175 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004176 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004177 css_set_count = 1;
Tejun Heo9871bf92013-06-24 15:21:47 -07004178 init_cgroup_root(&cgroup_dummy_root);
4179 cgroup_root_count = 1;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004180 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004181
Tejun Heo69d02062013-06-12 21:04:50 -07004182 init_cgrp_cset_link.cset = &init_css_set;
Tejun Heo9871bf92013-06-24 15:21:47 -07004183 init_cgrp_cset_link.cgrp = cgroup_dummy_top;
4184 list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -07004185 list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004186
Tejun Heo3ed80a62014-02-08 10:36:58 -05004187 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004188 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004189 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4190 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004191 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004192 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4193 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
4194
Tejun Heoaec25022014-02-08 10:36:58 -05004195 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004196 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004197
4198 if (ss->early_init)
4199 cgroup_init_subsys(ss);
4200 }
4201 return 0;
4202}
4203
4204/**
Li Zefana043e3b2008-02-23 15:24:09 -08004205 * cgroup_init - cgroup initialization
4206 *
4207 * Register cgroup filesystem and /proc file, and initialize
4208 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004209 */
4210int __init cgroup_init(void)
4211{
Tejun Heo30159ec2013-06-25 11:53:37 -07004212 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004213 unsigned long key;
Tejun Heo30159ec2013-06-25 11:53:37 -07004214 int i, err;
Paul Menagea4243162007-10-18 23:39:35 -07004215
Tejun Heo2bd59d42014-02-11 11:52:49 -05004216 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Tejun Heo2da440a2014-02-11 11:52:48 -05004217
Tejun Heo3ed80a62014-02-08 10:36:58 -05004218 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004219 if (!ss->early_init)
4220 cgroup_init_subsys(ss);
Tejun Heode00ffa2014-02-11 11:52:48 -05004221
4222 /*
4223 * cftype registration needs kmalloc and can't be done
4224 * during early_init. Register base cftypes separately.
4225 */
4226 if (ss->base_cftypes)
4227 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004228 }
4229
Tejun Heofa3ca072013-04-14 11:36:56 -07004230 /* allocate id for the dummy hierarchy */
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004231 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004232
Tejun Heo82fe9b02013-06-25 11:53:37 -07004233 /* Add init_css_set to the hash table */
4234 key = css_set_hash(init_css_set.subsys);
4235 hash_add(css_set_table, &init_css_set.hlist, key);
4236
Tejun Heofc76df72013-06-25 11:53:37 -07004237 BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1));
Greg KH676db4a2010-08-05 13:53:35 -07004238
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004239 err = idr_alloc(&cgroup_dummy_root.cgroup_idr, cgroup_dummy_top,
4240 0, 1, GFP_KERNEL);
4241 BUG_ON(err < 0);
4242
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004243 mutex_unlock(&cgroup_mutex);
4244
Greg KH676db4a2010-08-05 13:53:35 -07004245 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004246 if (!cgroup_kobj)
4247 return -ENOMEM;
Greg KH676db4a2010-08-05 13:53:35 -07004248
4249 err = register_filesystem(&cgroup_fs_type);
4250 if (err < 0) {
4251 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004252 return err;
Greg KH676db4a2010-08-05 13:53:35 -07004253 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004254
Li Zefan46ae2202008-04-29 01:00:08 -07004255 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004256 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004257}
Paul Menageb4f48b62007-10-18 23:39:33 -07004258
Tejun Heoe5fca242013-11-22 17:14:39 -05004259static int __init cgroup_wq_init(void)
4260{
4261 /*
4262 * There isn't much point in executing destruction path in
4263 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08004264 *
4265 * XXX: Must be ordered to make sure parent is offlined after
4266 * children. The ordering requirement is for memcg where a
4267 * parent's offline may wait for a child's leading to deadlock. In
4268 * the long term, this should be fixed from memcg side.
Tejun Heoe5fca242013-11-22 17:14:39 -05004269 *
4270 * We would prefer to do this in cgroup_init() above, but that
4271 * is called before init_workqueues(): so leave this until after.
4272 */
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08004273 cgroup_destroy_wq = alloc_ordered_workqueue("cgroup_destroy", 0);
Tejun Heoe5fca242013-11-22 17:14:39 -05004274 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004275
4276 /*
4277 * Used to destroy pidlists and separate to serve as flush domain.
4278 * Cap @max_active to 1 too.
4279 */
4280 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4281 0, 1);
4282 BUG_ON(!cgroup_pidlist_destroy_wq);
4283
Tejun Heoe5fca242013-11-22 17:14:39 -05004284 return 0;
4285}
4286core_initcall(cgroup_wq_init);
4287
Paul Menagea4243162007-10-18 23:39:35 -07004288/*
4289 * proc_cgroup_show()
4290 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4291 * - Used for /proc/<pid>/cgroup.
4292 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4293 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004294 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004295 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4296 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4297 * cgroup to top_cgroup.
4298 */
4299
4300/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004301int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004302{
4303 struct pid *pid;
4304 struct task_struct *tsk;
4305 char *buf;
4306 int retval;
4307 struct cgroupfs_root *root;
4308
4309 retval = -ENOMEM;
4310 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4311 if (!buf)
4312 goto out;
4313
4314 retval = -ESRCH;
4315 pid = m->private;
4316 tsk = get_pid_task(pid, PIDTYPE_PID);
4317 if (!tsk)
4318 goto out_free;
4319
4320 retval = 0;
4321
4322 mutex_lock(&cgroup_mutex);
4323
Li Zefane5f6a862009-01-07 18:07:41 -08004324 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004325 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004326 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004327 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004328
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004329 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004330 for_each_subsys(ss, ssid)
4331 if (root->subsys_mask & (1 << ssid))
4332 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004333 if (strlen(root->name))
4334 seq_printf(m, "%sname=%s", count ? "," : "",
4335 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004336 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004337 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004338 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004339 if (retval < 0)
4340 goto out_unlock;
4341 seq_puts(m, buf);
4342 seq_putc(m, '\n');
4343 }
4344
4345out_unlock:
4346 mutex_unlock(&cgroup_mutex);
4347 put_task_struct(tsk);
4348out_free:
4349 kfree(buf);
4350out:
4351 return retval;
4352}
4353
Paul Menagea4243162007-10-18 23:39:35 -07004354/* Display information about each subsystem and each hierarchy */
4355static int proc_cgroupstats_show(struct seq_file *m, void *v)
4356{
Tejun Heo30159ec2013-06-25 11:53:37 -07004357 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004358 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004359
Paul Menage8bab8dd2008-04-04 14:29:57 -07004360 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004361 /*
4362 * ideally we don't want subsystems moving around while we do this.
4363 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4364 * subsys/hierarchy state.
4365 */
Paul Menagea4243162007-10-18 23:39:35 -07004366 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004367
4368 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004369 seq_printf(m, "%s\t%d\t%d\t%d\n",
4370 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004371 ss->root->number_of_cgroups, !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004372
Paul Menagea4243162007-10-18 23:39:35 -07004373 mutex_unlock(&cgroup_mutex);
4374 return 0;
4375}
4376
4377static int cgroupstats_open(struct inode *inode, struct file *file)
4378{
Al Viro9dce07f2008-03-29 03:07:28 +00004379 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004380}
4381
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004382static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004383 .open = cgroupstats_open,
4384 .read = seq_read,
4385 .llseek = seq_lseek,
4386 .release = single_release,
4387};
4388
Paul Menageb4f48b62007-10-18 23:39:33 -07004389/**
4390 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004391 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004392 *
4393 * Description: A task inherits its parent's cgroup at fork().
4394 *
4395 * A pointer to the shared css_set was automatically copied in
4396 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo9bb71302012-10-18 17:52:07 -07004397 * it was not made under the protection of RCU or cgroup_mutex, so
4398 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4399 * have already changed current->cgroups, allowing the previously
4400 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004401 *
4402 * At the point that cgroup_fork() is called, 'current' is the parent
4403 * task, and the passed argument 'child' points to the child task.
4404 */
4405void cgroup_fork(struct task_struct *child)
4406{
Tejun Heo9bb71302012-10-18 17:52:07 -07004407 task_lock(current);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004408 get_css_set(task_css_set(current));
Paul Menage817929e2007-10-18 23:39:36 -07004409 child->cgroups = current->cgroups;
Tejun Heo9bb71302012-10-18 17:52:07 -07004410 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004411 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004412}
4413
4414/**
Li Zefana043e3b2008-02-23 15:24:09 -08004415 * cgroup_post_fork - called on a new task after adding it to the task list
4416 * @child: the task in question
4417 *
Tejun Heo5edee612012-10-16 15:03:14 -07004418 * Adds the task to the list running through its css_set if necessary and
4419 * call the subsystem fork() callbacks. Has to be after the task is
4420 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04004421 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07004422 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004423 */
Paul Menage817929e2007-10-18 23:39:36 -07004424void cgroup_post_fork(struct task_struct *child)
4425{
Tejun Heo30159ec2013-06-25 11:53:37 -07004426 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07004427 int i;
4428
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004429 /*
4430 * use_task_css_set_links is set to 1 before we walk the tasklist
4431 * under the tasklist_lock and we read it here after we added the child
4432 * to the tasklist under the tasklist_lock as well. If the child wasn't
4433 * yet in the tasklist when we walked through it from
4434 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4435 * should be visible now due to the paired locking and barriers implied
4436 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4437 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4438 * lock on fork.
4439 */
Paul Menage817929e2007-10-18 23:39:36 -07004440 if (use_task_css_set_links) {
4441 write_lock(&css_set_lock);
Tejun Heod8783832012-10-18 17:40:30 -07004442 task_lock(child);
4443 if (list_empty(&child->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07004444 list_add(&child->cg_list, &task_css_set(child)->tasks);
Tejun Heod8783832012-10-18 17:40:30 -07004445 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004446 write_unlock(&css_set_lock);
4447 }
Tejun Heo5edee612012-10-16 15:03:14 -07004448
4449 /*
4450 * Call ss->fork(). This must happen after @child is linked on
4451 * css_set; otherwise, @child might change state between ->fork()
4452 * and addition to css_set.
4453 */
4454 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004455 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07004456 if (ss->fork)
4457 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07004458 }
Paul Menage817929e2007-10-18 23:39:36 -07004459}
Tejun Heo5edee612012-10-16 15:03:14 -07004460
Paul Menage817929e2007-10-18 23:39:36 -07004461/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004462 * cgroup_exit - detach cgroup from exiting task
4463 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004464 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004465 *
4466 * Description: Detach cgroup from @tsk and release it.
4467 *
4468 * Note that cgroups marked notify_on_release force every task in
4469 * them to take the global cgroup_mutex mutex when exiting.
4470 * This could impact scaling on very large systems. Be reluctant to
4471 * use notify_on_release cgroups where very high task exit scaling
4472 * is required on large systems.
4473 *
4474 * the_top_cgroup_hack:
4475 *
4476 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4477 *
4478 * We call cgroup_exit() while the task is still competent to
4479 * handle notify_on_release(), then leave the task attached to the
4480 * root cgroup in each hierarchy for the remainder of its exit.
4481 *
4482 * To do this properly, we would increment the reference count on
4483 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4484 * code we would add a second cgroup function call, to drop that
4485 * reference. This would just create an unnecessary hot spot on
4486 * the top_cgroup reference count, to no avail.
4487 *
4488 * Normally, holding a reference to a cgroup without bumping its
4489 * count is unsafe. The cgroup could go away, or someone could
4490 * attach us to a different cgroup, decrementing the count on
4491 * the first cgroup that we never incremented. But in this case,
4492 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004493 * which wards off any cgroup_attach_task() attempts, or task is a failed
4494 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004495 */
4496void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4497{
Tejun Heo30159ec2013-06-25 11:53:37 -07004498 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07004499 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004500 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004501
4502 /*
4503 * Unlink from the css_set task list if necessary.
4504 * Optimistically check cg_list before taking
4505 * css_set_lock
4506 */
4507 if (!list_empty(&tsk->cg_list)) {
4508 write_lock(&css_set_lock);
4509 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004510 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004511 write_unlock(&css_set_lock);
4512 }
4513
Paul Menageb4f48b62007-10-18 23:39:33 -07004514 /* Reassign the task to the init_css_set. */
4515 task_lock(tsk);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004516 cset = task_css_set(tsk);
4517 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004518
4519 if (run_callbacks && need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004520 /* see cgroup_post_fork() for details */
4521 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004522 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04004523 struct cgroup_subsys_state *old_css = cset->subsys[i];
4524 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07004525
Tejun Heoeb954192013-08-08 20:11:23 -04004526 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004527 }
4528 }
4529 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004530 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004531
Tejun Heo5abb8852013-06-12 21:04:49 -07004532 put_css_set_taskexit(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07004533}
Paul Menage697f4162007-10-18 23:39:34 -07004534
Paul Menagebd89aab2007-10-18 23:40:44 -07004535static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004536{
Li Zefanf50daa72013-03-01 15:06:07 +08004537 if (cgroup_is_releasable(cgrp) &&
Tejun Heo6f3d828f02013-06-12 21:04:55 -07004538 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
Li Zefanf50daa72013-03-01 15:06:07 +08004539 /*
4540 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07004541 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08004542 * it now
4543 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004544 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08004545
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004546 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07004547 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07004548 list_empty(&cgrp->release_list)) {
4549 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004550 need_schedule_work = 1;
4551 }
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004552 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004553 if (need_schedule_work)
4554 schedule_work(&release_agent_work);
4555 }
4556}
4557
Paul Menage81a6a5c2007-10-18 23:39:38 -07004558/*
4559 * Notify userspace when a cgroup is released, by running the
4560 * configured release agent with the name of the cgroup (path
4561 * relative to the root of cgroup file system) as the argument.
4562 *
4563 * Most likely, this user command will try to rmdir this cgroup.
4564 *
4565 * This races with the possibility that some other task will be
4566 * attached to this cgroup before it is removed, or that some other
4567 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4568 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4569 * unused, and this cgroup will be reprieved from its death sentence,
4570 * to continue to serve a useful existence. Next time it's released,
4571 * we will get notified again, if it still has 'notify_on_release' set.
4572 *
4573 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4574 * means only wait until the task is successfully execve()'d. The
4575 * separate release agent task is forked by call_usermodehelper(),
4576 * then control in this thread returns here, without waiting for the
4577 * release agent task. We don't bother to wait because the caller of
4578 * this routine has no use for the exit status of the release agent
4579 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004580 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004581static void cgroup_release_agent(struct work_struct *work)
4582{
4583 BUG_ON(work != &release_agent_work);
4584 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004585 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004586 while (!list_empty(&release_list)) {
4587 char *argv[3], *envp[3];
4588 int i;
Paul Menagee788e0662008-07-25 01:46:59 -07004589 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004590 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004591 struct cgroup,
4592 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004593 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004594 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004595 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e0662008-07-25 01:46:59 -07004596 if (!pathbuf)
4597 goto continue_free;
4598 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4599 goto continue_free;
4600 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4601 if (!agentbuf)
4602 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004603
4604 i = 0;
Paul Menagee788e0662008-07-25 01:46:59 -07004605 argv[i++] = agentbuf;
4606 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004607 argv[i] = NULL;
4608
4609 i = 0;
4610 /* minimal command environment */
4611 envp[i++] = "HOME=/";
4612 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4613 envp[i] = NULL;
4614
4615 /* Drop the lock while we invoke the usermode helper,
4616 * since the exec could involve hitting disk and hence
4617 * be a slow process */
4618 mutex_unlock(&cgroup_mutex);
4619 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004620 mutex_lock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07004621 continue_free:
4622 kfree(pathbuf);
4623 kfree(agentbuf);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004624 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004625 }
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004626 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004627 mutex_unlock(&cgroup_mutex);
4628}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004629
4630static int __init cgroup_disable(char *str)
4631{
Tejun Heo30159ec2013-06-25 11:53:37 -07004632 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004633 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07004634 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004635
4636 while ((token = strsep(&str, ",")) != NULL) {
4637 if (!*token)
4638 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004639
Tejun Heo3ed80a62014-02-08 10:36:58 -05004640 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004641 if (!strcmp(token, ss->name)) {
4642 ss->disabled = 1;
4643 printk(KERN_INFO "Disabling %s control group"
4644 " subsystem\n", ss->name);
4645 break;
4646 }
4647 }
4648 }
4649 return 1;
4650}
4651__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004652
Tejun Heob77d7b62013-08-13 11:01:54 -04004653/**
Tejun Heo5a17f542014-02-11 11:52:47 -05004654 * css_tryget_from_dir - get corresponding css from the dentry of a cgroup dir
Tejun Heo35cf0832013-08-26 18:40:56 -04004655 * @dentry: directory dentry of interest
4656 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04004657 *
Tejun Heo5a17f542014-02-11 11:52:47 -05004658 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
4659 * to get the corresponding css and return it. If such css doesn't exist
4660 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02004661 */
Tejun Heo5a17f542014-02-11 11:52:47 -05004662struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry,
4663 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004664{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004665 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
4666 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004667 struct cgroup *cgrp;
Tejun Heob77d7b62013-08-13 11:01:54 -04004668
Tejun Heo35cf0832013-08-26 18:40:56 -04004669 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004670 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4671 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004672 return ERR_PTR(-EBADF);
4673
Tejun Heo5a17f542014-02-11 11:52:47 -05004674 rcu_read_lock();
4675
Tejun Heo2bd59d42014-02-11 11:52:49 -05004676 /*
4677 * This path doesn't originate from kernfs and @kn could already
4678 * have been or be removed at any point. @kn->priv is RCU
4679 * protected for this access. See destroy_locked() for details.
4680 */
4681 cgrp = rcu_dereference(kn->priv);
4682 if (cgrp)
4683 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05004684
4685 if (!css || !css_tryget(css))
4686 css = ERR_PTR(-ENOENT);
4687
4688 rcu_read_unlock();
4689 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004690}
Stephane Eraniane5d13672011-02-14 11:20:01 +02004691
Li Zefan1cb650b2013-08-19 10:05:24 +08004692/**
4693 * css_from_id - lookup css by id
4694 * @id: the cgroup id
4695 * @ss: cgroup subsys to be looked into
4696 *
4697 * Returns the css if there's valid one with @id, otherwise returns NULL.
4698 * Should be called under rcu_read_lock().
4699 */
4700struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
4701{
4702 struct cgroup *cgrp;
4703
Tejun Heoace2bee2014-02-11 11:52:47 -05004704 cgroup_assert_mutexes_or_rcu_locked();
Li Zefan1cb650b2013-08-19 10:05:24 +08004705
4706 cgrp = idr_find(&ss->root->cgroup_idr, id);
4707 if (cgrp)
Tejun Heod1625962013-08-27 14:27:23 -04004708 return cgroup_css(cgrp, ss);
Li Zefan1cb650b2013-08-19 10:05:24 +08004709 return NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004710}
4711
Paul Menagefe693432009-09-23 15:56:20 -07004712#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04004713static struct cgroup_subsys_state *
4714debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07004715{
4716 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4717
4718 if (!css)
4719 return ERR_PTR(-ENOMEM);
4720
4721 return css;
4722}
4723
Tejun Heoeb954192013-08-08 20:11:23 -04004724static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07004725{
Tejun Heoeb954192013-08-08 20:11:23 -04004726 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07004727}
4728
Tejun Heo182446d2013-08-08 20:11:24 -04004729static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
4730 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004731{
Tejun Heo182446d2013-08-08 20:11:24 -04004732 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07004733}
4734
Tejun Heo182446d2013-08-08 20:11:24 -04004735static u64 current_css_set_read(struct cgroup_subsys_state *css,
4736 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004737{
4738 return (u64)(unsigned long)current->cgroups;
4739}
4740
Tejun Heo182446d2013-08-08 20:11:24 -04004741static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08004742 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004743{
4744 u64 count;
4745
4746 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07004747 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07004748 rcu_read_unlock();
4749 return count;
4750}
4751
Tejun Heo2da8ca82013-12-05 12:28:04 -05004752static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004753{
Tejun Heo69d02062013-06-12 21:04:50 -07004754 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07004755 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07004756
4757 read_lock(&css_set_lock);
4758 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07004759 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07004760 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004761 struct cgroup *c = link->cgrp;
Tejun Heo59f52962014-02-11 11:52:49 -05004762 const char *name = "?";
Paul Menage7717f7b2009-09-23 15:56:22 -07004763
Tejun Heo59f52962014-02-11 11:52:49 -05004764 if (c != cgroup_dummy_top)
4765 name = cgroup_name(c);
4766
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004767 seq_printf(seq, "Root %d group %s\n",
4768 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004769 }
4770 rcu_read_unlock();
4771 read_unlock(&css_set_lock);
4772 return 0;
4773}
4774
4775#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05004776static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004777{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004778 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07004779 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07004780
4781 read_lock(&css_set_lock);
Tejun Heo182446d2013-08-08 20:11:24 -04004782 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07004783 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07004784 struct task_struct *task;
4785 int count = 0;
Tejun Heo5abb8852013-06-12 21:04:49 -07004786 seq_printf(seq, "css_set %p\n", cset);
4787 list_for_each_entry(task, &cset->tasks, cg_list) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004788 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4789 seq_puts(seq, " ...\n");
4790 break;
4791 } else {
4792 seq_printf(seq, " task %d\n",
4793 task_pid_vnr(task));
4794 }
4795 }
4796 }
4797 read_unlock(&css_set_lock);
4798 return 0;
4799}
4800
Tejun Heo182446d2013-08-08 20:11:24 -04004801static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004802{
Tejun Heo182446d2013-08-08 20:11:24 -04004803 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07004804}
4805
4806static struct cftype debug_files[] = {
4807 {
Paul Menagefe693432009-09-23 15:56:20 -07004808 .name = "taskcount",
4809 .read_u64 = debug_taskcount_read,
4810 },
4811
4812 {
4813 .name = "current_css_set",
4814 .read_u64 = current_css_set_read,
4815 },
4816
4817 {
4818 .name = "current_css_set_refcount",
4819 .read_u64 = current_css_set_refcount_read,
4820 },
4821
4822 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004823 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004824 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004825 },
4826
4827 {
4828 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004829 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004830 },
4831
4832 {
Paul Menagefe693432009-09-23 15:56:20 -07004833 .name = "releasable",
4834 .read_u64 = releasable_read,
4835 },
Paul Menagefe693432009-09-23 15:56:20 -07004836
Tejun Heo4baf6e32012-04-01 12:09:55 -07004837 { } /* terminate */
4838};
Paul Menagefe693432009-09-23 15:56:20 -07004839
Tejun Heo073219e2014-02-08 10:36:58 -05004840struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08004841 .css_alloc = debug_css_alloc,
4842 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07004843 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07004844};
4845#endif /* CONFIG_CGROUP_DEBUG */