blob: 704c590a81d767af579c27758fb378cae18eaf46 [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08007 * Notifications support
8 * Copyright (C) 2009 Nokia Corporation
9 * Author: Kirill A. Shutemov
10 *
Paul Menageddbcc7e2007-10-18 23:39:30 -070011 * Copyright notices from the original cpuset code:
12 * --------------------------------------------------
13 * Copyright (C) 2003 BULL SA.
14 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
15 *
16 * Portions derived from Patrick Mochel's sysfs code.
17 * sysfs is Copyright (c) 2001-3 Patrick Mochel
18 *
19 * 2003-10-10 Written by Simon Derr.
20 * 2003-10-22 Updates by Stephen Hemminger.
21 * 2004 May-July Rework by Paul Jackson.
22 * ---------------------------------------------------
23 *
24 * This file is subject to the terms and conditions of the GNU General Public
25 * License. See the file COPYING in the main directory of the Linux
26 * distribution for more details.
27 */
28
29#include <linux/cgroup.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100030#include <linux/cred.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070031#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070032#include <linux/errno.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100033#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070034#include <linux/kernel.h>
35#include <linux/list.h>
36#include <linux/mm.h>
37#include <linux/mutex.h>
38#include <linux/mount.h>
39#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070040#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070041#include <linux/rcupdate.h>
42#include <linux/sched.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070043#include <linux/slab.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070044#include <linux/spinlock.h>
Tejun Heo96d365e2014-02-13 06:58:40 -050045#include <linux/rwsem.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070046#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070047#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070048#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070049#include <linux/delayacct.h>
50#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080051#include <linux/hashtable.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070052#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070053#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070054#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Li Zefan081aa452013-03-13 09:17:09 +080055#include <linux/flex_array.h> /* used in cgroup_attach_task */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020056#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050057#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070058
Arun Sharma600634972011-07-26 16:09:06 -070059#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070060
Tejun Heoe25e2cb2011-12-12 18:12:21 -080061/*
Tejun Heob1a21362013-11-29 10:42:58 -050062 * pidlists linger the following amount before being destroyed. The goal
63 * is avoiding frequent destruction in the middle of consecutive read calls
64 * Expiring in the middle is a performance problem not a correctness one.
65 * 1 sec should be enough.
66 */
67#define CGROUP_PIDLIST_DESTROY_DELAY HZ
68
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050069#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
70 MAX_CFTYPE_NAME + 2)
71
Tejun Heob1a21362013-11-29 10:42:58 -050072/*
Tejun Heoace2bee2014-02-11 11:52:47 -050073 * cgroup_tree_mutex nests above cgroup_mutex and protects cftypes, file
74 * creation/removal and hierarchy changing operations including cgroup
75 * creation, removal, css association and controller rebinding. This outer
76 * lock is needed mainly to resolve the circular dependency between kernfs
77 * active ref and cgroup_mutex. cgroup_tree_mutex nests above both.
78 */
79static DEFINE_MUTEX(cgroup_tree_mutex);
80
81/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080082 * cgroup_mutex is the master lock. Any modification to cgroup or its
83 * hierarchy must be performed while holding it.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080084 */
Tejun Heo22194492013-04-07 09:29:51 -070085#ifdef CONFIG_PROVE_RCU
86DEFINE_MUTEX(cgroup_mutex);
Tejun Heo8af01f52013-08-08 20:11:22 -040087EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for lockdep */
Tejun Heo22194492013-04-07 09:29:51 -070088#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070089static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo22194492013-04-07 09:29:51 -070090#endif
91
Tejun Heo69e943b2014-02-08 10:36:58 -050092/*
93 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
94 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
95 */
96static DEFINE_SPINLOCK(release_agent_path_lock);
97
Tejun Heoace2bee2014-02-11 11:52:47 -050098#define cgroup_assert_mutexes_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -050099 rcu_lockdep_assert(rcu_read_lock_held() || \
Tejun Heoace2bee2014-02-11 11:52:47 -0500100 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500101 lockdep_is_held(&cgroup_mutex), \
Tejun Heoace2bee2014-02-11 11:52:47 -0500102 "cgroup_[tree_]mutex or RCU read lock required");
Tejun Heo87fb54f2013-12-06 15:11:55 -0500103
Ben Blumaae8aab2010-03-10 15:22:07 -0800104/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500105 * cgroup destruction makes heavy use of work items and there can be a lot
106 * of concurrent destructions. Use a separate workqueue so that cgroup
107 * destruction work items don't end up filling up max_active of system_wq
108 * which may lead to deadlock.
109 */
110static struct workqueue_struct *cgroup_destroy_wq;
111
112/*
Tejun Heob1a21362013-11-29 10:42:58 -0500113 * pidlist destructions need to be flushed on cgroup destruction. Use a
114 * separate workqueue as flush domain.
115 */
116static struct workqueue_struct *cgroup_pidlist_destroy_wq;
117
Tejun Heo3ed80a62014-02-08 10:36:58 -0500118/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500119#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500120static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700121#include <linux/cgroup_subsys.h>
122};
Tejun Heo073219e2014-02-08 10:36:58 -0500123#undef SUBSYS
124
125/* array of cgroup subsystem names */
126#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
127static const char *cgroup_subsys_name[] = {
128#include <linux/cgroup_subsys.h>
129};
130#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131
Paul Menageddbcc7e2007-10-18 23:39:30 -0700132/*
Tejun Heo9871bf92013-06-24 15:21:47 -0700133 * The dummy hierarchy, reserved for the subsystems that are otherwise
134 * unattached - it never has more than a single cgroup, and all tasks are
135 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700136 */
Tejun Heo9871bf92013-06-24 15:21:47 -0700137static struct cgroupfs_root cgroup_dummy_root;
138
139/* dummy_top is a shorthand for the dummy hierarchy's top cgroup */
140static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700141
142/* The list of hierarchy roots */
143
Tejun Heo9871bf92013-06-24 15:21:47 -0700144static LIST_HEAD(cgroup_roots);
145static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700146
Tejun Heo3417ae12014-02-08 10:37:01 -0500147/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700148static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700149
Li Zefan794611a2013-06-18 18:53:53 +0800150/*
151 * Assign a monotonically increasing serial number to cgroups. It
152 * guarantees cgroups with bigger numbers are newer than those with smaller
153 * numbers. Also, as cgroups are always appended to the parent's
154 * ->children list, it guarantees that sibling cgroups are always sorted in
Tejun Heo00356bd2013-06-18 11:14:22 -0700155 * the ascending serial number order on the list. Protected by
156 * cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800157 */
Tejun Heo00356bd2013-06-18 11:14:22 -0700158static u64 cgroup_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800159
Paul Menageddbcc7e2007-10-18 23:39:30 -0700160/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800161 * check for fork/exit handlers to call. This avoids us having to do
162 * extra work in the fork/exit path if none of the subsystems need to
163 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700164 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700165static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700166
Tejun Heo628f7cd2013-06-28 16:24:11 -0700167static struct cftype cgroup_base_files[];
168
Tejun Heo59f52962014-02-11 11:52:49 -0500169static void cgroup_put(struct cgroup *cgrp);
Tejun Heof2e85d52014-02-11 11:52:49 -0500170static int rebind_subsystems(struct cgroupfs_root *root,
171 unsigned long added_mask, unsigned removed_mask);
Tejun Heof20104d2013-08-13 20:22:50 -0400172static void cgroup_destroy_css_killed(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800173static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400174static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
175 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500176static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800177
Tejun Heo95109b62013-08-08 20:11:27 -0400178/**
179 * cgroup_css - obtain a cgroup's css for the specified subsystem
180 * @cgrp: the cgroup of interest
Tejun Heoca8bdca2013-08-26 18:40:56 -0400181 * @ss: the subsystem of interest (%NULL returns the dummy_css)
Tejun Heo95109b62013-08-08 20:11:27 -0400182 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400183 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
184 * function must be called either under cgroup_mutex or rcu_read_lock() and
185 * the caller is responsible for pinning the returned css if it wants to
186 * keep accessing it outside the said locks. This function may return
187 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400188 */
189static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400190 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400191{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400192 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500193 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun 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/*
Tejun Heo96d365e2014-02-13 06:58:40 -0500345 * css_set_rwsem protects the list of css_set objects, and the chain of
346 * tasks off each css_set.
Tejun Heo0942eee2013-08-08 20:11:26 -0400347 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500348static DECLARE_RWSEM(css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700349static int css_set_count;
350
Paul Menage7717f7b2009-09-23 15:56:22 -0700351/*
352 * hash table for cgroup groups. This improves the performance to find
353 * an existing css_set. This hash doesn't (currently) take into
354 * account cgroups in empty hierarchies.
355 */
Li Zefan472b1052008-04-29 01:00:11 -0700356#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800357static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700358
Li Zefan0ac801f2013-01-10 11:49:27 +0800359static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700360{
Li Zefan0ac801f2013-01-10 11:49:27 +0800361 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700362 struct cgroup_subsys *ss;
363 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700364
Tejun Heo30159ec2013-06-25 11:53:37 -0700365 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800366 key += (unsigned long)css[i];
367 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700368
Li Zefan0ac801f2013-01-10 11:49:27 +0800369 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700370}
371
Tejun Heo89c55092014-02-13 06:58:40 -0500372static void put_css_set_locked(struct css_set *cset, bool taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700373{
Tejun Heo69d02062013-06-12 21:04:50 -0700374 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo5abb8852013-06-12 21:04:49 -0700375
Tejun Heo89c55092014-02-13 06:58:40 -0500376 lockdep_assert_held(&css_set_rwsem);
377
378 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700379 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700380
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700381 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo5abb8852013-06-12 21:04:49 -0700382 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700383 css_set_count--;
384
Tejun Heo69d02062013-06-12 21:04:50 -0700385 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700386 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700387
Tejun Heo69d02062013-06-12 21:04:50 -0700388 list_del(&link->cset_link);
389 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800390
Tejun Heo96d365e2014-02-13 06:58:40 -0500391 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo6f3d828f02013-06-12 21:04:55 -0700392 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700393 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700394 set_bit(CGRP_RELEASABLE, &cgrp->flags);
395 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700396 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700397
398 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700399 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700400
Tejun Heo5abb8852013-06-12 21:04:49 -0700401 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700402}
403
Tejun Heo89c55092014-02-13 06:58:40 -0500404static void put_css_set(struct css_set *cset, bool taskexit)
405{
406 /*
407 * Ensure that the refcount doesn't hit zero while any readers
408 * can see it. Similar to atomic_dec_and_lock(), but for an
409 * rwlock
410 */
411 if (atomic_add_unless(&cset->refcount, -1, 1))
412 return;
413
414 down_write(&css_set_rwsem);
415 put_css_set_locked(cset, taskexit);
416 up_write(&css_set_rwsem);
417}
418
Paul Menage817929e2007-10-18 23:39:36 -0700419/*
420 * refcounted get/put for css_set objects
421 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700422static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700423{
Tejun Heo5abb8852013-06-12 21:04:49 -0700424 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700425}
426
Tejun Heob326f9d2013-06-24 15:21:48 -0700427/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700428 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700429 * @cset: candidate css_set being tested
430 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700431 * @new_cgrp: cgroup that's being entered by the task
432 * @template: desired set of css pointers in css_set (pre-calculated)
433 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800434 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700435 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
436 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700437static bool compare_css_sets(struct css_set *cset,
438 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700439 struct cgroup *new_cgrp,
440 struct cgroup_subsys_state *template[])
441{
442 struct list_head *l1, *l2;
443
Tejun Heo5abb8852013-06-12 21:04:49 -0700444 if (memcmp(template, cset->subsys, sizeof(cset->subsys))) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700445 /* Not all subsystems matched */
446 return false;
447 }
448
449 /*
450 * Compare cgroup pointers in order to distinguish between
451 * different cgroups in heirarchies with no subsystems. We
452 * could get by with just this check alone (and skip the
453 * memcmp above) but on most setups the memcmp check will
454 * avoid the need for this more expensive check on almost all
455 * candidates.
456 */
457
Tejun Heo69d02062013-06-12 21:04:50 -0700458 l1 = &cset->cgrp_links;
459 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700460 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700461 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700462 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700463
464 l1 = l1->next;
465 l2 = l2->next;
466 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700467 if (l1 == &cset->cgrp_links) {
468 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700469 break;
470 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700471 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700472 }
473 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700474 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
475 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
476 cgrp1 = link1->cgrp;
477 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700478 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700479 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700480
481 /*
482 * If this hierarchy is the hierarchy of the cgroup
483 * that's changing, then we need to check that this
484 * css_set points to the new cgroup; if it's any other
485 * hierarchy, then this css_set should point to the
486 * same cgroup as the old css_set.
487 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700488 if (cgrp1->root == new_cgrp->root) {
489 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700490 return false;
491 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700492 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700493 return false;
494 }
495 }
496 return true;
497}
498
Tejun Heob326f9d2013-06-24 15:21:48 -0700499/**
500 * find_existing_css_set - init css array and find the matching css_set
501 * @old_cset: the css_set that we're using before the cgroup transition
502 * @cgrp: the cgroup that we're moving into
503 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700504 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700505static struct css_set *find_existing_css_set(struct css_set *old_cset,
506 struct cgroup *cgrp,
507 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700508{
Paul Menagebd89aab2007-10-18 23:40:44 -0700509 struct cgroupfs_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700510 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700511 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800512 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700513 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700514
Ben Blumaae8aab2010-03-10 15:22:07 -0800515 /*
516 * Build the set of subsystem state objects that we want to see in the
517 * new css_set. while subsystems can change globally, the entries here
518 * won't change, so no need for locking.
519 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700520 for_each_subsys(ss, i) {
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -0400521 if (root->subsys_mask & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700522 /* Subsystem is in this hierarchy. So we want
523 * the subsystem state from the new
524 * cgroup */
Tejun Heoca8bdca2013-08-26 18:40:56 -0400525 template[i] = cgroup_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700526 } else {
527 /* Subsystem is not in this hierarchy, so we
528 * don't want to change the subsystem state */
Tejun Heo5abb8852013-06-12 21:04:49 -0700529 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700530 }
531 }
532
Li Zefan0ac801f2013-01-10 11:49:27 +0800533 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700534 hash_for_each_possible(css_set_table, cset, hlist, key) {
535 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700536 continue;
537
538 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700539 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700540 }
Paul Menage817929e2007-10-18 23:39:36 -0700541
542 /* No existing cgroup group matched */
543 return NULL;
544}
545
Tejun Heo69d02062013-06-12 21:04:50 -0700546static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700547{
Tejun Heo69d02062013-06-12 21:04:50 -0700548 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700549
Tejun Heo69d02062013-06-12 21:04:50 -0700550 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
551 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700552 kfree(link);
553 }
554}
555
Tejun Heo69d02062013-06-12 21:04:50 -0700556/**
557 * allocate_cgrp_cset_links - allocate cgrp_cset_links
558 * @count: the number of links to allocate
559 * @tmp_links: list_head the allocated links are put on
560 *
561 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
562 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700563 */
Tejun Heo69d02062013-06-12 21:04:50 -0700564static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700565{
Tejun Heo69d02062013-06-12 21:04:50 -0700566 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700567 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700568
569 INIT_LIST_HEAD(tmp_links);
570
Li Zefan36553432008-07-29 22:33:19 -0700571 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700572 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700573 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700574 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700575 return -ENOMEM;
576 }
Tejun Heo69d02062013-06-12 21:04:50 -0700577 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700578 }
579 return 0;
580}
581
Li Zefanc12f65d2009-01-07 18:07:42 -0800582/**
583 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700584 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700585 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800586 * @cgrp: the destination cgroup
587 */
Tejun Heo69d02062013-06-12 21:04:50 -0700588static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
589 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800590{
Tejun Heo69d02062013-06-12 21:04:50 -0700591 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800592
Tejun Heo69d02062013-06-12 21:04:50 -0700593 BUG_ON(list_empty(tmp_links));
594 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
595 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700596 link->cgrp = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700597 list_move(&link->cset_link, &cgrp->cset_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700598 /*
599 * Always add links to the tail of the list so that the list
600 * is sorted by order of hierarchy creation
601 */
Tejun Heo69d02062013-06-12 21:04:50 -0700602 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800603}
604
Tejun Heob326f9d2013-06-24 15:21:48 -0700605/**
606 * find_css_set - return a new css_set with one cgroup updated
607 * @old_cset: the baseline css_set
608 * @cgrp: the cgroup to be updated
609 *
610 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
611 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700612 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700613static struct css_set *find_css_set(struct css_set *old_cset,
614 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700615{
Tejun Heob326f9d2013-06-24 15:21:48 -0700616 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700617 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700618 struct list_head tmp_links;
619 struct cgrp_cset_link *link;
Li Zefan0ac801f2013-01-10 11:49:27 +0800620 unsigned long key;
Li Zefan472b1052008-04-29 01:00:11 -0700621
Tejun Heob326f9d2013-06-24 15:21:48 -0700622 lockdep_assert_held(&cgroup_mutex);
623
Paul Menage817929e2007-10-18 23:39:36 -0700624 /* First see if we already have a cgroup group that matches
625 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500626 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700627 cset = find_existing_css_set(old_cset, cgrp, template);
628 if (cset)
629 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500630 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700631
Tejun Heo5abb8852013-06-12 21:04:49 -0700632 if (cset)
633 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700634
Tejun Heof4f4be22013-06-12 21:04:51 -0700635 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700636 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700637 return NULL;
638
Tejun Heo69d02062013-06-12 21:04:50 -0700639 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700640 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700641 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700642 return NULL;
643 }
644
Tejun Heo5abb8852013-06-12 21:04:49 -0700645 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700646 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700647 INIT_LIST_HEAD(&cset->tasks);
648 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700649
650 /* Copy the set of subsystem state objects generated in
651 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700652 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700653
Tejun Heo96d365e2014-02-13 06:58:40 -0500654 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700655 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700656 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700657 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700658
Paul Menage7717f7b2009-09-23 15:56:22 -0700659 if (c->root == cgrp->root)
660 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700661 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700662 }
Paul Menage817929e2007-10-18 23:39:36 -0700663
Tejun Heo69d02062013-06-12 21:04:50 -0700664 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700665
Paul Menage817929e2007-10-18 23:39:36 -0700666 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700667
668 /* Add this cgroup group to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700669 key = css_set_hash(cset->subsys);
670 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700671
Tejun Heo96d365e2014-02-13 06:58:40 -0500672 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700673
Tejun Heo5abb8852013-06-12 21:04:49 -0700674 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700675}
676
Tejun Heo2bd59d42014-02-11 11:52:49 -0500677static struct cgroupfs_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
678{
679 struct cgroup *top_cgrp = kf_root->kn->priv;
680
681 return top_cgrp->root;
682}
683
Tejun Heof2e85d52014-02-11 11:52:49 -0500684static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end)
685{
686 int id;
687
688 lockdep_assert_held(&cgroup_mutex);
689
690 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end,
691 GFP_KERNEL);
692 if (id < 0)
693 return id;
694
695 root->hierarchy_id = id;
696 return 0;
697}
698
699static void cgroup_exit_root_id(struct cgroupfs_root *root)
700{
701 lockdep_assert_held(&cgroup_mutex);
702
703 if (root->hierarchy_id) {
704 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
705 root->hierarchy_id = 0;
706 }
707}
708
709static void cgroup_free_root(struct cgroupfs_root *root)
710{
711 if (root) {
712 /* hierarhcy ID shoulid already have been released */
713 WARN_ON_ONCE(root->hierarchy_id);
714
715 idr_destroy(&root->cgroup_idr);
716 kfree(root);
717 }
718}
719
Tejun Heo776f02f2014-02-12 09:29:50 -0500720static void cgroup_destroy_root(struct cgroupfs_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500721{
Tejun Heof2e85d52014-02-11 11:52:49 -0500722 struct cgroup *cgrp = &root->top_cgroup;
723 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500724
Tejun Heo2bd59d42014-02-11 11:52:49 -0500725 mutex_lock(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500726 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500727
Tejun Heo776f02f2014-02-12 09:29:50 -0500728 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heof2e85d52014-02-11 11:52:49 -0500729 BUG_ON(!list_empty(&cgrp->children));
730
Tejun Heof2e85d52014-02-11 11:52:49 -0500731 /* Rebind all subsystems back to the default hierarchy */
Tejun Heo35585572014-02-13 06:58:38 -0500732 WARN_ON(rebind_subsystems(root, 0, root->subsys_mask));
Tejun Heof2e85d52014-02-11 11:52:49 -0500733
734 /*
735 * Release all the links from cset_links to this hierarchy's
736 * root cgroup
737 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500738 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500739
740 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
741 list_del(&link->cset_link);
742 list_del(&link->cgrp_link);
743 kfree(link);
744 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500745 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500746
747 if (!list_empty(&root->root_list)) {
748 list_del(&root->root_list);
749 cgroup_root_count--;
750 }
751
752 cgroup_exit_root_id(root);
753
754 mutex_unlock(&cgroup_mutex);
755 mutex_unlock(&cgroup_tree_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500756
Tejun Heo2bd59d42014-02-11 11:52:49 -0500757 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500758 cgroup_free_root(root);
759}
760
Paul Menageddbcc7e2007-10-18 23:39:30 -0700761/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700762 * Return the cgroup for "task" from the given hierarchy. Must be
Tejun Heo96d365e2014-02-13 06:58:40 -0500763 * called with cgroup_mutex and css_set_rwsem held.
Paul Menage7717f7b2009-09-23 15:56:22 -0700764 */
765static struct cgroup *task_cgroup_from_root(struct task_struct *task,
766 struct cgroupfs_root *root)
767{
Tejun Heo5abb8852013-06-12 21:04:49 -0700768 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700769 struct cgroup *res = NULL;
770
Tejun Heo96d365e2014-02-13 06:58:40 -0500771 lockdep_assert_held(&cgroup_mutex);
772 lockdep_assert_held(&css_set_rwsem);
773
Paul Menage7717f7b2009-09-23 15:56:22 -0700774 /*
775 * No need to lock the task - since we hold cgroup_mutex the
776 * task can't change groups, so the only thing that can happen
777 * is that it exits and its css is set back to init_css_set.
778 */
Tejun Heoa8ad8052013-06-21 15:52:04 -0700779 cset = task_css_set(task);
Tejun Heo5abb8852013-06-12 21:04:49 -0700780 if (cset == &init_css_set) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700781 res = &root->top_cgroup;
782 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700783 struct cgrp_cset_link *link;
784
785 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700786 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700787
Paul Menage7717f7b2009-09-23 15:56:22 -0700788 if (c->root == root) {
789 res = c;
790 break;
791 }
792 }
793 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500794
Paul Menage7717f7b2009-09-23 15:56:22 -0700795 BUG_ON(!res);
796 return res;
797}
798
799/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700800 * There is one global cgroup mutex. We also require taking
801 * task_lock() when dereferencing a task's cgroup subsys pointers.
802 * See "The task_lock() exception", at the end of this comment.
803 *
804 * A task must hold cgroup_mutex to modify cgroups.
805 *
806 * Any task can increment and decrement the count field without lock.
807 * So in general, code holding cgroup_mutex can't rely on the count
808 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800809 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700810 * means that no tasks are currently attached, therefore there is no
811 * way a task attached to that cgroup can fork (the other way to
812 * increment the count). So code holding cgroup_mutex can safely
813 * assume that if the count is zero, it will stay zero. Similarly, if
814 * a task holds cgroup_mutex on a cgroup with zero count, it
815 * knows that the cgroup won't be removed, as cgroup_rmdir()
816 * needs that mutex.
817 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700818 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
819 * (usually) take cgroup_mutex. These are the two most performance
820 * critical pieces of code here. The exception occurs on cgroup_exit(),
821 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
822 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800823 * to the release agent with the name of the cgroup (path relative to
824 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700825 *
826 * A cgroup can only be deleted if both its 'count' of using tasks
827 * is zero, and its list of 'children' cgroups is empty. Since all
828 * tasks in the system use _some_ cgroup, and since there is always at
829 * least one task in the system (init, pid == 1), therefore, top_cgroup
830 * always has either children cgroups and/or using tasks. So we don't
831 * need a special hack to ensure that top_cgroup cannot be deleted.
832 *
833 * The task_lock() exception
834 *
835 * The need for this exception arises from the action of
Tao Mad0b2fdd2012-11-20 22:06:18 +0800836 * cgroup_attach_task(), which overwrites one task's cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800837 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700838 * several performance critical places that need to reference
839 * task->cgroup without the expense of grabbing a system global
840 * mutex. Therefore except as noted below, when dereferencing or, as
Tao Mad0b2fdd2012-11-20 22:06:18 +0800841 * in cgroup_attach_task(), modifying a task's cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700842 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
843 * the task_struct routinely used for such matters.
844 *
845 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800846 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700847 */
848
Tejun Heo628f7cd2013-06-28 16:24:11 -0700849static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500850static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700851static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700852
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500853static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
854 char *buf)
855{
856 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
857 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
858 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
859 cft->ss->name, cft->name);
860 else
861 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
862 return buf;
863}
864
Tejun Heof2e85d52014-02-11 11:52:49 -0500865/**
866 * cgroup_file_mode - deduce file mode of a control file
867 * @cft: the control file in question
868 *
869 * returns cft->mode if ->mode is not 0
870 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
871 * returns S_IRUGO if it has only a read handler
872 * returns S_IWUSR if it has only a write hander
873 */
874static umode_t cgroup_file_mode(const struct cftype *cft)
875{
876 umode_t mode = 0;
877
878 if (cft->mode)
879 return cft->mode;
880
881 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
882 mode |= S_IRUGO;
883
884 if (cft->write_u64 || cft->write_s64 || cft->write_string ||
885 cft->trigger)
886 mode |= S_IWUSR;
887
888 return mode;
889}
890
Li Zefanbe445622013-01-24 14:31:42 +0800891static void cgroup_free_fn(struct work_struct *work)
892{
Tejun Heoea15f8c2013-06-13 19:27:42 -0700893 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800894
Tejun Heo3c9c8252014-02-12 09:29:50 -0500895 atomic_dec(&cgrp->root->nr_cgrps);
Tejun Heob1a21362013-11-29 10:42:58 -0500896 cgroup_pidlist_destroy_all(cgrp);
Li Zefanbe445622013-01-24 14:31:42 +0800897
Tejun Heo776f02f2014-02-12 09:29:50 -0500898 if (cgrp->parent) {
899 /*
900 * We get a ref to the parent, and put the ref when this
901 * cgroup is being freed, so it's guaranteed that the
902 * parent won't be destroyed before its children.
903 */
904 cgroup_put(cgrp->parent);
905 kernfs_put(cgrp->kn);
906 kfree(cgrp);
907 } else {
908 /*
909 * This is top cgroup's refcnt reaching zero, which
910 * indicates that the root should be released.
911 */
912 cgroup_destroy_root(cgrp->root);
913 }
Li Zefanbe445622013-01-24 14:31:42 +0800914}
915
916static void cgroup_free_rcu(struct rcu_head *head)
917{
918 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
919
Tejun Heoea15f8c2013-06-13 19:27:42 -0700920 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -0500921 queue_work(cgroup_destroy_wq, &cgrp->destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800922}
923
Tejun Heo59f52962014-02-11 11:52:49 -0500924static void cgroup_get(struct cgroup *cgrp)
925{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500926 WARN_ON_ONCE(cgroup_is_dead(cgrp));
927 WARN_ON_ONCE(atomic_read(&cgrp->refcnt) <= 0);
928 atomic_inc(&cgrp->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700929}
930
Tejun Heo59f52962014-02-11 11:52:49 -0500931static void cgroup_put(struct cgroup *cgrp)
932{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500933 if (!atomic_dec_and_test(&cgrp->refcnt))
934 return;
Tejun Heo776f02f2014-02-12 09:29:50 -0500935 if (WARN_ON_ONCE(cgrp->parent && !cgroup_is_dead(cgrp)))
Tejun Heo2bd59d42014-02-11 11:52:49 -0500936 return;
Tejun Heo59f52962014-02-11 11:52:49 -0500937
Tejun Heo2bd59d42014-02-11 11:52:49 -0500938 /*
939 * XXX: cgrp->id is only used to look up css's. As cgroup and
940 * css's lifetimes will be decoupled, it should be made
941 * per-subsystem and moved to css->id so that lookups are
942 * successful until the target css is released.
943 */
944 mutex_lock(&cgroup_mutex);
945 idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
946 mutex_unlock(&cgroup_mutex);
947 cgrp->id = -1;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700948
Tejun Heo2bd59d42014-02-11 11:52:49 -0500949 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700950}
951
Li Zefan2739d3c2013-01-21 18:18:33 +0800952static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700953{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500954 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700955
Tejun Heoace2bee2014-02-11 11:52:47 -0500956 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500957 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -0700958}
959
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400960/**
Tejun Heo628f7cd2013-06-28 16:24:11 -0700961 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -0700962 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400963 * @subsys_mask: mask of the subsystem ids whose files should be removed
964 */
Tejun Heo628f7cd2013-06-28 16:24:11 -0700965static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -0700966{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400967 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -0700968 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700969
Tejun Heob420ba72013-07-12 12:34:02 -0700970 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -0500971 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -0700972
973 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400974 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -0500975 list_for_each_entry(cfts, &ss->cfts, node)
976 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400977 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700978}
979
Paul Menageddbcc7e2007-10-18 23:39:30 -0700980static int rebind_subsystems(struct cgroupfs_root *root,
Tejun Heoa8a648c2013-06-24 15:21:47 -0700981 unsigned long added_mask, unsigned removed_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700982{
Paul Menagebd89aab2007-10-18 23:40:44 -0700983 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heo30159ec2013-06-25 11:53:37 -0700984 struct cgroup_subsys *ss;
Tejun Heo31261212013-06-28 17:07:30 -0700985 int i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700986
Tejun Heoace2bee2014-02-11 11:52:47 -0500987 lockdep_assert_held(&cgroup_tree_mutex);
988 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -0800989
Paul Menageddbcc7e2007-10-18 23:39:30 -0700990 /* Check that any added subsystems are currently free */
Tejun Heo3ed80a62014-02-08 10:36:58 -0500991 for_each_subsys(ss, i)
992 if ((added_mask & (1 << i)) && ss->root != &cgroup_dummy_root)
993 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700994
Tejun Heo31261212013-06-28 17:07:30 -0700995 ret = cgroup_populate_dir(cgrp, added_mask);
996 if (ret)
Tejun Heo3ed80a62014-02-08 10:36:58 -0500997 return ret;
Tejun Heo31261212013-06-28 17:07:30 -0700998
999 /*
1000 * Nothing can fail from this point on. Remove files for the
1001 * removed subsystems and rebind each subsystem.
1002 */
Tejun Heo4ac06012014-02-11 11:52:47 -05001003 mutex_unlock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001004 cgroup_clear_dir(cgrp, removed_mask);
Tejun Heo4ac06012014-02-11 11:52:47 -05001005 mutex_lock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001006
Tejun Heo30159ec2013-06-25 11:53:37 -07001007 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001008 unsigned long bit = 1UL << i;
Tejun Heo30159ec2013-06-25 11:53:37 -07001009
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001010 if (bit & added_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001011 /* We're binding this subsystem to this hierarchy */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001012 BUG_ON(cgroup_css(cgrp, ss));
1013 BUG_ON(!cgroup_css(cgroup_dummy_top, ss));
1014 BUG_ON(cgroup_css(cgroup_dummy_top, ss)->cgroup != cgroup_dummy_top);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001015
Tejun Heo73e80ed2013-08-13 11:01:55 -04001016 rcu_assign_pointer(cgrp->subsys[i],
Tejun Heoca8bdca2013-08-26 18:40:56 -04001017 cgroup_css(cgroup_dummy_top, ss));
1018 cgroup_css(cgrp, ss)->cgroup = cgrp;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001019
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001020 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001021 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001022 ss->bind(cgroup_css(cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001023
Ben Blumcf5d5942010-03-10 15:22:09 -08001024 /* refcount was already taken, and we're keeping it */
Tejun Heoa8a648c2013-06-24 15:21:47 -07001025 root->subsys_mask |= bit;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001026 } else if (bit & removed_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001027 /* We're removing this subsystem */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001028 BUG_ON(cgroup_css(cgrp, ss) != cgroup_css(cgroup_dummy_top, ss));
1029 BUG_ON(cgroup_css(cgrp, ss)->cgroup != cgrp);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001030
Paul Menageddbcc7e2007-10-18 23:39:30 -07001031 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001032 ss->bind(cgroup_css(cgroup_dummy_top, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001033
Tejun Heoca8bdca2013-08-26 18:40:56 -04001034 cgroup_css(cgroup_dummy_top, ss)->cgroup = cgroup_dummy_top;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001035 RCU_INIT_POINTER(cgrp->subsys[i], NULL);
1036
Tejun Heo9871bf92013-06-24 15:21:47 -07001037 cgroup_subsys[i]->root = &cgroup_dummy_root;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001038 root->subsys_mask &= ~bit;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001039 }
1040 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001041
Tejun Heo2bd59d42014-02-11 11:52:49 -05001042 kernfs_activate(cgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001043 return 0;
1044}
1045
Tejun Heo2bd59d42014-02-11 11:52:49 -05001046static int cgroup_show_options(struct seq_file *seq,
1047 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001048{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001049 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001050 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001051 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001052
Tejun Heob85d2042013-12-06 15:11:57 -05001053 for_each_subsys(ss, ssid)
1054 if (root->subsys_mask & (1 << ssid))
1055 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001056 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1057 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001058 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001059 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001060 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001061 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001062
1063 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001064 if (strlen(root->release_agent_path))
1065 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001066 spin_unlock(&release_agent_path_lock);
1067
Tejun Heo2260e7f2012-11-19 08:13:38 -08001068 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001069 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001070 if (strlen(root->name))
1071 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001072 return 0;
1073}
1074
1075struct cgroup_sb_opts {
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001076 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001077 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001078 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001079 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001080 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001081 /* User explicitly requested empty subsystem */
1082 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001083};
1084
Ben Blumaae8aab2010-03-10 15:22:07 -08001085/*
Tejun Heo9871bf92013-06-24 15:21:47 -07001086 * Convert a hierarchy specifier into a bitmask of subsystems and
1087 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1088 * array. This function takes refcounts on subsystems to be used, unless it
1089 * returns error, in which case no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001090 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001091static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001092{
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001093 char *token, *o = data;
1094 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001095 unsigned long mask = (unsigned long)-1;
Tejun Heo30159ec2013-06-25 11:53:37 -07001096 struct cgroup_subsys *ss;
1097 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001098
Ben Blumaae8aab2010-03-10 15:22:07 -08001099 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1100
Li Zefanf9ab5b52009-06-17 16:26:33 -07001101#ifdef CONFIG_CPUSETS
Tejun Heo073219e2014-02-08 10:36:58 -05001102 mask = ~(1UL << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001103#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001104
Paul Menagec6d57f32009-09-23 15:56:19 -07001105 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001106
1107 while ((token = strsep(&o, ",")) != NULL) {
1108 if (!*token)
1109 return -EINVAL;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001110 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001111 /* Explicitly have no subsystems */
1112 opts->none = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001113 continue;
1114 }
1115 if (!strcmp(token, "all")) {
1116 /* Mutually exclusive option 'all' + subsystem name */
1117 if (one_ss)
1118 return -EINVAL;
1119 all_ss = true;
1120 continue;
1121 }
Tejun Heo873fe092013-04-14 20:15:26 -07001122 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1123 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1124 continue;
1125 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001126 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001127 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001128 continue;
1129 }
1130 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001131 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001132 continue;
1133 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001134 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001135 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001136 continue;
1137 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001138 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001139 /* Specifying two release agents is forbidden */
1140 if (opts->release_agent)
1141 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001142 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001143 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001144 if (!opts->release_agent)
1145 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001146 continue;
1147 }
1148 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001149 const char *name = token + 5;
1150 /* Can't specify an empty name */
1151 if (!strlen(name))
1152 return -EINVAL;
1153 /* Must match [\w.-]+ */
1154 for (i = 0; i < strlen(name); i++) {
1155 char c = name[i];
1156 if (isalnum(c))
1157 continue;
1158 if ((c == '.') || (c == '-') || (c == '_'))
1159 continue;
1160 return -EINVAL;
1161 }
1162 /* Specifying two names is forbidden */
1163 if (opts->name)
1164 return -EINVAL;
1165 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001166 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001167 GFP_KERNEL);
1168 if (!opts->name)
1169 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001170
1171 continue;
1172 }
1173
Tejun Heo30159ec2013-06-25 11:53:37 -07001174 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001175 if (strcmp(token, ss->name))
1176 continue;
1177 if (ss->disabled)
1178 continue;
1179
1180 /* Mutually exclusive option 'all' + subsystem name */
1181 if (all_ss)
1182 return -EINVAL;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001183 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001184 one_ss = true;
1185
1186 break;
1187 }
1188 if (i == CGROUP_SUBSYS_COUNT)
1189 return -ENOENT;
1190 }
1191
1192 /*
1193 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001194 * otherwise if 'none', 'name=' and a subsystem name options
1195 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001196 */
Tejun Heo30159ec2013-06-25 11:53:37 -07001197 if (all_ss || (!one_ss && !opts->none && !opts->name))
1198 for_each_subsys(ss, i)
1199 if (!ss->disabled)
1200 set_bit(i, &opts->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001201
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001202 /* Consistency checks */
1203
Tejun Heo873fe092013-04-14 20:15:26 -07001204 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1205 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1206
Tejun Heod3ba07c2014-02-13 06:58:38 -05001207 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1208 opts->cpuset_clone_children || opts->release_agent ||
1209 opts->name) {
1210 pr_err("cgroup: sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001211 return -EINVAL;
1212 }
Tejun Heo873fe092013-04-14 20:15:26 -07001213 }
1214
Li Zefanf9ab5b52009-06-17 16:26:33 -07001215 /*
1216 * Option noprefix was introduced just for backward compatibility
1217 * with the old cpuset, so we allow noprefix only if mounting just
1218 * the cpuset subsystem.
1219 */
Tejun Heo93438622013-04-14 20:15:25 -07001220 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001221 return -EINVAL;
1222
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001223
1224 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001225 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001226 return -EINVAL;
1227
1228 /*
1229 * We either have to specify by name or by subsystems. (So all
1230 * empty hierarchies must have a name).
1231 */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001232 if (!opts->subsys_mask && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001233 return -EINVAL;
1234
1235 return 0;
1236}
1237
Tejun Heo2bd59d42014-02-11 11:52:49 -05001238static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001239{
1240 int ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001241 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001242 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001243 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001244
Tejun Heo873fe092013-04-14 20:15:26 -07001245 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1246 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1247 return -EINVAL;
1248 }
1249
Tejun Heoace2bee2014-02-11 11:52:47 -05001250 mutex_lock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001251 mutex_lock(&cgroup_mutex);
1252
1253 /* See what subsystems are wanted */
1254 ret = parse_cgroupfs_options(data, &opts);
1255 if (ret)
1256 goto out_unlock;
1257
Tejun Heoa8a648c2013-06-24 15:21:47 -07001258 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001259 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1260 task_tgid_nr(current), current->comm);
1261
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001262 added_mask = opts.subsys_mask & ~root->subsys_mask;
1263 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001264
Ben Blumcf5d5942010-03-10 15:22:09 -08001265 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001266 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001267 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001268 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1269 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1270 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001271 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001272 goto out_unlock;
1273 }
1274
Tejun Heof172e672013-06-28 17:07:30 -07001275 /* remounting is not allowed for populated hierarchies */
Tejun Heo3c9c8252014-02-12 09:29:50 -05001276 if (!list_empty(&root->top_cgroup.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001277 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001278 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001279 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001280
Paul Menageddbcc7e2007-10-18 23:39:30 -07001281 ret = rebind_subsystems(root, added_mask, removed_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001282 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001283 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001284
Tejun Heo69e943b2014-02-08 10:36:58 -05001285 if (opts.release_agent) {
1286 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001287 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001288 spin_unlock(&release_agent_path_lock);
1289 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001290 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001291 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001292 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001293 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001294 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001295 return ret;
1296}
1297
Tejun Heoafeb0f92014-02-13 06:58:39 -05001298/*
1299 * To reduce the fork() overhead for systems that are not actually using
1300 * their cgroups capability, we don't maintain the lists running through
1301 * each css_set to its tasks until we see the list actually used - in other
1302 * words after the first mount.
1303 */
1304static bool use_task_css_set_links __read_mostly;
1305
1306static void cgroup_enable_task_cg_lists(void)
1307{
1308 struct task_struct *p, *g;
1309
Tejun Heo96d365e2014-02-13 06:58:40 -05001310 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001311
1312 if (use_task_css_set_links)
1313 goto out_unlock;
1314
1315 use_task_css_set_links = true;
1316
1317 /*
1318 * We need tasklist_lock because RCU is not safe against
1319 * while_each_thread(). Besides, a forking task that has passed
1320 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1321 * is not guaranteed to have its child immediately visible in the
1322 * tasklist if we walk through it with RCU.
1323 */
1324 read_lock(&tasklist_lock);
1325 do_each_thread(g, p) {
1326 task_lock(p);
1327
1328 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1329 task_css_set(p) != &init_css_set);
1330
1331 /*
1332 * We should check if the process is exiting, otherwise
1333 * it will race with cgroup_exit() in that the list
1334 * entry won't be deleted though the process has exited.
1335 */
1336 if (!(p->flags & PF_EXITING))
1337 list_add(&p->cg_list, &task_css_set(p)->tasks);
1338
1339 task_unlock(p);
1340 } while_each_thread(g, p);
1341 read_unlock(&tasklist_lock);
1342out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001343 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001344}
1345
Paul Menagecc31edc2008-10-18 20:28:04 -07001346static void init_cgroup_housekeeping(struct cgroup *cgrp)
1347{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001348 atomic_set(&cgrp->refcnt, 1);
Paul Menagecc31edc2008-10-18 20:28:04 -07001349 INIT_LIST_HEAD(&cgrp->sibling);
1350 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo69d02062013-06-12 21:04:50 -07001351 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001352 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001353 INIT_LIST_HEAD(&cgrp->pidlists);
1354 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo67f4c362013-08-08 20:11:24 -04001355 cgrp->dummy_css.cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001356}
Paul Menagec6d57f32009-09-23 15:56:19 -07001357
Paul Menageddbcc7e2007-10-18 23:39:30 -07001358static void init_cgroup_root(struct cgroupfs_root *root)
1359{
Paul Menagebd89aab2007-10-18 23:40:44 -07001360 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001361
Paul Menageddbcc7e2007-10-18 23:39:30 -07001362 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001363 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001364 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001365 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001366 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001367}
1368
Paul Menagec6d57f32009-09-23 15:56:19 -07001369static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1370{
1371 struct cgroupfs_root *root;
1372
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001373 if (!opts->subsys_mask && !opts->none)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001374 return ERR_PTR(-EINVAL);
Paul Menagec6d57f32009-09-23 15:56:19 -07001375
1376 root = kzalloc(sizeof(*root), GFP_KERNEL);
1377 if (!root)
1378 return ERR_PTR(-ENOMEM);
1379
1380 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001381
Paul Menagec6d57f32009-09-23 15:56:19 -07001382 root->flags = opts->flags;
1383 if (opts->release_agent)
1384 strcpy(root->release_agent_path, opts->release_agent);
1385 if (opts->name)
1386 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001387 if (opts->cpuset_clone_children)
1388 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001389 return root;
1390}
1391
Tejun Heo35585572014-02-13 06:58:38 -05001392static int cgroup_setup_root(struct cgroupfs_root *root, unsigned long ss_mask)
Tejun Heod427dfe2014-02-11 11:52:48 -05001393{
1394 LIST_HEAD(tmp_links);
Tejun Heod427dfe2014-02-11 11:52:48 -05001395 struct cgroup *root_cgrp = &root->top_cgroup;
Tejun Heod427dfe2014-02-11 11:52:48 -05001396 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001397 int i, ret;
1398
1399 lockdep_assert_held(&cgroup_tree_mutex);
1400 lockdep_assert_held(&cgroup_mutex);
Tejun Heod427dfe2014-02-11 11:52:48 -05001401
1402 ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL);
1403 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001404 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001405 root_cgrp->id = ret;
1406
Tejun Heod427dfe2014-02-11 11:52:48 -05001407 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001408 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001409 * but that's OK - it can only be increased by someone holding
1410 * cgroup_lock, and that's us. The worst that can happen is that we
1411 * have some link structures left over
1412 */
1413 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
1414 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001415 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001416
1417 /* ID 0 is reserved for dummy root, 1 for unified hierarchy */
1418 ret = cgroup_init_root_id(root, 2, 0);
1419 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001420 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001421
Tejun Heo2bd59d42014-02-11 11:52:49 -05001422 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1423 KERNFS_ROOT_CREATE_DEACTIVATED,
1424 root_cgrp);
1425 if (IS_ERR(root->kf_root)) {
1426 ret = PTR_ERR(root->kf_root);
1427 goto exit_root_id;
1428 }
1429 root_cgrp->kn = root->kf_root->kn;
Tejun Heod427dfe2014-02-11 11:52:48 -05001430
1431 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1432 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001433 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001434
Tejun Heo35585572014-02-13 06:58:38 -05001435 ret = rebind_subsystems(root, ss_mask, 0);
Tejun Heod427dfe2014-02-11 11:52:48 -05001436 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001437 goto destroy_root;
Tejun Heod427dfe2014-02-11 11:52:48 -05001438
1439 /*
1440 * There must be no failure case after here, since rebinding takes
1441 * care of subsystems' refcounts, which are explicitly dropped in
1442 * the failure exit path.
1443 */
1444 list_add(&root->root_list, &cgroup_roots);
1445 cgroup_root_count++;
1446
1447 /*
1448 * Link the top cgroup in this hierarchy into all the css_set
1449 * objects.
1450 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001451 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001452 hash_for_each(css_set_table, i, cset, hlist)
1453 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001454 up_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001455
1456 BUG_ON(!list_empty(&root_cgrp->children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001457 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001458
Tejun Heo2bd59d42014-02-11 11:52:49 -05001459 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001460 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001461 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001462
Tejun Heo2bd59d42014-02-11 11:52:49 -05001463destroy_root:
1464 kernfs_destroy_root(root->kf_root);
1465 root->kf_root = NULL;
1466exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001467 cgroup_exit_root_id(root);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001468out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001469 free_cgrp_cset_links(&tmp_links);
1470 return ret;
1471}
1472
Al Virof7e83572010-07-26 13:23:11 +04001473static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001474 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001475 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001476{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001477 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001478 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001479 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001480 int ret;
Tejun Heo56fde9e2014-02-13 06:58:38 -05001481
1482 /*
1483 * The first time anyone tries to mount a cgroup, enable the list
1484 * linking each css_set to its tasks and fix up all existing tasks.
1485 */
1486 if (!use_task_css_set_links)
1487 cgroup_enable_task_cg_lists();
Tejun Heo776f02f2014-02-12 09:29:50 -05001488retry:
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001489 mutex_lock(&cgroup_tree_mutex);
1490 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001491
1492 /* First find the desired set of subsystems */
1493 ret = parse_cgroupfs_options(data, &opts);
Paul Menagec6d57f32009-09-23 15:56:19 -07001494 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001495 goto out_unlock;
Paul Menagec6d57f32009-09-23 15:56:19 -07001496
Tejun Heo2bd59d42014-02-11 11:52:49 -05001497 /* look for a matching existing root */
1498 for_each_active_root(root) {
1499 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001500
Paul Menagec6d57f32009-09-23 15:56:19 -07001501 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001502 * If we asked for a name then it must match. Also, if
1503 * name matches but sybsys_mask doesn't, we should fail.
1504 * Remember whether name matched.
Paul Menagec6d57f32009-09-23 15:56:19 -07001505 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001506 if (opts.name) {
1507 if (strcmp(opts.name, root->name))
1508 continue;
1509 name_match = true;
1510 }
1511
1512 /*
1513 * If we asked for subsystems (or explicitly for no
1514 * subsystems) then they must match.
1515 */
1516 if ((opts.subsys_mask || opts.none) &&
1517 (opts.subsys_mask != root->subsys_mask)) {
1518 if (!name_match)
1519 continue;
1520 ret = -EBUSY;
1521 goto out_unlock;
1522 }
Tejun Heo873fe092013-04-14 20:15:26 -07001523
Tejun Heoc7ba8282013-06-29 14:06:10 -07001524 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001525 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1526 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1527 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001528 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001529 } else {
1530 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1531 }
Tejun Heo873fe092013-04-14 20:15:26 -07001532 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001533
Tejun Heo776f02f2014-02-12 09:29:50 -05001534 /*
1535 * A root's lifetime is governed by its top cgroup. Zero
1536 * ref indicate that the root is being destroyed. Wait for
1537 * destruction to complete so that the subsystems are free.
1538 * We can use wait_queue for the wait but this path is
1539 * super cold. Let's just sleep for a bit and retry.
1540 */
1541 if (!atomic_inc_not_zero(&root->top_cgroup.refcnt)) {
1542 mutex_unlock(&cgroup_mutex);
1543 mutex_unlock(&cgroup_tree_mutex);
1544 msleep(10);
1545 goto retry;
1546 }
1547
1548 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001549 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001550 }
1551
Tejun Heo2bd59d42014-02-11 11:52:49 -05001552 /* no such thing, create a new one */
1553 root = cgroup_root_from_opts(&opts);
1554 if (IS_ERR(root)) {
1555 ret = PTR_ERR(root);
1556 goto out_unlock;
1557 }
1558
Tejun Heo35585572014-02-13 06:58:38 -05001559 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001560 if (ret)
1561 cgroup_free_root(root);
1562
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001563out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001564 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001565 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001566
Paul Menagec6d57f32009-09-23 15:56:19 -07001567 kfree(opts.release_agent);
1568 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001569
Tejun Heo2bd59d42014-02-11 11:52:49 -05001570 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001571 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001572
1573 dentry = kernfs_mount(fs_type, flags, root->kf_root);
1574 if (IS_ERR(dentry))
Tejun Heo776f02f2014-02-12 09:29:50 -05001575 cgroup_put(&root->top_cgroup);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001576 return dentry;
1577}
1578
1579static void cgroup_kill_sb(struct super_block *sb)
1580{
1581 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
1582 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
1583
Tejun Heo776f02f2014-02-12 09:29:50 -05001584 cgroup_put(&root->top_cgroup);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001585 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001586}
1587
Paul Menageddbcc7e2007-10-18 23:39:30 -07001588static struct file_system_type cgroup_fs_type = {
1589 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001590 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001591 .kill_sb = cgroup_kill_sb,
1592};
1593
Greg KH676db4a2010-08-05 13:53:35 -07001594static struct kobject *cgroup_kobj;
1595
Li Zefana043e3b2008-02-23 15:24:09 -08001596/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001597 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001598 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001599 * @buf: the buffer to write the path into
1600 * @buflen: the length of the buffer
1601 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001602 * Determine @task's cgroup on the first (the one with the lowest non-zero
1603 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1604 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1605 * cgroup controller callbacks.
1606 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001607 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001608 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001609char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001610{
1611 struct cgroupfs_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001612 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001613 int hierarchy_id = 1;
1614 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001615
1616 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001617 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001618
Tejun Heo913ffdb2013-07-11 16:34:48 -07001619 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1620
Tejun Heo857a2be2013-04-14 20:50:08 -07001621 if (root) {
1622 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001623 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001624 } else {
1625 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001626 if (strlcpy(buf, "/", buflen) < buflen)
1627 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001628 }
1629
Tejun Heo96d365e2014-02-13 06:58:40 -05001630 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001631 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001632 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001633}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001634EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001635
Ben Blum74a11662011-05-26 16:25:20 -07001636/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001637 * Control Group taskset
1638 */
Tejun Heo134d3372011-12-12 18:12:21 -08001639struct task_and_cgroup {
1640 struct task_struct *task;
1641 struct cgroup *cgrp;
Li Zefan6f4b7e62013-07-31 16:18:36 +08001642 struct css_set *cset;
Tejun Heo134d3372011-12-12 18:12:21 -08001643};
1644
Tejun Heo2f7ee562011-12-12 18:12:21 -08001645struct cgroup_taskset {
1646 struct task_and_cgroup single;
1647 struct flex_array *tc_array;
1648 int tc_array_len;
1649 int idx;
1650 struct cgroup *cur_cgrp;
1651};
1652
1653/**
1654 * cgroup_taskset_first - reset taskset and return the first task
1655 * @tset: taskset of interest
1656 *
1657 * @tset iteration is initialized and the first task is returned.
1658 */
1659struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1660{
1661 if (tset->tc_array) {
1662 tset->idx = 0;
1663 return cgroup_taskset_next(tset);
1664 } else {
1665 tset->cur_cgrp = tset->single.cgrp;
1666 return tset->single.task;
1667 }
1668}
1669EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1670
1671/**
1672 * cgroup_taskset_next - iterate to the next task in taskset
1673 * @tset: taskset of interest
1674 *
1675 * Return the next task in @tset. Iteration must have been initialized
1676 * with cgroup_taskset_first().
1677 */
1678struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1679{
1680 struct task_and_cgroup *tc;
1681
1682 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1683 return NULL;
1684
1685 tc = flex_array_get(tset->tc_array, tset->idx++);
1686 tset->cur_cgrp = tc->cgrp;
1687 return tc->task;
1688}
1689EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1690
1691/**
Tejun Heod99c8722013-08-08 20:11:27 -04001692 * cgroup_taskset_cur_css - return the matching css for the current task
Tejun Heo2f7ee562011-12-12 18:12:21 -08001693 * @tset: taskset of interest
Tejun Heod99c8722013-08-08 20:11:27 -04001694 * @subsys_id: the ID of the target subsystem
Tejun Heo2f7ee562011-12-12 18:12:21 -08001695 *
Tejun Heod99c8722013-08-08 20:11:27 -04001696 * Return the css for the current (last returned) task of @tset for
1697 * subsystem specified by @subsys_id. This function must be preceded by
1698 * either cgroup_taskset_first() or cgroup_taskset_next().
Tejun Heo2f7ee562011-12-12 18:12:21 -08001699 */
Tejun Heod99c8722013-08-08 20:11:27 -04001700struct cgroup_subsys_state *cgroup_taskset_cur_css(struct cgroup_taskset *tset,
1701 int subsys_id)
Tejun Heo2f7ee562011-12-12 18:12:21 -08001702{
Tejun Heoca8bdca2013-08-26 18:40:56 -04001703 return cgroup_css(tset->cur_cgrp, cgroup_subsys[subsys_id]);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001704}
Tejun Heod99c8722013-08-08 20:11:27 -04001705EXPORT_SYMBOL_GPL(cgroup_taskset_cur_css);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001706
1707/**
1708 * cgroup_taskset_size - return the number of tasks in taskset
1709 * @tset: taskset of interest
1710 */
1711int cgroup_taskset_size(struct cgroup_taskset *tset)
1712{
1713 return tset->tc_array ? tset->tc_array_len : 1;
1714}
1715EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1716
1717
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001718/**
Ben Blum74a11662011-05-26 16:25:20 -07001719 * cgroup_task_migrate - move a task from one cgroup to another.
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001720 * @old_cgrp; the cgroup @tsk is being migrated from
1721 * @tsk: the task being migrated
1722 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001723 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001724 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001725 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001726static void cgroup_task_migrate(struct cgroup *old_cgrp,
1727 struct task_struct *tsk,
1728 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001729{
Tejun Heo5abb8852013-06-12 21:04:49 -07001730 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001731
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001732 lockdep_assert_held(&cgroup_mutex);
1733 lockdep_assert_held(&css_set_rwsem);
1734
Ben Blum74a11662011-05-26 16:25:20 -07001735 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001736 * We are synchronized through threadgroup_lock() against PF_EXITING
1737 * setting such that we can't race against cgroup_exit() changing the
1738 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001739 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001740 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001741 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001742
Ben Blum74a11662011-05-26 16:25:20 -07001743 task_lock(tsk);
Tejun Heo5abb8852013-06-12 21:04:49 -07001744 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001745 task_unlock(tsk);
1746
Tejun Heo56fde9e2014-02-13 06:58:38 -05001747 list_move(&tsk->cg_list, &new_cset->tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001748
1749 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001750 * We just gained a reference on old_cset by taking it from the
1751 * task. As trading it for new_cset is protected by cgroup_mutex,
1752 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001753 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001754 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001755 put_css_set_locked(old_cset, false);
Ben Blum74a11662011-05-26 16:25:20 -07001756}
1757
Li Zefana043e3b2008-02-23 15:24:09 -08001758/**
Li Zefan081aa452013-03-13 09:17:09 +08001759 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
Ben Blum74a11662011-05-26 16:25:20 -07001760 * @cgrp: the cgroup to attach to
Li Zefan081aa452013-03-13 09:17:09 +08001761 * @tsk: the task or the leader of the threadgroup to be attached
1762 * @threadgroup: attach the whole threadgroup?
Ben Blum74a11662011-05-26 16:25:20 -07001763 *
Tejun Heo257058a2011-12-12 18:12:21 -08001764 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
Li Zefan081aa452013-03-13 09:17:09 +08001765 * task_lock of @tsk or each thread in the threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07001766 */
Tejun Heo47cfcd02013-04-07 09:29:51 -07001767static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk,
1768 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07001769{
1770 int retval, i, group_size;
Ben Blum74a11662011-05-26 16:25:20 -07001771 struct cgroupfs_root *root = cgrp->root;
Tejun Heo1c6727a2013-12-06 15:11:56 -05001772 struct cgroup_subsys_state *css, *failed_css = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07001773 /* threadgroup list cursor and array */
Li Zefan081aa452013-03-13 09:17:09 +08001774 struct task_struct *leader = tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08001775 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07001776 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001777 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07001778
1779 /*
1780 * step 0: in order to do expensive, possibly blocking operations for
1781 * every thread, we cannot iterate the thread group list, since it needs
1782 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08001783 * group - group_rwsem prevents new threads from appearing, and if
1784 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07001785 */
Li Zefan081aa452013-03-13 09:17:09 +08001786 if (threadgroup)
1787 group_size = get_nr_threads(tsk);
1788 else
1789 group_size = 1;
Ben Blumd8466872011-05-26 16:25:21 -07001790 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08001791 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07001792 if (!group)
1793 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07001794 /* pre-allocate to guarantee space while iterating in rcu read-side. */
Li Zefan3ac17072013-03-12 15:36:00 -07001795 retval = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
Ben Blumd8466872011-05-26 16:25:21 -07001796 if (retval)
1797 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07001798
Ben Blum74a11662011-05-26 16:25:20 -07001799 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001800 /*
1801 * Prevent freeing of tasks while we take a snapshot. Tasks that are
1802 * already PF_EXITING could be freed from underneath us unless we
1803 * take an rcu_read_lock.
1804 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001805 down_read(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001806 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07001807 do {
Tejun Heo134d3372011-12-12 18:12:21 -08001808 struct task_and_cgroup ent;
1809
Tejun Heocd3d0952011-12-12 18:12:21 -08001810 /* @tsk either already exited or can't exit until the end */
1811 if (tsk->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08001812 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08001813
Ben Blum74a11662011-05-26 16:25:20 -07001814 /* as per above, nr_threads may decrease, but not increase. */
1815 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08001816 ent.task = tsk;
1817 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001818 /* nothing to do if this task is already in the cgroup */
1819 if (ent.cgrp == cgrp)
Anjana V Kumarea847532013-10-12 10:59:17 +08001820 goto next;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001821 /*
1822 * saying GFP_ATOMIC has no effect here because we did prealloc
1823 * earlier, but it's good form to communicate our expectations.
1824 */
Tejun Heo134d3372011-12-12 18:12:21 -08001825 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07001826 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07001827 i++;
Anjana V Kumarea847532013-10-12 10:59:17 +08001828 next:
Li Zefan081aa452013-03-13 09:17:09 +08001829 if (!threadgroup)
1830 break;
Ben Blum74a11662011-05-26 16:25:20 -07001831 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001832 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05001833 up_read(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07001834 /* remember the number of threads in the array for later. */
1835 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001836 tset.tc_array = group;
1837 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07001838
Tejun Heo134d3372011-12-12 18:12:21 -08001839 /* methods shouldn't be called if no task is actually migrating */
1840 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001841 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08001842 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08001843
Ben Blum74a11662011-05-26 16:25:20 -07001844 /*
1845 * step 1: check that we can legitimately attach to the cgroup.
1846 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001847 for_each_css(css, i, cgrp) {
1848 if (css->ss->can_attach) {
1849 retval = css->ss->can_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001850 if (retval) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05001851 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07001852 goto out_cancel_attach;
1853 }
1854 }
Ben Blum74a11662011-05-26 16:25:20 -07001855 }
1856
1857 /*
1858 * step 2: make sure css_sets exist for all threads to be migrated.
1859 * we use find_css_set, which allocates a new one if necessary.
1860 */
Ben Blum74a11662011-05-26 16:25:20 -07001861 for (i = 0; i < group_size; i++) {
Tejun Heoa8ad8052013-06-21 15:52:04 -07001862 struct css_set *old_cset;
1863
Tejun Heo134d3372011-12-12 18:12:21 -08001864 tc = flex_array_get(group, i);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001865 old_cset = task_css_set(tc->task);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001866 tc->cset = find_css_set(old_cset, cgrp);
1867 if (!tc->cset) {
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001868 retval = -ENOMEM;
1869 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07001870 }
1871 }
1872
1873 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001874 * step 3: now that we're guaranteed success wrt the css_sets,
1875 * proceed to move all tasks to the new cgroup. There are no
1876 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07001877 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001878 down_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07001879 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08001880 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001881 cgroup_task_migrate(tc->cgrp, tc->task, tc->cset);
Ben Blum74a11662011-05-26 16:25:20 -07001882 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001883 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07001884 /* nothing is sensitive to fork() after this point. */
1885
1886 /*
Tejun Heo494c1672011-12-12 18:12:22 -08001887 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07001888 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05001889 for_each_css(css, i, cgrp)
1890 if (css->ss->attach)
1891 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001892
1893 /*
1894 * step 5: success! and cleanup
1895 */
Ben Blum74a11662011-05-26 16:25:20 -07001896 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001897out_put_css_set_refs:
1898 if (retval) {
1899 for (i = 0; i < group_size; i++) {
1900 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08001901 if (!tc->cset)
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001902 break;
Tejun Heo89c55092014-02-13 06:58:40 -05001903 put_css_set(tc->cset, false);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001904 }
Ben Blum74a11662011-05-26 16:25:20 -07001905 }
1906out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07001907 if (retval) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05001908 for_each_css(css, i, cgrp) {
1909 if (css == failed_css)
Ben Blum74a11662011-05-26 16:25:20 -07001910 break;
Tejun Heo1c6727a2013-12-06 15:11:56 -05001911 if (css->ss->cancel_attach)
1912 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07001913 }
1914 }
Ben Blum74a11662011-05-26 16:25:20 -07001915out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07001916 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07001917 return retval;
1918}
1919
1920/*
1921 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08001922 * function to attach either it or all tasks in its threadgroup. Will lock
1923 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07001924 */
1925static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001926{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001927 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001928 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001929 int ret;
1930
Ben Blum74a11662011-05-26 16:25:20 -07001931 if (!cgroup_lock_live_group(cgrp))
1932 return -ENODEV;
1933
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001934retry_find_task:
1935 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001936 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001937 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07001938 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07001939 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001940 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001941 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001942 }
Ben Blum74a11662011-05-26 16:25:20 -07001943 /*
1944 * even if we're attaching all tasks in the thread group, we
1945 * only need to check permissions on one of them.
1946 */
David Howellsc69e8d92008-11-14 10:39:19 +11001947 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07001948 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
1949 !uid_eq(cred->euid, tcred->uid) &&
1950 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001951 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001952 ret = -EACCES;
1953 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001954 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001955 } else
1956 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08001957
1958 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001959 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001960
1961 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07001962 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001963 * trapped in a cpuset, or RT worker may be born in a cgroup
1964 * with no rt_runtime allocated. Just say no.
1965 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07001966 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02001967 ret = -EINVAL;
1968 rcu_read_unlock();
1969 goto out_unlock_cgroup;
1970 }
1971
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001972 get_task_struct(tsk);
1973 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08001974
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001975 threadgroup_lock(tsk);
1976 if (threadgroup) {
1977 if (!thread_group_leader(tsk)) {
1978 /*
1979 * a race with de_thread from another thread's exec()
1980 * may strip us of our leadership, if this happens,
1981 * there is no choice but to throw this task away and
1982 * try again; this is
1983 * "double-double-toil-and-trouble-check locking".
1984 */
1985 threadgroup_unlock(tsk);
1986 put_task_struct(tsk);
1987 goto retry_find_task;
1988 }
Li Zefan081aa452013-03-13 09:17:09 +08001989 }
1990
1991 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
1992
Tejun Heocd3d0952011-12-12 18:12:21 -08001993 threadgroup_unlock(tsk);
1994
Paul Menagebbcb81d2007-10-18 23:39:32 -07001995 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08001996out_unlock_cgroup:
Tejun Heo47cfcd02013-04-07 09:29:51 -07001997 mutex_unlock(&cgroup_mutex);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001998 return ret;
1999}
2000
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002001/**
2002 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2003 * @from: attach to all cgroups of a given task
2004 * @tsk: the task to be attached
2005 */
2006int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2007{
2008 struct cgroupfs_root *root;
2009 int retval = 0;
2010
Tejun Heo47cfcd02013-04-07 09:29:51 -07002011 mutex_lock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002012 for_each_active_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002013 struct cgroup *from_cgrp;
2014
2015 down_read(&css_set_rwsem);
2016 from_cgrp = task_cgroup_from_root(from, root);
2017 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002018
Li Zefan6f4b7e62013-07-31 16:18:36 +08002019 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002020 if (retval)
2021 break;
2022 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002023 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002024
2025 return retval;
2026}
2027EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2028
Tejun Heo182446d2013-08-08 20:11:24 -04002029static int cgroup_tasks_write(struct cgroup_subsys_state *css,
2030 struct cftype *cft, u64 pid)
Paul Menageaf351022008-07-25 01:47:01 -07002031{
Tejun Heo182446d2013-08-08 20:11:24 -04002032 return attach_task_by_pid(css->cgroup, pid, false);
Ben Blum74a11662011-05-26 16:25:20 -07002033}
2034
Tejun Heo182446d2013-08-08 20:11:24 -04002035static int cgroup_procs_write(struct cgroup_subsys_state *css,
2036 struct cftype *cft, u64 tgid)
Ben Blum74a11662011-05-26 16:25:20 -07002037{
Tejun Heo182446d2013-08-08 20:11:24 -04002038 return attach_task_by_pid(css->cgroup, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002039}
2040
Tejun Heo182446d2013-08-08 20:11:24 -04002041static int cgroup_release_agent_write(struct cgroup_subsys_state *css,
2042 struct cftype *cft, const char *buffer)
Paul Menagee788e0662008-07-25 01:46:59 -07002043{
Tejun Heo5f469902014-02-11 11:52:48 -05002044 struct cgroupfs_root *root = css->cgroup->root;
2045
2046 BUILD_BUG_ON(sizeof(root->release_agent_path) < PATH_MAX);
Tejun Heo182446d2013-08-08 20:11:24 -04002047 if (!cgroup_lock_live_group(css->cgroup))
Paul Menagee788e0662008-07-25 01:46:59 -07002048 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002049 spin_lock(&release_agent_path_lock);
Tejun Heo5f469902014-02-11 11:52:48 -05002050 strlcpy(root->release_agent_path, buffer,
2051 sizeof(root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002052 spin_unlock(&release_agent_path_lock);
Tejun Heo47cfcd02013-04-07 09:29:51 -07002053 mutex_unlock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07002054 return 0;
2055}
2056
Tejun Heo2da8ca82013-12-05 12:28:04 -05002057static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e0662008-07-25 01:46:59 -07002058{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002059 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002060
Paul Menagee788e0662008-07-25 01:46:59 -07002061 if (!cgroup_lock_live_group(cgrp))
2062 return -ENODEV;
2063 seq_puts(seq, cgrp->root->release_agent_path);
2064 seq_putc(seq, '\n');
Tejun Heo47cfcd02013-04-07 09:29:51 -07002065 mutex_unlock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07002066 return 0;
2067}
2068
Tejun Heo2da8ca82013-12-05 12:28:04 -05002069static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002070{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002071 struct cgroup *cgrp = seq_css(seq)->cgroup;
2072
2073 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002074 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002075}
2076
Tejun Heo2bd59d42014-02-11 11:52:49 -05002077static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2078 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002079{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002080 struct cgroup *cgrp = of->kn->parent->priv;
2081 struct cftype *cft = of->kn->priv;
2082 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002083 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002084
Tejun Heo2bd59d42014-02-11 11:52:49 -05002085 /*
2086 * kernfs guarantees that a file isn't deleted with operations in
2087 * flight, which means that the matching css is and stays alive and
2088 * doesn't need to be pinned. The RCU locking is not necessary
2089 * either. It's just for the convenience of using cgroup_css().
2090 */
2091 rcu_read_lock();
2092 css = cgroup_css(cgrp, cft->ss);
2093 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002094
Tejun Heoa742c592013-12-05 12:28:03 -05002095 if (cft->write_string) {
2096 ret = cft->write_string(css, cft, strstrip(buf));
2097 } else if (cft->write_u64) {
2098 unsigned long long v;
2099 ret = kstrtoull(buf, 0, &v);
2100 if (!ret)
2101 ret = cft->write_u64(css, cft, v);
2102 } else if (cft->write_s64) {
2103 long long v;
2104 ret = kstrtoll(buf, 0, &v);
2105 if (!ret)
2106 ret = cft->write_s64(css, cft, v);
2107 } else if (cft->trigger) {
2108 ret = cft->trigger(css, (unsigned int)cft->private);
2109 } else {
2110 ret = -EINVAL;
2111 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002112
Tejun Heoa742c592013-12-05 12:28:03 -05002113 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002114}
2115
Tejun Heo6612f052013-12-05 12:28:04 -05002116static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002117{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002118 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002119}
2120
2121static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2122{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002123 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002124}
2125
2126static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2127{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002128 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002129}
2130
2131static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2132{
Tejun Heo7da11272013-12-05 12:28:04 -05002133 struct cftype *cft = seq_cft(m);
2134 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002135
Tejun Heo2da8ca82013-12-05 12:28:04 -05002136 if (cft->seq_show)
2137 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002138
Tejun Heo896f5192013-12-05 12:28:04 -05002139 if (cft->read_u64)
2140 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2141 else if (cft->read_s64)
2142 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2143 else
2144 return -EINVAL;
2145 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002146}
2147
Tejun Heo2bd59d42014-02-11 11:52:49 -05002148static struct kernfs_ops cgroup_kf_single_ops = {
2149 .atomic_write_len = PAGE_SIZE,
2150 .write = cgroup_file_write,
2151 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002152};
2153
Tejun Heo2bd59d42014-02-11 11:52:49 -05002154static struct kernfs_ops cgroup_kf_ops = {
2155 .atomic_write_len = PAGE_SIZE,
2156 .write = cgroup_file_write,
2157 .seq_start = cgroup_seqfile_start,
2158 .seq_next = cgroup_seqfile_next,
2159 .seq_stop = cgroup_seqfile_stop,
2160 .seq_show = cgroup_seqfile_show,
2161};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002162
2163/*
2164 * cgroup_rename - Only allow simple rename of directories in place.
2165 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002166static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2167 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002168{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002169 struct cgroup *cgrp = kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002170 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002171
Tejun Heo2bd59d42014-02-11 11:52:49 -05002172 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002173 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002174 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002175 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002176
Tejun Heo6db8e852013-06-14 11:18:22 -07002177 /*
2178 * This isn't a proper migration and its usefulness is very
2179 * limited. Disallow if sane_behavior.
2180 */
2181 if (cgroup_sane_behavior(cgrp))
2182 return -EPERM;
2183
Tejun Heo2bd59d42014-02-11 11:52:49 -05002184 mutex_lock(&cgroup_tree_mutex);
2185 mutex_lock(&cgroup_mutex);
2186
2187 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002188
Tejun Heo2bd59d42014-02-11 11:52:49 -05002189 mutex_unlock(&cgroup_mutex);
2190 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002191 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002192}
2193
Tejun Heo2bb566c2013-08-08 20:11:23 -04002194static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002195{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002196 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002197 struct kernfs_node *kn;
2198 struct lock_class_key *key = NULL;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002199
Tejun Heo2bd59d42014-02-11 11:52:49 -05002200#ifdef CONFIG_DEBUG_LOCK_ALLOC
2201 key = &cft->lockdep_key;
2202#endif
2203 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2204 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2205 NULL, false, key);
2206 if (IS_ERR(kn))
2207 return PTR_ERR(kn);
2208 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002209}
2210
Tejun Heob1f28d32013-06-28 16:24:10 -07002211/**
2212 * cgroup_addrm_files - add or remove files to a cgroup directory
2213 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002214 * @cfts: array of cftypes to be added
2215 * @is_add: whether to add or remove
2216 *
2217 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002218 * For removals, this function never fails. If addition fails, this
2219 * function doesn't remove files already added. The caller is responsible
2220 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002221 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002222static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2223 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002224{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002225 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002226 int ret;
2227
Tejun Heoace2bee2014-02-11 11:52:47 -05002228 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002229
2230 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002231 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo873fe092013-04-14 20:15:26 -07002232 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2233 continue;
Gao fengf33fddc2012-12-06 14:38:57 +08002234 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2235 continue;
2236 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2237 continue;
2238
Li Zefan2739d3c2013-01-21 18:18:33 +08002239 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002240 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002241 if (ret) {
Li Zefan2739d3c2013-01-21 18:18:33 +08002242 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
Tejun Heob1f28d32013-06-28 16:24:10 -07002243 cft->name, ret);
2244 return ret;
2245 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002246 } else {
2247 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002248 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002249 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002250 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002251}
2252
Tejun Heo21a2d342014-02-12 09:29:49 -05002253static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002254{
2255 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002256 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo492eb212013-08-08 20:11:25 -04002257 struct cgroup *root = &ss->root->top_cgroup;
Tejun Heo492eb212013-08-08 20:11:25 -04002258 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07002259 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002260
Tejun Heo21a2d342014-02-12 09:29:49 -05002261 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo4ac06012014-02-11 11:52:47 -05002262
Tejun Heo21a2d342014-02-12 09:29:49 -05002263 /* don't bother if @ss isn't attached */
2264 if (ss->root == &cgroup_dummy_root)
Tejun Heo9ccece82013-06-28 16:24:11 -07002265 return 0;
Li Zefane8c82d22013-06-18 18:48:37 +08002266
Li Zefane8c82d22013-06-18 18:48:37 +08002267 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04002268 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002269 struct cgroup *cgrp = css->cgroup;
2270
Li Zefane8c82d22013-06-18 18:48:37 +08002271 if (cgroup_is_dead(cgrp))
2272 continue;
2273
Tejun Heo21a2d342014-02-12 09:29:49 -05002274 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07002275 if (ret)
2276 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002277 }
Tejun Heo21a2d342014-02-12 09:29:49 -05002278
2279 if (is_add && !ret)
2280 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07002281 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002282}
2283
Tejun Heo2da440a2014-02-11 11:52:48 -05002284static void cgroup_exit_cftypes(struct cftype *cfts)
2285{
2286 struct cftype *cft;
2287
Tejun Heo2bd59d42014-02-11 11:52:49 -05002288 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2289 /* free copy for custom atomic_write_len, see init_cftypes() */
2290 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
2291 kfree(cft->kf_ops);
2292 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05002293 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002294 }
Tejun Heo2da440a2014-02-11 11:52:48 -05002295}
2296
Tejun Heo2bd59d42014-02-11 11:52:49 -05002297static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05002298{
2299 struct cftype *cft;
2300
Tejun Heo2bd59d42014-02-11 11:52:49 -05002301 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2302 struct kernfs_ops *kf_ops;
2303
Tejun Heo0adb0702014-02-12 09:29:48 -05002304 WARN_ON(cft->ss || cft->kf_ops);
2305
Tejun Heo2bd59d42014-02-11 11:52:49 -05002306 if (cft->seq_start)
2307 kf_ops = &cgroup_kf_ops;
2308 else
2309 kf_ops = &cgroup_kf_single_ops;
2310
2311 /*
2312 * Ugh... if @cft wants a custom max_write_len, we need to
2313 * make a copy of kf_ops to set its atomic_write_len.
2314 */
2315 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
2316 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
2317 if (!kf_ops) {
2318 cgroup_exit_cftypes(cfts);
2319 return -ENOMEM;
2320 }
2321 kf_ops->atomic_write_len = cft->max_write_len;
2322 }
2323
2324 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05002325 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002326 }
2327
2328 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05002329}
2330
Tejun Heo21a2d342014-02-12 09:29:49 -05002331static int cgroup_rm_cftypes_locked(struct cftype *cfts)
2332{
2333 lockdep_assert_held(&cgroup_tree_mutex);
2334
2335 if (!cfts || !cfts[0].ss)
2336 return -ENOENT;
2337
2338 list_del(&cfts->node);
2339 cgroup_apply_cftypes(cfts, false);
2340 cgroup_exit_cftypes(cfts);
2341 return 0;
2342}
2343
Tejun Heo8e3f6542012-04-01 12:09:55 -07002344/**
Tejun Heo80b13582014-02-12 09:29:48 -05002345 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2346 * @cfts: zero-length name terminated array of cftypes
2347 *
2348 * Unregister @cfts. Files described by @cfts are removed from all
2349 * existing cgroups and all future cgroups won't have them either. This
2350 * function can be called anytime whether @cfts' subsys is attached or not.
2351 *
2352 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2353 * registered.
2354 */
2355int cgroup_rm_cftypes(struct cftype *cfts)
2356{
Tejun Heo21a2d342014-02-12 09:29:49 -05002357 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002358
Tejun Heo21a2d342014-02-12 09:29:49 -05002359 mutex_lock(&cgroup_tree_mutex);
2360 ret = cgroup_rm_cftypes_locked(cfts);
2361 mutex_unlock(&cgroup_tree_mutex);
2362 return ret;
Tejun Heo80b13582014-02-12 09:29:48 -05002363}
2364
2365/**
Tejun Heo8e3f6542012-04-01 12:09:55 -07002366 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2367 * @ss: target cgroup subsystem
2368 * @cfts: zero-length name terminated array of cftypes
2369 *
2370 * Register @cfts to @ss. Files described by @cfts are created for all
2371 * existing cgroups to which @ss is attached and all future cgroups will
2372 * have them too. This function can be called anytime whether @ss is
2373 * attached or not.
2374 *
2375 * Returns 0 on successful registration, -errno on failure. Note that this
2376 * function currently returns 0 as long as @cfts registration is successful
2377 * even if some file creation attempts on existing cgroups fail.
2378 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002379int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002380{
Tejun Heo9ccece82013-06-28 16:24:11 -07002381 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002382
Tejun Heo2bd59d42014-02-11 11:52:49 -05002383 ret = cgroup_init_cftypes(ss, cfts);
2384 if (ret)
2385 return ret;
Tejun Heo2bb566c2013-08-08 20:11:23 -04002386
Tejun Heo21a2d342014-02-12 09:29:49 -05002387 mutex_lock(&cgroup_tree_mutex);
2388
Tejun Heo0adb0702014-02-12 09:29:48 -05002389 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05002390 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07002391 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05002392 cgroup_rm_cftypes_locked(cfts);
2393
2394 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07002395 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002396}
2397EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2398
Li Zefana043e3b2008-02-23 15:24:09 -08002399/**
2400 * cgroup_task_count - count the number of tasks in a cgroup.
2401 * @cgrp: the cgroup in question
2402 *
2403 * Return the number of tasks in the cgroup.
2404 */
Tejun Heo07bc3562014-02-13 06:58:39 -05002405static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002406{
2407 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07002408 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002409
Tejun Heo96d365e2014-02-13 06:58:40 -05002410 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07002411 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2412 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05002413 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002414 return count;
2415}
2416
Tejun Heo574bd9f2012-11-09 09:12:29 -08002417/**
Tejun Heo492eb212013-08-08 20:11:25 -04002418 * css_next_child - find the next child of a given css
2419 * @pos_css: the current position (%NULL to initiate traversal)
2420 * @parent_css: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09002421 *
Tejun Heo492eb212013-08-08 20:11:25 -04002422 * This function returns the next child of @parent_css and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05002423 * under either cgroup_mutex or RCU read lock. The only requirement is
2424 * that @parent_css and @pos_css are accessible. The next sibling is
2425 * guaranteed to be returned regardless of their states.
Tejun Heo53fa5262013-05-24 10:55:38 +09002426 */
Tejun Heo492eb212013-08-08 20:11:25 -04002427struct cgroup_subsys_state *
2428css_next_child(struct cgroup_subsys_state *pos_css,
2429 struct cgroup_subsys_state *parent_css)
Tejun Heo53fa5262013-05-24 10:55:38 +09002430{
Tejun Heo492eb212013-08-08 20:11:25 -04002431 struct cgroup *pos = pos_css ? pos_css->cgroup : NULL;
2432 struct cgroup *cgrp = parent_css->cgroup;
Tejun Heo53fa5262013-05-24 10:55:38 +09002433 struct cgroup *next;
2434
Tejun Heoace2bee2014-02-11 11:52:47 -05002435 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09002436
2437 /*
2438 * @pos could already have been removed. Once a cgroup is removed,
2439 * its ->sibling.next is no longer updated when its next sibling
Tejun Heoea15f8c2013-06-13 19:27:42 -07002440 * changes. As CGRP_DEAD assertion is serialized and happens
2441 * before the cgroup is taken off the ->sibling list, if we see it
2442 * unasserted, it's guaranteed that the next sibling hasn't
2443 * finished its grace period even if it's already removed, and thus
2444 * safe to dereference from this RCU critical section. If
2445 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
2446 * to be visible as %true here.
Tejun Heo3b287a52013-08-08 20:11:24 -04002447 *
2448 * If @pos is dead, its next pointer can't be dereferenced;
2449 * however, as each cgroup is given a monotonically increasing
2450 * unique serial number and always appended to the sibling list,
2451 * the next one can be found by walking the parent's children until
2452 * we see a cgroup with higher serial number than @pos's. While
2453 * this path can be slower, it's taken only when either the current
2454 * cgroup is removed or iteration and removal race.
Tejun Heo53fa5262013-05-24 10:55:38 +09002455 */
Tejun Heo3b287a52013-08-08 20:11:24 -04002456 if (!pos) {
2457 next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling);
2458 } else if (likely(!cgroup_is_dead(pos))) {
Tejun Heo53fa5262013-05-24 10:55:38 +09002459 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04002460 } else {
2461 list_for_each_entry_rcu(next, &cgrp->children, sibling)
2462 if (next->serial_nr > pos->serial_nr)
2463 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09002464 }
2465
Tejun Heo492eb212013-08-08 20:11:25 -04002466 if (&next->sibling == &cgrp->children)
2467 return NULL;
2468
Tejun Heoca8bdca2013-08-26 18:40:56 -04002469 return cgroup_css(next, parent_css->ss);
Tejun Heo53fa5262013-05-24 10:55:38 +09002470}
Tejun Heo492eb212013-08-08 20:11:25 -04002471EXPORT_SYMBOL_GPL(css_next_child);
Tejun Heo53fa5262013-05-24 10:55:38 +09002472
2473/**
Tejun Heo492eb212013-08-08 20:11:25 -04002474 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002475 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002476 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002477 *
Tejun Heo492eb212013-08-08 20:11:25 -04002478 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002479 * to visit for pre-order traversal of @root's descendants. @root is
2480 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002481 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002482 * While this function requires cgroup_mutex or RCU read locking, it
2483 * doesn't require the whole traversal to be contained in a single critical
2484 * section. This function will return the correct next descendant as long
2485 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002486 */
Tejun Heo492eb212013-08-08 20:11:25 -04002487struct cgroup_subsys_state *
2488css_next_descendant_pre(struct cgroup_subsys_state *pos,
2489 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002490{
Tejun Heo492eb212013-08-08 20:11:25 -04002491 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002492
Tejun Heoace2bee2014-02-11 11:52:47 -05002493 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002494
Tejun Heobd8815a2013-08-08 20:11:27 -04002495 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09002496 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04002497 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002498
2499 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04002500 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002501 if (next)
2502 return next;
2503
2504 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04002505 while (pos != root) {
2506 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002507 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002508 return next;
Tejun Heo492eb212013-08-08 20:11:25 -04002509 pos = css_parent(pos);
Tejun Heo7805d002013-05-24 10:50:24 +09002510 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08002511
2512 return NULL;
2513}
Tejun Heo492eb212013-08-08 20:11:25 -04002514EXPORT_SYMBOL_GPL(css_next_descendant_pre);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002515
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002516/**
Tejun Heo492eb212013-08-08 20:11:25 -04002517 * css_rightmost_descendant - return the rightmost descendant of a css
2518 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002519 *
Tejun Heo492eb212013-08-08 20:11:25 -04002520 * Return the rightmost descendant of @pos. If there's no descendant, @pos
2521 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002522 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09002523 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002524 * While this function requires cgroup_mutex or RCU read locking, it
2525 * doesn't require the whole traversal to be contained in a single critical
2526 * section. This function will return the correct rightmost descendant as
2527 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002528 */
Tejun Heo492eb212013-08-08 20:11:25 -04002529struct cgroup_subsys_state *
2530css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002531{
Tejun Heo492eb212013-08-08 20:11:25 -04002532 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002533
Tejun Heoace2bee2014-02-11 11:52:47 -05002534 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002535
2536 do {
2537 last = pos;
2538 /* ->prev isn't RCU safe, walk ->next till the end */
2539 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04002540 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002541 pos = tmp;
2542 } while (pos);
2543
2544 return last;
2545}
Tejun Heo492eb212013-08-08 20:11:25 -04002546EXPORT_SYMBOL_GPL(css_rightmost_descendant);
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002547
Tejun Heo492eb212013-08-08 20:11:25 -04002548static struct cgroup_subsys_state *
2549css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002550{
Tejun Heo492eb212013-08-08 20:11:25 -04002551 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002552
2553 do {
2554 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04002555 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002556 } while (pos);
2557
2558 return last;
2559}
2560
2561/**
Tejun Heo492eb212013-08-08 20:11:25 -04002562 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002563 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002564 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002565 *
Tejun Heo492eb212013-08-08 20:11:25 -04002566 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002567 * to visit for post-order traversal of @root's descendants. @root is
2568 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002569 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002570 * While this function requires cgroup_mutex or RCU read locking, it
2571 * doesn't require the whole traversal to be contained in a single critical
2572 * section. This function will return the correct next descendant as long
2573 * as both @pos and @cgroup are accessible and @pos is a descendant of
2574 * @cgroup.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002575 */
Tejun Heo492eb212013-08-08 20:11:25 -04002576struct cgroup_subsys_state *
2577css_next_descendant_post(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 Heo58b79a92013-09-06 15:31:08 -04002584 /* if first iteration, visit leftmost descendant which may be @root */
2585 if (!pos)
2586 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002587
Tejun Heobd8815a2013-08-08 20:11:27 -04002588 /* if we visited @root, we're done */
2589 if (pos == root)
2590 return NULL;
2591
Tejun Heo574bd9f2012-11-09 09:12:29 -08002592 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo492eb212013-08-08 20:11:25 -04002593 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002594 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04002595 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002596
2597 /* no sibling left, visit parent */
Tejun Heobd8815a2013-08-08 20:11:27 -04002598 return css_parent(pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002599}
Tejun Heo492eb212013-08-08 20:11:25 -04002600EXPORT_SYMBOL_GPL(css_next_descendant_post);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002601
Tejun Heo0942eee2013-08-08 20:11:26 -04002602/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002603 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04002604 * @it: the iterator to advance
2605 *
2606 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04002607 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002608static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04002609{
2610 struct list_head *l = it->cset_link;
2611 struct cgrp_cset_link *link;
2612 struct css_set *cset;
2613
2614 /* Advance to the next non-empty css_set */
2615 do {
2616 l = l->next;
Tejun Heo72ec7022013-08-08 20:11:26 -04002617 if (l == &it->origin_css->cgroup->cset_links) {
Tejun Heod5158762013-08-08 20:11:26 -04002618 it->cset_link = NULL;
2619 return;
2620 }
2621 link = list_entry(l, struct cgrp_cset_link, cset_link);
2622 cset = link->cset;
2623 } while (list_empty(&cset->tasks));
2624 it->cset_link = l;
2625 it->task = cset->tasks.next;
2626}
2627
Tejun Heo0942eee2013-08-08 20:11:26 -04002628/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002629 * css_task_iter_start - initiate task iteration
2630 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04002631 * @it: the task iterator to use
2632 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002633 * Initiate iteration through the tasks of @css. The caller can call
2634 * css_task_iter_next() to walk through the tasks until the function
2635 * returns NULL. On completion of iteration, css_task_iter_end() must be
2636 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04002637 *
2638 * Note that this function acquires a lock which is released when the
2639 * iteration finishes. The caller can't sleep while iteration is in
2640 * progress.
2641 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002642void css_task_iter_start(struct cgroup_subsys_state *css,
2643 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05002644 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07002645{
Tejun Heo56fde9e2014-02-13 06:58:38 -05002646 /* no one should try to iterate before mounting cgroups */
2647 WARN_ON_ONCE(!use_task_css_set_links);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002648
Tejun Heo96d365e2014-02-13 06:58:40 -05002649 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002650
Tejun Heo72ec7022013-08-08 20:11:26 -04002651 it->origin_css = css;
2652 it->cset_link = &css->cgroup->cset_links;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04002653
Tejun Heo72ec7022013-08-08 20:11:26 -04002654 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002655}
2656
Tejun Heo0942eee2013-08-08 20:11:26 -04002657/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002658 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04002659 * @it: the task iterator being iterated
2660 *
2661 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04002662 * initialized via css_task_iter_start(). Returns NULL when the iteration
2663 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04002664 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002665struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002666{
2667 struct task_struct *res;
2668 struct list_head *l = it->task;
Tejun Heo69d02062013-06-12 21:04:50 -07002669 struct cgrp_cset_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002670
2671 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo69d02062013-06-12 21:04:50 -07002672 if (!it->cset_link)
Paul Menage817929e2007-10-18 23:39:36 -07002673 return NULL;
2674 res = list_entry(l, struct task_struct, cg_list);
2675 /* Advance iterator to find next entry */
2676 l = l->next;
Tejun Heo69d02062013-06-12 21:04:50 -07002677 link = list_entry(it->cset_link, struct cgrp_cset_link, cset_link);
2678 if (l == &link->cset->tasks) {
Tejun Heo0942eee2013-08-08 20:11:26 -04002679 /*
2680 * We reached the end of this task list - move on to the
2681 * next cgrp_cset_link.
2682 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002683 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07002684 } else {
2685 it->task = l;
2686 }
2687 return res;
2688}
2689
Tejun Heo0942eee2013-08-08 20:11:26 -04002690/**
Tejun Heo72ec7022013-08-08 20:11:26 -04002691 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04002692 * @it: the task iterator to finish
2693 *
Tejun Heo72ec7022013-08-08 20:11:26 -04002694 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04002695 */
Tejun Heo72ec7022013-08-08 20:11:26 -04002696void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05002697 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07002698{
Tejun Heo96d365e2014-02-13 06:58:40 -05002699 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07002700}
2701
Tejun Heo8cc99342013-04-07 09:29:50 -07002702/**
2703 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
2704 * @to: cgroup to which the tasks will be moved
2705 * @from: cgroup in which the tasks currently reside
2706 */
2707int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
2708{
Tejun Heoe406d1c2014-02-13 06:58:39 -05002709 struct css_task_iter it;
2710 struct task_struct *task;
2711 int ret = 0;
2712
2713 do {
2714 css_task_iter_start(&from->dummy_css, &it);
2715 task = css_task_iter_next(&it);
2716 if (task)
2717 get_task_struct(task);
2718 css_task_iter_end(&it);
2719
2720 if (task) {
2721 mutex_lock(&cgroup_mutex);
2722 ret = cgroup_attach_task(to, task, false);
2723 mutex_unlock(&cgroup_mutex);
2724 put_task_struct(task);
2725 }
2726 } while (task && !ret);
2727
2728 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07002729}
2730
Paul Menage817929e2007-10-18 23:39:36 -07002731/*
Ben Blum102a7752009-09-23 15:56:26 -07002732 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002733 *
2734 * Reading this file can return large amounts of data if a cgroup has
2735 * *lots* of attached tasks. So it may need several calls to read(),
2736 * but we cannot guarantee that the information we produce is correct
2737 * unless we produce it entirely atomically.
2738 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002739 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002740
Li Zefan24528252012-01-20 11:58:43 +08002741/* which pidlist file are we talking about? */
2742enum cgroup_filetype {
2743 CGROUP_FILE_PROCS,
2744 CGROUP_FILE_TASKS,
2745};
2746
2747/*
2748 * A pidlist is a list of pids that virtually represents the contents of one
2749 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
2750 * a pair (one each for procs, tasks) for each pid namespace that's relevant
2751 * to the cgroup.
2752 */
2753struct cgroup_pidlist {
2754 /*
2755 * used to find which pidlist is wanted. doesn't change as long as
2756 * this particular list stays in the list.
2757 */
2758 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
2759 /* array of xids */
2760 pid_t *list;
2761 /* how many elements the above list has */
2762 int length;
Li Zefan24528252012-01-20 11:58:43 +08002763 /* each of these stored in a list by its cgroup */
2764 struct list_head links;
2765 /* pointer to the cgroup we belong to, for list removal purposes */
2766 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05002767 /* for delayed destruction */
2768 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08002769};
2770
Paul Menagebbcb81d2007-10-18 23:39:32 -07002771/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002772 * The following two functions "fix" the issue where there are more pids
2773 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2774 * TODO: replace with a kernel-wide solution to this problem
2775 */
2776#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2777static void *pidlist_allocate(int count)
2778{
2779 if (PIDLIST_TOO_LARGE(count))
2780 return vmalloc(count * sizeof(pid_t));
2781 else
2782 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2783}
Tejun Heob1a21362013-11-29 10:42:58 -05002784
Ben Blumd1d9fd32009-09-23 15:56:28 -07002785static void pidlist_free(void *p)
2786{
2787 if (is_vmalloc_addr(p))
2788 vfree(p);
2789 else
2790 kfree(p);
2791}
Ben Blumd1d9fd32009-09-23 15:56:28 -07002792
2793/*
Tejun Heob1a21362013-11-29 10:42:58 -05002794 * Used to destroy all pidlists lingering waiting for destroy timer. None
2795 * should be left afterwards.
2796 */
2797static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
2798{
2799 struct cgroup_pidlist *l, *tmp_l;
2800
2801 mutex_lock(&cgrp->pidlist_mutex);
2802 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
2803 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
2804 mutex_unlock(&cgrp->pidlist_mutex);
2805
2806 flush_workqueue(cgroup_pidlist_destroy_wq);
2807 BUG_ON(!list_empty(&cgrp->pidlists));
2808}
2809
2810static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
2811{
2812 struct delayed_work *dwork = to_delayed_work(work);
2813 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
2814 destroy_dwork);
2815 struct cgroup_pidlist *tofree = NULL;
2816
2817 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05002818
2819 /*
Tejun Heo04502362013-11-29 10:42:59 -05002820 * Destroy iff we didn't get queued again. The state won't change
2821 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05002822 */
Tejun Heo04502362013-11-29 10:42:59 -05002823 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05002824 list_del(&l->links);
2825 pidlist_free(l->list);
2826 put_pid_ns(l->key.ns);
2827 tofree = l;
2828 }
2829
Tejun Heob1a21362013-11-29 10:42:58 -05002830 mutex_unlock(&l->owner->pidlist_mutex);
2831 kfree(tofree);
2832}
2833
2834/*
Ben Blum102a7752009-09-23 15:56:26 -07002835 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07002836 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002837 */
Li Zefan6ee211a2013-03-12 15:36:00 -07002838static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002839{
Ben Blum102a7752009-09-23 15:56:26 -07002840 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07002841
2842 /*
2843 * we presume the 0th element is unique, so i starts at 1. trivial
2844 * edge cases first; no work needs to be done for either
2845 */
2846 if (length == 0 || length == 1)
2847 return length;
2848 /* src and dest walk down the list; dest counts unique elements */
2849 for (src = 1; src < length; src++) {
2850 /* find next unique element */
2851 while (list[src] == list[src-1]) {
2852 src++;
2853 if (src == length)
2854 goto after;
2855 }
2856 /* dest always points to where the next unique element goes */
2857 list[dest] = list[src];
2858 dest++;
2859 }
2860after:
Ben Blum102a7752009-09-23 15:56:26 -07002861 return dest;
2862}
2863
Tejun Heoafb2bc12013-11-29 10:42:59 -05002864/*
2865 * The two pid files - task and cgroup.procs - guaranteed that the result
2866 * is sorted, which forced this whole pidlist fiasco. As pid order is
2867 * different per namespace, each namespace needs differently sorted list,
2868 * making it impossible to use, for example, single rbtree of member tasks
2869 * sorted by task pointer. As pidlists can be fairly large, allocating one
2870 * per open file is dangerous, so cgroup had to implement shared pool of
2871 * pidlists keyed by cgroup and namespace.
2872 *
2873 * All this extra complexity was caused by the original implementation
2874 * committing to an entirely unnecessary property. In the long term, we
2875 * want to do away with it. Explicitly scramble sort order if
2876 * sane_behavior so that no such expectation exists in the new interface.
2877 *
2878 * Scrambling is done by swapping every two consecutive bits, which is
2879 * non-identity one-to-one mapping which disturbs sort order sufficiently.
2880 */
2881static pid_t pid_fry(pid_t pid)
2882{
2883 unsigned a = pid & 0x55555555;
2884 unsigned b = pid & 0xAAAAAAAA;
2885
2886 return (a << 1) | (b >> 1);
2887}
2888
2889static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
2890{
2891 if (cgroup_sane_behavior(cgrp))
2892 return pid_fry(pid);
2893 else
2894 return pid;
2895}
2896
Ben Blum102a7752009-09-23 15:56:26 -07002897static int cmppid(const void *a, const void *b)
2898{
2899 return *(pid_t *)a - *(pid_t *)b;
2900}
2901
Tejun Heoafb2bc12013-11-29 10:42:59 -05002902static int fried_cmppid(const void *a, const void *b)
2903{
2904 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
2905}
2906
Ben Blum72a8cb32009-09-23 15:56:27 -07002907static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2908 enum cgroup_filetype type)
2909{
2910 struct cgroup_pidlist *l;
2911 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08002912 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08002913
Tejun Heoe6b81712013-11-29 10:42:59 -05002914 lockdep_assert_held(&cgrp->pidlist_mutex);
2915
2916 list_for_each_entry(l, &cgrp->pidlists, links)
2917 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07002918 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05002919 return NULL;
2920}
2921
Ben Blum72a8cb32009-09-23 15:56:27 -07002922/*
2923 * find the appropriate pidlist for our purpose (given procs vs tasks)
2924 * returns with the lock on that pidlist already held, and takes care
2925 * of the use count, or returns NULL with no locks held if we're out of
2926 * memory.
2927 */
Tejun Heoe6b81712013-11-29 10:42:59 -05002928static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
2929 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07002930{
2931 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07002932
Tejun Heoe6b81712013-11-29 10:42:59 -05002933 lockdep_assert_held(&cgrp->pidlist_mutex);
2934
2935 l = cgroup_pidlist_find(cgrp, type);
2936 if (l)
2937 return l;
2938
Ben Blum72a8cb32009-09-23 15:56:27 -07002939 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07002940 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05002941 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07002942 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05002943
Tejun Heob1a21362013-11-29 10:42:58 -05002944 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07002945 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05002946 /* don't need task_nsproxy() if we're looking at ourself */
2947 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07002948 l->owner = cgrp;
2949 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07002950 return l;
2951}
2952
2953/*
Ben Blum102a7752009-09-23 15:56:26 -07002954 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2955 */
Ben Blum72a8cb32009-09-23 15:56:27 -07002956static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2957 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07002958{
2959 pid_t *array;
2960 int length;
2961 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04002962 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07002963 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07002964 struct cgroup_pidlist *l;
2965
Tejun Heo4bac00d2013-11-29 10:42:59 -05002966 lockdep_assert_held(&cgrp->pidlist_mutex);
2967
Ben Blum102a7752009-09-23 15:56:26 -07002968 /*
2969 * If cgroup gets more users after we read count, we won't have
2970 * enough space - tough. This race is indistinguishable to the
2971 * caller from the case that the additional cgroup users didn't
2972 * show up until sometime later on.
2973 */
2974 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002975 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07002976 if (!array)
2977 return -ENOMEM;
2978 /* now, populate the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04002979 css_task_iter_start(&cgrp->dummy_css, &it);
2980 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07002981 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07002982 break;
Ben Blum102a7752009-09-23 15:56:26 -07002983 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07002984 if (type == CGROUP_FILE_PROCS)
2985 pid = task_tgid_vnr(tsk);
2986 else
2987 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07002988 if (pid > 0) /* make sure to only use valid results */
2989 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07002990 }
Tejun Heo72ec7022013-08-08 20:11:26 -04002991 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07002992 length = n;
2993 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05002994 if (cgroup_sane_behavior(cgrp))
2995 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
2996 else
2997 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07002998 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07002999 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003000
Tejun Heoe6b81712013-11-29 10:42:59 -05003001 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003002 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003003 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003004 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003005 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003006 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003007
3008 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003009 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003010 l->list = array;
3011 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003012 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003013 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003014}
3015
Balbir Singh846c7bb2007-10-18 23:39:44 -07003016/**
Li Zefana043e3b2008-02-23 15:24:09 -08003017 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003018 * @stats: cgroupstats to fill information into
3019 * @dentry: A dentry entry belonging to the cgroup for which stats have
3020 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003021 *
3022 * Build and fill cgroupstats so that taskstats can export it to user
3023 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003024 */
3025int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3026{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003027 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003028 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003029 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003030 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003031
Tejun Heo2bd59d42014-02-11 11:52:49 -05003032 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3033 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3034 kernfs_type(kn) != KERNFS_DIR)
3035 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003036
Tejun Heo2bd59d42014-02-11 11:52:49 -05003037 /*
3038 * We aren't being called from kernfs and there's no guarantee on
3039 * @kn->priv's validity. For this and css_tryget_from_dir(),
3040 * @kn->priv is RCU safe. Let's do the RCU dancing.
3041 */
3042 rcu_read_lock();
3043 cgrp = rcu_dereference(kn->priv);
3044 if (!cgrp) {
3045 rcu_read_unlock();
3046 return -ENOENT;
3047 }
Balbir Singh846c7bb2007-10-18 23:39:44 -07003048
Tejun Heo72ec7022013-08-08 20:11:26 -04003049 css_task_iter_start(&cgrp->dummy_css, &it);
3050 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003051 switch (tsk->state) {
3052 case TASK_RUNNING:
3053 stats->nr_running++;
3054 break;
3055 case TASK_INTERRUPTIBLE:
3056 stats->nr_sleeping++;
3057 break;
3058 case TASK_UNINTERRUPTIBLE:
3059 stats->nr_uninterruptible++;
3060 break;
3061 case TASK_STOPPED:
3062 stats->nr_stopped++;
3063 break;
3064 default:
3065 if (delayacct_is_task_waiting_on_io(tsk))
3066 stats->nr_io_wait++;
3067 break;
3068 }
3069 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003070 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003071
Tejun Heo2bd59d42014-02-11 11:52:49 -05003072 rcu_read_unlock();
3073 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003074}
3075
Paul Menage8f3ff202009-09-23 15:56:25 -07003076
Paul Menagecc31edc2008-10-18 20:28:04 -07003077/*
Ben Blum102a7752009-09-23 15:56:26 -07003078 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003079 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003080 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003081 */
3082
Ben Blum102a7752009-09-23 15:56:26 -07003083static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003084{
3085 /*
3086 * Initially we receive a position value that corresponds to
3087 * one more than the last pid shown (or 0 on the first call or
3088 * after a seek to the start). Use a binary-search to find the
3089 * next pid to display, if any
3090 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003091 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003092 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003093 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003094 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003095 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003096 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003097
Tejun Heo4bac00d2013-11-29 10:42:59 -05003098 mutex_lock(&cgrp->pidlist_mutex);
3099
3100 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003101 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003102 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003103 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003104 * could already have been destroyed.
3105 */
Tejun Heo5d224442013-12-05 12:28:04 -05003106 if (of->priv)
3107 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003108
3109 /*
3110 * Either this is the first start() after open or the matching
3111 * pidlist has been destroyed inbetween. Create a new one.
3112 */
Tejun Heo5d224442013-12-05 12:28:04 -05003113 if (!of->priv) {
3114 ret = pidlist_array_load(cgrp, type,
3115 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003116 if (ret)
3117 return ERR_PTR(ret);
3118 }
Tejun Heo5d224442013-12-05 12:28:04 -05003119 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003120
Paul Menagecc31edc2008-10-18 20:28:04 -07003121 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003122 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003123
Paul Menagecc31edc2008-10-18 20:28:04 -07003124 while (index < end) {
3125 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003126 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003127 index = mid;
3128 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003129 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003130 index = mid + 1;
3131 else
3132 end = mid;
3133 }
3134 }
3135 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003136 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003137 return NULL;
3138 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003139 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003140 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003141 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003142}
3143
Ben Blum102a7752009-09-23 15:56:26 -07003144static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003145{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003146 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003147 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05003148
Tejun Heo5d224442013-12-05 12:28:04 -05003149 if (l)
3150 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05003151 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05003152 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003153}
3154
Ben Blum102a7752009-09-23 15:56:26 -07003155static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003156{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003157 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003158 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07003159 pid_t *p = v;
3160 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003161 /*
3162 * Advance to the next pid in the array. If this goes off the
3163 * end, we're done
3164 */
3165 p++;
3166 if (p >= end) {
3167 return NULL;
3168 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05003169 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07003170 return p;
3171 }
3172}
3173
Ben Blum102a7752009-09-23 15:56:26 -07003174static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003175{
3176 return seq_printf(s, "%d\n", *(int *)v);
3177}
3178
Ben Blum102a7752009-09-23 15:56:26 -07003179/*
3180 * seq_operations functions for iterating on pidlists through seq_file -
3181 * independent of whether it's tasks or procs
3182 */
3183static const struct seq_operations cgroup_pidlist_seq_operations = {
3184 .start = cgroup_pidlist_start,
3185 .stop = cgroup_pidlist_stop,
3186 .next = cgroup_pidlist_next,
3187 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003188};
3189
Tejun Heo182446d2013-08-08 20:11:24 -04003190static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3191 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003192{
Tejun Heo182446d2013-08-08 20:11:24 -04003193 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003194}
3195
Tejun Heo182446d2013-08-08 20:11:24 -04003196static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3197 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003198{
Tejun Heo182446d2013-08-08 20:11:24 -04003199 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003200 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003201 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003202 else
Tejun Heo182446d2013-08-08 20:11:24 -04003203 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003204 return 0;
3205}
3206
Tejun Heo182446d2013-08-08 20:11:24 -04003207static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3208 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003209{
Tejun Heo182446d2013-08-08 20:11:24 -04003210 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003211}
3212
Tejun Heo182446d2013-08-08 20:11:24 -04003213static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
3214 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003215{
3216 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003217 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003218 else
Tejun Heo182446d2013-08-08 20:11:24 -04003219 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003220 return 0;
3221}
3222
Tejun Heod5c56ce2013-06-03 19:14:34 -07003223static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07003224 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07003225 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05003226 .seq_start = cgroup_pidlist_start,
3227 .seq_next = cgroup_pidlist_next,
3228 .seq_stop = cgroup_pidlist_stop,
3229 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003230 .private = CGROUP_FILE_PROCS,
Ben Blum74a11662011-05-26 16:25:20 -07003231 .write_u64 = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07003232 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003233 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003234 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07003235 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07003236 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07003237 .read_u64 = cgroup_clone_children_read,
3238 .write_u64 = cgroup_clone_children_write,
3239 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003240 {
Tejun Heo873fe092013-04-14 20:15:26 -07003241 .name = "cgroup.sane_behavior",
3242 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003243 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07003244 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07003245
3246 /*
3247 * Historical crazy stuff. These don't have "cgroup." prefix and
3248 * don't exist if sane_behavior. If you're depending on these, be
3249 * prepared to be burned.
3250 */
3251 {
3252 .name = "tasks",
3253 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05003254 .seq_start = cgroup_pidlist_start,
3255 .seq_next = cgroup_pidlist_next,
3256 .seq_stop = cgroup_pidlist_stop,
3257 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003258 .private = CGROUP_FILE_TASKS,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003259 .write_u64 = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003260 .mode = S_IRUGO | S_IWUSR,
3261 },
3262 {
3263 .name = "notify_on_release",
3264 .flags = CFTYPE_INSANE,
3265 .read_u64 = cgroup_read_notify_on_release,
3266 .write_u64 = cgroup_write_notify_on_release,
3267 },
Tejun Heo873fe092013-04-14 20:15:26 -07003268 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07003269 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07003270 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003271 .seq_show = cgroup_release_agent_show,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003272 .write_string = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05003273 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003274 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003275 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003276};
3277
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003278/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07003279 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003280 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003281 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07003282 *
3283 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003284 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07003285static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003286{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003287 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07003288 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003289
Tejun Heo8e3f6542012-04-01 12:09:55 -07003290 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07003291 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05003292 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07003293
3294 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003295 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003296
Tejun Heo0adb0702014-02-12 09:29:48 -05003297 list_for_each_entry(cfts, &ss->cfts, node) {
3298 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07003299 if (ret < 0)
3300 goto err;
3301 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003302 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003303 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07003304err:
3305 cgroup_clear_dir(cgrp, subsys_mask);
3306 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003307}
3308
Tejun Heo0c21ead2013-08-13 20:22:51 -04003309/*
3310 * css destruction is four-stage process.
3311 *
3312 * 1. Destruction starts. Killing of the percpu_ref is initiated.
3313 * Implemented in kill_css().
3314 *
3315 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
3316 * and thus css_tryget() is guaranteed to fail, the css can be offlined
3317 * by invoking offline_css(). After offlining, the base ref is put.
3318 * Implemented in css_killed_work_fn().
3319 *
3320 * 3. When the percpu_ref reaches zero, the only possible remaining
3321 * accessors are inside RCU read sections. css_release() schedules the
3322 * RCU callback.
3323 *
3324 * 4. After the grace period, the css can be freed. Implemented in
3325 * css_free_work_fn().
3326 *
3327 * It is actually hairier because both step 2 and 4 require process context
3328 * and thus involve punting to css->destroy_work adding two additional
3329 * steps to the already complex sequence.
3330 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04003331static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07003332{
3333 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04003334 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003335 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003336
Tejun Heo0ae78e02013-08-13 11:01:54 -04003337 if (css->parent)
3338 css_put(css->parent);
3339
Tejun Heo0c21ead2013-08-13 20:22:51 -04003340 css->ss->css_free(css);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003341 cgroup_put(cgrp);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003342}
3343
3344static void css_free_rcu_fn(struct rcu_head *rcu_head)
3345{
3346 struct cgroup_subsys_state *css =
3347 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
3348
Tejun Heo0c21ead2013-08-13 20:22:51 -04003349 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003350 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07003351}
3352
Tejun Heod3daf282013-06-13 19:39:16 -07003353static void css_release(struct percpu_ref *ref)
3354{
3355 struct cgroup_subsys_state *css =
3356 container_of(ref, struct cgroup_subsys_state, refcnt);
3357
Tejun Heoaec25022014-02-08 10:36:58 -05003358 rcu_assign_pointer(css->cgroup->subsys[css->ss->id], NULL);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003359 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003360}
3361
Tejun Heo623f9262013-08-13 11:01:55 -04003362static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss,
3363 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003364{
Paul Menagebd89aab2007-10-18 23:40:44 -07003365 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04003366 css->ss = ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003367 css->flags = 0;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003368
Tejun Heo0ae78e02013-08-13 11:01:54 -04003369 if (cgrp->parent)
Tejun Heoca8bdca2013-08-26 18:40:56 -04003370 css->parent = cgroup_css(cgrp->parent, ss);
Tejun Heo0ae78e02013-08-13 11:01:54 -04003371 else
Paul Menageddbcc7e2007-10-18 23:39:30 -07003372 css->flags |= CSS_ROOT;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003373
Tejun Heoca8bdca2013-08-26 18:40:56 -04003374 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003375}
3376
Li Zefan2a4ac632013-07-31 16:16:40 +08003377/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04003378static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003379{
Tejun Heo623f9262013-08-13 11:01:55 -04003380 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08003381 int ret = 0;
3382
Tejun Heoace2bee2014-02-11 11:52:47 -05003383 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003384 lockdep_assert_held(&cgroup_mutex);
3385
Tejun Heo92fb9742012-11-19 08:13:38 -08003386 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04003387 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003388 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04003389 css->flags |= CSS_ONLINE;
Tejun Heof20104d2013-08-13 20:22:50 -04003390 css->cgroup->nr_css++;
Tejun Heoaec25022014-02-08 10:36:58 -05003391 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04003392 }
Tejun Heob1929db2012-11-19 08:13:38 -08003393 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003394}
3395
Li Zefan2a4ac632013-07-31 16:16:40 +08003396/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04003397static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08003398{
Tejun Heo623f9262013-08-13 11:01:55 -04003399 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08003400
Tejun Heoace2bee2014-02-11 11:52:47 -05003401 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003402 lockdep_assert_held(&cgroup_mutex);
3403
3404 if (!(css->flags & CSS_ONLINE))
3405 return;
3406
Li Zefand7eeac12013-03-12 15:35:59 -07003407 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04003408 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003409
Tejun Heoeb954192013-08-08 20:11:23 -04003410 css->flags &= ~CSS_ONLINE;
Tejun Heo09a503ea2013-08-13 20:22:50 -04003411 css->cgroup->nr_css--;
Tejun Heoaec25022014-02-08 10:36:58 -05003412 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08003413}
3414
Tejun Heoc81c925a2013-12-06 15:11:56 -05003415/**
3416 * create_css - create a cgroup_subsys_state
3417 * @cgrp: the cgroup new css will be associated with
3418 * @ss: the subsys of new css
3419 *
3420 * Create a new css associated with @cgrp - @ss pair. On success, the new
3421 * css is online and installed in @cgrp with all interface files created.
3422 * Returns 0 on success, -errno on failure.
3423 */
3424static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
3425{
3426 struct cgroup *parent = cgrp->parent;
3427 struct cgroup_subsys_state *css;
3428 int err;
3429
Tejun Heoc81c925a2013-12-06 15:11:56 -05003430 lockdep_assert_held(&cgroup_mutex);
3431
3432 css = ss->css_alloc(cgroup_css(parent, ss));
3433 if (IS_ERR(css))
3434 return PTR_ERR(css);
3435
3436 err = percpu_ref_init(&css->refcnt, css_release);
3437 if (err)
3438 goto err_free;
3439
3440 init_css(css, ss, cgrp);
3441
Tejun Heoaec25022014-02-08 10:36:58 -05003442 err = cgroup_populate_dir(cgrp, 1 << ss->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003443 if (err)
3444 goto err_free;
3445
3446 err = online_css(css);
3447 if (err)
3448 goto err_free;
3449
Tejun Heo59f52962014-02-11 11:52:49 -05003450 cgroup_get(cgrp);
Tejun Heoc81c925a2013-12-06 15:11:56 -05003451 css_get(css->parent);
3452
3453 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
3454 parent->parent) {
3455 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",
3456 current->comm, current->pid, ss->name);
3457 if (!strcmp(ss->name, "memory"))
3458 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
3459 ss->warned_broken_hierarchy = true;
3460 }
3461
3462 return 0;
3463
3464err_free:
3465 percpu_ref_cancel_init(&css->refcnt);
3466 ss->css_free(css);
3467 return err;
3468}
3469
Tejun Heo2bd59d42014-02-11 11:52:49 -05003470/**
Li Zefana043e3b2008-02-23 15:24:09 -08003471 * cgroup_create - create a cgroup
3472 * @parent: cgroup that will be parent of the new cgroup
Tejun Heoe61734c2014-02-12 09:29:50 -05003473 * @name: name of the new cgroup
Tejun Heo2bd59d42014-02-11 11:52:49 -05003474 * @mode: mode to set on new cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07003475 */
Tejun Heoe61734c2014-02-12 09:29:50 -05003476static long cgroup_create(struct cgroup *parent, const char *name,
Tejun Heo2bd59d42014-02-11 11:52:49 -05003477 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003478{
Paul Menagebd89aab2007-10-18 23:40:44 -07003479 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003480 struct cgroupfs_root *root = parent->root;
Tejun Heob58c8992014-02-08 10:26:33 -05003481 int ssid, err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003482 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003483 struct kernfs_node *kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003484
Tejun Heo0a950f62012-11-19 09:02:12 -08003485 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07003486 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3487 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003488 return -ENOMEM;
3489
Tejun Heoace2bee2014-02-11 11:52:47 -05003490 mutex_lock(&cgroup_tree_mutex);
3491
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003492 /*
Tejun Heo976c06b2012-11-05 09:16:59 -08003493 * Only live parents can have children. Note that the liveliness
3494 * check isn't strictly necessary because cgroup_mkdir() and
3495 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
3496 * anyway so that locking is contained inside cgroup proper and we
3497 * don't get nasty surprises if we ever grow another caller.
3498 */
3499 if (!cgroup_lock_live_group(parent)) {
3500 err = -ENODEV;
Tejun Heoace2bee2014-02-11 11:52:47 -05003501 goto err_unlock_tree;
Li Zefan0ab02ca2014-02-11 16:05:46 +08003502 }
3503
3504 /*
3505 * Temporarily set the pointer to NULL, so idr_find() won't return
3506 * a half-baked cgroup.
3507 */
3508 cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL);
3509 if (cgrp->id < 0) {
3510 err = -ENOMEM;
3511 goto err_unlock;
Tejun Heo976c06b2012-11-05 09:16:59 -08003512 }
3513
Paul Menagecc31edc2008-10-18 20:28:04 -07003514 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003515
Paul Menagebd89aab2007-10-18 23:40:44 -07003516 cgrp->parent = parent;
Tejun Heo0ae78e02013-08-13 11:01:54 -04003517 cgrp->dummy_css.parent = &parent->dummy_css;
Paul Menagebd89aab2007-10-18 23:40:44 -07003518 cgrp->root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003519
Li Zefanb6abdb02008-03-04 14:28:19 -08003520 if (notify_on_release(parent))
3521 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3522
Tejun Heo2260e7f2012-11-19 08:13:38 -08003523 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
3524 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003525
Tejun Heo2bd59d42014-02-11 11:52:49 -05003526 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05003527 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003528 if (IS_ERR(kn)) {
3529 err = PTR_ERR(kn);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003530 goto err_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003531 }
3532 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003533
Tejun Heo6f305582014-02-12 09:29:50 -05003534 /*
3535 * This extra ref will be put in cgroup_free_fn() and guarantees
3536 * that @cgrp->kn is always accessible.
3537 */
3538 kernfs_get(kn);
3539
Tejun Heo00356bd2013-06-18 11:14:22 -07003540 cgrp->serial_nr = cgroup_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09003541
Tejun Heo4e139af2012-11-19 08:13:36 -08003542 /* allocation complete, commit to creation */
Tejun Heo4e139af2012-11-19 08:13:36 -08003543 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05003544 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05003545 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08003546
Tejun Heo0d802552013-12-06 15:11:56 -05003547 /*
3548 * @cgrp is now fully operational. If something fails after this
3549 * point, it'll be released via the normal destruction path.
3550 */
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003551 idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
3552
Tejun Heo2bb566c2013-08-08 20:11:23 -04003553 err = cgroup_addrm_files(cgrp, cgroup_base_files, true);
Tejun Heo628f7cd2013-06-28 16:24:11 -07003554 if (err)
3555 goto err_destroy;
3556
Tejun Heo9d403e92013-12-06 15:11:56 -05003557 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05003558 for_each_subsys(ss, ssid) {
3559 if (root->subsys_mask & (1 << ssid)) {
3560 err = create_css(cgrp, ss);
3561 if (err)
3562 goto err_destroy;
3563 }
Tejun Heoa8638032012-11-09 09:12:29 -08003564 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003565
Tejun Heo2bd59d42014-02-11 11:52:49 -05003566 kernfs_activate(kn);
3567
Paul Menageddbcc7e2007-10-18 23:39:30 -07003568 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003569 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003570
3571 return 0;
3572
Tejun Heo0a950f62012-11-19 09:02:12 -08003573err_free_id:
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003574 idr_remove(&root->cgroup_idr, cgrp->id);
Li Zefan0ab02ca2014-02-11 16:05:46 +08003575err_unlock:
3576 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003577err_unlock_tree:
3578 mutex_unlock(&cgroup_tree_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003579 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003580 return err;
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003581
3582err_destroy:
3583 cgroup_destroy_locked(cgrp);
3584 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003585 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08003586 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003587}
3588
Tejun Heo2bd59d42014-02-11 11:52:49 -05003589static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
3590 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003591{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003592 struct cgroup *parent = parent_kn->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003593
Tejun Heo2bd59d42014-02-11 11:52:49 -05003594 return cgroup_create(parent, name, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003595}
3596
Tejun Heo223dbc32013-08-13 20:22:50 -04003597/*
3598 * This is called when the refcnt of a css is confirmed to be killed.
3599 * css_tryget() is now guaranteed to fail.
3600 */
3601static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07003602{
Tejun Heo223dbc32013-08-13 20:22:50 -04003603 struct cgroup_subsys_state *css =
3604 container_of(work, struct cgroup_subsys_state, destroy_work);
3605 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07003606
Tejun Heoace2bee2014-02-11 11:52:47 -05003607 mutex_lock(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003608 mutex_lock(&cgroup_mutex);
3609
3610 /*
Tejun Heo09a503ea2013-08-13 20:22:50 -04003611 * css_tryget() is guaranteed to fail now. Tell subsystems to
3612 * initate destruction.
3613 */
3614 offline_css(css);
3615
3616 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003617 * If @cgrp is marked dead, it's waiting for refs of all css's to
3618 * be disabled before proceeding to the second phase of cgroup
3619 * destruction. If we are the last one, kick it off.
3620 */
Tejun Heo09a503ea2013-08-13 20:22:50 -04003621 if (!cgrp->nr_css && cgroup_is_dead(cgrp))
Tejun Heof20104d2013-08-13 20:22:50 -04003622 cgroup_destroy_css_killed(cgrp);
3623
3624 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003625 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04003626
3627 /*
3628 * Put the css refs from kill_css(). Each css holds an extra
3629 * reference to the cgroup's dentry and cgroup removal proceeds
3630 * regardless of css refs. On the last put of each css, whenever
3631 * that may be, the extra dentry ref is put so that dentry
3632 * destruction happens only after all css's are released.
3633 */
3634 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07003635}
3636
Tejun Heo223dbc32013-08-13 20:22:50 -04003637/* css kill confirmation processing requires process context, bounce */
3638static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07003639{
3640 struct cgroup_subsys_state *css =
3641 container_of(ref, struct cgroup_subsys_state, refcnt);
3642
Tejun Heo223dbc32013-08-13 20:22:50 -04003643 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05003644 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07003645}
3646
3647/**
Tejun Heoedae0c32013-08-13 20:22:51 -04003648 * kill_css - destroy a css
3649 * @css: css to destroy
3650 *
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003651 * This function initiates destruction of @css by removing cgroup interface
3652 * files and putting its base reference. ->css_offline() will be invoked
3653 * asynchronously once css_tryget() is guaranteed to fail and when the
3654 * reference count reaches zero, @css will be released.
Tejun Heoedae0c32013-08-13 20:22:51 -04003655 */
3656static void kill_css(struct cgroup_subsys_state *css)
3657{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003658 /*
3659 * This must happen before css is disassociated with its cgroup.
3660 * See seq_css() for details.
3661 */
Tejun Heoaec25022014-02-08 10:36:58 -05003662 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04003663
Tejun Heoedae0c32013-08-13 20:22:51 -04003664 /*
3665 * Killing would put the base ref, but we need to keep it alive
3666 * until after ->css_offline().
3667 */
3668 css_get(css);
3669
3670 /*
3671 * cgroup core guarantees that, by the time ->css_offline() is
3672 * invoked, no new css reference will be given out via
3673 * css_tryget(). We can't simply call percpu_ref_kill() and
3674 * proceed to offlining css's because percpu_ref_kill() doesn't
3675 * guarantee that the ref is seen as killed on all CPUs on return.
3676 *
3677 * Use percpu_ref_kill_and_confirm() to get notifications as each
3678 * css is confirmed to be seen as killed on all CPUs.
3679 */
3680 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07003681}
3682
3683/**
3684 * cgroup_destroy_locked - the first stage of cgroup destruction
3685 * @cgrp: cgroup to be destroyed
3686 *
3687 * css's make use of percpu refcnts whose killing latency shouldn't be
3688 * exposed to userland and are RCU protected. Also, cgroup core needs to
3689 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
3690 * invoked. To satisfy all the requirements, destruction is implemented in
3691 * the following two steps.
3692 *
3693 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
3694 * userland visible parts and start killing the percpu refcnts of
3695 * css's. Set up so that the next stage will be kicked off once all
3696 * the percpu refcnts are confirmed to be killed.
3697 *
3698 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
3699 * rest of destruction. Once all cgroup references are gone, the
3700 * cgroup is RCU-freed.
3701 *
3702 * This function implements s1. After this step, @cgrp is gone as far as
3703 * the userland is concerned and a new cgroup with the same name may be
3704 * created. As cgroup doesn't care about the names internally, this
3705 * doesn't cause any problem.
3706 */
Tejun Heo42809dd2012-11-19 08:13:37 -08003707static int cgroup_destroy_locked(struct cgroup *cgrp)
3708 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003709{
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003710 struct cgroup *child;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003711 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07003712 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05003713 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003714
Tejun Heoace2bee2014-02-11 11:52:47 -05003715 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003716 lockdep_assert_held(&cgroup_mutex);
3717
Tejun Heoddd69142013-06-12 21:04:54 -07003718 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05003719 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05003720 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07003721 */
Tejun Heo96d365e2014-02-13 06:58:40 -05003722 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003723 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05003724 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07003725 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003726 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08003727
Tejun Heo1a90dd52012-11-05 09:16:59 -08003728 /*
Hugh Dickinsbb78a922013-08-28 16:31:23 -07003729 * Make sure there's no live children. We can't test ->children
3730 * emptiness as dead children linger on it while being destroyed;
3731 * otherwise, "rmdir parent/child parent" may fail with -EBUSY.
3732 */
3733 empty = true;
3734 rcu_read_lock();
3735 list_for_each_entry_rcu(child, &cgrp->children, sibling) {
3736 empty = cgroup_is_dead(child);
3737 if (!empty)
3738 break;
3739 }
3740 rcu_read_unlock();
3741 if (!empty)
3742 return -EBUSY;
3743
3744 /*
Tejun Heoedae0c32013-08-13 20:22:51 -04003745 * Initiate massacre of all css's. cgroup_destroy_css_killed()
3746 * will be invoked to perform the rest of destruction once the
Tejun Heo4ac06012014-02-11 11:52:47 -05003747 * percpu refs of all css's are confirmed to be killed. This
3748 * involves removing the subsystem's files, drop cgroup_mutex.
Tejun Heo1a90dd52012-11-05 09:16:59 -08003749 */
Tejun Heo4ac06012014-02-11 11:52:47 -05003750 mutex_unlock(&cgroup_mutex);
Tejun Heo1c6727a2013-12-06 15:11:56 -05003751 for_each_css(css, ssid, cgrp)
3752 kill_css(css);
Tejun Heo4ac06012014-02-11 11:52:47 -05003753 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07003754
3755 /*
3756 * Mark @cgrp dead. This prevents further task migration and child
3757 * creation by disabling cgroup_lock_live_group(). Note that
Tejun Heo492eb212013-08-08 20:11:25 -04003758 * CGRP_DEAD assertion is depended upon by css_next_child() to
Tejun Heo455050d2013-06-13 19:27:41 -07003759 * resume iteration after dropping RCU read lock. See
Tejun Heo492eb212013-08-08 20:11:25 -04003760 * css_next_child() for details.
Tejun Heo455050d2013-06-13 19:27:41 -07003761 */
Tejun Heo54766d42013-06-12 21:04:53 -07003762 set_bit(CGRP_DEAD, &cgrp->flags);
Tejun Heo1a90dd52012-11-05 09:16:59 -08003763
Tejun Heo455050d2013-06-13 19:27:41 -07003764 /* CGRP_DEAD is set, remove from ->release_list for the last time */
3765 raw_spin_lock(&release_list_lock);
3766 if (!list_empty(&cgrp->release_list))
3767 list_del_init(&cgrp->release_list);
3768 raw_spin_unlock(&release_list_lock);
3769
3770 /*
Tejun Heof20104d2013-08-13 20:22:50 -04003771 * If @cgrp has css's attached, the second stage of cgroup
3772 * destruction is kicked off from css_killed_work_fn() after the
3773 * refs of all attached css's are killed. If @cgrp doesn't have
3774 * any css, we kick it off here.
Tejun Heo455050d2013-06-13 19:27:41 -07003775 */
Tejun Heof20104d2013-08-13 20:22:50 -04003776 if (!cgrp->nr_css)
3777 cgroup_destroy_css_killed(cgrp);
3778
Tejun Heo2bd59d42014-02-11 11:52:49 -05003779 /* remove @cgrp directory along with the base files */
Tejun Heo4ac06012014-02-11 11:52:47 -05003780 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003781
3782 /*
3783 * There are two control paths which try to determine cgroup from
3784 * dentry without going through kernfs - cgroupstats_build() and
3785 * css_tryget_from_dir(). Those are supported by RCU protecting
3786 * clearing of cgrp->kn->priv backpointer, which should happen
3787 * after all files under it have been removed.
3788 */
Tejun Heo6f305582014-02-12 09:29:50 -05003789 kernfs_remove(cgrp->kn); /* @cgrp has an extra ref on its kn */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003790 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003791
Tejun Heo4ac06012014-02-11 11:52:47 -05003792 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07003793
Tejun Heoea15f8c2013-06-13 19:27:42 -07003794 return 0;
3795};
3796
Tejun Heod3daf282013-06-13 19:39:16 -07003797/**
Tejun Heof20104d2013-08-13 20:22:50 -04003798 * cgroup_destroy_css_killed - the second step of cgroup destruction
Tejun Heod3daf282013-06-13 19:39:16 -07003799 * @work: cgroup->destroy_free_work
3800 *
3801 * This function is invoked from a work item for a cgroup which is being
Tejun Heo09a503ea2013-08-13 20:22:50 -04003802 * destroyed after all css's are offlined and performs the rest of
3803 * destruction. This is the second step of destruction described in the
3804 * comment above cgroup_destroy_locked().
Tejun Heod3daf282013-06-13 19:39:16 -07003805 */
Tejun Heof20104d2013-08-13 20:22:50 -04003806static void cgroup_destroy_css_killed(struct cgroup *cgrp)
Tejun Heoea15f8c2013-06-13 19:27:42 -07003807{
Tejun Heoea15f8c2013-06-13 19:27:42 -07003808 struct cgroup *parent = cgrp->parent;
Tejun Heoea15f8c2013-06-13 19:27:42 -07003809
Tejun Heoace2bee2014-02-11 11:52:47 -05003810 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04003811 lockdep_assert_held(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003812
Paul Menage999cd8a2009-01-07 18:08:36 -08003813 /* delete this cgroup from parent->children */
Tejun Heoeb6fd502012-11-09 09:12:29 -08003814 list_del_rcu(&cgrp->sibling);
Tejun Heob0ca5a82012-04-01 12:09:54 -07003815
Tejun Heo59f52962014-02-11 11:52:49 -05003816 cgroup_put(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003817
Paul Menagebd89aab2007-10-18 23:40:44 -07003818 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003819 check_for_release(parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003820}
3821
Tejun Heo2bd59d42014-02-11 11:52:49 -05003822static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08003823{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003824 struct cgroup *cgrp = kn->priv;
3825 int ret = 0;
3826
3827 /*
3828 * This is self-destruction but @kn can't be removed while this
3829 * callback is in progress. Let's break active protection. Once
3830 * the protection is broken, @cgrp can be destroyed at any point.
3831 * Pin it so that it stays accessible.
3832 */
3833 cgroup_get(cgrp);
3834 kernfs_break_active_protection(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08003835
Tejun Heoace2bee2014-02-11 11:52:47 -05003836 mutex_lock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003837 mutex_lock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003838
3839 /*
3840 * @cgrp might already have been destroyed while we're trying to
3841 * grab the mutexes.
3842 */
3843 if (!cgroup_is_dead(cgrp))
3844 ret = cgroup_destroy_locked(cgrp);
3845
Tejun Heo42809dd2012-11-19 08:13:37 -08003846 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003847 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08003848
Tejun Heo2bd59d42014-02-11 11:52:49 -05003849 kernfs_unbreak_active_protection(kn);
3850 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08003851 return ret;
3852}
3853
Tejun Heo2bd59d42014-02-11 11:52:49 -05003854static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
3855 .remount_fs = cgroup_remount,
3856 .show_options = cgroup_show_options,
3857 .mkdir = cgroup_mkdir,
3858 .rmdir = cgroup_rmdir,
3859 .rename = cgroup_rename,
3860};
3861
Li Zefan06a11922008-04-29 01:00:07 -07003862static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003863{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003864 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08003865
3866 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003867
Tejun Heoace2bee2014-02-11 11:52:47 -05003868 mutex_lock(&cgroup_tree_mutex);
Tejun Heo648bb562012-11-19 08:13:36 -08003869 mutex_lock(&cgroup_mutex);
3870
Tejun Heo0adb0702014-02-12 09:29:48 -05003871 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003872
Paul Menageddbcc7e2007-10-18 23:39:30 -07003873 /* Create the top cgroup state for this subsystem */
Tejun Heo9871bf92013-06-24 15:21:47 -07003874 ss->root = &cgroup_dummy_root;
Tejun Heoca8bdca2013-08-26 18:40:56 -04003875 css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003876 /* We don't handle early failures gracefully */
3877 BUG_ON(IS_ERR(css));
Tejun Heo623f9262013-08-13 11:01:55 -04003878 init_css(css, ss, cgroup_dummy_top);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003879
Li Zefane8d55fd2008-04-29 01:00:13 -07003880 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07003881 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07003882 * newly registered, all tasks and hence the
3883 * init_css_set is in the subsystem's top cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05003884 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003885
3886 need_forkexit_callback |= ss->fork || ss->exit;
3887
Li Zefane8d55fd2008-04-29 01:00:13 -07003888 /* At system boot, before all subsystems have been
3889 * registered, no tasks have been forked, so we don't
3890 * need to invoke fork callbacks here. */
3891 BUG_ON(!list_empty(&init_task.tasks));
3892
Tejun Heoae7f1642013-08-13 20:22:50 -04003893 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08003894
Tejun Heo648bb562012-11-19 08:13:36 -08003895 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05003896 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003897}
3898
3899/**
Li Zefana043e3b2008-02-23 15:24:09 -08003900 * cgroup_init_early - cgroup initialization at system boot
3901 *
3902 * Initialize cgroups at system boot, and initialize any
3903 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003904 */
3905int __init cgroup_init_early(void)
3906{
Tejun Heo30159ec2013-06-25 11:53:37 -07003907 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003908 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07003909
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07003910 atomic_set(&init_css_set.refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07003911 INIT_LIST_HEAD(&init_css_set.cgrp_links);
Paul Menage817929e2007-10-18 23:39:36 -07003912 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07003913 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07003914 css_set_count = 1;
Tejun Heo9871bf92013-06-24 15:21:47 -07003915 init_cgroup_root(&cgroup_dummy_root);
3916 cgroup_root_count = 1;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07003917 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07003918
Tejun Heo69d02062013-06-12 21:04:50 -07003919 init_cgrp_cset_link.cset = &init_css_set;
Tejun Heo9871bf92013-06-24 15:21:47 -07003920 init_cgrp_cset_link.cgrp = cgroup_dummy_top;
3921 list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -07003922 list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003923
Tejun Heo3ed80a62014-02-08 10:36:58 -05003924 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05003925 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05003926 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
3927 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05003928 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05003929 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
3930 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
3931
Tejun Heoaec25022014-02-08 10:36:58 -05003932 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05003933 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07003934
3935 if (ss->early_init)
3936 cgroup_init_subsys(ss);
3937 }
3938 return 0;
3939}
3940
3941/**
Li Zefana043e3b2008-02-23 15:24:09 -08003942 * cgroup_init - cgroup initialization
3943 *
3944 * Register cgroup filesystem and /proc file, and initialize
3945 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003946 */
3947int __init cgroup_init(void)
3948{
Tejun Heo30159ec2013-06-25 11:53:37 -07003949 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08003950 unsigned long key;
Tejun Heo30159ec2013-06-25 11:53:37 -07003951 int i, err;
Paul Menagea4243162007-10-18 23:39:35 -07003952
Tejun Heo2bd59d42014-02-11 11:52:49 -05003953 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Tejun Heo2da440a2014-02-11 11:52:48 -05003954
Tejun Heo3ed80a62014-02-08 10:36:58 -05003955 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003956 if (!ss->early_init)
3957 cgroup_init_subsys(ss);
Tejun Heode00ffa2014-02-11 11:52:48 -05003958
3959 /*
3960 * cftype registration needs kmalloc and can't be done
3961 * during early_init. Register base cftypes separately.
3962 */
3963 if (ss->base_cftypes)
3964 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003965 }
3966
Tejun Heofa3ca072013-04-14 11:36:56 -07003967 /* allocate id for the dummy hierarchy */
Tejun Heo54e7b4e2013-04-14 11:36:57 -07003968 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07003969
Tejun Heo82fe9b02013-06-25 11:53:37 -07003970 /* Add init_css_set to the hash table */
3971 key = css_set_hash(init_css_set.subsys);
3972 hash_add(css_set_table, &init_css_set.hlist, key);
3973
Tejun Heofc76df72013-06-25 11:53:37 -07003974 BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1));
Greg KH676db4a2010-08-05 13:53:35 -07003975
Li Zefan4e96ee8e2013-07-31 09:50:50 +08003976 err = idr_alloc(&cgroup_dummy_root.cgroup_idr, cgroup_dummy_top,
3977 0, 1, GFP_KERNEL);
3978 BUG_ON(err < 0);
3979
Tejun Heo54e7b4e2013-04-14 11:36:57 -07003980 mutex_unlock(&cgroup_mutex);
3981
Greg KH676db4a2010-08-05 13:53:35 -07003982 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003983 if (!cgroup_kobj)
3984 return -ENOMEM;
Greg KH676db4a2010-08-05 13:53:35 -07003985
3986 err = register_filesystem(&cgroup_fs_type);
3987 if (err < 0) {
3988 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003989 return err;
Greg KH676db4a2010-08-05 13:53:35 -07003990 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003991
Li Zefan46ae2202008-04-29 01:00:08 -07003992 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003993 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003994}
Paul Menageb4f48b62007-10-18 23:39:33 -07003995
Tejun Heoe5fca242013-11-22 17:14:39 -05003996static int __init cgroup_wq_init(void)
3997{
3998 /*
3999 * There isn't much point in executing destruction path in
4000 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08004001 *
4002 * XXX: Must be ordered to make sure parent is offlined after
4003 * children. The ordering requirement is for memcg where a
4004 * parent's offline may wait for a child's leading to deadlock. In
4005 * the long term, this should be fixed from memcg side.
Tejun Heoe5fca242013-11-22 17:14:39 -05004006 *
4007 * We would prefer to do this in cgroup_init() above, but that
4008 * is called before init_workqueues(): so leave this until after.
4009 */
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08004010 cgroup_destroy_wq = alloc_ordered_workqueue("cgroup_destroy", 0);
Tejun Heoe5fca242013-11-22 17:14:39 -05004011 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004012
4013 /*
4014 * Used to destroy pidlists and separate to serve as flush domain.
4015 * Cap @max_active to 1 too.
4016 */
4017 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4018 0, 1);
4019 BUG_ON(!cgroup_pidlist_destroy_wq);
4020
Tejun Heoe5fca242013-11-22 17:14:39 -05004021 return 0;
4022}
4023core_initcall(cgroup_wq_init);
4024
Paul Menagea4243162007-10-18 23:39:35 -07004025/*
4026 * proc_cgroup_show()
4027 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4028 * - Used for /proc/<pid>/cgroup.
4029 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4030 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004031 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004032 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4033 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4034 * cgroup to top_cgroup.
4035 */
4036
4037/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004038int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004039{
4040 struct pid *pid;
4041 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05004042 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07004043 int retval;
4044 struct cgroupfs_root *root;
4045
4046 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05004047 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07004048 if (!buf)
4049 goto out;
4050
4051 retval = -ESRCH;
4052 pid = m->private;
4053 tsk = get_pid_task(pid, PIDTYPE_PID);
4054 if (!tsk)
4055 goto out_free;
4056
4057 retval = 0;
4058
4059 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05004060 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004061
Li Zefane5f6a862009-01-07 18:07:41 -08004062 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004063 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004064 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004065 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004066
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004067 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004068 for_each_subsys(ss, ssid)
4069 if (root->subsys_mask & (1 << ssid))
4070 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004071 if (strlen(root->name))
4072 seq_printf(m, "%sname=%s", count ? "," : "",
4073 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004074 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004075 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05004076 path = cgroup_path(cgrp, buf, PATH_MAX);
4077 if (!path) {
4078 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07004079 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05004080 }
4081 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07004082 seq_putc(m, '\n');
4083 }
4084
4085out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05004086 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004087 mutex_unlock(&cgroup_mutex);
4088 put_task_struct(tsk);
4089out_free:
4090 kfree(buf);
4091out:
4092 return retval;
4093}
4094
Paul Menagea4243162007-10-18 23:39:35 -07004095/* Display information about each subsystem and each hierarchy */
4096static int proc_cgroupstats_show(struct seq_file *m, void *v)
4097{
Tejun Heo30159ec2013-06-25 11:53:37 -07004098 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004099 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004100
Paul Menage8bab8dd2008-04-04 14:29:57 -07004101 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004102 /*
4103 * ideally we don't want subsystems moving around while we do this.
4104 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4105 * subsys/hierarchy state.
4106 */
Paul Menagea4243162007-10-18 23:39:35 -07004107 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004108
4109 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004110 seq_printf(m, "%s\t%d\t%d\t%d\n",
4111 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05004112 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004113
Paul Menagea4243162007-10-18 23:39:35 -07004114 mutex_unlock(&cgroup_mutex);
4115 return 0;
4116}
4117
4118static int cgroupstats_open(struct inode *inode, struct file *file)
4119{
Al Viro9dce07f2008-03-29 03:07:28 +00004120 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004121}
4122
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004123static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004124 .open = cgroupstats_open,
4125 .read = seq_read,
4126 .llseek = seq_lseek,
4127 .release = single_release,
4128};
4129
Paul Menageb4f48b62007-10-18 23:39:33 -07004130/**
4131 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004132 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004133 *
4134 * Description: A task inherits its parent's cgroup at fork().
4135 *
4136 * A pointer to the shared css_set was automatically copied in
4137 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo9bb71302012-10-18 17:52:07 -07004138 * it was not made under the protection of RCU or cgroup_mutex, so
4139 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4140 * have already changed current->cgroups, allowing the previously
4141 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004142 *
4143 * At the point that cgroup_fork() is called, 'current' is the parent
4144 * task, and the passed argument 'child' points to the child task.
4145 */
4146void cgroup_fork(struct task_struct *child)
4147{
Tejun Heo9bb71302012-10-18 17:52:07 -07004148 task_lock(current);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004149 get_css_set(task_css_set(current));
Paul Menage817929e2007-10-18 23:39:36 -07004150 child->cgroups = current->cgroups;
Tejun Heo9bb71302012-10-18 17:52:07 -07004151 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004152 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004153}
4154
4155/**
Li Zefana043e3b2008-02-23 15:24:09 -08004156 * cgroup_post_fork - called on a new task after adding it to the task list
4157 * @child: the task in question
4158 *
Tejun Heo5edee612012-10-16 15:03:14 -07004159 * Adds the task to the list running through its css_set if necessary and
4160 * call the subsystem fork() callbacks. Has to be after the task is
4161 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04004162 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07004163 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004164 */
Paul Menage817929e2007-10-18 23:39:36 -07004165void cgroup_post_fork(struct task_struct *child)
4166{
Tejun Heo30159ec2013-06-25 11:53:37 -07004167 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07004168 int i;
4169
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004170 /*
4171 * use_task_css_set_links is set to 1 before we walk the tasklist
4172 * under the tasklist_lock and we read it here after we added the child
4173 * to the tasklist under the tasklist_lock as well. If the child wasn't
4174 * yet in the tasklist when we walked through it from
4175 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4176 * should be visible now due to the paired locking and barriers implied
4177 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4178 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4179 * lock on fork.
4180 */
Paul Menage817929e2007-10-18 23:39:36 -07004181 if (use_task_css_set_links) {
Tejun Heo96d365e2014-02-13 06:58:40 -05004182 down_write(&css_set_rwsem);
Tejun Heod8783832012-10-18 17:40:30 -07004183 task_lock(child);
4184 if (list_empty(&child->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07004185 list_add(&child->cg_list, &task_css_set(child)->tasks);
Tejun Heod8783832012-10-18 17:40:30 -07004186 task_unlock(child);
Tejun Heo96d365e2014-02-13 06:58:40 -05004187 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004188 }
Tejun Heo5edee612012-10-16 15:03:14 -07004189
4190 /*
4191 * Call ss->fork(). This must happen after @child is linked on
4192 * css_set; otherwise, @child might change state between ->fork()
4193 * and addition to css_set.
4194 */
4195 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004196 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07004197 if (ss->fork)
4198 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07004199 }
Paul Menage817929e2007-10-18 23:39:36 -07004200}
Tejun Heo5edee612012-10-16 15:03:14 -07004201
Paul Menage817929e2007-10-18 23:39:36 -07004202/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004203 * cgroup_exit - detach cgroup from exiting task
4204 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004205 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004206 *
4207 * Description: Detach cgroup from @tsk and release it.
4208 *
4209 * Note that cgroups marked notify_on_release force every task in
4210 * them to take the global cgroup_mutex mutex when exiting.
4211 * This could impact scaling on very large systems. Be reluctant to
4212 * use notify_on_release cgroups where very high task exit scaling
4213 * is required on large systems.
4214 *
4215 * the_top_cgroup_hack:
4216 *
4217 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4218 *
4219 * We call cgroup_exit() while the task is still competent to
4220 * handle notify_on_release(), then leave the task attached to the
4221 * root cgroup in each hierarchy for the remainder of its exit.
4222 *
4223 * To do this properly, we would increment the reference count on
4224 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4225 * code we would add a second cgroup function call, to drop that
4226 * reference. This would just create an unnecessary hot spot on
4227 * the top_cgroup reference count, to no avail.
4228 *
4229 * Normally, holding a reference to a cgroup without bumping its
4230 * count is unsafe. The cgroup could go away, or someone could
4231 * attach us to a different cgroup, decrementing the count on
4232 * the first cgroup that we never incremented. But in this case,
4233 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004234 * which wards off any cgroup_attach_task() attempts, or task is a failed
4235 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004236 */
4237void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4238{
Tejun Heo30159ec2013-06-25 11:53:37 -07004239 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07004240 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004241 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004242
4243 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004244 * Unlink from the css_set task list if necessary. Optimistically
4245 * check cg_list before taking css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07004246 */
4247 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05004248 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004249 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004250 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05004251 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004252 }
4253
Paul Menageb4f48b62007-10-18 23:39:33 -07004254 /* Reassign the task to the init_css_set. */
4255 task_lock(tsk);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004256 cset = task_css_set(tsk);
4257 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004258
4259 if (run_callbacks && need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004260 /* see cgroup_post_fork() for details */
4261 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004262 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04004263 struct cgroup_subsys_state *old_css = cset->subsys[i];
4264 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07004265
Tejun Heoeb954192013-08-08 20:11:23 -04004266 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004267 }
4268 }
4269 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004270 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004271
Tejun Heo89c55092014-02-13 06:58:40 -05004272 put_css_set(cset, true);
Paul Menageb4f48b62007-10-18 23:39:33 -07004273}
Paul Menage697f4162007-10-18 23:39:34 -07004274
Paul Menagebd89aab2007-10-18 23:40:44 -07004275static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004276{
Li Zefanf50daa72013-03-01 15:06:07 +08004277 if (cgroup_is_releasable(cgrp) &&
Tejun Heo6f3d828f02013-06-12 21:04:55 -07004278 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
Li Zefanf50daa72013-03-01 15:06:07 +08004279 /*
4280 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07004281 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08004282 * it now
4283 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004284 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08004285
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004286 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07004287 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07004288 list_empty(&cgrp->release_list)) {
4289 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004290 need_schedule_work = 1;
4291 }
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004292 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004293 if (need_schedule_work)
4294 schedule_work(&release_agent_work);
4295 }
4296}
4297
Paul Menage81a6a5c2007-10-18 23:39:38 -07004298/*
4299 * Notify userspace when a cgroup is released, by running the
4300 * configured release agent with the name of the cgroup (path
4301 * relative to the root of cgroup file system) as the argument.
4302 *
4303 * Most likely, this user command will try to rmdir this cgroup.
4304 *
4305 * This races with the possibility that some other task will be
4306 * attached to this cgroup before it is removed, or that some other
4307 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4308 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4309 * unused, and this cgroup will be reprieved from its death sentence,
4310 * to continue to serve a useful existence. Next time it's released,
4311 * we will get notified again, if it still has 'notify_on_release' set.
4312 *
4313 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4314 * means only wait until the task is successfully execve()'d. The
4315 * separate release agent task is forked by call_usermodehelper(),
4316 * then control in this thread returns here, without waiting for the
4317 * release agent task. We don't bother to wait because the caller of
4318 * this routine has no use for the exit status of the release agent
4319 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004320 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004321static void cgroup_release_agent(struct work_struct *work)
4322{
4323 BUG_ON(work != &release_agent_work);
4324 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004325 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004326 while (!list_empty(&release_list)) {
4327 char *argv[3], *envp[3];
4328 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05004329 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07004330 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004331 struct cgroup,
4332 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004333 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004334 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05004335 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e0662008-07-25 01:46:59 -07004336 if (!pathbuf)
4337 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05004338 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
4339 if (!path)
Paul Menagee788e0662008-07-25 01:46:59 -07004340 goto continue_free;
4341 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4342 if (!agentbuf)
4343 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004344
4345 i = 0;
Paul Menagee788e0662008-07-25 01:46:59 -07004346 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05004347 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004348 argv[i] = NULL;
4349
4350 i = 0;
4351 /* minimal command environment */
4352 envp[i++] = "HOME=/";
4353 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4354 envp[i] = NULL;
4355
4356 /* Drop the lock while we invoke the usermode helper,
4357 * since the exec could involve hitting disk and hence
4358 * be a slow process */
4359 mutex_unlock(&cgroup_mutex);
4360 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004361 mutex_lock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07004362 continue_free:
4363 kfree(pathbuf);
4364 kfree(agentbuf);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004365 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004366 }
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02004367 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004368 mutex_unlock(&cgroup_mutex);
4369}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004370
4371static int __init cgroup_disable(char *str)
4372{
Tejun Heo30159ec2013-06-25 11:53:37 -07004373 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004374 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07004375 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004376
4377 while ((token = strsep(&str, ",")) != NULL) {
4378 if (!*token)
4379 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07004380
Tejun Heo3ed80a62014-02-08 10:36:58 -05004381 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004382 if (!strcmp(token, ss->name)) {
4383 ss->disabled = 1;
4384 printk(KERN_INFO "Disabling %s control group"
4385 " subsystem\n", ss->name);
4386 break;
4387 }
4388 }
4389 }
4390 return 1;
4391}
4392__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004393
Tejun Heob77d7b62013-08-13 11:01:54 -04004394/**
Tejun Heo5a17f542014-02-11 11:52:47 -05004395 * css_tryget_from_dir - get corresponding css from the dentry of a cgroup dir
Tejun Heo35cf0832013-08-26 18:40:56 -04004396 * @dentry: directory dentry of interest
4397 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04004398 *
Tejun Heo5a17f542014-02-11 11:52:47 -05004399 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
4400 * to get the corresponding css and return it. If such css doesn't exist
4401 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02004402 */
Tejun Heo5a17f542014-02-11 11:52:47 -05004403struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry,
4404 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004405{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004406 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
4407 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004408 struct cgroup *cgrp;
Tejun Heob77d7b62013-08-13 11:01:54 -04004409
Tejun Heo35cf0832013-08-26 18:40:56 -04004410 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004411 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4412 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02004413 return ERR_PTR(-EBADF);
4414
Tejun Heo5a17f542014-02-11 11:52:47 -05004415 rcu_read_lock();
4416
Tejun Heo2bd59d42014-02-11 11:52:49 -05004417 /*
4418 * This path doesn't originate from kernfs and @kn could already
4419 * have been or be removed at any point. @kn->priv is RCU
4420 * protected for this access. See destroy_locked() for details.
4421 */
4422 cgrp = rcu_dereference(kn->priv);
4423 if (cgrp)
4424 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05004425
4426 if (!css || !css_tryget(css))
4427 css = ERR_PTR(-ENOENT);
4428
4429 rcu_read_unlock();
4430 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004431}
Stephane Eraniane5d13672011-02-14 11:20:01 +02004432
Li Zefan1cb650b2013-08-19 10:05:24 +08004433/**
4434 * css_from_id - lookup css by id
4435 * @id: the cgroup id
4436 * @ss: cgroup subsys to be looked into
4437 *
4438 * Returns the css if there's valid one with @id, otherwise returns NULL.
4439 * Should be called under rcu_read_lock().
4440 */
4441struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
4442{
4443 struct cgroup *cgrp;
4444
Tejun Heoace2bee2014-02-11 11:52:47 -05004445 cgroup_assert_mutexes_or_rcu_locked();
Li Zefan1cb650b2013-08-19 10:05:24 +08004446
4447 cgrp = idr_find(&ss->root->cgroup_idr, id);
4448 if (cgrp)
Tejun Heod1625962013-08-27 14:27:23 -04004449 return cgroup_css(cgrp, ss);
Li Zefan1cb650b2013-08-19 10:05:24 +08004450 return NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02004451}
4452
Paul Menagefe693432009-09-23 15:56:20 -07004453#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04004454static struct cgroup_subsys_state *
4455debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07004456{
4457 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4458
4459 if (!css)
4460 return ERR_PTR(-ENOMEM);
4461
4462 return css;
4463}
4464
Tejun Heoeb954192013-08-08 20:11:23 -04004465static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07004466{
Tejun Heoeb954192013-08-08 20:11:23 -04004467 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07004468}
4469
Tejun Heo182446d2013-08-08 20:11:24 -04004470static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
4471 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004472{
Tejun Heo182446d2013-08-08 20:11:24 -04004473 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07004474}
4475
Tejun Heo182446d2013-08-08 20:11:24 -04004476static u64 current_css_set_read(struct cgroup_subsys_state *css,
4477 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004478{
4479 return (u64)(unsigned long)current->cgroups;
4480}
4481
Tejun Heo182446d2013-08-08 20:11:24 -04004482static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08004483 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004484{
4485 u64 count;
4486
4487 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07004488 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07004489 rcu_read_unlock();
4490 return count;
4491}
4492
Tejun Heo2da8ca82013-12-05 12:28:04 -05004493static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004494{
Tejun Heo69d02062013-06-12 21:04:50 -07004495 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07004496 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05004497 char *name_buf;
4498
4499 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
4500 if (!name_buf)
4501 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07004502
Tejun Heo96d365e2014-02-13 06:58:40 -05004503 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07004504 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07004505 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07004506 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004507 struct cgroup *c = link->cgrp;
Tejun Heo59f52962014-02-11 11:52:49 -05004508 const char *name = "?";
Paul Menage7717f7b2009-09-23 15:56:22 -07004509
Tejun Heoe61734c2014-02-12 09:29:50 -05004510 if (c != cgroup_dummy_top) {
4511 cgroup_name(c, name_buf, NAME_MAX + 1);
4512 name = name_buf;
4513 }
Tejun Heo59f52962014-02-11 11:52:49 -05004514
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004515 seq_printf(seq, "Root %d group %s\n",
4516 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004517 }
4518 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05004519 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05004520 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07004521 return 0;
4522}
4523
4524#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05004525static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07004526{
Tejun Heo2da8ca82013-12-05 12:28:04 -05004527 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07004528 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07004529
Tejun Heo96d365e2014-02-13 06:58:40 -05004530 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04004531 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07004532 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07004533 struct task_struct *task;
4534 int count = 0;
Tejun Heo5abb8852013-06-12 21:04:49 -07004535 seq_printf(seq, "css_set %p\n", cset);
4536 list_for_each_entry(task, &cset->tasks, cg_list) {
Paul Menage7717f7b2009-09-23 15:56:22 -07004537 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4538 seq_puts(seq, " ...\n");
4539 break;
4540 } else {
4541 seq_printf(seq, " task %d\n",
4542 task_pid_vnr(task));
4543 }
4544 }
4545 }
Tejun Heo96d365e2014-02-13 06:58:40 -05004546 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07004547 return 0;
4548}
4549
Tejun Heo182446d2013-08-08 20:11:24 -04004550static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07004551{
Tejun Heo182446d2013-08-08 20:11:24 -04004552 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07004553}
4554
4555static struct cftype debug_files[] = {
4556 {
Paul Menagefe693432009-09-23 15:56:20 -07004557 .name = "taskcount",
4558 .read_u64 = debug_taskcount_read,
4559 },
4560
4561 {
4562 .name = "current_css_set",
4563 .read_u64 = current_css_set_read,
4564 },
4565
4566 {
4567 .name = "current_css_set_refcount",
4568 .read_u64 = current_css_set_refcount_read,
4569 },
4570
4571 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004572 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004573 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004574 },
4575
4576 {
4577 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004578 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07004579 },
4580
4581 {
Paul Menagefe693432009-09-23 15:56:20 -07004582 .name = "releasable",
4583 .read_u64 = releasable_read,
4584 },
Paul Menagefe693432009-09-23 15:56:20 -07004585
Tejun Heo4baf6e32012-04-01 12:09:55 -07004586 { } /* terminate */
4587};
Paul Menagefe693432009-09-23 15:56:20 -07004588
Tejun Heo073219e2014-02-08 10:36:58 -05004589struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08004590 .css_alloc = debug_css_alloc,
4591 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07004592 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07004593};
4594#endif /* CONFIG_CGROUP_DEBUG */