blob: e0aeb32415fff53a032803edbcf96ea30398b61d [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 Menage817929e2007-10-18 23:39:36 -070043#include <linux/backing-dev.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070044#include <linux/seq_file.h>
45#include <linux/slab.h>
46#include <linux/magic.h>
47#include <linux/spinlock.h>
48#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070049#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070050#include <linux/kmod.h>
Ben Blume6a11052010-03-10 15:22:09 -080051#include <linux/module.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070052#include <linux/delayacct.h>
53#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080054#include <linux/hashtable.h>
Al Viro3f8206d2008-07-26 03:46:43 -040055#include <linux/namei.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070056#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070057#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070058#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -080059#include <linux/eventfd.h>
60#include <linux/poll.h>
Li Zefan081aa452013-03-13 09:17:09 +080061#include <linux/flex_array.h> /* used in cgroup_attach_task */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020062#include <linux/kthread.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070063
Arun Sharma600634972011-07-26 16:09:06 -070064#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070065
Tejun Heoe25e2cb2011-12-12 18:12:21 -080066/*
67 * cgroup_mutex is the master lock. Any modification to cgroup or its
68 * hierarchy must be performed while holding it.
69 *
70 * cgroup_root_mutex nests inside cgroup_mutex and should be held to modify
71 * cgroupfs_root of any cgroup hierarchy - subsys list, flags,
72 * release_agent_path and so on. Modifying requires both cgroup_mutex and
73 * cgroup_root_mutex. Readers can acquire either of the two. This is to
74 * break the following locking order cycle.
75 *
76 * A. cgroup_mutex -> cred_guard_mutex -> s_type->i_mutex_key -> namespace_sem
77 * B. namespace_sem -> cgroup_mutex
78 *
79 * B happens only through cgroup_show_options() and using cgroup_root_mutex
80 * breaks it.
81 */
Tejun Heo22194492013-04-07 09:29:51 -070082#ifdef CONFIG_PROVE_RCU
83DEFINE_MUTEX(cgroup_mutex);
Tejun Heo8af01f52013-08-08 20:11:22 -040084EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for lockdep */
Tejun Heo22194492013-04-07 09:29:51 -070085#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070086static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo22194492013-04-07 09:29:51 -070087#endif
88
Tejun Heoe25e2cb2011-12-12 18:12:21 -080089static DEFINE_MUTEX(cgroup_root_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -070090
Ben Blumaae8aab2010-03-10 15:22:07 -080091/*
92 * Generate an array of cgroup subsystem pointers. At boot time, this is
Daniel Wagnerbe45c902012-09-13 09:50:55 +020093 * populated with the built in subsystems, and modular subsystems are
Ben Blumaae8aab2010-03-10 15:22:07 -080094 * registered after that. The mutable section of this array is protected by
95 * cgroup_mutex.
96 */
Daniel Wagner80f4c872012-09-12 16:12:06 +020097#define SUBSYS(_x) [_x ## _subsys_id] = &_x ## _subsys,
Daniel Wagner5fc0b022012-09-12 16:12:05 +020098#define IS_SUBSYS_ENABLED(option) IS_BUILTIN(option)
Tejun Heo9871bf92013-06-24 15:21:47 -070099static struct cgroup_subsys *cgroup_subsys[CGROUP_SUBSYS_COUNT] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700100#include <linux/cgroup_subsys.h>
101};
102
Paul Menageddbcc7e2007-10-18 23:39:30 -0700103/*
Tejun Heo9871bf92013-06-24 15:21:47 -0700104 * The dummy hierarchy, reserved for the subsystems that are otherwise
105 * unattached - it never has more than a single cgroup, and all tasks are
106 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700107 */
Tejun Heo9871bf92013-06-24 15:21:47 -0700108static struct cgroupfs_root cgroup_dummy_root;
109
110/* dummy_top is a shorthand for the dummy hierarchy's top cgroup */
111static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700112
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700113/*
Tejun Heo05ef1d72012-04-01 12:09:56 -0700114 * cgroupfs file entry, pointed to from leaf dentry->d_fsdata.
115 */
116struct cfent {
117 struct list_head node;
118 struct dentry *dentry;
119 struct cftype *type;
Tejun Heo105347b2013-08-13 11:01:55 -0400120 struct cgroup_subsys_state *css;
Li Zefan712317a2013-04-18 23:09:52 -0700121
122 /* file xattrs */
123 struct simple_xattrs xattrs;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700124};
125
126/*
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700127 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
128 * cgroup_subsys->use_id != 0.
129 */
130#define CSS_ID_MAX (65535)
131struct css_id {
132 /*
133 * The css to which this ID points. This pointer is set to valid value
134 * after cgroup is populated. If cgroup is removed, this will be NULL.
135 * This pointer is expected to be RCU-safe because destroy()
Tejun Heoe9316082012-11-05 09:16:58 -0800136 * is called after synchronize_rcu(). But for safe use, css_tryget()
137 * should be used for avoiding race.
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700138 */
Arnd Bergmann2c392b82010-02-24 19:41:39 +0100139 struct cgroup_subsys_state __rcu *css;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700140 /*
141 * ID of this css.
142 */
143 unsigned short id;
144 /*
145 * Depth in hierarchy which this ID belongs to.
146 */
147 unsigned short depth;
148 /*
149 * ID is freed by RCU. (and lookup routine is RCU safe.)
150 */
151 struct rcu_head rcu_head;
152 /*
153 * Hierarchy of CSS ID belongs to.
154 */
155 unsigned short stack[0]; /* Array of Length (depth+1) */
156};
157
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800158/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300159 * cgroup_event represents events which userspace want to receive.
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800160 */
161struct cgroup_event {
162 /*
Tejun Heo81eeaf02013-08-08 20:11:26 -0400163 * css which the event belongs to.
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800164 */
Tejun Heo81eeaf02013-08-08 20:11:26 -0400165 struct cgroup_subsys_state *css;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800166 /*
167 * Control file which the event associated.
168 */
169 struct cftype *cft;
170 /*
171 * eventfd to signal userspace about the event.
172 */
173 struct eventfd_ctx *eventfd;
174 /*
175 * Each of these stored in a list by the cgroup.
176 */
177 struct list_head list;
178 /*
179 * All fields below needed to unregister event when
180 * userspace closes eventfd.
181 */
182 poll_table pt;
183 wait_queue_head_t *wqh;
184 wait_queue_t wait;
185 struct work_struct remove;
186};
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700187
Paul Menageddbcc7e2007-10-18 23:39:30 -0700188/* The list of hierarchy roots */
189
Tejun Heo9871bf92013-06-24 15:21:47 -0700190static LIST_HEAD(cgroup_roots);
191static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700192
Tejun Heo54e7b4e2013-04-14 11:36:57 -0700193/*
194 * Hierarchy ID allocation and mapping. It follows the same exclusion
195 * rules as other root ops - both cgroup_mutex and cgroup_root_mutex for
196 * writes, either for reads.
197 */
Tejun Heo1a574232013-04-14 11:36:58 -0700198static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700199
Li Zefan65dff752013-03-01 15:01:56 +0800200static struct cgroup_name root_cgroup_name = { .name = "/" };
201
Li Zefan794611a2013-06-18 18:53:53 +0800202/*
203 * Assign a monotonically increasing serial number to cgroups. It
204 * guarantees cgroups with bigger numbers are newer than those with smaller
205 * numbers. Also, as cgroups are always appended to the parent's
206 * ->children list, it guarantees that sibling cgroups are always sorted in
Tejun Heo00356bd2013-06-18 11:14:22 -0700207 * the ascending serial number order on the list. Protected by
208 * cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800209 */
Tejun Heo00356bd2013-06-18 11:14:22 -0700210static u64 cgroup_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800211
Paul Menageddbcc7e2007-10-18 23:39:30 -0700212/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800213 * check for fork/exit handlers to call. This avoids us having to do
214 * extra work in the fork/exit path if none of the subsystems need to
215 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700216 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700217static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700218
Tejun Heo628f7cd2013-06-28 16:24:11 -0700219static struct cftype cgroup_base_files[];
220
Tejun Heof20104d2013-08-13 20:22:50 -0400221static void cgroup_destroy_css_killed(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800222static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400223static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
224 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800225
Tejun Heo95109b62013-08-08 20:11:27 -0400226/**
227 * cgroup_css - obtain a cgroup's css for the specified subsystem
228 * @cgrp: the cgroup of interest
Tejun Heoca8bdca2013-08-26 18:40:56 -0400229 * @ss: the subsystem of interest (%NULL returns the dummy_css)
Tejun Heo95109b62013-08-08 20:11:27 -0400230 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400231 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
232 * function must be called either under cgroup_mutex or rcu_read_lock() and
233 * the caller is responsible for pinning the returned css if it wants to
234 * keep accessing it outside the said locks. This function may return
235 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400236 */
237static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400238 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400239{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400240 if (ss)
241 return rcu_dereference_check(cgrp->subsys[ss->subsys_id],
242 lockdep_is_held(&cgroup_mutex));
243 else
244 return &cgrp->dummy_css;
Tejun Heo95109b62013-08-08 20:11:27 -0400245}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700246
Paul Menageddbcc7e2007-10-18 23:39:30 -0700247/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700248static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700249{
Tejun Heo54766d42013-06-12 21:04:53 -0700250 return test_bit(CGRP_DEAD, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700251}
252
Li Zefan78574cf2013-04-08 19:00:38 -0700253/**
254 * cgroup_is_descendant - test ancestry
255 * @cgrp: the cgroup to be tested
256 * @ancestor: possible ancestor of @cgrp
257 *
258 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
259 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
260 * and @ancestor are accessible.
261 */
262bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
263{
264 while (cgrp) {
265 if (cgrp == ancestor)
266 return true;
267 cgrp = cgrp->parent;
268 }
269 return false;
270}
271EXPORT_SYMBOL_GPL(cgroup_is_descendant);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700272
Adrian Bunke9685a02008-02-07 00:13:46 -0800273static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700274{
275 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700276 (1 << CGRP_RELEASABLE) |
277 (1 << CGRP_NOTIFY_ON_RELEASE);
278 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700279}
280
Adrian Bunke9685a02008-02-07 00:13:46 -0800281static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700282{
Paul Menagebd89aab2007-10-18 23:40:44 -0700283 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700284}
285
Tejun Heo30159ec2013-06-25 11:53:37 -0700286/**
287 * for_each_subsys - iterate all loaded cgroup subsystems
288 * @ss: the iteration cursor
289 * @i: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
290 *
291 * Should be called under cgroup_mutex.
292 */
293#define for_each_subsys(ss, i) \
294 for ((i) = 0; (i) < CGROUP_SUBSYS_COUNT; (i)++) \
295 if (({ lockdep_assert_held(&cgroup_mutex); \
296 !((ss) = cgroup_subsys[i]); })) { } \
297 else
298
299/**
300 * for_each_builtin_subsys - iterate all built-in cgroup subsystems
301 * @ss: the iteration cursor
302 * @i: the index of @ss, CGROUP_BUILTIN_SUBSYS_COUNT after reaching the end
303 *
304 * Bulit-in subsystems are always present and iteration itself doesn't
305 * require any synchronization.
306 */
307#define for_each_builtin_subsys(ss, i) \
308 for ((i) = 0; (i) < CGROUP_BUILTIN_SUBSYS_COUNT && \
309 (((ss) = cgroup_subsys[i]) || true); (i)++)
310
Tejun Heo5549c492013-06-24 15:21:48 -0700311/* iterate each subsystem attached to a hierarchy */
312#define for_each_root_subsys(root, ss) \
313 list_for_each_entry((ss), &(root)->subsys_list, sibling)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700314
Tejun Heo5549c492013-06-24 15:21:48 -0700315/* iterate across the active hierarchies */
316#define for_each_active_root(root) \
317 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700318
Tejun Heof6ea9372012-04-01 12:09:55 -0700319static inline struct cgroup *__d_cgrp(struct dentry *dentry)
320{
321 return dentry->d_fsdata;
322}
323
Tejun Heo05ef1d72012-04-01 12:09:56 -0700324static inline struct cfent *__d_cfe(struct dentry *dentry)
Tejun Heof6ea9372012-04-01 12:09:55 -0700325{
326 return dentry->d_fsdata;
327}
328
Tejun Heo05ef1d72012-04-01 12:09:56 -0700329static inline struct cftype *__d_cft(struct dentry *dentry)
330{
331 return __d_cfe(dentry)->type;
332}
333
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700334/**
335 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
336 * @cgrp: the cgroup to be checked for liveness
337 *
Tejun Heo47cfcd02013-04-07 09:29:51 -0700338 * On success, returns true; the mutex should be later unlocked. On
339 * failure returns false with no lock held.
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700340 */
Tejun Heob9777cf2013-04-07 09:29:51 -0700341static bool cgroup_lock_live_group(struct cgroup *cgrp)
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700342{
343 mutex_lock(&cgroup_mutex);
Tejun Heo54766d42013-06-12 21:04:53 -0700344 if (cgroup_is_dead(cgrp)) {
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700345 mutex_unlock(&cgroup_mutex);
346 return false;
347 }
348 return true;
349}
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700350
Paul Menage81a6a5c2007-10-18 23:39:38 -0700351/* the list of cgroups eligible for automatic release. Protected by
352 * release_list_lock */
353static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200354static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700355static void cgroup_release_agent(struct work_struct *work);
356static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700357static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700358
Tejun Heo69d02062013-06-12 21:04:50 -0700359/*
360 * A cgroup can be associated with multiple css_sets as different tasks may
361 * belong to different cgroups on different hierarchies. In the other
362 * direction, a css_set is naturally associated with multiple cgroups.
363 * This M:N relationship is represented by the following link structure
364 * which exists for each association and allows traversing the associations
365 * from both sides.
366 */
367struct cgrp_cset_link {
368 /* the cgroup and css_set this link associates */
369 struct cgroup *cgrp;
370 struct css_set *cset;
371
372 /* list of cgrp_cset_links anchored at cgrp->cset_links */
373 struct list_head cset_link;
374
375 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
376 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700377};
378
379/* The default css_set - used by init and its children prior to any
380 * hierarchies being mounted. It contains a pointer to the root state
381 * for each subsystem. Also used to anchor the list of css_sets. Not
382 * reference-counted, to improve performance when child cgroups
383 * haven't been created.
384 */
385
386static struct css_set init_css_set;
Tejun Heo69d02062013-06-12 21:04:50 -0700387static struct cgrp_cset_link init_cgrp_cset_link;
Paul Menage817929e2007-10-18 23:39:36 -0700388
Ben Blume6a11052010-03-10 15:22:09 -0800389static int cgroup_init_idr(struct cgroup_subsys *ss,
390 struct cgroup_subsys_state *css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700391
Tejun Heo0942eee2013-08-08 20:11:26 -0400392/*
393 * css_set_lock protects the list of css_set objects, and the chain of
394 * tasks off each css_set. Nests outside task->alloc_lock due to
Tejun Heo72ec7022013-08-08 20:11:26 -0400395 * css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -0400396 */
Paul Menage817929e2007-10-18 23:39:36 -0700397static DEFINE_RWLOCK(css_set_lock);
398static int css_set_count;
399
Paul Menage7717f7b2009-09-23 15:56:22 -0700400/*
401 * hash table for cgroup groups. This improves the performance to find
402 * an existing css_set. This hash doesn't (currently) take into
403 * account cgroups in empty hierarchies.
404 */
Li Zefan472b1052008-04-29 01:00:11 -0700405#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800406static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700407
Li Zefan0ac801f2013-01-10 11:49:27 +0800408static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700409{
Li Zefan0ac801f2013-01-10 11:49:27 +0800410 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700411 struct cgroup_subsys *ss;
412 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700413
Tejun Heo30159ec2013-06-25 11:53:37 -0700414 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800415 key += (unsigned long)css[i];
416 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700417
Li Zefan0ac801f2013-01-10 11:49:27 +0800418 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700419}
420
Tejun Heo0942eee2013-08-08 20:11:26 -0400421/*
422 * We don't maintain the lists running through each css_set to its task
Tejun Heo72ec7022013-08-08 20:11:26 -0400423 * until after the first call to css_task_iter_start(). This reduces the
424 * fork()/exit() overhead for people who have cgroups compiled into their
425 * kernel but not actually in use.
Tejun Heo0942eee2013-08-08 20:11:26 -0400426 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700427static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700428
Tejun Heo5abb8852013-06-12 21:04:49 -0700429static void __put_css_set(struct css_set *cset, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700430{
Tejun Heo69d02062013-06-12 21:04:50 -0700431 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo5abb8852013-06-12 21:04:49 -0700432
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700433 /*
434 * Ensure that the refcount doesn't hit zero while any readers
435 * can see it. Similar to atomic_dec_and_lock(), but for an
436 * rwlock
437 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700438 if (atomic_add_unless(&cset->refcount, -1, 1))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700439 return;
440 write_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700441 if (!atomic_dec_and_test(&cset->refcount)) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700442 write_unlock(&css_set_lock);
443 return;
444 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700445
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700446 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo5abb8852013-06-12 21:04:49 -0700447 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700448 css_set_count--;
449
Tejun Heo69d02062013-06-12 21:04:50 -0700450 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700451 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700452
Tejun Heo69d02062013-06-12 21:04:50 -0700453 list_del(&link->cset_link);
454 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800455
Tejun Heoddd69142013-06-12 21:04:54 -0700456 /* @cgrp can't go away while we're holding css_set_lock */
Tejun Heo6f3d828f02013-06-12 21:04:55 -0700457 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700458 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700459 set_bit(CGRP_RELEASABLE, &cgrp->flags);
460 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700461 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700462
463 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700464 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700465
466 write_unlock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700467 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700468}
469
470/*
471 * refcounted get/put for css_set objects
472 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700473static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700474{
Tejun Heo5abb8852013-06-12 21:04:49 -0700475 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700476}
477
Tejun Heo5abb8852013-06-12 21:04:49 -0700478static inline void put_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700479{
Tejun Heo5abb8852013-06-12 21:04:49 -0700480 __put_css_set(cset, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700481}
482
Tejun Heo5abb8852013-06-12 21:04:49 -0700483static inline void put_css_set_taskexit(struct css_set *cset)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700484{
Tejun Heo5abb8852013-06-12 21:04:49 -0700485 __put_css_set(cset, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700486}
487
Tejun Heob326f9d2013-06-24 15:21:48 -0700488/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700489 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700490 * @cset: candidate css_set being tested
491 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700492 * @new_cgrp: cgroup that's being entered by the task
493 * @template: desired set of css pointers in css_set (pre-calculated)
494 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800495 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700496 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
497 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700498static bool compare_css_sets(struct css_set *cset,
499 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700500 struct cgroup *new_cgrp,
501 struct cgroup_subsys_state *template[])
502{
503 struct list_head *l1, *l2;
504
Tejun Heo5abb8852013-06-12 21:04:49 -0700505 if (memcmp(template, cset->subsys, sizeof(cset->subsys))) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700506 /* Not all subsystems matched */
507 return false;
508 }
509
510 /*
511 * Compare cgroup pointers in order to distinguish between
512 * different cgroups in heirarchies with no subsystems. We
513 * could get by with just this check alone (and skip the
514 * memcmp above) but on most setups the memcmp check will
515 * avoid the need for this more expensive check on almost all
516 * candidates.
517 */
518
Tejun Heo69d02062013-06-12 21:04:50 -0700519 l1 = &cset->cgrp_links;
520 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700521 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700522 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700523 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700524
525 l1 = l1->next;
526 l2 = l2->next;
527 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700528 if (l1 == &cset->cgrp_links) {
529 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700530 break;
531 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700532 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700533 }
534 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700535 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
536 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
537 cgrp1 = link1->cgrp;
538 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700539 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700540 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700541
542 /*
543 * If this hierarchy is the hierarchy of the cgroup
544 * that's changing, then we need to check that this
545 * css_set points to the new cgroup; if it's any other
546 * hierarchy, then this css_set should point to the
547 * same cgroup as the old css_set.
548 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700549 if (cgrp1->root == new_cgrp->root) {
550 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700551 return false;
552 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700553 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700554 return false;
555 }
556 }
557 return true;
558}
559
Tejun Heob326f9d2013-06-24 15:21:48 -0700560/**
561 * find_existing_css_set - init css array and find the matching css_set
562 * @old_cset: the css_set that we're using before the cgroup transition
563 * @cgrp: the cgroup that we're moving into
564 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700565 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700566static struct css_set *find_existing_css_set(struct css_set *old_cset,
567 struct cgroup *cgrp,
568 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700569{
Paul Menagebd89aab2007-10-18 23:40:44 -0700570 struct cgroupfs_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700571 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700572 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800573 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700574 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700575
Ben Blumaae8aab2010-03-10 15:22:07 -0800576 /*
577 * Build the set of subsystem state objects that we want to see in the
578 * new css_set. while subsystems can change globally, the entries here
579 * won't change, so no need for locking.
580 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700581 for_each_subsys(ss, i) {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -0400582 if (root->subsys_mask & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700583 /* Subsystem is in this hierarchy. So we want
584 * the subsystem state from the new
585 * cgroup */
Tejun Heoca8bdca2013-08-26 18:40:56 -0400586 template[i] = cgroup_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700587 } else {
588 /* Subsystem is not in this hierarchy, so we
589 * don't want to change the subsystem state */
Tejun Heo5abb8852013-06-12 21:04:49 -0700590 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700591 }
592 }
593
Li Zefan0ac801f2013-01-10 11:49:27 +0800594 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700595 hash_for_each_possible(css_set_table, cset, hlist, key) {
596 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700597 continue;
598
599 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700600 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700601 }
Paul Menage817929e2007-10-18 23:39:36 -0700602
603 /* No existing cgroup group matched */
604 return NULL;
605}
606
Tejun Heo69d02062013-06-12 21:04:50 -0700607static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700608{
Tejun Heo69d02062013-06-12 21:04:50 -0700609 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700610
Tejun Heo69d02062013-06-12 21:04:50 -0700611 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
612 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700613 kfree(link);
614 }
615}
616
Tejun Heo69d02062013-06-12 21:04:50 -0700617/**
618 * allocate_cgrp_cset_links - allocate cgrp_cset_links
619 * @count: the number of links to allocate
620 * @tmp_links: list_head the allocated links are put on
621 *
622 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
623 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700624 */
Tejun Heo69d02062013-06-12 21:04:50 -0700625static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700626{
Tejun Heo69d02062013-06-12 21:04:50 -0700627 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700628 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700629
630 INIT_LIST_HEAD(tmp_links);
631
Li Zefan36553432008-07-29 22:33:19 -0700632 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700633 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700634 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700635 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700636 return -ENOMEM;
637 }
Tejun Heo69d02062013-06-12 21:04:50 -0700638 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700639 }
640 return 0;
641}
642
Li Zefanc12f65d2009-01-07 18:07:42 -0800643/**
644 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700645 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700646 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800647 * @cgrp: the destination cgroup
648 */
Tejun Heo69d02062013-06-12 21:04:50 -0700649static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
650 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800651{
Tejun Heo69d02062013-06-12 21:04:50 -0700652 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800653
Tejun Heo69d02062013-06-12 21:04:50 -0700654 BUG_ON(list_empty(tmp_links));
655 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
656 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700657 link->cgrp = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700658 list_move(&link->cset_link, &cgrp->cset_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700659 /*
660 * Always add links to the tail of the list so that the list
661 * is sorted by order of hierarchy creation
662 */
Tejun Heo69d02062013-06-12 21:04:50 -0700663 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800664}
665
Tejun Heob326f9d2013-06-24 15:21:48 -0700666/**
667 * find_css_set - return a new css_set with one cgroup updated
668 * @old_cset: the baseline css_set
669 * @cgrp: the cgroup to be updated
670 *
671 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
672 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700673 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700674static struct css_set *find_css_set(struct css_set *old_cset,
675 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700676{
Tejun Heob326f9d2013-06-24 15:21:48 -0700677 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700678 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700679 struct list_head tmp_links;
680 struct cgrp_cset_link *link;
Li Zefan0ac801f2013-01-10 11:49:27 +0800681 unsigned long key;
Li Zefan472b1052008-04-29 01:00:11 -0700682
Tejun Heob326f9d2013-06-24 15:21:48 -0700683 lockdep_assert_held(&cgroup_mutex);
684
Paul Menage817929e2007-10-18 23:39:36 -0700685 /* First see if we already have a cgroup group that matches
686 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700687 read_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700688 cset = find_existing_css_set(old_cset, cgrp, template);
689 if (cset)
690 get_css_set(cset);
Li Zefan7e9abd82008-07-25 01:46:54 -0700691 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700692
Tejun Heo5abb8852013-06-12 21:04:49 -0700693 if (cset)
694 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700695
Tejun Heof4f4be22013-06-12 21:04:51 -0700696 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700697 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700698 return NULL;
699
Tejun Heo69d02062013-06-12 21:04:50 -0700700 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700701 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700702 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700703 return NULL;
704 }
705
Tejun Heo5abb8852013-06-12 21:04:49 -0700706 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700707 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700708 INIT_LIST_HEAD(&cset->tasks);
709 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700710
711 /* Copy the set of subsystem state objects generated in
712 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700713 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700714
715 write_lock(&css_set_lock);
716 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700717 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700718 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700719
Paul Menage7717f7b2009-09-23 15:56:22 -0700720 if (c->root == cgrp->root)
721 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700722 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700723 }
Paul Menage817929e2007-10-18 23:39:36 -0700724
Tejun Heo69d02062013-06-12 21:04:50 -0700725 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700726
Paul Menage817929e2007-10-18 23:39:36 -0700727 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700728
729 /* Add this cgroup group to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700730 key = css_set_hash(cset->subsys);
731 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700732
Paul Menage817929e2007-10-18 23:39:36 -0700733 write_unlock(&css_set_lock);
734
Tejun Heo5abb8852013-06-12 21:04:49 -0700735 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700736}
737
Paul Menageddbcc7e2007-10-18 23:39:30 -0700738/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700739 * Return the cgroup for "task" from the given hierarchy. Must be
740 * called with cgroup_mutex held.
741 */
742static struct cgroup *task_cgroup_from_root(struct task_struct *task,
743 struct cgroupfs_root *root)
744{
Tejun Heo5abb8852013-06-12 21:04:49 -0700745 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700746 struct cgroup *res = NULL;
747
748 BUG_ON(!mutex_is_locked(&cgroup_mutex));
749 read_lock(&css_set_lock);
750 /*
751 * No need to lock the task - since we hold cgroup_mutex the
752 * task can't change groups, so the only thing that can happen
753 * is that it exits and its css is set back to init_css_set.
754 */
Tejun Heoa8ad8052013-06-21 15:52:04 -0700755 cset = task_css_set(task);
Tejun Heo5abb8852013-06-12 21:04:49 -0700756 if (cset == &init_css_set) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700757 res = &root->top_cgroup;
758 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700759 struct cgrp_cset_link *link;
760
761 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700762 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700763
Paul Menage7717f7b2009-09-23 15:56:22 -0700764 if (c->root == root) {
765 res = c;
766 break;
767 }
768 }
769 }
770 read_unlock(&css_set_lock);
771 BUG_ON(!res);
772 return res;
773}
774
775/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700776 * There is one global cgroup mutex. We also require taking
777 * task_lock() when dereferencing a task's cgroup subsys pointers.
778 * See "The task_lock() exception", at the end of this comment.
779 *
780 * A task must hold cgroup_mutex to modify cgroups.
781 *
782 * Any task can increment and decrement the count field without lock.
783 * So in general, code holding cgroup_mutex can't rely on the count
784 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800785 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700786 * means that no tasks are currently attached, therefore there is no
787 * way a task attached to that cgroup can fork (the other way to
788 * increment the count). So code holding cgroup_mutex can safely
789 * assume that if the count is zero, it will stay zero. Similarly, if
790 * a task holds cgroup_mutex on a cgroup with zero count, it
791 * knows that the cgroup won't be removed, as cgroup_rmdir()
792 * needs that mutex.
793 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700794 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
795 * (usually) take cgroup_mutex. These are the two most performance
796 * critical pieces of code here. The exception occurs on cgroup_exit(),
797 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
798 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800799 * to the release agent with the name of the cgroup (path relative to
800 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700801 *
802 * A cgroup can only be deleted if both its 'count' of using tasks
803 * is zero, and its list of 'children' cgroups is empty. Since all
804 * tasks in the system use _some_ cgroup, and since there is always at
805 * least one task in the system (init, pid == 1), therefore, top_cgroup
806 * always has either children cgroups and/or using tasks. So we don't
807 * need a special hack to ensure that top_cgroup cannot be deleted.
808 *
809 * The task_lock() exception
810 *
811 * The need for this exception arises from the action of
Tao Mad0b2fdd2012-11-20 22:06:18 +0800812 * cgroup_attach_task(), which overwrites one task's cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800813 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700814 * several performance critical places that need to reference
815 * task->cgroup without the expense of grabbing a system global
816 * mutex. Therefore except as noted below, when dereferencing or, as
Tao Mad0b2fdd2012-11-20 22:06:18 +0800817 * in cgroup_attach_task(), modifying a task's cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700818 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
819 * the task_struct routinely used for such matters.
820 *
821 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800822 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700823 */
824
Paul Menageddbcc7e2007-10-18 23:39:30 -0700825/*
826 * A couple of forward declarations required, due to cyclic reference loop:
827 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
828 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
829 * -> cgroup_mkdir.
830 */
831
Al Viro18bb1db2011-07-26 01:41:39 -0400832static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700833static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Tejun Heo628f7cd2013-06-28 16:24:11 -0700834static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700835static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700836static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700837
838static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200839 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700840 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700841};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700842
Tejun Heo623f9262013-08-13 11:01:55 -0400843static int alloc_css_id(struct cgroup_subsys_state *child_css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700844
Al Viroa5e7ed32011-07-26 01:55:55 -0400845static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700846{
847 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700848
849 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400850 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700851 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100852 inode->i_uid = current_fsuid();
853 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700854 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
855 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
856 }
857 return inode;
858}
859
Li Zefan65dff752013-03-01 15:01:56 +0800860static struct cgroup_name *cgroup_alloc_name(struct dentry *dentry)
861{
862 struct cgroup_name *name;
863
864 name = kmalloc(sizeof(*name) + dentry->d_name.len + 1, GFP_KERNEL);
865 if (!name)
866 return NULL;
867 strcpy(name->name, dentry->d_name.name);
868 return name;
869}
870
Li Zefanbe445622013-01-24 14:31:42 +0800871static void cgroup_free_fn(struct work_struct *work)
872{
Tejun Heoea15f8c2013-06-13 19:27:42 -0700873 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800874
875 mutex_lock(&cgroup_mutex);
Li Zefanbe445622013-01-24 14:31:42 +0800876 cgrp->root->number_of_cgroups--;
877 mutex_unlock(&cgroup_mutex);
878
879 /*
Li Zefan415cf072013-04-08 14:35:02 +0800880 * We get a ref to the parent's dentry, and put the ref when
881 * this cgroup is being freed, so it's guaranteed that the
882 * parent won't be destroyed before its children.
883 */
884 dput(cgrp->parent->dentry);
885
886 /*
Li Zefanbe445622013-01-24 14:31:42 +0800887 * Drop the active superblock reference that we took when we
Li Zefancc20e012013-04-26 11:58:02 -0700888 * created the cgroup. This will free cgrp->root, if we are
889 * holding the last reference to @sb.
Li Zefanbe445622013-01-24 14:31:42 +0800890 */
891 deactivate_super(cgrp->root->sb);
892
893 /*
894 * if we're getting rid of the cgroup, refcount should ensure
895 * that there are no pidlists left.
896 */
897 BUG_ON(!list_empty(&cgrp->pidlists));
898
899 simple_xattrs_free(&cgrp->xattrs);
900
Li Zefan65dff752013-03-01 15:01:56 +0800901 kfree(rcu_dereference_raw(cgrp->name));
Li Zefanbe445622013-01-24 14:31:42 +0800902 kfree(cgrp);
903}
904
905static void cgroup_free_rcu(struct rcu_head *head)
906{
907 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
908
Tejun Heoea15f8c2013-06-13 19:27:42 -0700909 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
910 schedule_work(&cgrp->destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800911}
912
Paul Menageddbcc7e2007-10-18 23:39:30 -0700913static void cgroup_diput(struct dentry *dentry, struct inode *inode)
914{
915 /* is dentry a directory ? if so, kfree() associated cgroup */
916 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700917 struct cgroup *cgrp = dentry->d_fsdata;
Li Zefanbe445622013-01-24 14:31:42 +0800918
Tejun Heo54766d42013-06-12 21:04:53 -0700919 BUG_ON(!(cgroup_is_dead(cgrp)));
Li Zefanbe445622013-01-24 14:31:42 +0800920 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700921 } else {
922 struct cfent *cfe = __d_cfe(dentry);
923 struct cgroup *cgrp = dentry->d_parent->d_fsdata;
924
925 WARN_ONCE(!list_empty(&cfe->node) &&
926 cgrp != &cgrp->root->top_cgroup,
927 "cfe still linked for %s\n", cfe->type->name);
Li Zefan712317a2013-04-18 23:09:52 -0700928 simple_xattrs_free(&cfe->xattrs);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700929 kfree(cfe);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700930 }
931 iput(inode);
932}
933
Al Viroc72a04e2011-01-14 05:31:45 +0000934static int cgroup_delete(const struct dentry *d)
935{
936 return 1;
937}
938
Paul Menageddbcc7e2007-10-18 23:39:30 -0700939static void remove_dir(struct dentry *d)
940{
941 struct dentry *parent = dget(d->d_parent);
942
943 d_delete(d);
944 simple_rmdir(parent->d_inode, d);
945 dput(parent);
946}
947
Li Zefan2739d3c2013-01-21 18:18:33 +0800948static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700949{
Tejun Heo05ef1d72012-04-01 12:09:56 -0700950 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700951
Tejun Heo05ef1d72012-04-01 12:09:56 -0700952 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
953 lockdep_assert_held(&cgroup_mutex);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100954
Li Zefan2739d3c2013-01-21 18:18:33 +0800955 /*
956 * If we're doing cleanup due to failure of cgroup_create(),
957 * the corresponding @cfe may not exist.
958 */
Tejun Heo05ef1d72012-04-01 12:09:56 -0700959 list_for_each_entry(cfe, &cgrp->files, node) {
960 struct dentry *d = cfe->dentry;
961
962 if (cft && cfe->type != cft)
963 continue;
964
965 dget(d);
966 d_delete(d);
Tejun Heoce27e312012-07-03 10:38:06 -0700967 simple_unlink(cgrp->dentry->d_inode, d);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700968 list_del_init(&cfe->node);
969 dput(d);
970
Li Zefan2739d3c2013-01-21 18:18:33 +0800971 break;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700972 }
Tejun Heo05ef1d72012-04-01 12:09:56 -0700973}
974
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400975/**
Tejun Heo628f7cd2013-06-28 16:24:11 -0700976 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -0700977 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400978 * @subsys_mask: mask of the subsystem ids whose files should be removed
979 */
Tejun Heo628f7cd2013-06-28 16:24:11 -0700980static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -0700981{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400982 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -0700983 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700984
Tejun Heob420ba72013-07-12 12:34:02 -0700985 for_each_subsys(ss, i) {
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400986 struct cftype_set *set;
Tejun Heob420ba72013-07-12 12:34:02 -0700987
988 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400989 continue;
990 list_for_each_entry(set, &ss->cftsets, node)
Tejun Heo2bb566c2013-08-08 20:11:23 -0400991 cgroup_addrm_files(cgrp, set->cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400992 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993}
994
995/*
996 * NOTE : the dentry must have been dget()'ed
997 */
998static void cgroup_d_remove_dir(struct dentry *dentry)
999{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001000 struct dentry *parent;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001001
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001002 parent = dentry->d_parent;
1003 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +08001004 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001005 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001006 spin_unlock(&dentry->d_lock);
1007 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001008 remove_dir(dentry);
1009}
1010
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001011/*
Ben Blumcf5d5942010-03-10 15:22:09 -08001012 * Call with cgroup_mutex held. Drops reference counts on modules, including
1013 * any duplicate ones that parse_cgroupfs_options took. If this function
1014 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -08001015 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001016static int rebind_subsystems(struct cgroupfs_root *root,
Tejun Heoa8a648c2013-06-24 15:21:47 -07001017 unsigned long added_mask, unsigned removed_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001018{
Paul Menagebd89aab2007-10-18 23:40:44 -07001019 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heo30159ec2013-06-25 11:53:37 -07001020 struct cgroup_subsys *ss;
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001021 unsigned long pinned = 0;
Tejun Heo31261212013-06-28 17:07:30 -07001022 int i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001023
Ben Blumaae8aab2010-03-10 15:22:07 -08001024 BUG_ON(!mutex_is_locked(&cgroup_mutex));
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001025 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
Ben Blumaae8aab2010-03-10 15:22:07 -08001026
Paul Menageddbcc7e2007-10-18 23:39:30 -07001027 /* Check that any added subsystems are currently free */
Tejun Heo30159ec2013-06-25 11:53:37 -07001028 for_each_subsys(ss, i) {
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001029 if (!(added_mask & (1 << i)))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030 continue;
Tejun Heo30159ec2013-06-25 11:53:37 -07001031
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001032 /* is the subsystem mounted elsewhere? */
Tejun Heo9871bf92013-06-24 15:21:47 -07001033 if (ss->root != &cgroup_dummy_root) {
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001034 ret = -EBUSY;
1035 goto out_put;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001036 }
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001037
1038 /* pin the module */
1039 if (!try_module_get(ss->module)) {
1040 ret = -ENOENT;
1041 goto out_put;
1042 }
1043 pinned |= 1 << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001044 }
1045
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001046 /* subsys could be missing if unloaded between parsing and here */
1047 if (added_mask != pinned) {
1048 ret = -ENOENT;
1049 goto out_put;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001050 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001051
Tejun Heo31261212013-06-28 17:07:30 -07001052 ret = cgroup_populate_dir(cgrp, added_mask);
1053 if (ret)
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001054 goto out_put;
Tejun Heo31261212013-06-28 17:07:30 -07001055
1056 /*
1057 * Nothing can fail from this point on. Remove files for the
1058 * removed subsystems and rebind each subsystem.
1059 */
1060 cgroup_clear_dir(cgrp, removed_mask);
1061
Tejun Heo30159ec2013-06-25 11:53:37 -07001062 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001063 unsigned long bit = 1UL << i;
Tejun Heo30159ec2013-06-25 11:53:37 -07001064
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001065 if (bit & added_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001066 /* We're binding this subsystem to this hierarchy */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001067 BUG_ON(cgroup_css(cgrp, ss));
1068 BUG_ON(!cgroup_css(cgroup_dummy_top, ss));
1069 BUG_ON(cgroup_css(cgroup_dummy_top, ss)->cgroup != cgroup_dummy_top);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001070
Tejun Heo73e80ed2013-08-13 11:01:55 -04001071 rcu_assign_pointer(cgrp->subsys[i],
Tejun Heoca8bdca2013-08-26 18:40:56 -04001072 cgroup_css(cgroup_dummy_top, ss));
1073 cgroup_css(cgrp, ss)->cgroup = cgrp;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001074
Li Zefan33a68ac2009-01-07 18:07:42 -08001075 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001076 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001077 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001078 ss->bind(cgroup_css(cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001079
Ben Blumcf5d5942010-03-10 15:22:09 -08001080 /* refcount was already taken, and we're keeping it */
Tejun Heoa8a648c2013-06-24 15:21:47 -07001081 root->subsys_mask |= bit;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001082 } else if (bit & removed_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001083 /* We're removing this subsystem */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001084 BUG_ON(cgroup_css(cgrp, ss) != cgroup_css(cgroup_dummy_top, ss));
1085 BUG_ON(cgroup_css(cgrp, ss)->cgroup != cgrp);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001086
Paul Menageddbcc7e2007-10-18 23:39:30 -07001087 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001088 ss->bind(cgroup_css(cgroup_dummy_top, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001089
Tejun Heoca8bdca2013-08-26 18:40:56 -04001090 cgroup_css(cgroup_dummy_top, ss)->cgroup = cgroup_dummy_top;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001091 RCU_INIT_POINTER(cgrp->subsys[i], NULL);
1092
Tejun Heo9871bf92013-06-24 15:21:47 -07001093 cgroup_subsys[i]->root = &cgroup_dummy_root;
1094 list_move(&ss->sibling, &cgroup_dummy_root.subsys_list);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001095
Ben Blumcf5d5942010-03-10 15:22:09 -08001096 /* subsystem is now free - drop reference on module */
1097 module_put(ss->module);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001098 root->subsys_mask &= ~bit;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001099 }
1100 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001101
Tejun Heo1672d042013-06-25 18:04:54 -07001102 /*
1103 * Mark @root has finished binding subsystems. @root->subsys_mask
1104 * now matches the bound subsystems.
1105 */
1106 root->flags |= CGRP_ROOT_SUBSYS_BOUND;
1107
Paul Menageddbcc7e2007-10-18 23:39:30 -07001108 return 0;
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001109
1110out_put:
1111 for_each_subsys(ss, i)
1112 if (pinned & (1 << i))
1113 module_put(ss->module);
1114 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001115}
1116
Al Viro34c80b12011-12-08 21:32:45 -05001117static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001118{
Al Viro34c80b12011-12-08 21:32:45 -05001119 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001120 struct cgroup_subsys *ss;
1121
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001122 mutex_lock(&cgroup_root_mutex);
Tejun Heo5549c492013-06-24 15:21:48 -07001123 for_each_root_subsys(root, ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001124 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001125 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1126 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001127 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001128 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001129 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001130 seq_puts(seq, ",xattr");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001131 if (strlen(root->release_agent_path))
1132 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001133 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001134 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001135 if (strlen(root->name))
1136 seq_printf(seq, ",name=%s", root->name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001137 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001138 return 0;
1139}
1140
1141struct cgroup_sb_opts {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001142 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001143 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001144 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001145 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001146 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001147 /* User explicitly requested empty subsystem */
1148 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001149
1150 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001151
Paul Menageddbcc7e2007-10-18 23:39:30 -07001152};
1153
Ben Blumaae8aab2010-03-10 15:22:07 -08001154/*
Tejun Heo9871bf92013-06-24 15:21:47 -07001155 * Convert a hierarchy specifier into a bitmask of subsystems and
1156 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1157 * array. This function takes refcounts on subsystems to be used, unless it
1158 * returns error, in which case no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001159 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001160static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001161{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001162 char *token, *o = data;
1163 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001164 unsigned long mask = (unsigned long)-1;
Tejun Heo30159ec2013-06-25 11:53:37 -07001165 struct cgroup_subsys *ss;
1166 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001167
Ben Blumaae8aab2010-03-10 15:22:07 -08001168 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1169
Li Zefanf9ab5b52009-06-17 16:26:33 -07001170#ifdef CONFIG_CPUSETS
1171 mask = ~(1UL << cpuset_subsys_id);
1172#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001173
Paul Menagec6d57f32009-09-23 15:56:19 -07001174 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001175
1176 while ((token = strsep(&o, ",")) != NULL) {
1177 if (!*token)
1178 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001179 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001180 /* Explicitly have no subsystems */
1181 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001182 continue;
1183 }
1184 if (!strcmp(token, "all")) {
1185 /* Mutually exclusive option 'all' + subsystem name */
1186 if (one_ss)
1187 return -EINVAL;
1188 all_ss = true;
1189 continue;
1190 }
Tejun Heo873fe092013-04-14 20:15:26 -07001191 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1192 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1193 continue;
1194 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001195 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001196 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001197 continue;
1198 }
1199 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001200 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001201 continue;
1202 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001203 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001204 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001205 continue;
1206 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001207 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001208 /* Specifying two release agents is forbidden */
1209 if (opts->release_agent)
1210 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001211 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001212 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001213 if (!opts->release_agent)
1214 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001215 continue;
1216 }
1217 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001218 const char *name = token + 5;
1219 /* Can't specify an empty name */
1220 if (!strlen(name))
1221 return -EINVAL;
1222 /* Must match [\w.-]+ */
1223 for (i = 0; i < strlen(name); i++) {
1224 char c = name[i];
1225 if (isalnum(c))
1226 continue;
1227 if ((c == '.') || (c == '-') || (c == '_'))
1228 continue;
1229 return -EINVAL;
1230 }
1231 /* Specifying two names is forbidden */
1232 if (opts->name)
1233 return -EINVAL;
1234 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001235 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001236 GFP_KERNEL);
1237 if (!opts->name)
1238 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001239
1240 continue;
1241 }
1242
Tejun Heo30159ec2013-06-25 11:53:37 -07001243 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001244 if (strcmp(token, ss->name))
1245 continue;
1246 if (ss->disabled)
1247 continue;
1248
1249 /* Mutually exclusive option 'all' + subsystem name */
1250 if (all_ss)
1251 return -EINVAL;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001252 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001253 one_ss = true;
1254
1255 break;
1256 }
1257 if (i == CGROUP_SUBSYS_COUNT)
1258 return -ENOENT;
1259 }
1260
1261 /*
1262 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001263 * otherwise if 'none', 'name=' and a subsystem name options
1264 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001265 */
Tejun Heo30159ec2013-06-25 11:53:37 -07001266 if (all_ss || (!one_ss && !opts->none && !opts->name))
1267 for_each_subsys(ss, i)
1268 if (!ss->disabled)
1269 set_bit(i, &opts->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001270
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001271 /* Consistency checks */
1272
Tejun Heo873fe092013-04-14 20:15:26 -07001273 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1274 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1275
1276 if (opts->flags & CGRP_ROOT_NOPREFIX) {
1277 pr_err("cgroup: sane_behavior: noprefix is not allowed\n");
1278 return -EINVAL;
1279 }
1280
1281 if (opts->cpuset_clone_children) {
1282 pr_err("cgroup: sane_behavior: clone_children is not allowed\n");
1283 return -EINVAL;
1284 }
1285 }
1286
Li Zefanf9ab5b52009-06-17 16:26:33 -07001287 /*
1288 * Option noprefix was introduced just for backward compatibility
1289 * with the old cpuset, so we allow noprefix only if mounting just
1290 * the cpuset subsystem.
1291 */
Tejun Heo93438622013-04-14 20:15:25 -07001292 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001293 return -EINVAL;
1294
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001295
1296 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001297 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001298 return -EINVAL;
1299
1300 /*
1301 * We either have to specify by name or by subsystems. (So all
1302 * empty hierarchies must have a name).
1303 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001304 if (!opts->subsys_mask && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001305 return -EINVAL;
1306
1307 return 0;
1308}
1309
1310static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1311{
1312 int ret = 0;
1313 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001314 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001315 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001316 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001317
Tejun Heo873fe092013-04-14 20:15:26 -07001318 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1319 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1320 return -EINVAL;
1321 }
1322
Paul Menagebd89aab2007-10-18 23:40:44 -07001323 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001324 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001325 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001326
1327 /* See what subsystems are wanted */
1328 ret = parse_cgroupfs_options(data, &opts);
1329 if (ret)
1330 goto out_unlock;
1331
Tejun Heoa8a648c2013-06-24 15:21:47 -07001332 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001333 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1334 task_tgid_nr(current), current->comm);
1335
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001336 added_mask = opts.subsys_mask & ~root->subsys_mask;
1337 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001338
Ben Blumcf5d5942010-03-10 15:22:09 -08001339 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001340 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001341 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001342 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1343 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1344 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001345 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001346 goto out_unlock;
1347 }
1348
Tejun Heof172e672013-06-28 17:07:30 -07001349 /* remounting is not allowed for populated hierarchies */
1350 if (root->number_of_cgroups > 1) {
1351 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001352 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001353 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001354
Paul Menageddbcc7e2007-10-18 23:39:30 -07001355 ret = rebind_subsystems(root, added_mask, removed_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001356 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001357 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001358
Paul Menage81a6a5c2007-10-18 23:39:38 -07001359 if (opts.release_agent)
1360 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001361 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001362 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001363 kfree(opts.name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001364 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001365 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001366 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001367 return ret;
1368}
1369
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001370static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001371 .statfs = simple_statfs,
1372 .drop_inode = generic_delete_inode,
1373 .show_options = cgroup_show_options,
1374 .remount_fs = cgroup_remount,
1375};
1376
Paul Menagecc31edc2008-10-18 20:28:04 -07001377static void init_cgroup_housekeeping(struct cgroup *cgrp)
1378{
1379 INIT_LIST_HEAD(&cgrp->sibling);
1380 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo05ef1d72012-04-01 12:09:56 -07001381 INIT_LIST_HEAD(&cgrp->files);
Tejun Heo69d02062013-06-12 21:04:50 -07001382 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001383 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001384 INIT_LIST_HEAD(&cgrp->pidlists);
1385 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo67f4c362013-08-08 20:11:24 -04001386 cgrp->dummy_css.cgroup = cgrp;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001387 INIT_LIST_HEAD(&cgrp->event_list);
1388 spin_lock_init(&cgrp->event_list_lock);
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001389 simple_xattrs_init(&cgrp->xattrs);
Paul Menagecc31edc2008-10-18 20:28:04 -07001390}
Paul Menagec6d57f32009-09-23 15:56:19 -07001391
Paul Menageddbcc7e2007-10-18 23:39:30 -07001392static void init_cgroup_root(struct cgroupfs_root *root)
1393{
Paul Menagebd89aab2007-10-18 23:40:44 -07001394 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001395
Paul Menageddbcc7e2007-10-18 23:39:30 -07001396 INIT_LIST_HEAD(&root->subsys_list);
1397 INIT_LIST_HEAD(&root->root_list);
1398 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001399 cgrp->root = root;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07001400 RCU_INIT_POINTER(cgrp->name, &root_cgroup_name);
Paul Menagecc31edc2008-10-18 20:28:04 -07001401 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001402 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001403}
1404
Tejun Heofc76df72013-06-25 11:53:37 -07001405static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001406{
Tejun Heo1a574232013-04-14 11:36:58 -07001407 int id;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001408
Tejun Heo54e7b4e2013-04-14 11:36:57 -07001409 lockdep_assert_held(&cgroup_mutex);
1410 lockdep_assert_held(&cgroup_root_mutex);
1411
Tejun Heofc76df72013-06-25 11:53:37 -07001412 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end,
1413 GFP_KERNEL);
Tejun Heo1a574232013-04-14 11:36:58 -07001414 if (id < 0)
1415 return id;
1416
1417 root->hierarchy_id = id;
Tejun Heofa3ca072013-04-14 11:36:56 -07001418 return 0;
1419}
1420
1421static void cgroup_exit_root_id(struct cgroupfs_root *root)
1422{
Tejun Heo54e7b4e2013-04-14 11:36:57 -07001423 lockdep_assert_held(&cgroup_mutex);
1424 lockdep_assert_held(&cgroup_root_mutex);
Tejun Heofa3ca072013-04-14 11:36:56 -07001425
Tejun Heo54e7b4e2013-04-14 11:36:57 -07001426 if (root->hierarchy_id) {
Tejun Heo1a574232013-04-14 11:36:58 -07001427 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
Tejun Heofa3ca072013-04-14 11:36:56 -07001428 root->hierarchy_id = 0;
1429 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001430}
1431
Paul Menageddbcc7e2007-10-18 23:39:30 -07001432static int cgroup_test_super(struct super_block *sb, void *data)
1433{
Paul Menagec6d57f32009-09-23 15:56:19 -07001434 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001435 struct cgroupfs_root *root = sb->s_fs_info;
1436
Paul Menagec6d57f32009-09-23 15:56:19 -07001437 /* If we asked for a name then it must match */
1438 if (opts->name && strcmp(opts->name, root->name))
1439 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001440
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001441 /*
1442 * If we asked for subsystems (or explicitly for no
1443 * subsystems) then they must match
1444 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001445 if ((opts->subsys_mask || opts->none)
1446 && (opts->subsys_mask != root->subsys_mask))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001447 return 0;
1448
1449 return 1;
1450}
1451
Paul Menagec6d57f32009-09-23 15:56:19 -07001452static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1453{
1454 struct cgroupfs_root *root;
1455
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001456 if (!opts->subsys_mask && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001457 return NULL;
1458
1459 root = kzalloc(sizeof(*root), GFP_KERNEL);
1460 if (!root)
1461 return ERR_PTR(-ENOMEM);
1462
1463 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001464
Tejun Heo1672d042013-06-25 18:04:54 -07001465 /*
1466 * We need to set @root->subsys_mask now so that @root can be
1467 * matched by cgroup_test_super() before it finishes
1468 * initialization; otherwise, competing mounts with the same
1469 * options may try to bind the same subsystems instead of waiting
1470 * for the first one leading to unexpected mount errors.
1471 * SUBSYS_BOUND will be set once actual binding is complete.
1472 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001473 root->subsys_mask = opts->subsys_mask;
Paul Menagec6d57f32009-09-23 15:56:19 -07001474 root->flags = opts->flags;
1475 if (opts->release_agent)
1476 strcpy(root->release_agent_path, opts->release_agent);
1477 if (opts->name)
1478 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001479 if (opts->cpuset_clone_children)
1480 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001481 return root;
1482}
1483
Tejun Heofa3ca072013-04-14 11:36:56 -07001484static void cgroup_free_root(struct cgroupfs_root *root)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001485{
Tejun Heofa3ca072013-04-14 11:36:56 -07001486 if (root) {
1487 /* hierarhcy ID shoulid already have been released */
1488 WARN_ON_ONCE(root->hierarchy_id);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001489
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001490 idr_destroy(&root->cgroup_idr);
Tejun Heofa3ca072013-04-14 11:36:56 -07001491 kfree(root);
1492 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001493}
1494
Paul Menageddbcc7e2007-10-18 23:39:30 -07001495static int cgroup_set_super(struct super_block *sb, void *data)
1496{
1497 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001498 struct cgroup_sb_opts *opts = data;
1499
1500 /* If we don't have a new root, we can't set up a new sb */
1501 if (!opts->new_root)
1502 return -EINVAL;
1503
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001504 BUG_ON(!opts->subsys_mask && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001505
1506 ret = set_anon_super(sb, NULL);
1507 if (ret)
1508 return ret;
1509
Paul Menagec6d57f32009-09-23 15:56:19 -07001510 sb->s_fs_info = opts->new_root;
1511 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001512
1513 sb->s_blocksize = PAGE_CACHE_SIZE;
1514 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1515 sb->s_magic = CGROUP_SUPER_MAGIC;
1516 sb->s_op = &cgroup_ops;
1517
1518 return 0;
1519}
1520
1521static int cgroup_get_rootdir(struct super_block *sb)
1522{
Al Viro0df6a632010-12-21 13:29:29 -05001523 static const struct dentry_operations cgroup_dops = {
1524 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001525 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001526 };
1527
Paul Menageddbcc7e2007-10-18 23:39:30 -07001528 struct inode *inode =
1529 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001530
1531 if (!inode)
1532 return -ENOMEM;
1533
Paul Menageddbcc7e2007-10-18 23:39:30 -07001534 inode->i_fop = &simple_dir_operations;
1535 inode->i_op = &cgroup_dir_inode_operations;
1536 /* directories start off with i_nlink == 2 (for "." entry) */
1537 inc_nlink(inode);
Al Viro48fde702012-01-08 22:15:13 -05001538 sb->s_root = d_make_root(inode);
1539 if (!sb->s_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001540 return -ENOMEM;
Al Viro0df6a632010-12-21 13:29:29 -05001541 /* for everything else we want ->d_op set */
1542 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001543 return 0;
1544}
1545
Al Virof7e83572010-07-26 13:23:11 +04001546static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001547 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001548 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001549{
1550 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001551 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552 int ret = 0;
1553 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001554 struct cgroupfs_root *new_root;
Tejun Heo31261212013-06-28 17:07:30 -07001555 struct list_head tmp_links;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001556 struct inode *inode;
Tejun Heo31261212013-06-28 17:07:30 -07001557 const struct cred *cred;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001558
1559 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001560 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001561 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001562 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001563 if (ret)
1564 goto out_err;
1565
1566 /*
1567 * Allocate a new cgroup root. We may not need it if we're
1568 * reusing an existing hierarchy.
1569 */
1570 new_root = cgroup_root_from_opts(&opts);
1571 if (IS_ERR(new_root)) {
1572 ret = PTR_ERR(new_root);
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001573 goto out_err;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001574 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001575 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001576
Paul Menagec6d57f32009-09-23 15:56:19 -07001577 /* Locate an existing or new sb for this hierarchy */
David Howells9249e172012-06-25 12:55:37 +01001578 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, 0, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001579 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001580 ret = PTR_ERR(sb);
Tejun Heofa3ca072013-04-14 11:36:56 -07001581 cgroup_free_root(opts.new_root);
Tejun Heo1d5be6b2013-07-12 13:38:17 -07001582 goto out_err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001583 }
1584
Paul Menagec6d57f32009-09-23 15:56:19 -07001585 root = sb->s_fs_info;
1586 BUG_ON(!root);
1587 if (root == opts.new_root) {
1588 /* We used the new root structure, so this is a new hierarchy */
Li Zefanc12f65d2009-01-07 18:07:42 -08001589 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menagec6d57f32009-09-23 15:56:19 -07001590 struct cgroupfs_root *existing_root;
Li Zefan28fd5df2008-04-29 01:00:13 -07001591 int i;
Tejun Heo5abb8852013-06-12 21:04:49 -07001592 struct css_set *cset;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001593
1594 BUG_ON(sb->s_root != NULL);
1595
1596 ret = cgroup_get_rootdir(sb);
1597 if (ret)
1598 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001599 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001600
Paul Menage817929e2007-10-18 23:39:36 -07001601 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001602 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001603 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001604
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001605 root_cgrp->id = idr_alloc(&root->cgroup_idr, root_cgrp,
1606 0, 1, GFP_KERNEL);
1607 if (root_cgrp->id < 0)
1608 goto unlock_drop;
1609
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001610 /* Check for name clashes with existing mounts */
1611 ret = -EBUSY;
1612 if (strlen(root->name))
1613 for_each_active_root(existing_root)
1614 if (!strcmp(existing_root->name, root->name))
1615 goto unlock_drop;
Paul Menagec6d57f32009-09-23 15:56:19 -07001616
Paul Menage817929e2007-10-18 23:39:36 -07001617 /*
1618 * We're accessing css_set_count without locking
1619 * css_set_lock here, but that's OK - it can only be
1620 * increased by someone holding cgroup_lock, and
1621 * that's us. The worst that can happen is that we
1622 * have some link structures left over
1623 */
Tejun Heo69d02062013-06-12 21:04:50 -07001624 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001625 if (ret)
1626 goto unlock_drop;
Paul Menage817929e2007-10-18 23:39:36 -07001627
Tejun Heofc76df72013-06-25 11:53:37 -07001628 /* ID 0 is reserved for dummy root, 1 for unified hierarchy */
1629 ret = cgroup_init_root_id(root, 2, 0);
Tejun Heofa3ca072013-04-14 11:36:56 -07001630 if (ret)
1631 goto unlock_drop;
1632
Tejun Heo31261212013-06-28 17:07:30 -07001633 sb->s_root->d_fsdata = root_cgrp;
1634 root_cgrp->dentry = sb->s_root;
1635
1636 /*
1637 * We're inside get_sb() and will call lookup_one_len() to
1638 * create the root files, which doesn't work if SELinux is
1639 * in use. The following cred dancing somehow works around
1640 * it. See 2ce9738ba ("cgroupfs: use init_cred when
1641 * populating new cgroupfs mount") for more details.
1642 */
1643 cred = override_creds(&init_cred);
1644
Tejun Heo2bb566c2013-08-08 20:11:23 -04001645 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
Tejun Heo31261212013-06-28 17:07:30 -07001646 if (ret)
1647 goto rm_base_files;
1648
Tejun Heoa8a648c2013-06-24 15:21:47 -07001649 ret = rebind_subsystems(root, root->subsys_mask, 0);
Tejun Heo31261212013-06-28 17:07:30 -07001650 if (ret)
1651 goto rm_base_files;
1652
1653 revert_creds(cred);
1654
Ben Blumcf5d5942010-03-10 15:22:09 -08001655 /*
1656 * There must be no failure case after here, since rebinding
1657 * takes care of subsystems' refcounts, which are explicitly
1658 * dropped in the failure exit path.
1659 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001660
Tejun Heo9871bf92013-06-24 15:21:47 -07001661 list_add(&root->root_list, &cgroup_roots);
1662 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001663
Paul Menage817929e2007-10-18 23:39:36 -07001664 /* Link the top cgroup in this hierarchy into all
1665 * the css_set objects */
1666 write_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -07001667 hash_for_each(css_set_table, i, cset, hlist)
Tejun Heo69d02062013-06-12 21:04:50 -07001668 link_css_set(&tmp_links, cset, root_cgrp);
Paul Menage817929e2007-10-18 23:39:36 -07001669 write_unlock(&css_set_lock);
1670
Tejun Heo69d02062013-06-12 21:04:50 -07001671 free_cgrp_cset_links(&tmp_links);
Paul Menage817929e2007-10-18 23:39:36 -07001672
Li Zefanc12f65d2009-01-07 18:07:42 -08001673 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001674 BUG_ON(root->number_of_cgroups != 1);
1675
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001676 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001677 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001678 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001679 } else {
1680 /*
1681 * We re-used an existing hierarchy - the new root (if
1682 * any) is not needed
1683 */
Tejun Heofa3ca072013-04-14 11:36:56 -07001684 cgroup_free_root(opts.new_root);
Tejun Heo873fe092013-04-14 20:15:26 -07001685
Tejun Heoc7ba8282013-06-29 14:06:10 -07001686 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001687 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1688 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1689 ret = -EINVAL;
1690 goto drop_new_super;
1691 } else {
1692 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1693 }
Tejun Heo873fe092013-04-14 20:15:26 -07001694 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001695 }
1696
Paul Menagec6d57f32009-09-23 15:56:19 -07001697 kfree(opts.release_agent);
1698 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001699 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001700
Tejun Heo31261212013-06-28 17:07:30 -07001701 rm_base_files:
1702 free_cgrp_cset_links(&tmp_links);
Tejun Heo2bb566c2013-08-08 20:11:23 -04001703 cgroup_addrm_files(&root->top_cgroup, cgroup_base_files, false);
Tejun Heo31261212013-06-28 17:07:30 -07001704 revert_creds(cred);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001705 unlock_drop:
Tejun Heofa3ca072013-04-14 11:36:56 -07001706 cgroup_exit_root_id(root);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001707 mutex_unlock(&cgroup_root_mutex);
1708 mutex_unlock(&cgroup_mutex);
1709 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001710 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001711 deactivate_locked_super(sb);
Paul Menagec6d57f32009-09-23 15:56:19 -07001712 out_err:
1713 kfree(opts.release_agent);
1714 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001715 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001716}
1717
1718static void cgroup_kill_sb(struct super_block *sb) {
1719 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001720 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heo69d02062013-06-12 21:04:50 -07001721 struct cgrp_cset_link *link, *tmp_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001722 int ret;
1723
1724 BUG_ON(!root);
1725
1726 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001727 BUG_ON(!list_empty(&cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001728
Tejun Heo31261212013-06-28 17:07:30 -07001729 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001730 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001731 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001732
1733 /* Rebind all subsystems back to the default hierarchy */
Tejun Heo1672d042013-06-25 18:04:54 -07001734 if (root->flags & CGRP_ROOT_SUBSYS_BOUND) {
1735 ret = rebind_subsystems(root, 0, root->subsys_mask);
1736 /* Shouldn't be able to fail ... */
1737 BUG_ON(ret);
1738 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001739
Paul Menage817929e2007-10-18 23:39:36 -07001740 /*
Tejun Heo69d02062013-06-12 21:04:50 -07001741 * Release all the links from cset_links to this hierarchy's
Paul Menage817929e2007-10-18 23:39:36 -07001742 * root cgroup
1743 */
1744 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001745
Tejun Heo69d02062013-06-12 21:04:50 -07001746 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
1747 list_del(&link->cset_link);
1748 list_del(&link->cgrp_link);
Paul Menage817929e2007-10-18 23:39:36 -07001749 kfree(link);
1750 }
1751 write_unlock(&css_set_lock);
1752
Paul Menage839ec542009-01-29 14:25:22 -08001753 if (!list_empty(&root->root_list)) {
1754 list_del(&root->root_list);
Tejun Heo9871bf92013-06-24 15:21:47 -07001755 cgroup_root_count--;
Paul Menage839ec542009-01-29 14:25:22 -08001756 }
Li Zefane5f6a862009-01-07 18:07:41 -08001757
Tejun Heofa3ca072013-04-14 11:36:56 -07001758 cgroup_exit_root_id(root);
1759
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001760 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001761 mutex_unlock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001762 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001763
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001764 simple_xattrs_free(&cgrp->xattrs);
1765
Paul Menageddbcc7e2007-10-18 23:39:30 -07001766 kill_litter_super(sb);
Tejun Heofa3ca072013-04-14 11:36:56 -07001767 cgroup_free_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001768}
1769
1770static struct file_system_type cgroup_fs_type = {
1771 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001772 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001773 .kill_sb = cgroup_kill_sb,
1774};
1775
Greg KH676db4a2010-08-05 13:53:35 -07001776static struct kobject *cgroup_kobj;
1777
Li Zefana043e3b2008-02-23 15:24:09 -08001778/**
1779 * cgroup_path - generate the path of a cgroup
1780 * @cgrp: the cgroup in question
1781 * @buf: the buffer to write the path into
1782 * @buflen: the length of the buffer
1783 *
Li Zefan65dff752013-03-01 15:01:56 +08001784 * Writes path of cgroup into buf. Returns 0 on success, -errno on error.
1785 *
1786 * We can't generate cgroup path using dentry->d_name, as accessing
1787 * dentry->name must be protected by irq-unsafe dentry->d_lock or parent
1788 * inode's i_mutex, while on the other hand cgroup_path() can be called
1789 * with some irq-safe spinlocks held.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001790 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001791int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001792{
Li Zefan65dff752013-03-01 15:01:56 +08001793 int ret = -ENAMETOOLONG;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001794 char *start;
Tejun Heofebfcef2012-11-19 08:13:36 -08001795
Tejun Heoda1f2962013-04-14 10:32:19 -07001796 if (!cgrp->parent) {
1797 if (strlcpy(buf, "/", buflen) >= buflen)
1798 return -ENAMETOOLONG;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001799 return 0;
1800 }
1801
Tao Ma316eb662012-11-08 21:36:38 +08001802 start = buf + buflen - 1;
Tao Ma316eb662012-11-08 21:36:38 +08001803 *start = '\0';
Li Zefan9a9686b2010-04-22 17:29:24 +08001804
Li Zefan65dff752013-03-01 15:01:56 +08001805 rcu_read_lock();
Tejun Heoda1f2962013-04-14 10:32:19 -07001806 do {
Li Zefan65dff752013-03-01 15:01:56 +08001807 const char *name = cgroup_name(cgrp);
1808 int len;
1809
1810 len = strlen(name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001811 if ((start -= len) < buf)
Li Zefan65dff752013-03-01 15:01:56 +08001812 goto out;
1813 memcpy(start, name, len);
Li Zefan9a9686b2010-04-22 17:29:24 +08001814
Paul Menageddbcc7e2007-10-18 23:39:30 -07001815 if (--start < buf)
Li Zefan65dff752013-03-01 15:01:56 +08001816 goto out;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001817 *start = '/';
Li Zefan65dff752013-03-01 15:01:56 +08001818
1819 cgrp = cgrp->parent;
Tejun Heoda1f2962013-04-14 10:32:19 -07001820 } while (cgrp->parent);
Li Zefan65dff752013-03-01 15:01:56 +08001821 ret = 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001822 memmove(buf, start, buf + buflen - start);
Li Zefan65dff752013-03-01 15:01:56 +08001823out:
1824 rcu_read_unlock();
1825 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001826}
Ben Blum67523c42010-03-10 15:22:11 -08001827EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001828
Tejun Heo857a2be2013-04-14 20:50:08 -07001829/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001830 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001831 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001832 * @buf: the buffer to write the path into
1833 * @buflen: the length of the buffer
1834 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001835 * Determine @task's cgroup on the first (the one with the lowest non-zero
1836 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1837 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1838 * cgroup controller callbacks.
1839 *
1840 * Returns 0 on success, fails with -%ENAMETOOLONG if @buflen is too short.
Tejun Heo857a2be2013-04-14 20:50:08 -07001841 */
Tejun Heo913ffdb2013-07-11 16:34:48 -07001842int task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001843{
1844 struct cgroupfs_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001845 struct cgroup *cgrp;
1846 int hierarchy_id = 1, ret = 0;
1847
1848 if (buflen < 2)
1849 return -ENAMETOOLONG;
Tejun Heo857a2be2013-04-14 20:50:08 -07001850
1851 mutex_lock(&cgroup_mutex);
1852
Tejun Heo913ffdb2013-07-11 16:34:48 -07001853 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1854
Tejun Heo857a2be2013-04-14 20:50:08 -07001855 if (root) {
1856 cgrp = task_cgroup_from_root(task, root);
1857 ret = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001858 } else {
1859 /* if no hierarchy exists, everyone is in "/" */
1860 memcpy(buf, "/", 2);
Tejun Heo857a2be2013-04-14 20:50:08 -07001861 }
1862
1863 mutex_unlock(&cgroup_mutex);
Tejun Heo857a2be2013-04-14 20:50:08 -07001864 return ret;
1865}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001866EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001867
Ben Blum74a11662011-05-26 16:25:20 -07001868/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001869 * Control Group taskset
1870 */
Tejun Heo134d3372011-12-12 18:12:21 -08001871struct task_and_cgroup {
1872 struct task_struct *task;
1873 struct cgroup *cgrp;
Li Zefan6f4b7e62013-07-31 16:18:36 +08001874 struct css_set *cset;
Tejun Heo134d3372011-12-12 18:12:21 -08001875};
1876
Tejun Heo2f7ee562011-12-12 18:12:21 -08001877struct cgroup_taskset {
1878 struct task_and_cgroup single;
1879 struct flex_array *tc_array;
1880 int tc_array_len;
1881 int idx;
1882 struct cgroup *cur_cgrp;
1883};
1884
1885/**
1886 * cgroup_taskset_first - reset taskset and return the first task
1887 * @tset: taskset of interest
1888 *
1889 * @tset iteration is initialized and the first task is returned.
1890 */
1891struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1892{
1893 if (tset->tc_array) {
1894 tset->idx = 0;
1895 return cgroup_taskset_next(tset);
1896 } else {
1897 tset->cur_cgrp = tset->single.cgrp;
1898 return tset->single.task;
1899 }
1900}
1901EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1902
1903/**
1904 * cgroup_taskset_next - iterate to the next task in taskset
1905 * @tset: taskset of interest
1906 *
1907 * Return the next task in @tset. Iteration must have been initialized
1908 * with cgroup_taskset_first().
1909 */
1910struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1911{
1912 struct task_and_cgroup *tc;
1913
1914 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1915 return NULL;
1916
1917 tc = flex_array_get(tset->tc_array, tset->idx++);
1918 tset->cur_cgrp = tc->cgrp;
1919 return tc->task;
1920}
1921EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1922
1923/**
Tejun Heod99c8722013-08-08 20:11:27 -04001924 * cgroup_taskset_cur_css - return the matching css for the current task
Tejun Heo2f7ee562011-12-12 18:12:21 -08001925 * @tset: taskset of interest
Tejun Heod99c8722013-08-08 20:11:27 -04001926 * @subsys_id: the ID of the target subsystem
Tejun Heo2f7ee562011-12-12 18:12:21 -08001927 *
Tejun Heod99c8722013-08-08 20:11:27 -04001928 * Return the css for the current (last returned) task of @tset for
1929 * subsystem specified by @subsys_id. This function must be preceded by
1930 * either cgroup_taskset_first() or cgroup_taskset_next().
Tejun Heo2f7ee562011-12-12 18:12:21 -08001931 */
Tejun Heod99c8722013-08-08 20:11:27 -04001932struct cgroup_subsys_state *cgroup_taskset_cur_css(struct cgroup_taskset *tset,
1933 int subsys_id)
Tejun Heo2f7ee562011-12-12 18:12:21 -08001934{
Tejun Heoca8bdca2013-08-26 18:40:56 -04001935 return cgroup_css(tset->cur_cgrp, cgroup_subsys[subsys_id]);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001936}
Tejun Heod99c8722013-08-08 20:11:27 -04001937EXPORT_SYMBOL_GPL(cgroup_taskset_cur_css);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001938
1939/**
1940 * cgroup_taskset_size - return the number of tasks in taskset
1941 * @tset: taskset of interest
1942 */
1943int cgroup_taskset_size(struct cgroup_taskset *tset)
1944{
1945 return tset->tc_array ? tset->tc_array_len : 1;
1946}
1947EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1948
1949
Ben Blum74a11662011-05-26 16:25:20 -07001950/*
1951 * cgroup_task_migrate - move a task from one cgroup to another.
1952 *
Tao Mad0b2fdd2012-11-20 22:06:18 +08001953 * Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001954 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001955static void cgroup_task_migrate(struct cgroup *old_cgrp,
1956 struct task_struct *tsk,
1957 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001958{
Tejun Heo5abb8852013-06-12 21:04:49 -07001959 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001960
1961 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001962 * We are synchronized through threadgroup_lock() against PF_EXITING
1963 * setting such that we can't race against cgroup_exit() changing the
1964 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001965 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001966 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001967 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001968
Ben Blum74a11662011-05-26 16:25:20 -07001969 task_lock(tsk);
Tejun Heo5abb8852013-06-12 21:04:49 -07001970 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001971 task_unlock(tsk);
1972
1973 /* Update the css_set linked lists if we're using them */
1974 write_lock(&css_set_lock);
1975 if (!list_empty(&tsk->cg_list))
Tejun Heo5abb8852013-06-12 21:04:49 -07001976 list_move(&tsk->cg_list, &new_cset->tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001977 write_unlock(&css_set_lock);
1978
1979 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001980 * We just gained a reference on old_cset by taking it from the
1981 * task. As trading it for new_cset is protected by cgroup_mutex,
1982 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001983 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001984 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
1985 put_css_set(old_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001986}
1987
Li Zefana043e3b2008-02-23 15:24:09 -08001988/**
Li Zefan081aa452013-03-13 09:17:09 +08001989 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
Ben Blum74a11662011-05-26 16:25:20 -07001990 * @cgrp: the cgroup to attach to
Li Zefan081aa452013-03-13 09:17:09 +08001991 * @tsk: the task or the leader of the threadgroup to be attached
1992 * @threadgroup: attach the whole threadgroup?
Ben Blum74a11662011-05-26 16:25:20 -07001993 *
Tejun Heo257058a2011-12-12 18:12:21 -08001994 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
Li Zefan081aa452013-03-13 09:17:09 +08001995 * task_lock of @tsk or each thread in the threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07001996 */
Tejun Heo47cfcd02013-04-07 09:29:51 -07001997static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk,
1998 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07001999{
2000 int retval, i, group_size;
2001 struct cgroup_subsys *ss, *failed_ss = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07002002 struct cgroupfs_root *root = cgrp->root;
2003 /* threadgroup list cursor and array */
Li Zefan081aa452013-03-13 09:17:09 +08002004 struct task_struct *leader = tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08002005 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07002006 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002007 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07002008
2009 /*
2010 * step 0: in order to do expensive, possibly blocking operations for
2011 * every thread, we cannot iterate the thread group list, since it needs
2012 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08002013 * group - group_rwsem prevents new threads from appearing, and if
2014 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07002015 */
Li Zefan081aa452013-03-13 09:17:09 +08002016 if (threadgroup)
2017 group_size = get_nr_threads(tsk);
2018 else
2019 group_size = 1;
Ben Blumd8466872011-05-26 16:25:21 -07002020 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08002021 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002022 if (!group)
2023 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002024 /* pre-allocate to guarantee space while iterating in rcu read-side. */
Li Zefan3ac17072013-03-12 15:36:00 -07002025 retval = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
Ben Blumd8466872011-05-26 16:25:21 -07002026 if (retval)
2027 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002028
Ben Blum74a11662011-05-26 16:25:20 -07002029 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002030 /*
2031 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2032 * already PF_EXITING could be freed from underneath us unless we
2033 * take an rcu_read_lock.
2034 */
2035 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07002036 do {
Tejun Heo134d3372011-12-12 18:12:21 -08002037 struct task_and_cgroup ent;
2038
Tejun Heocd3d0952011-12-12 18:12:21 -08002039 /* @tsk either already exited or can't exit until the end */
2040 if (tsk->flags & PF_EXITING)
2041 continue;
2042
Ben Blum74a11662011-05-26 16:25:20 -07002043 /* as per above, nr_threads may decrease, but not increase. */
2044 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08002045 ent.task = tsk;
2046 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002047 /* nothing to do if this task is already in the cgroup */
2048 if (ent.cgrp == cgrp)
2049 continue;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002050 /*
2051 * saying GFP_ATOMIC has no effect here because we did prealloc
2052 * earlier, but it's good form to communicate our expectations.
2053 */
Tejun Heo134d3372011-12-12 18:12:21 -08002054 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002055 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002056 i++;
Li Zefan081aa452013-03-13 09:17:09 +08002057
2058 if (!threadgroup)
2059 break;
Ben Blum74a11662011-05-26 16:25:20 -07002060 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002061 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002062 /* remember the number of threads in the array for later. */
2063 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002064 tset.tc_array = group;
2065 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07002066
Tejun Heo134d3372011-12-12 18:12:21 -08002067 /* methods shouldn't be called if no task is actually migrating */
2068 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002069 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08002070 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08002071
Ben Blum74a11662011-05-26 16:25:20 -07002072 /*
2073 * step 1: check that we can legitimately attach to the cgroup.
2074 */
Tejun Heo5549c492013-06-24 15:21:48 -07002075 for_each_root_subsys(root, ss) {
Tejun Heoca8bdca2013-08-26 18:40:56 -04002076 struct cgroup_subsys_state *css = cgroup_css(cgrp, ss);
Tejun Heoeb954192013-08-08 20:11:23 -04002077
Ben Blum74a11662011-05-26 16:25:20 -07002078 if (ss->can_attach) {
Tejun Heoeb954192013-08-08 20:11:23 -04002079 retval = ss->can_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002080 if (retval) {
2081 failed_ss = ss;
2082 goto out_cancel_attach;
2083 }
2084 }
Ben Blum74a11662011-05-26 16:25:20 -07002085 }
2086
2087 /*
2088 * step 2: make sure css_sets exist for all threads to be migrated.
2089 * we use find_css_set, which allocates a new one if necessary.
2090 */
Ben Blum74a11662011-05-26 16:25:20 -07002091 for (i = 0; i < group_size; i++) {
Tejun Heoa8ad8052013-06-21 15:52:04 -07002092 struct css_set *old_cset;
2093
Tejun Heo134d3372011-12-12 18:12:21 -08002094 tc = flex_array_get(group, i);
Tejun Heoa8ad8052013-06-21 15:52:04 -07002095 old_cset = task_css_set(tc->task);
Li Zefan6f4b7e62013-07-31 16:18:36 +08002096 tc->cset = find_css_set(old_cset, cgrp);
2097 if (!tc->cset) {
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002098 retval = -ENOMEM;
2099 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07002100 }
2101 }
2102
2103 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002104 * step 3: now that we're guaranteed success wrt the css_sets,
2105 * proceed to move all tasks to the new cgroup. There are no
2106 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002107 */
Ben Blum74a11662011-05-26 16:25:20 -07002108 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002109 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08002110 cgroup_task_migrate(tc->cgrp, tc->task, tc->cset);
Ben Blum74a11662011-05-26 16:25:20 -07002111 }
2112 /* nothing is sensitive to fork() after this point. */
2113
2114 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002115 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002116 */
Tejun Heo5549c492013-06-24 15:21:48 -07002117 for_each_root_subsys(root, ss) {
Tejun Heoca8bdca2013-08-26 18:40:56 -04002118 struct cgroup_subsys_state *css = cgroup_css(cgrp, ss);
Tejun Heoeb954192013-08-08 20:11:23 -04002119
Ben Blum74a11662011-05-26 16:25:20 -07002120 if (ss->attach)
Tejun Heoeb954192013-08-08 20:11:23 -04002121 ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002122 }
2123
2124 /*
2125 * step 5: success! and cleanup
2126 */
Ben Blum74a11662011-05-26 16:25:20 -07002127 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002128out_put_css_set_refs:
2129 if (retval) {
2130 for (i = 0; i < group_size; i++) {
2131 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08002132 if (!tc->cset)
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002133 break;
Li Zefan6f4b7e62013-07-31 16:18:36 +08002134 put_css_set(tc->cset);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002135 }
Ben Blum74a11662011-05-26 16:25:20 -07002136 }
2137out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07002138 if (retval) {
Tejun Heo5549c492013-06-24 15:21:48 -07002139 for_each_root_subsys(root, ss) {
Tejun Heoca8bdca2013-08-26 18:40:56 -04002140 struct cgroup_subsys_state *css = cgroup_css(cgrp, ss);
Tejun Heoeb954192013-08-08 20:11:23 -04002141
Tejun Heo494c1672011-12-12 18:12:22 -08002142 if (ss == failed_ss)
Ben Blum74a11662011-05-26 16:25:20 -07002143 break;
Ben Blum74a11662011-05-26 16:25:20 -07002144 if (ss->cancel_attach)
Tejun Heoeb954192013-08-08 20:11:23 -04002145 ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002146 }
2147 }
Ben Blum74a11662011-05-26 16:25:20 -07002148out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002149 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002150 return retval;
2151}
2152
2153/*
2154 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002155 * function to attach either it or all tasks in its threadgroup. Will lock
2156 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002157 */
2158static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002159{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002160 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002161 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002162 int ret;
2163
Ben Blum74a11662011-05-26 16:25:20 -07002164 if (!cgroup_lock_live_group(cgrp))
2165 return -ENODEV;
2166
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002167retry_find_task:
2168 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002169 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002170 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002171 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002172 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002173 ret= -ESRCH;
2174 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002175 }
Ben Blum74a11662011-05-26 16:25:20 -07002176 /*
2177 * even if we're attaching all tasks in the thread group, we
2178 * only need to check permissions on one of them.
2179 */
David Howellsc69e8d92008-11-14 10:39:19 +11002180 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002181 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2182 !uid_eq(cred->euid, tcred->uid) &&
2183 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002184 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002185 ret = -EACCES;
2186 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002187 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002188 } else
2189 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002190
2191 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002192 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002193
2194 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002195 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002196 * trapped in a cpuset, or RT worker may be born in a cgroup
2197 * with no rt_runtime allocated. Just say no.
2198 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002199 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002200 ret = -EINVAL;
2201 rcu_read_unlock();
2202 goto out_unlock_cgroup;
2203 }
2204
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002205 get_task_struct(tsk);
2206 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002207
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002208 threadgroup_lock(tsk);
2209 if (threadgroup) {
2210 if (!thread_group_leader(tsk)) {
2211 /*
2212 * a race with de_thread from another thread's exec()
2213 * may strip us of our leadership, if this happens,
2214 * there is no choice but to throw this task away and
2215 * try again; this is
2216 * "double-double-toil-and-trouble-check locking".
2217 */
2218 threadgroup_unlock(tsk);
2219 put_task_struct(tsk);
2220 goto retry_find_task;
2221 }
Li Zefan081aa452013-03-13 09:17:09 +08002222 }
2223
2224 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2225
Tejun Heocd3d0952011-12-12 18:12:21 -08002226 threadgroup_unlock(tsk);
2227
Paul Menagebbcb81d2007-10-18 23:39:32 -07002228 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002229out_unlock_cgroup:
Tejun Heo47cfcd02013-04-07 09:29:51 -07002230 mutex_unlock(&cgroup_mutex);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002231 return ret;
2232}
2233
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002234/**
2235 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2236 * @from: attach to all cgroups of a given task
2237 * @tsk: the task to be attached
2238 */
2239int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2240{
2241 struct cgroupfs_root *root;
2242 int retval = 0;
2243
Tejun Heo47cfcd02013-04-07 09:29:51 -07002244 mutex_lock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002245 for_each_active_root(root) {
Li Zefan6f4b7e62013-07-31 16:18:36 +08002246 struct cgroup *from_cgrp = task_cgroup_from_root(from, root);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002247
Li Zefan6f4b7e62013-07-31 16:18:36 +08002248 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002249 if (retval)
2250 break;
2251 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002252 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002253
2254 return retval;
2255}
2256EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2257
Tejun Heo182446d2013-08-08 20:11:24 -04002258static int cgroup_tasks_write(struct cgroup_subsys_state *css,
2259 struct cftype *cft, u64 pid)
Paul Menageaf351022008-07-25 01:47:01 -07002260{
Tejun Heo182446d2013-08-08 20:11:24 -04002261 return attach_task_by_pid(css->cgroup, pid, false);
Ben Blum74a11662011-05-26 16:25:20 -07002262}
2263
Tejun Heo182446d2013-08-08 20:11:24 -04002264static int cgroup_procs_write(struct cgroup_subsys_state *css,
2265 struct cftype *cft, u64 tgid)
Ben Blum74a11662011-05-26 16:25:20 -07002266{
Tejun Heo182446d2013-08-08 20:11:24 -04002267 return attach_task_by_pid(css->cgroup, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002268}
2269
Tejun Heo182446d2013-08-08 20:11:24 -04002270static int cgroup_release_agent_write(struct cgroup_subsys_state *css,
2271 struct cftype *cft, const char *buffer)
Paul Menagee788e062008-07-25 01:46:59 -07002272{
Tejun Heo182446d2013-08-08 20:11:24 -04002273 BUILD_BUG_ON(sizeof(css->cgroup->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002274 if (strlen(buffer) >= PATH_MAX)
2275 return -EINVAL;
Tejun Heo182446d2013-08-08 20:11:24 -04002276 if (!cgroup_lock_live_group(css->cgroup))
Paul Menagee788e062008-07-25 01:46:59 -07002277 return -ENODEV;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002278 mutex_lock(&cgroup_root_mutex);
Tejun Heo182446d2013-08-08 20:11:24 -04002279 strcpy(css->cgroup->root->release_agent_path, buffer);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002280 mutex_unlock(&cgroup_root_mutex);
Tejun Heo47cfcd02013-04-07 09:29:51 -07002281 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002282 return 0;
2283}
2284
Tejun Heo182446d2013-08-08 20:11:24 -04002285static int cgroup_release_agent_show(struct cgroup_subsys_state *css,
2286 struct cftype *cft, struct seq_file *seq)
Paul Menagee788e062008-07-25 01:46:59 -07002287{
Tejun Heo182446d2013-08-08 20:11:24 -04002288 struct cgroup *cgrp = css->cgroup;
2289
Paul Menagee788e062008-07-25 01:46:59 -07002290 if (!cgroup_lock_live_group(cgrp))
2291 return -ENODEV;
2292 seq_puts(seq, cgrp->root->release_agent_path);
2293 seq_putc(seq, '\n');
Tejun Heo47cfcd02013-04-07 09:29:51 -07002294 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002295 return 0;
2296}
2297
Tejun Heo182446d2013-08-08 20:11:24 -04002298static int cgroup_sane_behavior_show(struct cgroup_subsys_state *css,
2299 struct cftype *cft, struct seq_file *seq)
Tejun Heo873fe092013-04-14 20:15:26 -07002300{
Tejun Heo182446d2013-08-08 20:11:24 -04002301 seq_printf(seq, "%d\n", cgroup_sane_behavior(css->cgroup));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002302 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002303}
2304
Paul Menage84eea842008-07-25 01:47:00 -07002305/* A buffer size big enough for numbers or short strings */
2306#define CGROUP_LOCAL_BUFFER_SIZE 64
2307
Tejun Heo182446d2013-08-08 20:11:24 -04002308static ssize_t cgroup_write_X64(struct cgroup_subsys_state *css,
2309 struct cftype *cft, struct file *file,
2310 const char __user *userbuf, size_t nbytes,
2311 loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002312{
Paul Menage84eea842008-07-25 01:47:00 -07002313 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002314 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002315 char *end;
2316
2317 if (!nbytes)
2318 return -EINVAL;
2319 if (nbytes >= sizeof(buffer))
2320 return -E2BIG;
2321 if (copy_from_user(buffer, userbuf, nbytes))
2322 return -EFAULT;
2323
2324 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002325 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002326 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002327 if (*end)
2328 return -EINVAL;
Tejun Heo182446d2013-08-08 20:11:24 -04002329 retval = cft->write_u64(css, cft, val);
Paul Menagee73d2c62008-04-29 01:00:06 -07002330 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002331 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002332 if (*end)
2333 return -EINVAL;
Tejun Heo182446d2013-08-08 20:11:24 -04002334 retval = cft->write_s64(css, cft, val);
Paul Menagee73d2c62008-04-29 01:00:06 -07002335 }
Paul Menage355e0c42007-10-18 23:39:33 -07002336 if (!retval)
2337 retval = nbytes;
2338 return retval;
2339}
2340
Tejun Heo182446d2013-08-08 20:11:24 -04002341static ssize_t cgroup_write_string(struct cgroup_subsys_state *css,
2342 struct cftype *cft, struct file *file,
2343 const char __user *userbuf, size_t nbytes,
2344 loff_t *unused_ppos)
Paul Menagedb3b1492008-07-25 01:46:58 -07002345{
Paul Menage84eea842008-07-25 01:47:00 -07002346 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002347 int retval = 0;
2348 size_t max_bytes = cft->max_write_len;
2349 char *buffer = local_buffer;
2350
2351 if (!max_bytes)
2352 max_bytes = sizeof(local_buffer) - 1;
2353 if (nbytes >= max_bytes)
2354 return -E2BIG;
2355 /* Allocate a dynamic buffer if we need one */
2356 if (nbytes >= sizeof(local_buffer)) {
2357 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2358 if (buffer == NULL)
2359 return -ENOMEM;
2360 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002361 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2362 retval = -EFAULT;
2363 goto out;
2364 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002365
2366 buffer[nbytes] = 0; /* nul-terminate */
Tejun Heo182446d2013-08-08 20:11:24 -04002367 retval = cft->write_string(css, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002368 if (!retval)
2369 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002370out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002371 if (buffer != local_buffer)
2372 kfree(buffer);
2373 return retval;
2374}
2375
Paul Menageddbcc7e2007-10-18 23:39:30 -07002376static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
Tejun Heo182446d2013-08-08 20:11:24 -04002377 size_t nbytes, loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002378{
Tejun Heo182446d2013-08-08 20:11:24 -04002379 struct cfent *cfe = __d_cfe(file->f_dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002380 struct cftype *cft = __d_cft(file->f_dentry);
Tejun Heo105347b2013-08-13 11:01:55 -04002381 struct cgroup_subsys_state *css = cfe->css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002382
Paul Menage355e0c42007-10-18 23:39:33 -07002383 if (cft->write)
Tejun Heo182446d2013-08-08 20:11:24 -04002384 return cft->write(css, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002385 if (cft->write_u64 || cft->write_s64)
Tejun Heo182446d2013-08-08 20:11:24 -04002386 return cgroup_write_X64(css, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002387 if (cft->write_string)
Tejun Heo182446d2013-08-08 20:11:24 -04002388 return cgroup_write_string(css, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002389 if (cft->trigger) {
Tejun Heo182446d2013-08-08 20:11:24 -04002390 int ret = cft->trigger(css, (unsigned int)cft->private);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002391 return ret ? ret : nbytes;
2392 }
Paul Menage355e0c42007-10-18 23:39:33 -07002393 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002394}
2395
Tejun Heo182446d2013-08-08 20:11:24 -04002396static ssize_t cgroup_read_u64(struct cgroup_subsys_state *css,
2397 struct cftype *cft, struct file *file,
2398 char __user *buf, size_t nbytes, loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002399{
Paul Menage84eea842008-07-25 01:47:00 -07002400 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Tejun Heo182446d2013-08-08 20:11:24 -04002401 u64 val = cft->read_u64(css, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002402 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2403
2404 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2405}
2406
Tejun Heo182446d2013-08-08 20:11:24 -04002407static ssize_t cgroup_read_s64(struct cgroup_subsys_state *css,
2408 struct cftype *cft, struct file *file,
2409 char __user *buf, size_t nbytes, loff_t *ppos)
Paul Menagee73d2c62008-04-29 01:00:06 -07002410{
Paul Menage84eea842008-07-25 01:47:00 -07002411 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Tejun Heo182446d2013-08-08 20:11:24 -04002412 s64 val = cft->read_s64(css, cft);
Paul Menagee73d2c62008-04-29 01:00:06 -07002413 int len = sprintf(tmp, "%lld\n", (long long) val);
2414
2415 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2416}
2417
Paul Menageddbcc7e2007-10-18 23:39:30 -07002418static ssize_t cgroup_file_read(struct file *file, char __user *buf,
Tejun Heo182446d2013-08-08 20:11:24 -04002419 size_t nbytes, loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002420{
Tejun Heo182446d2013-08-08 20:11:24 -04002421 struct cfent *cfe = __d_cfe(file->f_dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002422 struct cftype *cft = __d_cft(file->f_dentry);
Tejun Heo105347b2013-08-13 11:01:55 -04002423 struct cgroup_subsys_state *css = cfe->css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002424
2425 if (cft->read)
Tejun Heo182446d2013-08-08 20:11:24 -04002426 return cft->read(css, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002427 if (cft->read_u64)
Tejun Heo182446d2013-08-08 20:11:24 -04002428 return cgroup_read_u64(css, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002429 if (cft->read_s64)
Tejun Heo182446d2013-08-08 20:11:24 -04002430 return cgroup_read_s64(css, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002431 return -EINVAL;
2432}
2433
Paul Menage91796562008-04-29 01:00:01 -07002434/*
2435 * seqfile ops/methods for returning structured data. Currently just
2436 * supports string->u64 maps, but can be extended in future.
2437 */
2438
Paul Menage91796562008-04-29 01:00:01 -07002439static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2440{
2441 struct seq_file *sf = cb->state;
2442 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2443}
2444
2445static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2446{
Li Zefane0798ce2013-07-31 17:36:25 +08002447 struct cfent *cfe = m->private;
2448 struct cftype *cft = cfe->type;
Tejun Heo105347b2013-08-13 11:01:55 -04002449 struct cgroup_subsys_state *css = cfe->css;
Li Zefane0798ce2013-07-31 17:36:25 +08002450
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002451 if (cft->read_map) {
2452 struct cgroup_map_cb cb = {
2453 .fill = cgroup_map_add,
2454 .state = m,
2455 };
Tejun Heo182446d2013-08-08 20:11:24 -04002456 return cft->read_map(css, cft, &cb);
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002457 }
Tejun Heo182446d2013-08-08 20:11:24 -04002458 return cft->read_seq_string(css, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002459}
2460
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002461static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002462 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002463 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002464 .llseek = seq_lseek,
Li Zefane0798ce2013-07-31 17:36:25 +08002465 .release = single_release,
Paul Menage91796562008-04-29 01:00:01 -07002466};
2467
Paul Menageddbcc7e2007-10-18 23:39:30 -07002468static int cgroup_file_open(struct inode *inode, struct file *file)
2469{
Tejun Heof7d58812013-08-08 20:11:23 -04002470 struct cfent *cfe = __d_cfe(file->f_dentry);
2471 struct cftype *cft = __d_cft(file->f_dentry);
Tejun Heo105347b2013-08-13 11:01:55 -04002472 struct cgroup *cgrp = __d_cgrp(cfe->dentry->d_parent);
2473 struct cgroup_subsys_state *css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002474 int err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002475
2476 err = generic_file_open(inode, file);
2477 if (err)
2478 return err;
Tejun Heof7d58812013-08-08 20:11:23 -04002479
2480 /*
2481 * If the file belongs to a subsystem, pin the css. Will be
2482 * unpinned either on open failure or release. This ensures that
2483 * @css stays alive for all file operations.
2484 */
Tejun Heo105347b2013-08-13 11:01:55 -04002485 rcu_read_lock();
Tejun Heoca8bdca2013-08-26 18:40:56 -04002486 css = cgroup_css(cgrp, cft->ss);
2487 if (cft->ss && !css_tryget(css))
2488 css = NULL;
Tejun Heo105347b2013-08-13 11:01:55 -04002489 rcu_read_unlock();
2490
Tejun Heo0bfb4aa2013-08-15 11:42:36 -04002491 if (!css)
Tejun Heof7d58812013-08-08 20:11:23 -04002492 return -ENODEV;
Li Zefan75139b82009-01-07 18:07:33 -08002493
Tejun Heo0bfb4aa2013-08-15 11:42:36 -04002494 /*
2495 * @cfe->css is used by read/write/close to determine the
2496 * associated css. @file->private_data would be a better place but
2497 * that's already used by seqfile. Multiple accessors may use it
2498 * simultaneously which is okay as the association never changes.
2499 */
2500 WARN_ON_ONCE(cfe->css && cfe->css != css);
2501 cfe->css = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002502
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002503 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002504 file->f_op = &cgroup_seqfile_operations;
Li Zefane0798ce2013-07-31 17:36:25 +08002505 err = single_open(file, cgroup_seqfile_show, cfe);
2506 } else if (cft->open) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002507 err = cft->open(inode, file);
Li Zefane0798ce2013-07-31 17:36:25 +08002508 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002509
Tejun Heo67f4c362013-08-08 20:11:24 -04002510 if (css->ss && err)
Tejun Heof7d58812013-08-08 20:11:23 -04002511 css_put(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002512 return err;
2513}
2514
2515static int cgroup_file_release(struct inode *inode, struct file *file)
2516{
Tejun Heof7d58812013-08-08 20:11:23 -04002517 struct cfent *cfe = __d_cfe(file->f_dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002518 struct cftype *cft = __d_cft(file->f_dentry);
Tejun Heo105347b2013-08-13 11:01:55 -04002519 struct cgroup_subsys_state *css = cfe->css;
Tejun Heof7d58812013-08-08 20:11:23 -04002520 int ret = 0;
2521
Paul Menageddbcc7e2007-10-18 23:39:30 -07002522 if (cft->release)
Tejun Heof7d58812013-08-08 20:11:23 -04002523 ret = cft->release(inode, file);
Tejun Heo67f4c362013-08-08 20:11:24 -04002524 if (css->ss)
Tejun Heof7d58812013-08-08 20:11:23 -04002525 css_put(css);
2526 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002527}
2528
2529/*
2530 * cgroup_rename - Only allow simple rename of directories in place.
2531 */
2532static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2533 struct inode *new_dir, struct dentry *new_dentry)
2534{
Li Zefan65dff752013-03-01 15:01:56 +08002535 int ret;
2536 struct cgroup_name *name, *old_name;
2537 struct cgroup *cgrp;
2538
2539 /*
2540 * It's convinient to use parent dir's i_mutex to protected
2541 * cgrp->name.
2542 */
2543 lockdep_assert_held(&old_dir->i_mutex);
2544
Paul Menageddbcc7e2007-10-18 23:39:30 -07002545 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2546 return -ENOTDIR;
2547 if (new_dentry->d_inode)
2548 return -EEXIST;
2549 if (old_dir != new_dir)
2550 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002551
2552 cgrp = __d_cgrp(old_dentry);
2553
Tejun Heo6db8e852013-06-14 11:18:22 -07002554 /*
2555 * This isn't a proper migration and its usefulness is very
2556 * limited. Disallow if sane_behavior.
2557 */
2558 if (cgroup_sane_behavior(cgrp))
2559 return -EPERM;
2560
Li Zefan65dff752013-03-01 15:01:56 +08002561 name = cgroup_alloc_name(new_dentry);
2562 if (!name)
2563 return -ENOMEM;
2564
2565 ret = simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2566 if (ret) {
2567 kfree(name);
2568 return ret;
2569 }
2570
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07002571 old_name = rcu_dereference_protected(cgrp->name, true);
Li Zefan65dff752013-03-01 15:01:56 +08002572 rcu_assign_pointer(cgrp->name, name);
2573
2574 kfree_rcu(old_name, rcu_head);
2575 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002576}
2577
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002578static struct simple_xattrs *__d_xattrs(struct dentry *dentry)
2579{
2580 if (S_ISDIR(dentry->d_inode->i_mode))
2581 return &__d_cgrp(dentry)->xattrs;
2582 else
Li Zefan712317a2013-04-18 23:09:52 -07002583 return &__d_cfe(dentry)->xattrs;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002584}
2585
2586static inline int xattr_enabled(struct dentry *dentry)
2587{
2588 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Tejun Heo93438622013-04-14 20:15:25 -07002589 return root->flags & CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002590}
2591
2592static bool is_valid_xattr(const char *name)
2593{
2594 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
2595 !strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN))
2596 return true;
2597 return false;
2598}
2599
2600static int cgroup_setxattr(struct dentry *dentry, const char *name,
2601 const void *val, size_t size, int flags)
2602{
2603 if (!xattr_enabled(dentry))
2604 return -EOPNOTSUPP;
2605 if (!is_valid_xattr(name))
2606 return -EINVAL;
2607 return simple_xattr_set(__d_xattrs(dentry), name, val, size, flags);
2608}
2609
2610static int cgroup_removexattr(struct dentry *dentry, const char *name)
2611{
2612 if (!xattr_enabled(dentry))
2613 return -EOPNOTSUPP;
2614 if (!is_valid_xattr(name))
2615 return -EINVAL;
2616 return simple_xattr_remove(__d_xattrs(dentry), name);
2617}
2618
2619static ssize_t cgroup_getxattr(struct dentry *dentry, const char *name,
2620 void *buf, size_t size)
2621{
2622 if (!xattr_enabled(dentry))
2623 return -EOPNOTSUPP;
2624 if (!is_valid_xattr(name))
2625 return -EINVAL;
2626 return simple_xattr_get(__d_xattrs(dentry), name, buf, size);
2627}
2628
2629static ssize_t cgroup_listxattr(struct dentry *dentry, char *buf, size_t size)
2630{
2631 if (!xattr_enabled(dentry))
2632 return -EOPNOTSUPP;
2633 return simple_xattr_list(__d_xattrs(dentry), buf, size);
2634}
2635
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002636static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002637 .read = cgroup_file_read,
2638 .write = cgroup_file_write,
2639 .llseek = generic_file_llseek,
2640 .open = cgroup_file_open,
2641 .release = cgroup_file_release,
2642};
2643
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002644static const struct inode_operations cgroup_file_inode_operations = {
2645 .setxattr = cgroup_setxattr,
2646 .getxattr = cgroup_getxattr,
2647 .listxattr = cgroup_listxattr,
2648 .removexattr = cgroup_removexattr,
2649};
2650
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002651static const struct inode_operations cgroup_dir_inode_operations = {
Al Viro786e1442013-07-14 17:50:23 +04002652 .lookup = simple_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002653 .mkdir = cgroup_mkdir,
2654 .rmdir = cgroup_rmdir,
2655 .rename = cgroup_rename,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002656 .setxattr = cgroup_setxattr,
2657 .getxattr = cgroup_getxattr,
2658 .listxattr = cgroup_listxattr,
2659 .removexattr = cgroup_removexattr,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002660};
2661
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002662/*
2663 * Check if a file is a control file
2664 */
2665static inline struct cftype *__file_cft(struct file *file)
2666{
Al Viro496ad9a2013-01-23 17:07:38 -05002667 if (file_inode(file)->i_fop != &cgroup_file_operations)
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002668 return ERR_PTR(-EINVAL);
2669 return __d_cft(file->f_dentry);
2670}
2671
Al Viroa5e7ed32011-07-26 01:55:55 -04002672static int cgroup_create_file(struct dentry *dentry, umode_t mode,
Nick Piggin5adcee12011-01-07 17:49:20 +11002673 struct super_block *sb)
2674{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002675 struct inode *inode;
2676
2677 if (!dentry)
2678 return -ENOENT;
2679 if (dentry->d_inode)
2680 return -EEXIST;
2681
2682 inode = cgroup_new_inode(mode, sb);
2683 if (!inode)
2684 return -ENOMEM;
2685
2686 if (S_ISDIR(mode)) {
2687 inode->i_op = &cgroup_dir_inode_operations;
2688 inode->i_fop = &simple_dir_operations;
2689
2690 /* start off with i_nlink == 2 (for "." entry) */
2691 inc_nlink(inode);
Tejun Heo28fd6f32012-11-19 08:13:36 -08002692 inc_nlink(dentry->d_parent->d_inode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002693
Tejun Heob8a2df62012-11-19 08:13:37 -08002694 /*
2695 * Control reaches here with cgroup_mutex held.
2696 * @inode->i_mutex should nest outside cgroup_mutex but we
2697 * want to populate it immediately without releasing
2698 * cgroup_mutex. As @inode isn't visible to anyone else
2699 * yet, trylock will always succeed without affecting
2700 * lockdep checks.
2701 */
2702 WARN_ON_ONCE(!mutex_trylock(&inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07002703 } else if (S_ISREG(mode)) {
2704 inode->i_size = 0;
2705 inode->i_fop = &cgroup_file_operations;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002706 inode->i_op = &cgroup_file_inode_operations;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002707 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002708 d_instantiate(dentry, inode);
2709 dget(dentry); /* Extra count - pin the dentry in core */
2710 return 0;
2711}
2712
Li Zefan099fca32009-04-02 16:57:29 -07002713/**
2714 * cgroup_file_mode - deduce file mode of a control file
2715 * @cft: the control file in question
2716 *
2717 * returns cft->mode if ->mode is not 0
2718 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2719 * returns S_IRUGO if it has only a read handler
2720 * returns S_IWUSR if it has only a write hander
2721 */
Al Viroa5e7ed32011-07-26 01:55:55 -04002722static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan099fca32009-04-02 16:57:29 -07002723{
Al Viroa5e7ed32011-07-26 01:55:55 -04002724 umode_t mode = 0;
Li Zefan099fca32009-04-02 16:57:29 -07002725
2726 if (cft->mode)
2727 return cft->mode;
2728
2729 if (cft->read || cft->read_u64 || cft->read_s64 ||
2730 cft->read_map || cft->read_seq_string)
2731 mode |= S_IRUGO;
2732
2733 if (cft->write || cft->write_u64 || cft->write_s64 ||
2734 cft->write_string || cft->trigger)
2735 mode |= S_IWUSR;
2736
2737 return mode;
2738}
2739
Tejun Heo2bb566c2013-08-08 20:11:23 -04002740static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002741{
Paul Menagebd89aab2007-10-18 23:40:44 -07002742 struct dentry *dir = cgrp->dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002743 struct cgroup *parent = __d_cgrp(dir);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002744 struct dentry *dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002745 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002746 int error;
Al Viroa5e7ed32011-07-26 01:55:55 -04002747 umode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002748 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Tejun Heo8e3f6542012-04-01 12:09:55 -07002749
Tejun Heo9fa4db32013-08-26 18:40:56 -04002750 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
2751 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX)) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002752 strcpy(name, cft->ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002753 strcat(name, ".");
2754 }
2755 strcat(name, cft->name);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002756
Paul Menageddbcc7e2007-10-18 23:39:30 -07002757 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002758
2759 cfe = kzalloc(sizeof(*cfe), GFP_KERNEL);
2760 if (!cfe)
2761 return -ENOMEM;
2762
Paul Menageddbcc7e2007-10-18 23:39:30 -07002763 dentry = lookup_one_len(name, dir, strlen(name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002764 if (IS_ERR(dentry)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002765 error = PTR_ERR(dentry);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002766 goto out;
2767 }
2768
Li Zefand6cbf352013-05-14 19:44:20 +08002769 cfe->type = (void *)cft;
2770 cfe->dentry = dentry;
2771 dentry->d_fsdata = cfe;
2772 simple_xattrs_init(&cfe->xattrs);
2773
Tejun Heo05ef1d72012-04-01 12:09:56 -07002774 mode = cgroup_file_mode(cft);
2775 error = cgroup_create_file(dentry, mode | S_IFREG, cgrp->root->sb);
2776 if (!error) {
Tejun Heo05ef1d72012-04-01 12:09:56 -07002777 list_add_tail(&cfe->node, &parent->files);
2778 cfe = NULL;
2779 }
2780 dput(dentry);
2781out:
2782 kfree(cfe);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002783 return error;
2784}
2785
Tejun Heob1f28d32013-06-28 16:24:10 -07002786/**
2787 * cgroup_addrm_files - add or remove files to a cgroup directory
2788 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002789 * @cfts: array of cftypes to be added
2790 * @is_add: whether to add or remove
2791 *
2792 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002793 * For removals, this function never fails. If addition fails, this
2794 * function doesn't remove files already added. The caller is responsible
2795 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002796 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002797static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2798 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002799{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002800 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002801 int ret;
2802
2803 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
2804 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002805
2806 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002807 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo873fe092013-04-14 20:15:26 -07002808 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2809 continue;
Gao fengf33fddc2012-12-06 14:38:57 +08002810 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2811 continue;
2812 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2813 continue;
2814
Li Zefan2739d3c2013-01-21 18:18:33 +08002815 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002816 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002817 if (ret) {
Li Zefan2739d3c2013-01-21 18:18:33 +08002818 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
Tejun Heob1f28d32013-06-28 16:24:10 -07002819 cft->name, ret);
2820 return ret;
2821 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002822 } else {
2823 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002824 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002825 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002826 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002827}
2828
Tejun Heo8e3f6542012-04-01 12:09:55 -07002829static void cgroup_cfts_prepare(void)
Li Zefane8c82d22013-06-18 18:48:37 +08002830 __acquires(&cgroup_mutex)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002831{
2832 /*
2833 * Thanks to the entanglement with vfs inode locking, we can't walk
2834 * the existing cgroups under cgroup_mutex and create files.
Tejun Heo492eb212013-08-08 20:11:25 -04002835 * Instead, we use css_for_each_descendant_pre() and drop RCU read
2836 * lock before calling cgroup_addrm_files().
Tejun Heo8e3f6542012-04-01 12:09:55 -07002837 */
Tejun Heo8e3f6542012-04-01 12:09:55 -07002838 mutex_lock(&cgroup_mutex);
2839}
2840
Tejun Heo2bb566c2013-08-08 20:11:23 -04002841static int cgroup_cfts_commit(struct cftype *cfts, bool is_add)
Li Zefane8c82d22013-06-18 18:48:37 +08002842 __releases(&cgroup_mutex)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002843{
2844 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002845 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo492eb212013-08-08 20:11:25 -04002846 struct cgroup *root = &ss->root->top_cgroup;
Li Zefan084457f2013-06-18 18:40:19 +08002847 struct super_block *sb = ss->root->sb;
Li Zefane8c82d22013-06-18 18:48:37 +08002848 struct dentry *prev = NULL;
2849 struct inode *inode;
Tejun Heo492eb212013-08-08 20:11:25 -04002850 struct cgroup_subsys_state *css;
Tejun Heo00356bd2013-06-18 11:14:22 -07002851 u64 update_before;
Tejun Heo9ccece82013-06-28 16:24:11 -07002852 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002853
2854 /* %NULL @cfts indicates abort and don't bother if @ss isn't attached */
Tejun Heo9871bf92013-06-24 15:21:47 -07002855 if (!cfts || ss->root == &cgroup_dummy_root ||
Li Zefane8c82d22013-06-18 18:48:37 +08002856 !atomic_inc_not_zero(&sb->s_active)) {
2857 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07002858 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002859 }
2860
Li Zefane8c82d22013-06-18 18:48:37 +08002861 /*
2862 * All cgroups which are created after we drop cgroup_mutex will
2863 * have the updated set of files, so we only need to update the
Tejun Heo00356bd2013-06-18 11:14:22 -07002864 * cgroups created before the current @cgroup_serial_nr_next.
Li Zefane8c82d22013-06-18 18:48:37 +08002865 */
Tejun Heo00356bd2013-06-18 11:14:22 -07002866 update_before = cgroup_serial_nr_next;
Li Zefane8c82d22013-06-18 18:48:37 +08002867
Tejun Heo8e3f6542012-04-01 12:09:55 -07002868 mutex_unlock(&cgroup_mutex);
2869
Li Zefane8c82d22013-06-18 18:48:37 +08002870 /* add/rm files for all cgroups created before */
2871 rcu_read_lock();
Tejun Heoca8bdca2013-08-26 18:40:56 -04002872 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002873 struct cgroup *cgrp = css->cgroup;
2874
Li Zefane8c82d22013-06-18 18:48:37 +08002875 if (cgroup_is_dead(cgrp))
2876 continue;
2877
2878 inode = cgrp->dentry->d_inode;
2879 dget(cgrp->dentry);
2880 rcu_read_unlock();
2881
2882 dput(prev);
2883 prev = cgrp->dentry;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002884
2885 mutex_lock(&inode->i_mutex);
2886 mutex_lock(&cgroup_mutex);
Tejun Heo00356bd2013-06-18 11:14:22 -07002887 if (cgrp->serial_nr < update_before && !cgroup_is_dead(cgrp))
Tejun Heo2bb566c2013-08-08 20:11:23 -04002888 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002889 mutex_unlock(&cgroup_mutex);
2890 mutex_unlock(&inode->i_mutex);
2891
Li Zefane8c82d22013-06-18 18:48:37 +08002892 rcu_read_lock();
Tejun Heo9ccece82013-06-28 16:24:11 -07002893 if (ret)
2894 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002895 }
Li Zefane8c82d22013-06-18 18:48:37 +08002896 rcu_read_unlock();
2897 dput(prev);
2898 deactivate_super(sb);
Tejun Heo9ccece82013-06-28 16:24:11 -07002899 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002900}
2901
2902/**
2903 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2904 * @ss: target cgroup subsystem
2905 * @cfts: zero-length name terminated array of cftypes
2906 *
2907 * Register @cfts to @ss. Files described by @cfts are created for all
2908 * existing cgroups to which @ss is attached and all future cgroups will
2909 * have them too. This function can be called anytime whether @ss is
2910 * attached or not.
2911 *
2912 * Returns 0 on successful registration, -errno on failure. Note that this
2913 * function currently returns 0 as long as @cfts registration is successful
2914 * even if some file creation attempts on existing cgroups fail.
2915 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002916int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002917{
2918 struct cftype_set *set;
Tejun Heo2bb566c2013-08-08 20:11:23 -04002919 struct cftype *cft;
Tejun Heo9ccece82013-06-28 16:24:11 -07002920 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002921
2922 set = kzalloc(sizeof(*set), GFP_KERNEL);
2923 if (!set)
2924 return -ENOMEM;
2925
Tejun Heo2bb566c2013-08-08 20:11:23 -04002926 for (cft = cfts; cft->name[0] != '\0'; cft++)
2927 cft->ss = ss;
2928
Tejun Heo8e3f6542012-04-01 12:09:55 -07002929 cgroup_cfts_prepare();
2930 set->cfts = cfts;
2931 list_add_tail(&set->node, &ss->cftsets);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002932 ret = cgroup_cfts_commit(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07002933 if (ret)
Tejun Heo2bb566c2013-08-08 20:11:23 -04002934 cgroup_rm_cftypes(cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07002935 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002936}
2937EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2938
Li Zefana043e3b2008-02-23 15:24:09 -08002939/**
Tejun Heo79578622012-04-01 12:09:56 -07002940 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
Tejun Heo79578622012-04-01 12:09:56 -07002941 * @cfts: zero-length name terminated array of cftypes
2942 *
Tejun Heo2bb566c2013-08-08 20:11:23 -04002943 * Unregister @cfts. Files described by @cfts are removed from all
2944 * existing cgroups and all future cgroups won't have them either. This
2945 * function can be called anytime whether @cfts' subsys is attached or not.
Tejun Heo79578622012-04-01 12:09:56 -07002946 *
2947 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
Tejun Heo2bb566c2013-08-08 20:11:23 -04002948 * registered.
Tejun Heo79578622012-04-01 12:09:56 -07002949 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002950int cgroup_rm_cftypes(struct cftype *cfts)
Tejun Heo79578622012-04-01 12:09:56 -07002951{
2952 struct cftype_set *set;
2953
Tejun Heo2bb566c2013-08-08 20:11:23 -04002954 if (!cfts || !cfts[0].ss)
2955 return -ENOENT;
2956
Tejun Heo79578622012-04-01 12:09:56 -07002957 cgroup_cfts_prepare();
2958
Tejun Heo2bb566c2013-08-08 20:11:23 -04002959 list_for_each_entry(set, &cfts[0].ss->cftsets, node) {
Tejun Heo79578622012-04-01 12:09:56 -07002960 if (set->cfts == cfts) {
Li Zefanf57947d2013-06-18 18:41:53 +08002961 list_del(&set->node);
2962 kfree(set);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002963 cgroup_cfts_commit(cfts, false);
Tejun Heo79578622012-04-01 12:09:56 -07002964 return 0;
2965 }
2966 }
2967
Tejun Heo2bb566c2013-08-08 20:11:23 -04002968 cgroup_cfts_commit(NULL, false);
Tejun Heo79578622012-04-01 12:09:56 -07002969 return -ENOENT;
2970}
2971
2972/**
Li Zefana043e3b2008-02-23 15:24:09 -08002973 * cgroup_task_count - count the number of tasks in a cgroup.
2974 * @cgrp: the cgroup in question
2975 *
2976 * Return the number of tasks in the cgroup.
2977 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002978int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002979{
2980 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07002981 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002982
Paul Menage817929e2007-10-18 23:39:36 -07002983 read_lock(&css_set_lock);
Tejun Heo69d02062013-06-12 21:04:50 -07002984 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2985 count += atomic_read(&link->cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002986 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002987 return count;
2988}
2989
2990/*
Tejun Heo0942eee2013-08-08 20:11:26 -04002991 * To reduce the fork() overhead for systems that are not actually using
2992 * their cgroups capability, we don't maintain the lists running through
2993 * each css_set to its tasks until we see the list actually used - in other
Tejun Heo72ec7022013-08-08 20:11:26 -04002994 * words after the first call to css_task_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002995 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002996static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002997{
2998 struct task_struct *p, *g;
2999 write_lock(&css_set_lock);
3000 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01003001 /*
3002 * We need tasklist_lock because RCU is not safe against
3003 * while_each_thread(). Besides, a forking task that has passed
3004 * cgroup_post_fork() without seeing use_task_css_set_links = 1
3005 * is not guaranteed to have its child immediately visible in the
3006 * tasklist if we walk through it with RCU.
3007 */
3008 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003009 do_each_thread(g, p) {
3010 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08003011 /*
3012 * We should check if the process is exiting, otherwise
3013 * it will race with cgroup_exit() in that the list
3014 * entry won't be deleted though the process has exited.
3015 */
3016 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07003017 list_add(&p->cg_list, &task_css_set(p)->tasks);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003018 task_unlock(p);
3019 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01003020 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003021 write_unlock(&css_set_lock);
3022}
3023
Tejun Heo574bd9f2012-11-09 09:12:29 -08003024/**
Tejun Heo492eb212013-08-08 20:11:25 -04003025 * css_next_child - find the next child of a given css
3026 * @pos_css: the current position (%NULL to initiate traversal)
3027 * @parent_css: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003028 *
Tejun Heo492eb212013-08-08 20:11:25 -04003029 * This function returns the next child of @parent_css and should be called
3030 * under RCU read lock. The only requirement is that @parent_css and
3031 * @pos_css are accessible. The next sibling is guaranteed to be returned
3032 * regardless of their states.
Tejun Heo53fa5262013-05-24 10:55:38 +09003033 */
Tejun Heo492eb212013-08-08 20:11:25 -04003034struct cgroup_subsys_state *
3035css_next_child(struct cgroup_subsys_state *pos_css,
3036 struct cgroup_subsys_state *parent_css)
Tejun Heo53fa5262013-05-24 10:55:38 +09003037{
Tejun Heo492eb212013-08-08 20:11:25 -04003038 struct cgroup *pos = pos_css ? pos_css->cgroup : NULL;
3039 struct cgroup *cgrp = parent_css->cgroup;
Tejun Heo53fa5262013-05-24 10:55:38 +09003040 struct cgroup *next;
3041
3042 WARN_ON_ONCE(!rcu_read_lock_held());
3043
3044 /*
3045 * @pos could already have been removed. Once a cgroup is removed,
3046 * its ->sibling.next is no longer updated when its next sibling
Tejun Heoea15f8c2013-06-13 19:27:42 -07003047 * changes. As CGRP_DEAD assertion is serialized and happens
3048 * before the cgroup is taken off the ->sibling list, if we see it
3049 * unasserted, it's guaranteed that the next sibling hasn't
3050 * finished its grace period even if it's already removed, and thus
3051 * safe to dereference from this RCU critical section. If
3052 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
3053 * to be visible as %true here.
Tejun Heo3b287a52013-08-08 20:11:24 -04003054 *
3055 * If @pos is dead, its next pointer can't be dereferenced;
3056 * however, as each cgroup is given a monotonically increasing
3057 * unique serial number and always appended to the sibling list,
3058 * the next one can be found by walking the parent's children until
3059 * we see a cgroup with higher serial number than @pos's. While
3060 * this path can be slower, it's taken only when either the current
3061 * cgroup is removed or iteration and removal race.
Tejun Heo53fa5262013-05-24 10:55:38 +09003062 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003063 if (!pos) {
3064 next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling);
3065 } else if (likely(!cgroup_is_dead(pos))) {
Tejun Heo53fa5262013-05-24 10:55:38 +09003066 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003067 } else {
3068 list_for_each_entry_rcu(next, &cgrp->children, sibling)
3069 if (next->serial_nr > pos->serial_nr)
3070 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003071 }
3072
Tejun Heo492eb212013-08-08 20:11:25 -04003073 if (&next->sibling == &cgrp->children)
3074 return NULL;
3075
Tejun Heoca8bdca2013-08-26 18:40:56 -04003076 return cgroup_css(next, parent_css->ss);
Tejun Heo53fa5262013-05-24 10:55:38 +09003077}
Tejun Heo492eb212013-08-08 20:11:25 -04003078EXPORT_SYMBOL_GPL(css_next_child);
Tejun Heo53fa5262013-05-24 10:55:38 +09003079
3080/**
Tejun Heo492eb212013-08-08 20:11:25 -04003081 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003082 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003083 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003084 *
Tejun Heo492eb212013-08-08 20:11:25 -04003085 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003086 * to visit for pre-order traversal of @root's descendants. @root is
3087 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003088 *
3089 * While this function requires RCU read locking, it doesn't require the
3090 * whole traversal to be contained in a single RCU critical section. This
3091 * function will return the correct next descendant as long as both @pos
Tejun Heo492eb212013-08-08 20:11:25 -04003092 * and @root are accessible and @pos is a descendant of @root.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003093 */
Tejun Heo492eb212013-08-08 20:11:25 -04003094struct cgroup_subsys_state *
3095css_next_descendant_pre(struct cgroup_subsys_state *pos,
3096 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003097{
Tejun Heo492eb212013-08-08 20:11:25 -04003098 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003099
3100 WARN_ON_ONCE(!rcu_read_lock_held());
3101
Tejun Heobd8815a2013-08-08 20:11:27 -04003102 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003103 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003104 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003105
3106 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003107 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003108 if (next)
3109 return next;
3110
3111 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003112 while (pos != root) {
3113 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09003114 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003115 return next;
Tejun Heo492eb212013-08-08 20:11:25 -04003116 pos = css_parent(pos);
Tejun Heo7805d002013-05-24 10:50:24 +09003117 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003118
3119 return NULL;
3120}
Tejun Heo492eb212013-08-08 20:11:25 -04003121EXPORT_SYMBOL_GPL(css_next_descendant_pre);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003122
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003123/**
Tejun Heo492eb212013-08-08 20:11:25 -04003124 * css_rightmost_descendant - return the rightmost descendant of a css
3125 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003126 *
Tejun Heo492eb212013-08-08 20:11:25 -04003127 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3128 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003129 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003130 *
3131 * While this function requires RCU read locking, it doesn't require the
3132 * whole traversal to be contained in a single RCU critical section. This
3133 * function will return the correct rightmost descendant as long as @pos is
3134 * accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003135 */
Tejun Heo492eb212013-08-08 20:11:25 -04003136struct cgroup_subsys_state *
3137css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003138{
Tejun Heo492eb212013-08-08 20:11:25 -04003139 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003140
3141 WARN_ON_ONCE(!rcu_read_lock_held());
3142
3143 do {
3144 last = pos;
3145 /* ->prev isn't RCU safe, walk ->next till the end */
3146 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003147 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003148 pos = tmp;
3149 } while (pos);
3150
3151 return last;
3152}
Tejun Heo492eb212013-08-08 20:11:25 -04003153EXPORT_SYMBOL_GPL(css_rightmost_descendant);
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003154
Tejun Heo492eb212013-08-08 20:11:25 -04003155static struct cgroup_subsys_state *
3156css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003157{
Tejun Heo492eb212013-08-08 20:11:25 -04003158 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003159
3160 do {
3161 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003162 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003163 } while (pos);
3164
3165 return last;
3166}
3167
3168/**
Tejun Heo492eb212013-08-08 20:11:25 -04003169 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003170 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003171 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003172 *
Tejun Heo492eb212013-08-08 20:11:25 -04003173 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003174 * to visit for post-order traversal of @root's descendants. @root is
3175 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003176 *
3177 * While this function requires RCU read locking, it doesn't require the
3178 * whole traversal to be contained in a single RCU critical section. This
3179 * function will return the correct next descendant as long as both @pos
3180 * and @cgroup are accessible and @pos is a descendant of @cgroup.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003181 */
Tejun Heo492eb212013-08-08 20:11:25 -04003182struct cgroup_subsys_state *
3183css_next_descendant_post(struct cgroup_subsys_state *pos,
3184 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003185{
Tejun Heo492eb212013-08-08 20:11:25 -04003186 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003187
3188 WARN_ON_ONCE(!rcu_read_lock_held());
3189
3190 /* if first iteration, visit the leftmost descendant */
3191 if (!pos) {
Tejun Heo492eb212013-08-08 20:11:25 -04003192 next = css_leftmost_descendant(root);
3193 return next != root ? next : NULL;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003194 }
3195
Tejun Heobd8815a2013-08-08 20:11:27 -04003196 /* if we visited @root, we're done */
3197 if (pos == root)
3198 return NULL;
3199
Tejun Heo574bd9f2012-11-09 09:12:29 -08003200 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo492eb212013-08-08 20:11:25 -04003201 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09003202 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003203 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003204
3205 /* no sibling left, visit parent */
Tejun Heobd8815a2013-08-08 20:11:27 -04003206 return css_parent(pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003207}
Tejun Heo492eb212013-08-08 20:11:25 -04003208EXPORT_SYMBOL_GPL(css_next_descendant_post);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003209
Tejun Heo0942eee2013-08-08 20:11:26 -04003210/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003211 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003212 * @it: the iterator to advance
3213 *
3214 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003215 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003216static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003217{
3218 struct list_head *l = it->cset_link;
3219 struct cgrp_cset_link *link;
3220 struct css_set *cset;
3221
3222 /* Advance to the next non-empty css_set */
3223 do {
3224 l = l->next;
Tejun Heo72ec7022013-08-08 20:11:26 -04003225 if (l == &it->origin_css->cgroup->cset_links) {
Tejun Heod5158762013-08-08 20:11:26 -04003226 it->cset_link = NULL;
3227 return;
3228 }
3229 link = list_entry(l, struct cgrp_cset_link, cset_link);
3230 cset = link->cset;
3231 } while (list_empty(&cset->tasks));
3232 it->cset_link = l;
3233 it->task = cset->tasks.next;
3234}
3235
Tejun Heo0942eee2013-08-08 20:11:26 -04003236/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003237 * css_task_iter_start - initiate task iteration
3238 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003239 * @it: the task iterator to use
3240 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003241 * Initiate iteration through the tasks of @css. The caller can call
3242 * css_task_iter_next() to walk through the tasks until the function
3243 * returns NULL. On completion of iteration, css_task_iter_end() must be
3244 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003245 *
3246 * Note that this function acquires a lock which is released when the
3247 * iteration finishes. The caller can't sleep while iteration is in
3248 * progress.
3249 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003250void css_task_iter_start(struct cgroup_subsys_state *css,
3251 struct css_task_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02003252 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07003253{
3254 /*
Tejun Heo72ec7022013-08-08 20:11:26 -04003255 * The first time anyone tries to iterate across a css, we need to
3256 * enable the list linking each css_set to its tasks, and fix up
3257 * all existing tasks.
Paul Menage817929e2007-10-18 23:39:36 -07003258 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08003259 if (!use_task_css_set_links)
3260 cgroup_enable_task_cg_lists();
3261
Paul Menage817929e2007-10-18 23:39:36 -07003262 read_lock(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003263
Tejun Heo72ec7022013-08-08 20:11:26 -04003264 it->origin_css = css;
3265 it->cset_link = &css->cgroup->cset_links;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003266
Tejun Heo72ec7022013-08-08 20:11:26 -04003267 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07003268}
3269
Tejun Heo0942eee2013-08-08 20:11:26 -04003270/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003271 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003272 * @it: the task iterator being iterated
3273 *
3274 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003275 * initialized via css_task_iter_start(). Returns NULL when the iteration
3276 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003277 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003278struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003279{
3280 struct task_struct *res;
3281 struct list_head *l = it->task;
Tejun Heo69d02062013-06-12 21:04:50 -07003282 struct cgrp_cset_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07003283
3284 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo69d02062013-06-12 21:04:50 -07003285 if (!it->cset_link)
Paul Menage817929e2007-10-18 23:39:36 -07003286 return NULL;
3287 res = list_entry(l, struct task_struct, cg_list);
3288 /* Advance iterator to find next entry */
3289 l = l->next;
Tejun Heo69d02062013-06-12 21:04:50 -07003290 link = list_entry(it->cset_link, struct cgrp_cset_link, cset_link);
3291 if (l == &link->cset->tasks) {
Tejun Heo0942eee2013-08-08 20:11:26 -04003292 /*
3293 * We reached the end of this task list - move on to the
3294 * next cgrp_cset_link.
3295 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003296 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07003297 } else {
3298 it->task = l;
3299 }
3300 return res;
3301}
3302
Tejun Heo0942eee2013-08-08 20:11:26 -04003303/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003304 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003305 * @it: the task iterator to finish
3306 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003307 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003308 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003309void css_task_iter_end(struct css_task_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02003310 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07003311{
3312 read_unlock(&css_set_lock);
3313}
3314
Cliff Wickman31a7df02008-02-07 00:14:42 -08003315static inline int started_after_time(struct task_struct *t1,
3316 struct timespec *time,
3317 struct task_struct *t2)
3318{
3319 int start_diff = timespec_compare(&t1->start_time, time);
3320 if (start_diff > 0) {
3321 return 1;
3322 } else if (start_diff < 0) {
3323 return 0;
3324 } else {
3325 /*
3326 * Arbitrarily, if two processes started at the same
3327 * time, we'll say that the lower pointer value
3328 * started first. Note that t2 may have exited by now
3329 * so this may not be a valid pointer any longer, but
3330 * that's fine - it still serves to distinguish
3331 * between two tasks started (effectively) simultaneously.
3332 */
3333 return t1 > t2;
3334 }
3335}
3336
3337/*
3338 * This function is a callback from heap_insert() and is used to order
3339 * the heap.
3340 * In this case we order the heap in descending task start time.
3341 */
3342static inline int started_after(void *p1, void *p2)
3343{
3344 struct task_struct *t1 = p1;
3345 struct task_struct *t2 = p2;
3346 return started_after_time(t1, &t2->start_time, t2);
3347}
3348
3349/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003350 * css_scan_tasks - iterate though all the tasks in a css
3351 * @css: the css to iterate tasks of
Tejun Heoe5358372013-08-08 20:11:26 -04003352 * @test: optional test callback
3353 * @process: process callback
3354 * @data: data passed to @test and @process
3355 * @heap: optional pre-allocated heap used for task iteration
Cliff Wickman31a7df02008-02-07 00:14:42 -08003356 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003357 * Iterate through all the tasks in @css, calling @test for each, and if it
3358 * returns %true, call @process for it also.
Cliff Wickman31a7df02008-02-07 00:14:42 -08003359 *
Tejun Heoe5358372013-08-08 20:11:26 -04003360 * @test may be NULL, meaning always true (select all tasks), which
Tejun Heo72ec7022013-08-08 20:11:26 -04003361 * effectively duplicates css_task_iter_{start,next,end}() but does not
Tejun Heoe5358372013-08-08 20:11:26 -04003362 * lock css_set_lock for the call to @process.
3363 *
3364 * It is guaranteed that @process will act on every task that is a member
Tejun Heo72ec7022013-08-08 20:11:26 -04003365 * of @css for the duration of this call. This function may or may not
3366 * call @process for tasks that exit or move to a different css during the
3367 * call, or are forked or move into the css during the call.
Tejun Heoe5358372013-08-08 20:11:26 -04003368 *
3369 * Note that @test may be called with locks held, and may in some
3370 * situations be called multiple times for the same task, so it should be
3371 * cheap.
3372 *
3373 * If @heap is non-NULL, a heap has been pre-allocated and will be used for
3374 * heap operations (and its "gt" member will be overwritten), else a
3375 * temporary heap will be used (allocation of which may cause this function
3376 * to fail).
Cliff Wickman31a7df02008-02-07 00:14:42 -08003377 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003378int css_scan_tasks(struct cgroup_subsys_state *css,
3379 bool (*test)(struct task_struct *, void *),
3380 void (*process)(struct task_struct *, void *),
3381 void *data, struct ptr_heap *heap)
Cliff Wickman31a7df02008-02-07 00:14:42 -08003382{
3383 int retval, i;
Tejun Heo72ec7022013-08-08 20:11:26 -04003384 struct css_task_iter it;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003385 struct task_struct *p, *dropped;
3386 /* Never dereference latest_task, since it's not refcounted */
3387 struct task_struct *latest_task = NULL;
3388 struct ptr_heap tmp_heap;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003389 struct timespec latest_time = { 0, 0 };
3390
Tejun Heoe5358372013-08-08 20:11:26 -04003391 if (heap) {
Cliff Wickman31a7df02008-02-07 00:14:42 -08003392 /* The caller supplied our heap and pre-allocated its memory */
Cliff Wickman31a7df02008-02-07 00:14:42 -08003393 heap->gt = &started_after;
3394 } else {
3395 /* We need to allocate our own heap memory */
3396 heap = &tmp_heap;
3397 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
3398 if (retval)
3399 /* cannot allocate the heap */
3400 return retval;
3401 }
3402
3403 again:
3404 /*
Tejun Heo72ec7022013-08-08 20:11:26 -04003405 * Scan tasks in the css, using the @test callback to determine
Tejun Heoe5358372013-08-08 20:11:26 -04003406 * which are of interest, and invoking @process callback on the
3407 * ones which need an update. Since we don't want to hold any
3408 * locks during the task updates, gather tasks to be processed in a
3409 * heap structure. The heap is sorted by descending task start
3410 * time. If the statically-sized heap fills up, we overflow tasks
3411 * that started later, and in future iterations only consider tasks
3412 * that started after the latest task in the previous pass. This
Cliff Wickman31a7df02008-02-07 00:14:42 -08003413 * guarantees forward progress and that we don't miss any tasks.
3414 */
3415 heap->size = 0;
Tejun Heo72ec7022013-08-08 20:11:26 -04003416 css_task_iter_start(css, &it);
3417 while ((p = css_task_iter_next(&it))) {
Cliff Wickman31a7df02008-02-07 00:14:42 -08003418 /*
3419 * Only affect tasks that qualify per the caller's callback,
3420 * if he provided one
3421 */
Tejun Heoe5358372013-08-08 20:11:26 -04003422 if (test && !test(p, data))
Cliff Wickman31a7df02008-02-07 00:14:42 -08003423 continue;
3424 /*
3425 * Only process tasks that started after the last task
3426 * we processed
3427 */
3428 if (!started_after_time(p, &latest_time, latest_task))
3429 continue;
3430 dropped = heap_insert(heap, p);
3431 if (dropped == NULL) {
3432 /*
3433 * The new task was inserted; the heap wasn't
3434 * previously full
3435 */
3436 get_task_struct(p);
3437 } else if (dropped != p) {
3438 /*
3439 * The new task was inserted, and pushed out a
3440 * different task
3441 */
3442 get_task_struct(p);
3443 put_task_struct(dropped);
3444 }
3445 /*
3446 * Else the new task was newer than anything already in
3447 * the heap and wasn't inserted
3448 */
3449 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003450 css_task_iter_end(&it);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003451
3452 if (heap->size) {
3453 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003454 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08003455 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003456 latest_time = q->start_time;
3457 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003458 }
3459 /* Process the task per the caller's callback */
Tejun Heoe5358372013-08-08 20:11:26 -04003460 process(q, data);
Paul Jackson4fe91d52008-04-29 00:59:55 -07003461 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003462 }
3463 /*
3464 * If we had to process any tasks at all, scan again
3465 * in case some of them were in the middle of forking
3466 * children that didn't get processed.
3467 * Not the most efficient way to do it, but it avoids
3468 * having to take callback_mutex in the fork path
3469 */
3470 goto again;
3471 }
3472 if (heap == &tmp_heap)
3473 heap_free(&tmp_heap);
3474 return 0;
3475}
3476
Tejun Heoe5358372013-08-08 20:11:26 -04003477static void cgroup_transfer_one_task(struct task_struct *task, void *data)
Tejun Heo8cc99342013-04-07 09:29:50 -07003478{
Tejun Heoe5358372013-08-08 20:11:26 -04003479 struct cgroup *new_cgroup = data;
Tejun Heo8cc99342013-04-07 09:29:50 -07003480
Tejun Heo47cfcd02013-04-07 09:29:51 -07003481 mutex_lock(&cgroup_mutex);
Tejun Heo8cc99342013-04-07 09:29:50 -07003482 cgroup_attach_task(new_cgroup, task, false);
Tejun Heo47cfcd02013-04-07 09:29:51 -07003483 mutex_unlock(&cgroup_mutex);
Tejun Heo8cc99342013-04-07 09:29:50 -07003484}
3485
3486/**
3487 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3488 * @to: cgroup to which the tasks will be moved
3489 * @from: cgroup in which the tasks currently reside
3490 */
3491int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3492{
Tejun Heo72ec7022013-08-08 20:11:26 -04003493 return css_scan_tasks(&from->dummy_css, NULL, cgroup_transfer_one_task,
3494 to, NULL);
Tejun Heo8cc99342013-04-07 09:29:50 -07003495}
3496
Paul Menage817929e2007-10-18 23:39:36 -07003497/*
Ben Blum102a7752009-09-23 15:56:26 -07003498 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003499 *
3500 * Reading this file can return large amounts of data if a cgroup has
3501 * *lots* of attached tasks. So it may need several calls to read(),
3502 * but we cannot guarantee that the information we produce is correct
3503 * unless we produce it entirely atomically.
3504 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003505 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003506
Li Zefan24528252012-01-20 11:58:43 +08003507/* which pidlist file are we talking about? */
3508enum cgroup_filetype {
3509 CGROUP_FILE_PROCS,
3510 CGROUP_FILE_TASKS,
3511};
3512
3513/*
3514 * A pidlist is a list of pids that virtually represents the contents of one
3515 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3516 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3517 * to the cgroup.
3518 */
3519struct cgroup_pidlist {
3520 /*
3521 * used to find which pidlist is wanted. doesn't change as long as
3522 * this particular list stays in the list.
3523 */
3524 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3525 /* array of xids */
3526 pid_t *list;
3527 /* how many elements the above list has */
3528 int length;
3529 /* how many files are using the current array */
3530 int use_count;
3531 /* each of these stored in a list by its cgroup */
3532 struct list_head links;
3533 /* pointer to the cgroup we belong to, for list removal purposes */
3534 struct cgroup *owner;
3535 /* protects the other fields */
Li Zefanb3958902013-08-01 09:52:15 +08003536 struct rw_semaphore rwsem;
Li Zefan24528252012-01-20 11:58:43 +08003537};
3538
Paul Menagebbcb81d2007-10-18 23:39:32 -07003539/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003540 * The following two functions "fix" the issue where there are more pids
3541 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3542 * TODO: replace with a kernel-wide solution to this problem
3543 */
3544#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3545static void *pidlist_allocate(int count)
3546{
3547 if (PIDLIST_TOO_LARGE(count))
3548 return vmalloc(count * sizeof(pid_t));
3549 else
3550 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3551}
3552static void pidlist_free(void *p)
3553{
3554 if (is_vmalloc_addr(p))
3555 vfree(p);
3556 else
3557 kfree(p);
3558}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003559
3560/*
Ben Blum102a7752009-09-23 15:56:26 -07003561 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003562 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003563 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003564static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003565{
Ben Blum102a7752009-09-23 15:56:26 -07003566 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003567
3568 /*
3569 * we presume the 0th element is unique, so i starts at 1. trivial
3570 * edge cases first; no work needs to be done for either
3571 */
3572 if (length == 0 || length == 1)
3573 return length;
3574 /* src and dest walk down the list; dest counts unique elements */
3575 for (src = 1; src < length; src++) {
3576 /* find next unique element */
3577 while (list[src] == list[src-1]) {
3578 src++;
3579 if (src == length)
3580 goto after;
3581 }
3582 /* dest always points to where the next unique element goes */
3583 list[dest] = list[src];
3584 dest++;
3585 }
3586after:
Ben Blum102a7752009-09-23 15:56:26 -07003587 return dest;
3588}
3589
3590static int cmppid(const void *a, const void *b)
3591{
3592 return *(pid_t *)a - *(pid_t *)b;
3593}
3594
3595/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003596 * find the appropriate pidlist for our purpose (given procs vs tasks)
3597 * returns with the lock on that pidlist already held, and takes care
3598 * of the use count, or returns NULL with no locks held if we're out of
3599 * memory.
3600 */
3601static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3602 enum cgroup_filetype type)
3603{
3604 struct cgroup_pidlist *l;
3605 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003606 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003607
Ben Blum72a8cb32009-09-23 15:56:27 -07003608 /*
Li Zefanb3958902013-08-01 09:52:15 +08003609 * We can't drop the pidlist_mutex before taking the l->rwsem in case
Ben Blum72a8cb32009-09-23 15:56:27 -07003610 * the last ref-holder is trying to remove l from the list at the same
3611 * time. Holding the pidlist_mutex precludes somebody taking whichever
3612 * list we find out from under us - compare release_pid_array().
3613 */
3614 mutex_lock(&cgrp->pidlist_mutex);
3615 list_for_each_entry(l, &cgrp->pidlists, links) {
3616 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003617 /* make sure l doesn't vanish out from under us */
Li Zefanb3958902013-08-01 09:52:15 +08003618 down_write(&l->rwsem);
Ben Blum72a8cb32009-09-23 15:56:27 -07003619 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003620 return l;
3621 }
3622 }
3623 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003624 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003625 if (!l) {
3626 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003627 return l;
3628 }
Li Zefanb3958902013-08-01 09:52:15 +08003629 init_rwsem(&l->rwsem);
3630 down_write(&l->rwsem);
Ben Blum72a8cb32009-09-23 15:56:27 -07003631 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003632 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003633 l->owner = cgrp;
3634 list_add(&l->links, &cgrp->pidlists);
3635 mutex_unlock(&cgrp->pidlist_mutex);
3636 return l;
3637}
3638
3639/*
Ben Blum102a7752009-09-23 15:56:26 -07003640 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3641 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003642static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3643 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003644{
3645 pid_t *array;
3646 int length;
3647 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003648 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003649 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003650 struct cgroup_pidlist *l;
3651
3652 /*
3653 * If cgroup gets more users after we read count, we won't have
3654 * enough space - tough. This race is indistinguishable to the
3655 * caller from the case that the additional cgroup users didn't
3656 * show up until sometime later on.
3657 */
3658 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003659 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003660 if (!array)
3661 return -ENOMEM;
3662 /* now, populate the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003663 css_task_iter_start(&cgrp->dummy_css, &it);
3664 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003665 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003666 break;
Ben Blum102a7752009-09-23 15:56:26 -07003667 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003668 if (type == CGROUP_FILE_PROCS)
3669 pid = task_tgid_vnr(tsk);
3670 else
3671 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003672 if (pid > 0) /* make sure to only use valid results */
3673 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003674 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003675 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003676 length = n;
3677 /* now sort & (if procs) strip out duplicates */
3678 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003679 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003680 length = pidlist_uniq(array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003681 l = cgroup_pidlist_find(cgrp, type);
3682 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003683 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003684 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003685 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003686 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003687 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003688 l->list = array;
3689 l->length = length;
3690 l->use_count++;
Li Zefanb3958902013-08-01 09:52:15 +08003691 up_write(&l->rwsem);
Ben Blum72a8cb32009-09-23 15:56:27 -07003692 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003693 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003694}
3695
Balbir Singh846c7bb2007-10-18 23:39:44 -07003696/**
Li Zefana043e3b2008-02-23 15:24:09 -08003697 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003698 * @stats: cgroupstats to fill information into
3699 * @dentry: A dentry entry belonging to the cgroup for which stats have
3700 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003701 *
3702 * Build and fill cgroupstats so that taskstats can export it to user
3703 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003704 */
3705int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3706{
3707 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003708 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003709 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003710 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003711
Balbir Singh846c7bb2007-10-18 23:39:44 -07003712 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003713 * Validate dentry by checking the superblock operations,
3714 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003715 */
Li Zefan33d283b2008-11-19 15:36:48 -08003716 if (dentry->d_sb->s_op != &cgroup_ops ||
3717 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003718 goto err;
3719
3720 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003721 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003722
Tejun Heo72ec7022013-08-08 20:11:26 -04003723 css_task_iter_start(&cgrp->dummy_css, &it);
3724 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003725 switch (tsk->state) {
3726 case TASK_RUNNING:
3727 stats->nr_running++;
3728 break;
3729 case TASK_INTERRUPTIBLE:
3730 stats->nr_sleeping++;
3731 break;
3732 case TASK_UNINTERRUPTIBLE:
3733 stats->nr_uninterruptible++;
3734 break;
3735 case TASK_STOPPED:
3736 stats->nr_stopped++;
3737 break;
3738 default:
3739 if (delayacct_is_task_waiting_on_io(tsk))
3740 stats->nr_io_wait++;
3741 break;
3742 }
3743 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003744 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003745
Balbir Singh846c7bb2007-10-18 23:39:44 -07003746err:
3747 return ret;
3748}
3749
Paul Menage8f3ff202009-09-23 15:56:25 -07003750
Paul Menagecc31edc2008-10-18 20:28:04 -07003751/*
Ben Blum102a7752009-09-23 15:56:26 -07003752 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003753 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003754 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003755 */
3756
Ben Blum102a7752009-09-23 15:56:26 -07003757static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003758{
3759 /*
3760 * Initially we receive a position value that corresponds to
3761 * one more than the last pid shown (or 0 on the first call or
3762 * after a seek to the start). Use a binary-search to find the
3763 * next pid to display, if any
3764 */
Ben Blum102a7752009-09-23 15:56:26 -07003765 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003766 int index = 0, pid = *pos;
3767 int *iter;
3768
Li Zefanb3958902013-08-01 09:52:15 +08003769 down_read(&l->rwsem);
Paul Menagecc31edc2008-10-18 20:28:04 -07003770 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003771 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003772
Paul Menagecc31edc2008-10-18 20:28:04 -07003773 while (index < end) {
3774 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003775 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003776 index = mid;
3777 break;
Ben Blum102a7752009-09-23 15:56:26 -07003778 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003779 index = mid + 1;
3780 else
3781 end = mid;
3782 }
3783 }
3784 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003785 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003786 return NULL;
3787 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003788 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003789 *pos = *iter;
3790 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003791}
3792
Ben Blum102a7752009-09-23 15:56:26 -07003793static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003794{
Ben Blum102a7752009-09-23 15:56:26 -07003795 struct cgroup_pidlist *l = s->private;
Li Zefanb3958902013-08-01 09:52:15 +08003796 up_read(&l->rwsem);
Paul Menagecc31edc2008-10-18 20:28:04 -07003797}
3798
Ben Blum102a7752009-09-23 15:56:26 -07003799static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003800{
Ben Blum102a7752009-09-23 15:56:26 -07003801 struct cgroup_pidlist *l = s->private;
3802 pid_t *p = v;
3803 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003804 /*
3805 * Advance to the next pid in the array. If this goes off the
3806 * end, we're done
3807 */
3808 p++;
3809 if (p >= end) {
3810 return NULL;
3811 } else {
3812 *pos = *p;
3813 return p;
3814 }
3815}
3816
Ben Blum102a7752009-09-23 15:56:26 -07003817static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003818{
3819 return seq_printf(s, "%d\n", *(int *)v);
3820}
3821
Ben Blum102a7752009-09-23 15:56:26 -07003822/*
3823 * seq_operations functions for iterating on pidlists through seq_file -
3824 * independent of whether it's tasks or procs
3825 */
3826static const struct seq_operations cgroup_pidlist_seq_operations = {
3827 .start = cgroup_pidlist_start,
3828 .stop = cgroup_pidlist_stop,
3829 .next = cgroup_pidlist_next,
3830 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003831};
3832
Ben Blum102a7752009-09-23 15:56:26 -07003833static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003834{
Ben Blum72a8cb32009-09-23 15:56:27 -07003835 /*
3836 * the case where we're the last user of this particular pidlist will
3837 * have us remove it from the cgroup's list, which entails taking the
3838 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3839 * pidlist_mutex, we have to take pidlist_mutex first.
3840 */
3841 mutex_lock(&l->owner->pidlist_mutex);
Li Zefanb3958902013-08-01 09:52:15 +08003842 down_write(&l->rwsem);
Ben Blum102a7752009-09-23 15:56:26 -07003843 BUG_ON(!l->use_count);
3844 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003845 /* we're the last user if refcount is 0; remove and free */
3846 list_del(&l->links);
3847 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003848 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003849 put_pid_ns(l->key.ns);
Li Zefanb3958902013-08-01 09:52:15 +08003850 up_write(&l->rwsem);
Ben Blum72a8cb32009-09-23 15:56:27 -07003851 kfree(l);
3852 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003853 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003854 mutex_unlock(&l->owner->pidlist_mutex);
Li Zefanb3958902013-08-01 09:52:15 +08003855 up_write(&l->rwsem);
Paul Menagecc31edc2008-10-18 20:28:04 -07003856}
3857
Ben Blum102a7752009-09-23 15:56:26 -07003858static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003859{
Ben Blum102a7752009-09-23 15:56:26 -07003860 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003861 if (!(file->f_mode & FMODE_READ))
3862 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003863 /*
3864 * the seq_file will only be initialized if the file was opened for
3865 * reading; hence we check if it's not null only in that case.
3866 */
3867 l = ((struct seq_file *)file->private_data)->private;
3868 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003869 return seq_release(inode, file);
3870}
3871
Ben Blum102a7752009-09-23 15:56:26 -07003872static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003873 .read = seq_read,
3874 .llseek = seq_lseek,
3875 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003876 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003877};
3878
3879/*
Ben Blum102a7752009-09-23 15:56:26 -07003880 * The following functions handle opens on a file that displays a pidlist
3881 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3882 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003883 */
Ben Blum102a7752009-09-23 15:56:26 -07003884/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003885static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003886{
3887 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003888 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003889 int retval;
3890
3891 /* Nothing to do for write-only files */
3892 if (!(file->f_mode & FMODE_READ))
3893 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003894
Ben Blum102a7752009-09-23 15:56:26 -07003895 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003896 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003897 if (retval)
3898 return retval;
3899 /* configure file information */
3900 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003901
Ben Blum102a7752009-09-23 15:56:26 -07003902 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003903 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003904 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003905 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003906 }
Ben Blum102a7752009-09-23 15:56:26 -07003907 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003908 return 0;
3909}
Ben Blum102a7752009-09-23 15:56:26 -07003910static int cgroup_tasks_open(struct inode *unused, struct file *file)
3911{
Ben Blum72a8cb32009-09-23 15:56:27 -07003912 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003913}
3914static int cgroup_procs_open(struct inode *unused, struct file *file)
3915{
Ben Blum72a8cb32009-09-23 15:56:27 -07003916 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003917}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003918
Tejun Heo182446d2013-08-08 20:11:24 -04003919static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3920 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003921{
Tejun Heo182446d2013-08-08 20:11:24 -04003922 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003923}
3924
Tejun Heo182446d2013-08-08 20:11:24 -04003925static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3926 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003927{
Tejun Heo182446d2013-08-08 20:11:24 -04003928 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003929 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003930 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003931 else
Tejun Heo182446d2013-08-08 20:11:24 -04003932 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003933 return 0;
3934}
3935
Paul Menagebbcb81d2007-10-18 23:39:32 -07003936/*
Li Zefan1c8158e2013-06-18 18:41:10 +08003937 * When dput() is called asynchronously, if umount has been done and
3938 * then deactivate_super() in cgroup_free_fn() kills the superblock,
3939 * there's a small window that vfs will see the root dentry with non-zero
3940 * refcnt and trigger BUG().
3941 *
3942 * That's why we hold a reference before dput() and drop it right after.
3943 */
3944static void cgroup_dput(struct cgroup *cgrp)
3945{
3946 struct super_block *sb = cgrp->root->sb;
3947
3948 atomic_inc(&sb->s_active);
3949 dput(cgrp->dentry);
3950 deactivate_super(sb);
3951}
3952
3953/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003954 * Unregister event and free resources.
3955 *
3956 * Gets called from workqueue.
3957 */
3958static void cgroup_event_remove(struct work_struct *work)
3959{
3960 struct cgroup_event *event = container_of(work, struct cgroup_event,
3961 remove);
Tejun Heo81eeaf02013-08-08 20:11:26 -04003962 struct cgroup_subsys_state *css = event->css;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003963
Li Zefan810cbee2013-02-18 18:56:14 +08003964 remove_wait_queue(event->wqh, &event->wait);
3965
Tejun Heo81eeaf02013-08-08 20:11:26 -04003966 event->cft->unregister_event(css, event->cft, event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003967
Li Zefan810cbee2013-02-18 18:56:14 +08003968 /* Notify userspace the event is going away. */
3969 eventfd_signal(event->eventfd, 1);
3970
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003971 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003972 kfree(event);
Tejun Heo7941cb02013-08-26 18:40:56 -04003973 css_put(css);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003974}
3975
3976/*
3977 * Gets called on POLLHUP on eventfd when user closes it.
3978 *
3979 * Called with wqh->lock held and interrupts disabled.
3980 */
3981static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3982 int sync, void *key)
3983{
3984 struct cgroup_event *event = container_of(wait,
3985 struct cgroup_event, wait);
Tejun Heo81eeaf02013-08-08 20:11:26 -04003986 struct cgroup *cgrp = event->css->cgroup;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003987 unsigned long flags = (unsigned long)key;
3988
3989 if (flags & POLLHUP) {
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003990 /*
Li Zefan810cbee2013-02-18 18:56:14 +08003991 * If the event has been detached at cgroup removal, we
3992 * can simply return knowing the other side will cleanup
3993 * for us.
3994 *
3995 * We can't race against event freeing since the other
3996 * side will require wqh->lock via remove_wait_queue(),
3997 * which we hold.
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003998 */
Li Zefan810cbee2013-02-18 18:56:14 +08003999 spin_lock(&cgrp->event_list_lock);
4000 if (!list_empty(&event->list)) {
4001 list_del_init(&event->list);
4002 /*
4003 * We are in atomic context, but cgroup_event_remove()
4004 * may sleep, so we have to call it in workqueue.
4005 */
4006 schedule_work(&event->remove);
4007 }
4008 spin_unlock(&cgrp->event_list_lock);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004009 }
4010
4011 return 0;
4012}
4013
4014static void cgroup_event_ptable_queue_proc(struct file *file,
4015 wait_queue_head_t *wqh, poll_table *pt)
4016{
4017 struct cgroup_event *event = container_of(pt,
4018 struct cgroup_event, pt);
4019
4020 event->wqh = wqh;
4021 add_wait_queue(wqh, &event->wait);
4022}
4023
4024/*
4025 * Parse input and register new cgroup event handler.
4026 *
4027 * Input must be in format '<event_fd> <control_fd> <args>'.
4028 * Interpretation of args is defined by control file implementation.
4029 */
Tejun Heo6e6eab02013-08-15 11:43:15 -04004030static int cgroup_write_event_control(struct cgroup_subsys_state *dummy_css,
Tejun Heo182446d2013-08-08 20:11:24 -04004031 struct cftype *cft, const char *buffer)
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004032{
Tejun Heo6e6eab02013-08-15 11:43:15 -04004033 struct cgroup *cgrp = dummy_css->cgroup;
Li Zefan876ede82013-08-01 09:51:47 +08004034 struct cgroup_event *event;
Tejun Heo7c918cb2013-08-26 18:40:56 -04004035 struct cgroup_subsys_state *cfile_css;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004036 unsigned int efd, cfd;
Li Zefan876ede82013-08-01 09:51:47 +08004037 struct file *efile;
4038 struct file *cfile;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004039 char *endp;
4040 int ret;
4041
4042 efd = simple_strtoul(buffer, &endp, 10);
4043 if (*endp != ' ')
4044 return -EINVAL;
4045 buffer = endp + 1;
4046
4047 cfd = simple_strtoul(buffer, &endp, 10);
4048 if ((*endp != ' ') && (*endp != '\0'))
4049 return -EINVAL;
4050 buffer = endp + 1;
4051
4052 event = kzalloc(sizeof(*event), GFP_KERNEL);
4053 if (!event)
4054 return -ENOMEM;
Tejun Heo6e6eab02013-08-15 11:43:15 -04004055
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004056 INIT_LIST_HEAD(&event->list);
4057 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
4058 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
4059 INIT_WORK(&event->remove, cgroup_event_remove);
4060
4061 efile = eventfd_fget(efd);
4062 if (IS_ERR(efile)) {
4063 ret = PTR_ERR(efile);
Li Zefan876ede82013-08-01 09:51:47 +08004064 goto out_kfree;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004065 }
4066
4067 event->eventfd = eventfd_ctx_fileget(efile);
4068 if (IS_ERR(event->eventfd)) {
4069 ret = PTR_ERR(event->eventfd);
Li Zefan876ede82013-08-01 09:51:47 +08004070 goto out_put_efile;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004071 }
4072
4073 cfile = fget(cfd);
4074 if (!cfile) {
4075 ret = -EBADF;
Li Zefan876ede82013-08-01 09:51:47 +08004076 goto out_put_eventfd;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004077 }
4078
4079 /* the process need read permission on control file */
Al Viro3bfa7842011-06-19 12:55:10 -04004080 /* AV: shouldn't we check that it's been opened for read instead? */
Al Viro496ad9a2013-01-23 17:07:38 -05004081 ret = inode_permission(file_inode(cfile), MAY_READ);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004082 if (ret < 0)
Li Zefan876ede82013-08-01 09:51:47 +08004083 goto out_put_cfile;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004084
4085 event->cft = __file_cft(cfile);
4086 if (IS_ERR(event->cft)) {
4087 ret = PTR_ERR(event->cft);
Li Zefan876ede82013-08-01 09:51:47 +08004088 goto out_put_cfile;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004089 }
4090
Tejun Heo6e6eab02013-08-15 11:43:15 -04004091 if (!event->cft->ss) {
4092 ret = -EBADF;
4093 goto out_put_cfile;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004094 }
4095
Li Zefanf1690072013-02-18 14:13:35 +08004096 /*
Tejun Heo7c918cb2013-08-26 18:40:56 -04004097 * Determine the css of @cfile, verify it belongs to the same
4098 * cgroup as cgroup.event_control, and associate @event with it.
Tejun Heo7941cb02013-08-26 18:40:56 -04004099 * Remaining events are automatically removed on cgroup destruction
4100 * but the removal is asynchronous, so take an extra ref.
Li Zefanf1690072013-02-18 14:13:35 +08004101 */
Tejun Heo6e6eab02013-08-15 11:43:15 -04004102 rcu_read_lock();
4103
4104 ret = -EINVAL;
Tejun Heoca8bdca2013-08-26 18:40:56 -04004105 event->css = cgroup_css(cgrp, event->cft->ss);
Tejun Heo7c918cb2013-08-26 18:40:56 -04004106 cfile_css = css_from_dir(cfile->f_dentry->d_parent, event->cft->ss);
4107 if (event->css && event->css == cfile_css && css_tryget(event->css))
Tejun Heo6e6eab02013-08-15 11:43:15 -04004108 ret = 0;
4109
4110 rcu_read_unlock();
4111 if (ret)
4112 goto out_put_cfile;
Li Zefanf1690072013-02-18 14:13:35 +08004113
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004114 if (!event->cft->register_event || !event->cft->unregister_event) {
4115 ret = -EINVAL;
Tejun Heo7941cb02013-08-26 18:40:56 -04004116 goto out_put_css;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004117 }
4118
Tejun Heo6e6eab02013-08-15 11:43:15 -04004119 ret = event->cft->register_event(event->css, event->cft,
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004120 event->eventfd, buffer);
4121 if (ret)
Tejun Heo7941cb02013-08-26 18:40:56 -04004122 goto out_put_css;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004123
Li Zefan7ef70e42013-04-26 11:58:03 -07004124 efile->f_op->poll(efile, &event->pt);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004125
4126 spin_lock(&cgrp->event_list_lock);
4127 list_add(&event->list, &cgrp->event_list);
4128 spin_unlock(&cgrp->event_list_lock);
4129
4130 fput(cfile);
4131 fput(efile);
4132
4133 return 0;
4134
Tejun Heo7941cb02013-08-26 18:40:56 -04004135out_put_css:
4136 css_put(event->css);
Li Zefan876ede82013-08-01 09:51:47 +08004137out_put_cfile:
4138 fput(cfile);
4139out_put_eventfd:
4140 eventfd_ctx_put(event->eventfd);
4141out_put_efile:
4142 fput(efile);
4143out_kfree:
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004144 kfree(event);
4145
4146 return ret;
4147}
4148
Tejun Heo182446d2013-08-08 20:11:24 -04004149static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4150 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004151{
Tejun Heo182446d2013-08-08 20:11:24 -04004152 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004153}
4154
Tejun Heo182446d2013-08-08 20:11:24 -04004155static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4156 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004157{
4158 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004159 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004160 else
Tejun Heo182446d2013-08-08 20:11:24 -04004161 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004162 return 0;
4163}
4164
Tejun Heod5c56ce2013-06-03 19:14:34 -07004165static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004166 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004167 .name = "cgroup.procs",
Ben Blum102a7752009-09-23 15:56:26 -07004168 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07004169 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07004170 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07004171 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004172 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004173 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004174 .name = "cgroup.event_control",
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004175 .write_string = cgroup_write_event_control,
4176 .mode = S_IWUGO,
4177 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07004178 {
4179 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07004180 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07004181 .read_u64 = cgroup_clone_children_read,
4182 .write_u64 = cgroup_clone_children_write,
4183 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004184 {
Tejun Heo873fe092013-04-14 20:15:26 -07004185 .name = "cgroup.sane_behavior",
4186 .flags = CFTYPE_ONLY_ON_ROOT,
4187 .read_seq_string = cgroup_sane_behavior_show,
4188 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07004189
4190 /*
4191 * Historical crazy stuff. These don't have "cgroup." prefix and
4192 * don't exist if sane_behavior. If you're depending on these, be
4193 * prepared to be burned.
4194 */
4195 {
4196 .name = "tasks",
4197 .flags = CFTYPE_INSANE, /* use "procs" instead */
4198 .open = cgroup_tasks_open,
4199 .write_u64 = cgroup_tasks_write,
4200 .release = cgroup_pidlist_release,
4201 .mode = S_IRUGO | S_IWUSR,
4202 },
4203 {
4204 .name = "notify_on_release",
4205 .flags = CFTYPE_INSANE,
4206 .read_u64 = cgroup_read_notify_on_release,
4207 .write_u64 = cgroup_write_notify_on_release,
4208 },
Tejun Heo873fe092013-04-14 20:15:26 -07004209 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004210 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07004211 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004212 .read_seq_string = cgroup_release_agent_show,
4213 .write_string = cgroup_release_agent_write,
4214 .max_write_len = PATH_MAX,
4215 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004216 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004217};
4218
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004219/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004220 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004221 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004222 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004223 *
4224 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004225 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07004226static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004227{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004228 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004229 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004230
Tejun Heo8e3f6542012-04-01 12:09:55 -07004231 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004232 for_each_subsys(ss, i) {
Tejun Heo8e3f6542012-04-01 12:09:55 -07004233 struct cftype_set *set;
Tejun Heob420ba72013-07-12 12:34:02 -07004234
4235 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004236 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004237
Tejun Heobee55092013-06-28 16:24:11 -07004238 list_for_each_entry(set, &ss->cftsets, node) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04004239 ret = cgroup_addrm_files(cgrp, set->cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004240 if (ret < 0)
4241 goto err;
4242 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004243 }
Tejun Heo8e3f6542012-04-01 12:09:55 -07004244
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004245 /* This cgroup is ready now */
Tejun Heo5549c492013-06-24 15:21:48 -07004246 for_each_root_subsys(cgrp->root, ss) {
Tejun Heoca8bdca2013-08-26 18:40:56 -04004247 struct cgroup_subsys_state *css = cgroup_css(cgrp, ss);
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004248 struct css_id *id = rcu_dereference_protected(css->id, true);
4249
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004250 /*
4251 * Update id->css pointer and make this css visible from
4252 * CSS ID functions. This pointer will be dereferened
4253 * from RCU-read-side without locks.
4254 */
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004255 if (id)
4256 rcu_assign_pointer(id->css, css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004257 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004258
4259 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004260err:
4261 cgroup_clear_dir(cgrp, subsys_mask);
4262 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004263}
4264
Tejun Heo0c21ead2013-08-13 20:22:51 -04004265/*
4266 * css destruction is four-stage process.
4267 *
4268 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4269 * Implemented in kill_css().
4270 *
4271 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
4272 * and thus css_tryget() is guaranteed to fail, the css can be offlined
4273 * by invoking offline_css(). After offlining, the base ref is put.
4274 * Implemented in css_killed_work_fn().
4275 *
4276 * 3. When the percpu_ref reaches zero, the only possible remaining
4277 * accessors are inside RCU read sections. css_release() schedules the
4278 * RCU callback.
4279 *
4280 * 4. After the grace period, the css can be freed. Implemented in
4281 * css_free_work_fn().
4282 *
4283 * It is actually hairier because both step 2 and 4 require process context
4284 * and thus involve punting to css->destroy_work adding two additional
4285 * steps to the already complex sequence.
4286 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004287static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004288{
4289 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004290 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04004291 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004292
Tejun Heo0ae78e02013-08-13 11:01:54 -04004293 if (css->parent)
4294 css_put(css->parent);
4295
Tejun Heo0c21ead2013-08-13 20:22:51 -04004296 css->ss->css_free(css);
4297 cgroup_dput(cgrp);
4298}
4299
4300static void css_free_rcu_fn(struct rcu_head *rcu_head)
4301{
4302 struct cgroup_subsys_state *css =
4303 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4304
4305 /*
4306 * css holds an extra ref to @cgrp->dentry which is put on the last
4307 * css_put(). dput() requires process context which we don't have.
4308 */
4309 INIT_WORK(&css->destroy_work, css_free_work_fn);
4310 schedule_work(&css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004311}
4312
Tejun Heod3daf282013-06-13 19:39:16 -07004313static void css_release(struct percpu_ref *ref)
4314{
4315 struct cgroup_subsys_state *css =
4316 container_of(ref, struct cgroup_subsys_state, refcnt);
4317
Tejun Heo0c21ead2013-08-13 20:22:51 -04004318 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004319}
4320
Tejun Heo623f9262013-08-13 11:01:55 -04004321static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss,
4322 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004323{
Paul Menagebd89aab2007-10-18 23:40:44 -07004324 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004325 css->ss = ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004326 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004327 css->id = NULL;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004328
Tejun Heo0ae78e02013-08-13 11:01:54 -04004329 if (cgrp->parent)
Tejun Heoca8bdca2013-08-26 18:40:56 -04004330 css->parent = cgroup_css(cgrp->parent, ss);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004331 else
Paul Menageddbcc7e2007-10-18 23:39:30 -07004332 css->flags |= CSS_ROOT;
Tejun Heo0ae78e02013-08-13 11:01:54 -04004333
Tejun Heoca8bdca2013-08-26 18:40:56 -04004334 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004335}
4336
Li Zefan2a4ac632013-07-31 16:16:40 +08004337/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004338static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004339{
Tejun Heo623f9262013-08-13 11:01:55 -04004340 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004341 int ret = 0;
4342
Tejun Heoa31f2d32012-11-19 08:13:37 -08004343 lockdep_assert_held(&cgroup_mutex);
4344
Tejun Heo92fb9742012-11-19 08:13:38 -08004345 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004346 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004347 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004348 css->flags |= CSS_ONLINE;
Tejun Heof20104d2013-08-13 20:22:50 -04004349 css->cgroup->nr_css++;
Tejun Heoae7f1642013-08-13 20:22:50 -04004350 rcu_assign_pointer(css->cgroup->subsys[ss->subsys_id], css);
4351 }
Tejun Heob1929db2012-11-19 08:13:38 -08004352 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004353}
4354
Li Zefan2a4ac632013-07-31 16:16:40 +08004355/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004356static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004357{
Tejun Heo623f9262013-08-13 11:01:55 -04004358 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004359
4360 lockdep_assert_held(&cgroup_mutex);
4361
4362 if (!(css->flags & CSS_ONLINE))
4363 return;
4364
Li Zefand7eeac12013-03-12 15:35:59 -07004365 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004366 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004367
Tejun Heoeb954192013-08-08 20:11:23 -04004368 css->flags &= ~CSS_ONLINE;
Tejun Heo09a503ea2013-08-13 20:22:50 -04004369 css->cgroup->nr_css--;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004370 RCU_INIT_POINTER(css->cgroup->subsys[ss->subsys_id], css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004371}
4372
Paul Menageddbcc7e2007-10-18 23:39:30 -07004373/*
Li Zefana043e3b2008-02-23 15:24:09 -08004374 * cgroup_create - create a cgroup
4375 * @parent: cgroup that will be parent of the new cgroup
4376 * @dentry: dentry of the new cgroup
4377 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07004378 *
Li Zefana043e3b2008-02-23 15:24:09 -08004379 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07004380 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07004381static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04004382 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004383{
Tejun Heoae7f1642013-08-13 20:22:50 -04004384 struct cgroup_subsys_state *css_ar[CGROUP_SUBSYS_COUNT] = { };
Paul Menagebd89aab2007-10-18 23:40:44 -07004385 struct cgroup *cgrp;
Li Zefan65dff752013-03-01 15:01:56 +08004386 struct cgroup_name *name;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004387 struct cgroupfs_root *root = parent->root;
4388 int err = 0;
4389 struct cgroup_subsys *ss;
4390 struct super_block *sb = root->sb;
4391
Tejun Heo0a950f62012-11-19 09:02:12 -08004392 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004393 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
4394 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004395 return -ENOMEM;
4396
Li Zefan65dff752013-03-01 15:01:56 +08004397 name = cgroup_alloc_name(dentry);
4398 if (!name)
4399 goto err_free_cgrp;
4400 rcu_assign_pointer(cgrp->name, name);
4401
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004402 /*
4403 * Temporarily set the pointer to NULL, so idr_find() won't return
4404 * a half-baked cgroup.
4405 */
4406 cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL);
Tejun Heo0a950f62012-11-19 09:02:12 -08004407 if (cgrp->id < 0)
Li Zefan65dff752013-03-01 15:01:56 +08004408 goto err_free_name;
Tejun Heo0a950f62012-11-19 09:02:12 -08004409
Tejun Heo976c06b2012-11-05 09:16:59 -08004410 /*
4411 * Only live parents can have children. Note that the liveliness
4412 * check isn't strictly necessary because cgroup_mkdir() and
4413 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
4414 * anyway so that locking is contained inside cgroup proper and we
4415 * don't get nasty surprises if we ever grow another caller.
4416 */
4417 if (!cgroup_lock_live_group(parent)) {
4418 err = -ENODEV;
Tejun Heo0a950f62012-11-19 09:02:12 -08004419 goto err_free_id;
Tejun Heo976c06b2012-11-05 09:16:59 -08004420 }
4421
Paul Menageddbcc7e2007-10-18 23:39:30 -07004422 /* Grab a reference on the superblock so the hierarchy doesn't
4423 * get deleted on unmount if there are child cgroups. This
4424 * can be done outside cgroup_mutex, since the sb can't
4425 * disappear while someone has an open control file on the
4426 * fs */
4427 atomic_inc(&sb->s_active);
4428
Paul Menagecc31edc2008-10-18 20:28:04 -07004429 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004430
Li Zefanfe1c06c2013-01-24 14:30:22 +08004431 dentry->d_fsdata = cgrp;
4432 cgrp->dentry = dentry;
4433
Paul Menagebd89aab2007-10-18 23:40:44 -07004434 cgrp->parent = parent;
Tejun Heo0ae78e02013-08-13 11:01:54 -04004435 cgrp->dummy_css.parent = &parent->dummy_css;
Paul Menagebd89aab2007-10-18 23:40:44 -07004436 cgrp->root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004437
Li Zefanb6abdb02008-03-04 14:28:19 -08004438 if (notify_on_release(parent))
4439 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4440
Tejun Heo2260e7f2012-11-19 08:13:38 -08004441 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4442 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004443
Tejun Heo5549c492013-06-24 15:21:48 -07004444 for_each_root_subsys(root, ss) {
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004445 struct cgroup_subsys_state *css;
Li Zefan4528fd02010-02-02 13:44:10 -08004446
Tejun Heoca8bdca2013-08-26 18:40:56 -04004447 css = ss->css_alloc(cgroup_css(parent, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004448 if (IS_ERR(css)) {
4449 err = PTR_ERR(css);
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004450 goto err_free_all;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004451 }
Tejun Heoae7f1642013-08-13 20:22:50 -04004452 css_ar[ss->subsys_id] = css;
Tejun Heod3daf282013-06-13 19:39:16 -07004453
4454 err = percpu_ref_init(&css->refcnt, css_release);
Tejun Heoae7f1642013-08-13 20:22:50 -04004455 if (err)
Tejun Heod3daf282013-06-13 19:39:16 -07004456 goto err_free_all;
4457
Tejun Heo623f9262013-08-13 11:01:55 -04004458 init_css(css, ss, cgrp);
Tejun Heod3daf282013-06-13 19:39:16 -07004459
Li Zefan4528fd02010-02-02 13:44:10 -08004460 if (ss->use_id) {
Tejun Heo623f9262013-08-13 11:01:55 -04004461 err = alloc_css_id(css);
Li Zefan4528fd02010-02-02 13:44:10 -08004462 if (err)
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004463 goto err_free_all;
Li Zefan4528fd02010-02-02 13:44:10 -08004464 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004465 }
4466
Tejun Heo4e139af2012-11-19 08:13:36 -08004467 /*
4468 * Create directory. cgroup_create_file() returns with the new
4469 * directory locked on success so that it can be populated without
4470 * dropping cgroup_mutex.
4471 */
Tejun Heo28fd6f32012-11-19 08:13:36 -08004472 err = cgroup_create_file(dentry, S_IFDIR | mode, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004473 if (err < 0)
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004474 goto err_free_all;
Tejun Heo4e139af2012-11-19 08:13:36 -08004475 lockdep_assert_held(&dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004476
Tejun Heo00356bd2013-06-18 11:14:22 -07004477 cgrp->serial_nr = cgroup_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004478
Tejun Heo4e139af2012-11-19 08:13:36 -08004479 /* allocation complete, commit to creation */
Tejun Heo4e139af2012-11-19 08:13:36 -08004480 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
4481 root->number_of_cgroups++;
Tejun Heo28fd6f32012-11-19 08:13:36 -08004482
Tejun Heo0ae78e02013-08-13 11:01:54 -04004483 /* each css holds a ref to the cgroup's dentry and the parent css */
4484 for_each_root_subsys(root, ss) {
Tejun Heoae7f1642013-08-13 20:22:50 -04004485 struct cgroup_subsys_state *css = css_ar[ss->subsys_id];
Tejun Heo0ae78e02013-08-13 11:01:54 -04004486
Tejun Heoed9577932012-11-05 09:16:58 -08004487 dget(dentry);
Li Zhong930913a2013-08-16 17:57:14 +08004488 css_get(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004489 }
Tejun Heo48ddbe12012-04-01 12:09:56 -07004490
Li Zefan415cf072013-04-08 14:35:02 +08004491 /* hold a ref to the parent's dentry */
4492 dget(parent->dentry);
4493
Tejun Heob1929db2012-11-19 08:13:38 -08004494 /* creation succeeded, notify subsystems */
Tejun Heo5549c492013-06-24 15:21:48 -07004495 for_each_root_subsys(root, ss) {
Tejun Heoae7f1642013-08-13 20:22:50 -04004496 struct cgroup_subsys_state *css = css_ar[ss->subsys_id];
Tejun Heo623f9262013-08-13 11:01:55 -04004497
4498 err = online_css(css);
Tejun Heob1929db2012-11-19 08:13:38 -08004499 if (err)
4500 goto err_destroy;
Glauber Costa1f869e82012-11-30 17:31:23 +04004501
4502 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
4503 parent->parent) {
4504 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",
4505 current->comm, current->pid, ss->name);
4506 if (!strcmp(ss->name, "memory"))
4507 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
4508 ss->warned_broken_hierarchy = true;
4509 }
Tejun Heoa8638032012-11-09 09:12:29 -08004510 }
4511
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004512 idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
4513
Tejun Heo2bb566c2013-08-08 20:11:23 -04004514 err = cgroup_addrm_files(cgrp, cgroup_base_files, true);
Tejun Heo628f7cd2013-06-28 16:24:11 -07004515 if (err)
4516 goto err_destroy;
4517
4518 err = cgroup_populate_dir(cgrp, root->subsys_mask);
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004519 if (err)
4520 goto err_destroy;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004521
4522 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07004523 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004524
4525 return 0;
4526
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004527err_free_all:
Tejun Heo5549c492013-06-24 15:21:48 -07004528 for_each_root_subsys(root, ss) {
Tejun Heoae7f1642013-08-13 20:22:50 -04004529 struct cgroup_subsys_state *css = css_ar[ss->subsys_id];
Tejun Heod3daf282013-06-13 19:39:16 -07004530
4531 if (css) {
4532 percpu_ref_cancel_init(&css->refcnt);
Tejun Heoeb954192013-08-08 20:11:23 -04004533 ss->css_free(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004534 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004535 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004536 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004537 /* Release the reference count that we took on the superblock */
4538 deactivate_super(sb);
Tejun Heo0a950f62012-11-19 09:02:12 -08004539err_free_id:
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004540 idr_remove(&root->cgroup_idr, cgrp->id);
Li Zefan65dff752013-03-01 15:01:56 +08004541err_free_name:
4542 kfree(rcu_dereference_raw(cgrp->name));
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004543err_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004544 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004545 return err;
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004546
4547err_destroy:
4548 cgroup_destroy_locked(cgrp);
4549 mutex_unlock(&cgroup_mutex);
4550 mutex_unlock(&dentry->d_inode->i_mutex);
4551 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004552}
4553
Al Viro18bb1db2011-07-26 01:41:39 -04004554static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004555{
4556 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
4557
4558 /* the vfs holds inode->i_mutex already */
4559 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
4560}
4561
Tejun Heo223dbc32013-08-13 20:22:50 -04004562/*
4563 * This is called when the refcnt of a css is confirmed to be killed.
4564 * css_tryget() is now guaranteed to fail.
4565 */
4566static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004567{
Tejun Heo223dbc32013-08-13 20:22:50 -04004568 struct cgroup_subsys_state *css =
4569 container_of(work, struct cgroup_subsys_state, destroy_work);
4570 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004571
Tejun Heof20104d2013-08-13 20:22:50 -04004572 mutex_lock(&cgroup_mutex);
4573
4574 /*
Tejun Heo09a503ea2013-08-13 20:22:50 -04004575 * css_tryget() is guaranteed to fail now. Tell subsystems to
4576 * initate destruction.
4577 */
4578 offline_css(css);
4579
4580 /*
Tejun Heof20104d2013-08-13 20:22:50 -04004581 * If @cgrp is marked dead, it's waiting for refs of all css's to
4582 * be disabled before proceeding to the second phase of cgroup
4583 * destruction. If we are the last one, kick it off.
4584 */
Tejun Heo09a503ea2013-08-13 20:22:50 -04004585 if (!cgrp->nr_css && cgroup_is_dead(cgrp))
Tejun Heof20104d2013-08-13 20:22:50 -04004586 cgroup_destroy_css_killed(cgrp);
4587
4588 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004589
4590 /*
4591 * Put the css refs from kill_css(). Each css holds an extra
4592 * reference to the cgroup's dentry and cgroup removal proceeds
4593 * regardless of css refs. On the last put of each css, whenever
4594 * that may be, the extra dentry ref is put so that dentry
4595 * destruction happens only after all css's are released.
4596 */
4597 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004598}
4599
Tejun Heo223dbc32013-08-13 20:22:50 -04004600/* css kill confirmation processing requires process context, bounce */
4601static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004602{
4603 struct cgroup_subsys_state *css =
4604 container_of(ref, struct cgroup_subsys_state, refcnt);
4605
Tejun Heo223dbc32013-08-13 20:22:50 -04004606 INIT_WORK(&css->destroy_work, css_killed_work_fn);
4607 schedule_work(&css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004608}
4609
4610/**
Tejun Heoedae0c32013-08-13 20:22:51 -04004611 * kill_css - destroy a css
4612 * @css: css to destroy
4613 *
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004614 * This function initiates destruction of @css by removing cgroup interface
4615 * files and putting its base reference. ->css_offline() will be invoked
4616 * asynchronously once css_tryget() is guaranteed to fail and when the
4617 * reference count reaches zero, @css will be released.
Tejun Heoedae0c32013-08-13 20:22:51 -04004618 */
4619static void kill_css(struct cgroup_subsys_state *css)
4620{
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004621 cgroup_clear_dir(css->cgroup, 1 << css->ss->subsys_id);
4622
Tejun Heoedae0c32013-08-13 20:22:51 -04004623 /*
4624 * Killing would put the base ref, but we need to keep it alive
4625 * until after ->css_offline().
4626 */
4627 css_get(css);
4628
4629 /*
4630 * cgroup core guarantees that, by the time ->css_offline() is
4631 * invoked, no new css reference will be given out via
4632 * css_tryget(). We can't simply call percpu_ref_kill() and
4633 * proceed to offlining css's because percpu_ref_kill() doesn't
4634 * guarantee that the ref is seen as killed on all CPUs on return.
4635 *
4636 * Use percpu_ref_kill_and_confirm() to get notifications as each
4637 * css is confirmed to be seen as killed on all CPUs.
4638 */
4639 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004640}
4641
4642/**
4643 * cgroup_destroy_locked - the first stage of cgroup destruction
4644 * @cgrp: cgroup to be destroyed
4645 *
4646 * css's make use of percpu refcnts whose killing latency shouldn't be
4647 * exposed to userland and are RCU protected. Also, cgroup core needs to
4648 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
4649 * invoked. To satisfy all the requirements, destruction is implemented in
4650 * the following two steps.
4651 *
4652 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4653 * userland visible parts and start killing the percpu refcnts of
4654 * css's. Set up so that the next stage will be kicked off once all
4655 * the percpu refcnts are confirmed to be killed.
4656 *
4657 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4658 * rest of destruction. Once all cgroup references are gone, the
4659 * cgroup is RCU-freed.
4660 *
4661 * This function implements s1. After this step, @cgrp is gone as far as
4662 * the userland is concerned and a new cgroup with the same name may be
4663 * created. As cgroup doesn't care about the names internally, this
4664 * doesn't cause any problem.
4665 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004666static int cgroup_destroy_locked(struct cgroup *cgrp)
4667 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004668{
Tejun Heo42809dd2012-11-19 08:13:37 -08004669 struct dentry *d = cgrp->dentry;
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004670 struct cgroup_event *event, *tmp;
Tejun Heoed9577932012-11-05 09:16:58 -08004671 struct cgroup_subsys *ss;
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004672 struct cgroup *child;
Tejun Heoddd69142013-06-12 21:04:54 -07004673 bool empty;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004674
Tejun Heo42809dd2012-11-19 08:13:37 -08004675 lockdep_assert_held(&d->d_inode->i_mutex);
4676 lockdep_assert_held(&cgroup_mutex);
4677
Tejun Heoddd69142013-06-12 21:04:54 -07004678 /*
Tejun Heo6f3d828f02013-06-12 21:04:55 -07004679 * css_set_lock synchronizes access to ->cset_links and prevents
4680 * @cgrp from being removed while __put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004681 */
4682 read_lock(&css_set_lock);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004683 empty = list_empty(&cgrp->cset_links);
Tejun Heoddd69142013-06-12 21:04:54 -07004684 read_unlock(&css_set_lock);
4685 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004686 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004687
Tejun Heo1a90dd52012-11-05 09:16:59 -08004688 /*
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004689 * Make sure there's no live children. We can't test ->children
4690 * emptiness as dead children linger on it while being destroyed;
4691 * otherwise, "rmdir parent/child parent" may fail with -EBUSY.
4692 */
4693 empty = true;
4694 rcu_read_lock();
4695 list_for_each_entry_rcu(child, &cgrp->children, sibling) {
4696 empty = cgroup_is_dead(child);
4697 if (!empty)
4698 break;
4699 }
4700 rcu_read_unlock();
4701 if (!empty)
4702 return -EBUSY;
4703
4704 /*
Tejun Heoedae0c32013-08-13 20:22:51 -04004705 * Initiate massacre of all css's. cgroup_destroy_css_killed()
4706 * will be invoked to perform the rest of destruction once the
4707 * percpu refs of all css's are confirmed to be killed.
Tejun Heo1a90dd52012-11-05 09:16:59 -08004708 */
Tejun Heoedae0c32013-08-13 20:22:51 -04004709 for_each_root_subsys(cgrp->root, ss)
Tejun Heoca8bdca2013-08-26 18:40:56 -04004710 kill_css(cgroup_css(cgrp, ss));
Tejun Heo455050d2013-06-13 19:27:41 -07004711
4712 /*
4713 * Mark @cgrp dead. This prevents further task migration and child
4714 * creation by disabling cgroup_lock_live_group(). Note that
Tejun Heo492eb212013-08-08 20:11:25 -04004715 * CGRP_DEAD assertion is depended upon by css_next_child() to
Tejun Heo455050d2013-06-13 19:27:41 -07004716 * resume iteration after dropping RCU read lock. See
Tejun Heo492eb212013-08-08 20:11:25 -04004717 * css_next_child() for details.
Tejun Heo455050d2013-06-13 19:27:41 -07004718 */
Tejun Heo54766d42013-06-12 21:04:53 -07004719 set_bit(CGRP_DEAD, &cgrp->flags);
Tejun Heo1a90dd52012-11-05 09:16:59 -08004720
Tejun Heo455050d2013-06-13 19:27:41 -07004721 /* CGRP_DEAD is set, remove from ->release_list for the last time */
4722 raw_spin_lock(&release_list_lock);
4723 if (!list_empty(&cgrp->release_list))
4724 list_del_init(&cgrp->release_list);
4725 raw_spin_unlock(&release_list_lock);
4726
4727 /*
Tejun Heof20104d2013-08-13 20:22:50 -04004728 * If @cgrp has css's attached, the second stage of cgroup
4729 * destruction is kicked off from css_killed_work_fn() after the
4730 * refs of all attached css's are killed. If @cgrp doesn't have
4731 * any css, we kick it off here.
Tejun Heo455050d2013-06-13 19:27:41 -07004732 */
Tejun Heof20104d2013-08-13 20:22:50 -04004733 if (!cgrp->nr_css)
4734 cgroup_destroy_css_killed(cgrp);
4735
4736 /*
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004737 * Clear the base files and remove @cgrp directory. The removal
4738 * puts the base ref but we aren't quite done with @cgrp yet, so
4739 * hold onto it.
Tejun Heo455050d2013-06-13 19:27:41 -07004740 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04004741 cgroup_addrm_files(cgrp, cgroup_base_files, false);
Tejun Heo455050d2013-06-13 19:27:41 -07004742 dget(d);
4743 cgroup_d_remove_dir(d);
4744
4745 /*
4746 * Unregister events and notify userspace.
4747 * Notify userspace about cgroup removing only after rmdir of cgroup
4748 * directory to avoid race between userspace and kernelspace.
4749 */
4750 spin_lock(&cgrp->event_list_lock);
4751 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4752 list_del_init(&event->list);
4753 schedule_work(&event->remove);
4754 }
4755 spin_unlock(&cgrp->event_list_lock);
4756
Tejun Heoea15f8c2013-06-13 19:27:42 -07004757 return 0;
4758};
4759
Tejun Heod3daf282013-06-13 19:39:16 -07004760/**
Tejun Heof20104d2013-08-13 20:22:50 -04004761 * cgroup_destroy_css_killed - the second step of cgroup destruction
Tejun Heod3daf282013-06-13 19:39:16 -07004762 * @work: cgroup->destroy_free_work
4763 *
4764 * This function is invoked from a work item for a cgroup which is being
Tejun Heo09a503ea2013-08-13 20:22:50 -04004765 * destroyed after all css's are offlined and performs the rest of
4766 * destruction. This is the second step of destruction described in the
4767 * comment above cgroup_destroy_locked().
Tejun Heod3daf282013-06-13 19:39:16 -07004768 */
Tejun Heof20104d2013-08-13 20:22:50 -04004769static void cgroup_destroy_css_killed(struct cgroup *cgrp)
Tejun Heoea15f8c2013-06-13 19:27:42 -07004770{
Tejun Heoea15f8c2013-06-13 19:27:42 -07004771 struct cgroup *parent = cgrp->parent;
4772 struct dentry *d = cgrp->dentry;
Tejun Heoea15f8c2013-06-13 19:27:42 -07004773
Tejun Heof20104d2013-08-13 20:22:50 -04004774 lockdep_assert_held(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004775
Paul Menage999cd8a2009-01-07 18:08:36 -08004776 /* delete this cgroup from parent->children */
Tejun Heoeb6fd502012-11-09 09:12:29 -08004777 list_del_rcu(&cgrp->sibling);
Tejun Heob0ca5a82012-04-01 12:09:54 -07004778
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004779 /*
4780 * We should remove the cgroup object from idr before its grace
4781 * period starts, so we won't be looking up a cgroup while the
4782 * cgroup is being freed.
4783 */
4784 idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4785 cgrp->id = -1;
4786
Paul Menageddbcc7e2007-10-18 23:39:30 -07004787 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004788
Paul Menagebd89aab2007-10-18 23:40:44 -07004789 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004790 check_for_release(parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004791}
4792
Tejun Heo42809dd2012-11-19 08:13:37 -08004793static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
4794{
4795 int ret;
4796
4797 mutex_lock(&cgroup_mutex);
4798 ret = cgroup_destroy_locked(dentry->d_fsdata);
4799 mutex_unlock(&cgroup_mutex);
4800
4801 return ret;
4802}
4803
Tejun Heo8e3f6542012-04-01 12:09:55 -07004804static void __init_or_module cgroup_init_cftsets(struct cgroup_subsys *ss)
4805{
4806 INIT_LIST_HEAD(&ss->cftsets);
4807
4808 /*
4809 * base_cftset is embedded in subsys itself, no need to worry about
4810 * deregistration.
4811 */
4812 if (ss->base_cftypes) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04004813 struct cftype *cft;
4814
4815 for (cft = ss->base_cftypes; cft->name[0] != '\0'; cft++)
4816 cft->ss = ss;
4817
Tejun Heo8e3f6542012-04-01 12:09:55 -07004818 ss->base_cftset.cfts = ss->base_cftypes;
4819 list_add_tail(&ss->base_cftset.node, &ss->cftsets);
4820 }
4821}
4822
Li Zefan06a11922008-04-29 01:00:07 -07004823static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004824{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004825 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004826
4827 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004828
Tejun Heo648bb562012-11-19 08:13:36 -08004829 mutex_lock(&cgroup_mutex);
4830
Tejun Heo8e3f6542012-04-01 12:09:55 -07004831 /* init base cftset */
4832 cgroup_init_cftsets(ss);
4833
Paul Menageddbcc7e2007-10-18 23:39:30 -07004834 /* Create the top cgroup state for this subsystem */
Tejun Heo9871bf92013-06-24 15:21:47 -07004835 list_add(&ss->sibling, &cgroup_dummy_root.subsys_list);
4836 ss->root = &cgroup_dummy_root;
Tejun Heoca8bdca2013-08-26 18:40:56 -04004837 css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004838 /* We don't handle early failures gracefully */
4839 BUG_ON(IS_ERR(css));
Tejun Heo623f9262013-08-13 11:01:55 -04004840 init_css(css, ss, cgroup_dummy_top);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004841
Li Zefane8d55fd2008-04-29 01:00:13 -07004842 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004843 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004844 * newly registered, all tasks and hence the
4845 * init_css_set is in the subsystem's top cgroup. */
Tejun Heob48c6a82012-11-19 08:13:36 -08004846 init_css_set.subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004847
4848 need_forkexit_callback |= ss->fork || ss->exit;
4849
Li Zefane8d55fd2008-04-29 01:00:13 -07004850 /* At system boot, before all subsystems have been
4851 * registered, no tasks have been forked, so we don't
4852 * need to invoke fork callbacks here. */
4853 BUG_ON(!list_empty(&init_task.tasks));
4854
Tejun Heoae7f1642013-08-13 20:22:50 -04004855 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004856
Tejun Heo648bb562012-11-19 08:13:36 -08004857 mutex_unlock(&cgroup_mutex);
4858
Ben Blume6a11052010-03-10 15:22:09 -08004859 /* this function shouldn't be used with modular subsystems, since they
4860 * need to register a subsys_id, among other things */
4861 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004862}
4863
4864/**
Ben Blume6a11052010-03-10 15:22:09 -08004865 * cgroup_load_subsys: load and register a modular subsystem at runtime
4866 * @ss: the subsystem to load
4867 *
4868 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004869 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004870 * up for use. If the subsystem is built-in anyway, work is delegated to the
4871 * simpler cgroup_init_subsys.
4872 */
4873int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4874{
Ben Blume6a11052010-03-10 15:22:09 -08004875 struct cgroup_subsys_state *css;
Tejun Heod19e19d2012-11-19 08:13:37 -08004876 int i, ret;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004877 struct hlist_node *tmp;
Tejun Heo5abb8852013-06-12 21:04:49 -07004878 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +08004879 unsigned long key;
Ben Blume6a11052010-03-10 15:22:09 -08004880
4881 /* check name and function validity */
4882 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
Tejun Heo92fb9742012-11-19 08:13:38 -08004883 ss->css_alloc == NULL || ss->css_free == NULL)
Ben Blume6a11052010-03-10 15:22:09 -08004884 return -EINVAL;
4885
4886 /*
4887 * we don't support callbacks in modular subsystems. this check is
4888 * before the ss->module check for consistency; a subsystem that could
4889 * be a module should still have no callbacks even if the user isn't
4890 * compiling it as one.
4891 */
4892 if (ss->fork || ss->exit)
4893 return -EINVAL;
4894
4895 /*
4896 * an optionally modular subsystem is built-in: we want to do nothing,
4897 * since cgroup_init_subsys will have already taken care of it.
4898 */
4899 if (ss->module == NULL) {
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004900 /* a sanity check */
Tejun Heo9871bf92013-06-24 15:21:47 -07004901 BUG_ON(cgroup_subsys[ss->subsys_id] != ss);
Ben Blume6a11052010-03-10 15:22:09 -08004902 return 0;
4903 }
4904
Tejun Heo8e3f6542012-04-01 12:09:55 -07004905 /* init base cftset */
4906 cgroup_init_cftsets(ss);
4907
Ben Blume6a11052010-03-10 15:22:09 -08004908 mutex_lock(&cgroup_mutex);
Tejun Heo9871bf92013-06-24 15:21:47 -07004909 cgroup_subsys[ss->subsys_id] = ss;
Ben Blume6a11052010-03-10 15:22:09 -08004910
4911 /*
Tejun Heo92fb9742012-11-19 08:13:38 -08004912 * no ss->css_alloc seems to need anything important in the ss
Tejun Heo9871bf92013-06-24 15:21:47 -07004913 * struct, so this can happen first (i.e. before the dummy root
Tejun Heo92fb9742012-11-19 08:13:38 -08004914 * attachment).
Ben Blume6a11052010-03-10 15:22:09 -08004915 */
Tejun Heoca8bdca2013-08-26 18:40:56 -04004916 css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss));
Ben Blume6a11052010-03-10 15:22:09 -08004917 if (IS_ERR(css)) {
Tejun Heo9871bf92013-06-24 15:21:47 -07004918 /* failure case - need to deassign the cgroup_subsys[] slot. */
4919 cgroup_subsys[ss->subsys_id] = NULL;
Ben Blume6a11052010-03-10 15:22:09 -08004920 mutex_unlock(&cgroup_mutex);
4921 return PTR_ERR(css);
4922 }
4923
Tejun Heo9871bf92013-06-24 15:21:47 -07004924 list_add(&ss->sibling, &cgroup_dummy_root.subsys_list);
4925 ss->root = &cgroup_dummy_root;
Ben Blume6a11052010-03-10 15:22:09 -08004926
4927 /* our new subsystem will be attached to the dummy hierarchy. */
Tejun Heo623f9262013-08-13 11:01:55 -04004928 init_css(css, ss, cgroup_dummy_top);
4929 /* init_idr must be after init_css() because it sets css->id. */
Ben Blume6a11052010-03-10 15:22:09 -08004930 if (ss->use_id) {
Tejun Heod19e19d2012-11-19 08:13:37 -08004931 ret = cgroup_init_idr(ss, css);
4932 if (ret)
4933 goto err_unload;
Ben Blume6a11052010-03-10 15:22:09 -08004934 }
4935
4936 /*
4937 * Now we need to entangle the css into the existing css_sets. unlike
4938 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4939 * will need a new pointer to it; done by iterating the css_set_table.
4940 * furthermore, modifying the existing css_sets will corrupt the hash
4941 * table state, so each changed css_set will need its hash recomputed.
4942 * this is all done under the css_set_lock.
4943 */
4944 write_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -07004945 hash_for_each_safe(css_set_table, i, tmp, cset, hlist) {
Li Zefan0ac801f2013-01-10 11:49:27 +08004946 /* skip entries that we already rehashed */
Tejun Heo5abb8852013-06-12 21:04:49 -07004947 if (cset->subsys[ss->subsys_id])
Li Zefan0ac801f2013-01-10 11:49:27 +08004948 continue;
4949 /* remove existing entry */
Tejun Heo5abb8852013-06-12 21:04:49 -07004950 hash_del(&cset->hlist);
Li Zefan0ac801f2013-01-10 11:49:27 +08004951 /* set new value */
Tejun Heo5abb8852013-06-12 21:04:49 -07004952 cset->subsys[ss->subsys_id] = css;
Li Zefan0ac801f2013-01-10 11:49:27 +08004953 /* recompute hash and restore entry */
Tejun Heo5abb8852013-06-12 21:04:49 -07004954 key = css_set_hash(cset->subsys);
4955 hash_add(css_set_table, &cset->hlist, key);
Ben Blume6a11052010-03-10 15:22:09 -08004956 }
4957 write_unlock(&css_set_lock);
4958
Tejun Heoae7f1642013-08-13 20:22:50 -04004959 ret = online_css(css);
Tejun Heob1929db2012-11-19 08:13:38 -08004960 if (ret)
4961 goto err_unload;
Tejun Heoa8638032012-11-09 09:12:29 -08004962
Ben Blume6a11052010-03-10 15:22:09 -08004963 /* success! */
4964 mutex_unlock(&cgroup_mutex);
4965 return 0;
Tejun Heod19e19d2012-11-19 08:13:37 -08004966
4967err_unload:
4968 mutex_unlock(&cgroup_mutex);
4969 /* @ss can't be mounted here as try_module_get() would fail */
4970 cgroup_unload_subsys(ss);
4971 return ret;
Ben Blume6a11052010-03-10 15:22:09 -08004972}
4973EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4974
4975/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004976 * cgroup_unload_subsys: unload a modular subsystem
4977 * @ss: the subsystem to unload
4978 *
4979 * This function should be called in a modular subsystem's exitcall. When this
4980 * function is invoked, the refcount on the subsystem's module will be 0, so
4981 * the subsystem will not be attached to any hierarchy.
4982 */
4983void cgroup_unload_subsys(struct cgroup_subsys *ss)
4984{
Tejun Heo69d02062013-06-12 21:04:50 -07004985 struct cgrp_cset_link *link;
Ben Blumcf5d5942010-03-10 15:22:09 -08004986
4987 BUG_ON(ss->module == NULL);
4988
4989 /*
4990 * we shouldn't be called if the subsystem is in use, and the use of
Tejun Heo1d5be6b2013-07-12 13:38:17 -07004991 * try_module_get() in rebind_subsystems() should ensure that it
Ben Blumcf5d5942010-03-10 15:22:09 -08004992 * doesn't start being used while we're killing it off.
4993 */
Tejun Heo9871bf92013-06-24 15:21:47 -07004994 BUG_ON(ss->root != &cgroup_dummy_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08004995
4996 mutex_lock(&cgroup_mutex);
Tejun Heo02ae7482012-11-19 08:13:37 -08004997
Tejun Heoca8bdca2013-08-26 18:40:56 -04004998 offline_css(cgroup_css(cgroup_dummy_top, ss));
Tejun Heo02ae7482012-11-19 08:13:37 -08004999
Tejun Heoc897ff62013-02-27 17:03:49 -08005000 if (ss->use_id)
Tejun Heo02ae7482012-11-19 08:13:37 -08005001 idr_destroy(&ss->idr);
Tejun Heo02ae7482012-11-19 08:13:37 -08005002
Ben Blumcf5d5942010-03-10 15:22:09 -08005003 /* deassign the subsys_id */
Tejun Heo9871bf92013-06-24 15:21:47 -07005004 cgroup_subsys[ss->subsys_id] = NULL;
Ben Blumcf5d5942010-03-10 15:22:09 -08005005
Tejun Heo9871bf92013-06-24 15:21:47 -07005006 /* remove subsystem from the dummy root's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07005007 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08005008
5009 /*
Tejun Heo9871bf92013-06-24 15:21:47 -07005010 * disentangle the css from all css_sets attached to the dummy
5011 * top. as in loading, we need to pay our respects to the hashtable
5012 * gods.
Ben Blumcf5d5942010-03-10 15:22:09 -08005013 */
5014 write_lock(&css_set_lock);
Tejun Heo9871bf92013-06-24 15:21:47 -07005015 list_for_each_entry(link, &cgroup_dummy_top->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005016 struct css_set *cset = link->cset;
Li Zefan0ac801f2013-01-10 11:49:27 +08005017 unsigned long key;
Ben Blumcf5d5942010-03-10 15:22:09 -08005018
Tejun Heo5abb8852013-06-12 21:04:49 -07005019 hash_del(&cset->hlist);
5020 cset->subsys[ss->subsys_id] = NULL;
5021 key = css_set_hash(cset->subsys);
5022 hash_add(css_set_table, &cset->hlist, key);
Ben Blumcf5d5942010-03-10 15:22:09 -08005023 }
5024 write_unlock(&css_set_lock);
5025
5026 /*
Tejun Heo9871bf92013-06-24 15:21:47 -07005027 * remove subsystem's css from the cgroup_dummy_top and free it -
5028 * need to free before marking as null because ss->css_free needs
5029 * the cgrp->subsys pointer to find their state. note that this
5030 * also takes care of freeing the css_id.
Ben Blumcf5d5942010-03-10 15:22:09 -08005031 */
Tejun Heoca8bdca2013-08-26 18:40:56 -04005032 ss->css_free(cgroup_css(cgroup_dummy_top, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04005033 RCU_INIT_POINTER(cgroup_dummy_top->subsys[ss->subsys_id], NULL);
Ben Blumcf5d5942010-03-10 15:22:09 -08005034
5035 mutex_unlock(&cgroup_mutex);
5036}
5037EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
5038
5039/**
Li Zefana043e3b2008-02-23 15:24:09 -08005040 * cgroup_init_early - cgroup initialization at system boot
5041 *
5042 * Initialize cgroups at system boot, and initialize any
5043 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005044 */
5045int __init cgroup_init_early(void)
5046{
Tejun Heo30159ec2013-06-25 11:53:37 -07005047 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005048 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07005049
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07005050 atomic_set(&init_css_set.refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07005051 INIT_LIST_HEAD(&init_css_set.cgrp_links);
Paul Menage817929e2007-10-18 23:39:36 -07005052 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07005053 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07005054 css_set_count = 1;
Tejun Heo9871bf92013-06-24 15:21:47 -07005055 init_cgroup_root(&cgroup_dummy_root);
5056 cgroup_root_count = 1;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005057 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005058
Tejun Heo69d02062013-06-12 21:04:50 -07005059 init_cgrp_cset_link.cset = &init_css_set;
Tejun Heo9871bf92013-06-24 15:21:47 -07005060 init_cgrp_cset_link.cgrp = cgroup_dummy_top;
5061 list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -07005062 list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005063
Tejun Heo30159ec2013-06-25 11:53:37 -07005064 /* at bootup time, we don't worry about modular subsystems */
5065 for_each_builtin_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07005066 BUG_ON(!ss->name);
5067 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
Tejun Heo92fb9742012-11-19 08:13:38 -08005068 BUG_ON(!ss->css_alloc);
5069 BUG_ON(!ss->css_free);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005070 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08005071 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07005072 ss->name, ss->subsys_id);
5073 BUG();
5074 }
5075
5076 if (ss->early_init)
5077 cgroup_init_subsys(ss);
5078 }
5079 return 0;
5080}
5081
5082/**
Li Zefana043e3b2008-02-23 15:24:09 -08005083 * cgroup_init - cgroup initialization
5084 *
5085 * Register cgroup filesystem and /proc file, and initialize
5086 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005087 */
5088int __init cgroup_init(void)
5089{
Tejun Heo30159ec2013-06-25 11:53:37 -07005090 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08005091 unsigned long key;
Tejun Heo30159ec2013-06-25 11:53:37 -07005092 int i, err;
Paul Menagea4243162007-10-18 23:39:35 -07005093
5094 err = bdi_init(&cgroup_backing_dev_info);
5095 if (err)
5096 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005097
Tejun Heo30159ec2013-06-25 11:53:37 -07005098 for_each_builtin_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07005099 if (!ss->early_init)
5100 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005101 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08005102 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005103 }
5104
Tejun Heofa3ca072013-04-14 11:36:56 -07005105 /* allocate id for the dummy hierarchy */
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005106 mutex_lock(&cgroup_mutex);
5107 mutex_lock(&cgroup_root_mutex);
5108
Tejun Heo82fe9b02013-06-25 11:53:37 -07005109 /* Add init_css_set to the hash table */
5110 key = css_set_hash(init_css_set.subsys);
5111 hash_add(css_set_table, &init_css_set.hlist, key);
5112
Tejun Heofc76df72013-06-25 11:53:37 -07005113 BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1));
Greg KH676db4a2010-08-05 13:53:35 -07005114
Li Zefan4e96ee8e2013-07-31 09:50:50 +08005115 err = idr_alloc(&cgroup_dummy_root.cgroup_idr, cgroup_dummy_top,
5116 0, 1, GFP_KERNEL);
5117 BUG_ON(err < 0);
5118
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005119 mutex_unlock(&cgroup_root_mutex);
5120 mutex_unlock(&cgroup_mutex);
5121
Greg KH676db4a2010-08-05 13:53:35 -07005122 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
5123 if (!cgroup_kobj) {
5124 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005125 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07005126 }
5127
5128 err = register_filesystem(&cgroup_fs_type);
5129 if (err < 0) {
5130 kobject_put(cgroup_kobj);
5131 goto out;
5132 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07005133
Li Zefan46ae2202008-04-29 01:00:08 -07005134 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07005135
Paul Menageddbcc7e2007-10-18 23:39:30 -07005136out:
Paul Menagea4243162007-10-18 23:39:35 -07005137 if (err)
5138 bdi_destroy(&cgroup_backing_dev_info);
5139
Paul Menageddbcc7e2007-10-18 23:39:30 -07005140 return err;
5141}
Paul Menageb4f48b62007-10-18 23:39:33 -07005142
Paul Menagea4243162007-10-18 23:39:35 -07005143/*
5144 * proc_cgroup_show()
5145 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5146 * - Used for /proc/<pid>/cgroup.
5147 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
5148 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08005149 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07005150 * anyway. No need to check that tsk->cgroup != NULL, thanks to
5151 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
5152 * cgroup to top_cgroup.
5153 */
5154
5155/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04005156int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07005157{
5158 struct pid *pid;
5159 struct task_struct *tsk;
5160 char *buf;
5161 int retval;
5162 struct cgroupfs_root *root;
5163
5164 retval = -ENOMEM;
5165 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
5166 if (!buf)
5167 goto out;
5168
5169 retval = -ESRCH;
5170 pid = m->private;
5171 tsk = get_pid_task(pid, PIDTYPE_PID);
5172 if (!tsk)
5173 goto out_free;
5174
5175 retval = 0;
5176
5177 mutex_lock(&cgroup_mutex);
5178
Li Zefane5f6a862009-01-07 18:07:41 -08005179 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005180 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005181 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07005182 int count = 0;
5183
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005184 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heo5549c492013-06-24 15:21:48 -07005185 for_each_root_subsys(root, ss)
Paul Menagea4243162007-10-18 23:39:35 -07005186 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005187 if (strlen(root->name))
5188 seq_printf(m, "%sname=%s", count ? "," : "",
5189 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005190 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07005191 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07005192 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07005193 if (retval < 0)
5194 goto out_unlock;
5195 seq_puts(m, buf);
5196 seq_putc(m, '\n');
5197 }
5198
5199out_unlock:
5200 mutex_unlock(&cgroup_mutex);
5201 put_task_struct(tsk);
5202out_free:
5203 kfree(buf);
5204out:
5205 return retval;
5206}
5207
Paul Menagea4243162007-10-18 23:39:35 -07005208/* Display information about each subsystem and each hierarchy */
5209static int proc_cgroupstats_show(struct seq_file *m, void *v)
5210{
Tejun Heo30159ec2013-06-25 11:53:37 -07005211 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005212 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005213
Paul Menage8bab8dd2008-04-04 14:29:57 -07005214 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005215 /*
5216 * ideally we don't want subsystems moving around while we do this.
5217 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5218 * subsys/hierarchy state.
5219 */
Paul Menagea4243162007-10-18 23:39:35 -07005220 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005221
5222 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005223 seq_printf(m, "%s\t%d\t%d\t%d\n",
5224 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07005225 ss->root->number_of_cgroups, !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07005226
Paul Menagea4243162007-10-18 23:39:35 -07005227 mutex_unlock(&cgroup_mutex);
5228 return 0;
5229}
5230
5231static int cgroupstats_open(struct inode *inode, struct file *file)
5232{
Al Viro9dce07f2008-03-29 03:07:28 +00005233 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005234}
5235
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005236static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005237 .open = cgroupstats_open,
5238 .read = seq_read,
5239 .llseek = seq_lseek,
5240 .release = single_release,
5241};
5242
Paul Menageb4f48b62007-10-18 23:39:33 -07005243/**
5244 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08005245 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005246 *
5247 * Description: A task inherits its parent's cgroup at fork().
5248 *
5249 * A pointer to the shared css_set was automatically copied in
5250 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo9bb71302012-10-18 17:52:07 -07005251 * it was not made under the protection of RCU or cgroup_mutex, so
5252 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
5253 * have already changed current->cgroups, allowing the previously
5254 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07005255 *
5256 * At the point that cgroup_fork() is called, 'current' is the parent
5257 * task, and the passed argument 'child' points to the child task.
5258 */
5259void cgroup_fork(struct task_struct *child)
5260{
Tejun Heo9bb71302012-10-18 17:52:07 -07005261 task_lock(current);
Tejun Heoa8ad8052013-06-21 15:52:04 -07005262 get_css_set(task_css_set(current));
Paul Menage817929e2007-10-18 23:39:36 -07005263 child->cgroups = current->cgroups;
Tejun Heo9bb71302012-10-18 17:52:07 -07005264 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07005265 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005266}
5267
5268/**
Li Zefana043e3b2008-02-23 15:24:09 -08005269 * cgroup_post_fork - called on a new task after adding it to the task list
5270 * @child: the task in question
5271 *
Tejun Heo5edee612012-10-16 15:03:14 -07005272 * Adds the task to the list running through its css_set if necessary and
5273 * call the subsystem fork() callbacks. Has to be after the task is
5274 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005275 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005276 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005277 */
Paul Menage817929e2007-10-18 23:39:36 -07005278void cgroup_post_fork(struct task_struct *child)
5279{
Tejun Heo30159ec2013-06-25 11:53:37 -07005280 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005281 int i;
5282
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005283 /*
5284 * use_task_css_set_links is set to 1 before we walk the tasklist
5285 * under the tasklist_lock and we read it here after we added the child
5286 * to the tasklist under the tasklist_lock as well. If the child wasn't
5287 * yet in the tasklist when we walked through it from
5288 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
5289 * should be visible now due to the paired locking and barriers implied
5290 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
5291 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
5292 * lock on fork.
5293 */
Paul Menage817929e2007-10-18 23:39:36 -07005294 if (use_task_css_set_links) {
5295 write_lock(&css_set_lock);
Tejun Heod8783832012-10-18 17:40:30 -07005296 task_lock(child);
5297 if (list_empty(&child->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07005298 list_add(&child->cg_list, &task_css_set(child)->tasks);
Tejun Heod8783832012-10-18 17:40:30 -07005299 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07005300 write_unlock(&css_set_lock);
5301 }
Tejun Heo5edee612012-10-16 15:03:14 -07005302
5303 /*
5304 * Call ss->fork(). This must happen after @child is linked on
5305 * css_set; otherwise, @child might change state between ->fork()
5306 * and addition to css_set.
5307 */
5308 if (need_forkexit_callback) {
Li Zefan7d8e0bf2013-03-05 10:57:03 +08005309 /*
5310 * fork/exit callbacks are supported only for builtin
5311 * subsystems, and the builtin section of the subsys
5312 * array is immutable, so we don't need to lock the
5313 * subsys array here. On the other hand, modular section
5314 * of the array can be freed at module unload, so we
5315 * can't touch that.
5316 */
Tejun Heo30159ec2013-06-25 11:53:37 -07005317 for_each_builtin_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07005318 if (ss->fork)
5319 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07005320 }
Paul Menage817929e2007-10-18 23:39:36 -07005321}
Tejun Heo5edee612012-10-16 15:03:14 -07005322
Paul Menage817929e2007-10-18 23:39:36 -07005323/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005324 * cgroup_exit - detach cgroup from exiting task
5325 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08005326 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07005327 *
5328 * Description: Detach cgroup from @tsk and release it.
5329 *
5330 * Note that cgroups marked notify_on_release force every task in
5331 * them to take the global cgroup_mutex mutex when exiting.
5332 * This could impact scaling on very large systems. Be reluctant to
5333 * use notify_on_release cgroups where very high task exit scaling
5334 * is required on large systems.
5335 *
5336 * the_top_cgroup_hack:
5337 *
5338 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
5339 *
5340 * We call cgroup_exit() while the task is still competent to
5341 * handle notify_on_release(), then leave the task attached to the
5342 * root cgroup in each hierarchy for the remainder of its exit.
5343 *
5344 * To do this properly, we would increment the reference count on
5345 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
5346 * code we would add a second cgroup function call, to drop that
5347 * reference. This would just create an unnecessary hot spot on
5348 * the top_cgroup reference count, to no avail.
5349 *
5350 * Normally, holding a reference to a cgroup without bumping its
5351 * count is unsafe. The cgroup could go away, or someone could
5352 * attach us to a different cgroup, decrementing the count on
5353 * the first cgroup that we never incremented. But in this case,
5354 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08005355 * which wards off any cgroup_attach_task() attempts, or task is a failed
5356 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07005357 */
5358void cgroup_exit(struct task_struct *tsk, int run_callbacks)
5359{
Tejun Heo30159ec2013-06-25 11:53:37 -07005360 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005361 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005362 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005363
5364 /*
5365 * Unlink from the css_set task list if necessary.
5366 * Optimistically check cg_list before taking
5367 * css_set_lock
5368 */
5369 if (!list_empty(&tsk->cg_list)) {
5370 write_lock(&css_set_lock);
5371 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07005372 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07005373 write_unlock(&css_set_lock);
5374 }
5375
Paul Menageb4f48b62007-10-18 23:39:33 -07005376 /* Reassign the task to the init_css_set. */
5377 task_lock(tsk);
Tejun Heoa8ad8052013-06-21 15:52:04 -07005378 cset = task_css_set(tsk);
5379 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005380
5381 if (run_callbacks && need_forkexit_callback) {
Li Zefan7d8e0bf2013-03-05 10:57:03 +08005382 /*
5383 * fork/exit callbacks are supported only for builtin
5384 * subsystems, see cgroup_post_fork() for details.
5385 */
Tejun Heo30159ec2013-06-25 11:53:37 -07005386 for_each_builtin_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005387 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04005388 struct cgroup_subsys_state *old_css = cset->subsys[i];
5389 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005390
Tejun Heoeb954192013-08-08 20:11:23 -04005391 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005392 }
5393 }
5394 }
Paul Menageb4f48b62007-10-18 23:39:33 -07005395 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005396
Tejun Heo5abb8852013-06-12 21:04:49 -07005397 put_css_set_taskexit(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005398}
Paul Menage697f4162007-10-18 23:39:34 -07005399
Paul Menagebd89aab2007-10-18 23:40:44 -07005400static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005401{
Li Zefanf50daa72013-03-01 15:06:07 +08005402 if (cgroup_is_releasable(cgrp) &&
Tejun Heo6f3d828f02013-06-12 21:04:55 -07005403 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
Li Zefanf50daa72013-03-01 15:06:07 +08005404 /*
5405 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07005406 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08005407 * it now
5408 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005409 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08005410
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005411 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07005412 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07005413 list_empty(&cgrp->release_list)) {
5414 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005415 need_schedule_work = 1;
5416 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005417 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005418 if (need_schedule_work)
5419 schedule_work(&release_agent_work);
5420 }
5421}
5422
Paul Menage81a6a5c2007-10-18 23:39:38 -07005423/*
5424 * Notify userspace when a cgroup is released, by running the
5425 * configured release agent with the name of the cgroup (path
5426 * relative to the root of cgroup file system) as the argument.
5427 *
5428 * Most likely, this user command will try to rmdir this cgroup.
5429 *
5430 * This races with the possibility that some other task will be
5431 * attached to this cgroup before it is removed, or that some other
5432 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5433 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5434 * unused, and this cgroup will be reprieved from its death sentence,
5435 * to continue to serve a useful existence. Next time it's released,
5436 * we will get notified again, if it still has 'notify_on_release' set.
5437 *
5438 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5439 * means only wait until the task is successfully execve()'d. The
5440 * separate release agent task is forked by call_usermodehelper(),
5441 * then control in this thread returns here, without waiting for the
5442 * release agent task. We don't bother to wait because the caller of
5443 * this routine has no use for the exit status of the release agent
5444 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005445 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005446static void cgroup_release_agent(struct work_struct *work)
5447{
5448 BUG_ON(work != &release_agent_work);
5449 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005450 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005451 while (!list_empty(&release_list)) {
5452 char *argv[3], *envp[3];
5453 int i;
Paul Menagee788e062008-07-25 01:46:59 -07005454 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07005455 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07005456 struct cgroup,
5457 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07005458 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005459 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005460 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07005461 if (!pathbuf)
5462 goto continue_free;
5463 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
5464 goto continue_free;
5465 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5466 if (!agentbuf)
5467 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005468
5469 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07005470 argv[i++] = agentbuf;
5471 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005472 argv[i] = NULL;
5473
5474 i = 0;
5475 /* minimal command environment */
5476 envp[i++] = "HOME=/";
5477 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5478 envp[i] = NULL;
5479
5480 /* Drop the lock while we invoke the usermode helper,
5481 * since the exec could involve hitting disk and hence
5482 * be a slow process */
5483 mutex_unlock(&cgroup_mutex);
5484 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005485 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07005486 continue_free:
5487 kfree(pathbuf);
5488 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005489 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005490 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005491 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005492 mutex_unlock(&cgroup_mutex);
5493}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005494
5495static int __init cgroup_disable(char *str)
5496{
Tejun Heo30159ec2013-06-25 11:53:37 -07005497 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005498 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005499 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005500
5501 while ((token = strsep(&str, ",")) != NULL) {
5502 if (!*token)
5503 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005504
Tejun Heo30159ec2013-06-25 11:53:37 -07005505 /*
5506 * cgroup_disable, being at boot time, can't know about
5507 * module subsystems, so we don't worry about them.
5508 */
5509 for_each_builtin_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005510 if (!strcmp(token, ss->name)) {
5511 ss->disabled = 1;
5512 printk(KERN_INFO "Disabling %s control group"
5513 " subsystem\n", ss->name);
5514 break;
5515 }
5516 }
5517 }
5518 return 1;
5519}
5520__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005521
5522/*
5523 * Functons for CSS ID.
5524 */
5525
Tejun Heo54766d42013-06-12 21:04:53 -07005526/* to get ID other than 0, this should be called when !cgroup_is_dead() */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005527unsigned short css_id(struct cgroup_subsys_state *css)
5528{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005529 struct css_id *cssid;
5530
5531 /*
5532 * This css_id() can return correct value when somone has refcnt
5533 * on this or this is under rcu_read_lock(). Once css->id is allocated,
5534 * it's unchanged until freed.
5535 */
Tejun Heod3daf282013-06-13 19:39:16 -07005536 cssid = rcu_dereference_raw(css->id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005537
5538 if (cssid)
5539 return cssid->id;
5540 return 0;
5541}
Ben Blum67523c42010-03-10 15:22:11 -08005542EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005543
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005544/**
5545 * css_is_ancestor - test "root" css is an ancestor of "child"
5546 * @child: the css to be tested.
5547 * @root: the css supporsed to be an ancestor of the child.
5548 *
5549 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
Johannes Weiner91c637342012-05-29 15:06:24 -07005550 * this function reads css->id, the caller must hold rcu_read_lock().
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005551 * But, considering usual usage, the csses should be valid objects after test.
5552 * Assuming that the caller will do some action to the child if this returns
5553 * returns true, the caller must take "child";s reference count.
5554 * If "child" is valid object and this returns true, "root" is valid, too.
5555 */
5556
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005557bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07005558 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005559{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005560 struct css_id *child_id;
5561 struct css_id *root_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005562
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005563 child_id = rcu_dereference(child->id);
Johannes Weiner91c637342012-05-29 15:06:24 -07005564 if (!child_id)
5565 return false;
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005566 root_id = rcu_dereference(root->id);
Johannes Weiner91c637342012-05-29 15:06:24 -07005567 if (!root_id)
5568 return false;
5569 if (child_id->depth < root_id->depth)
5570 return false;
5571 if (child_id->stack[root_id->depth] != root_id->id)
5572 return false;
5573 return true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005574}
5575
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005576void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
5577{
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005578 struct css_id *id = rcu_dereference_protected(css->id, true);
5579
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005580 /* When this is called before css_id initialization, id can be NULL */
5581 if (!id)
5582 return;
5583
5584 BUG_ON(!ss->use_id);
5585
5586 rcu_assign_pointer(id->css, NULL);
5587 rcu_assign_pointer(css->id, NULL);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005588 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005589 idr_remove(&ss->idr, id->id);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005590 spin_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08005591 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005592}
Ben Blum67523c42010-03-10 15:22:11 -08005593EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005594
5595/*
5596 * This is called by init or create(). Then, calls to this function are
5597 * always serialized (By cgroup_mutex() at create()).
5598 */
5599
5600static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
5601{
5602 struct css_id *newid;
Tejun Heod228d9e2013-02-27 17:04:54 -08005603 int ret, size;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005604
5605 BUG_ON(!ss->use_id);
5606
5607 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
5608 newid = kzalloc(size, GFP_KERNEL);
5609 if (!newid)
5610 return ERR_PTR(-ENOMEM);
Tejun Heod228d9e2013-02-27 17:04:54 -08005611
5612 idr_preload(GFP_KERNEL);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005613 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005614 /* Don't use 0. allocates an ID of 1-65535 */
Tejun Heod228d9e2013-02-27 17:04:54 -08005615 ret = idr_alloc(&ss->idr, newid, 1, CSS_ID_MAX + 1, GFP_NOWAIT);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005616 spin_unlock(&ss->id_lock);
Tejun Heod228d9e2013-02-27 17:04:54 -08005617 idr_preload_end();
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005618
5619 /* Returns error when there are no free spaces for new ID.*/
Tejun Heod228d9e2013-02-27 17:04:54 -08005620 if (ret < 0)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005621 goto err_out;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005622
Tejun Heod228d9e2013-02-27 17:04:54 -08005623 newid->id = ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005624 newid->depth = depth;
5625 return newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005626err_out:
5627 kfree(newid);
Tejun Heod228d9e2013-02-27 17:04:54 -08005628 return ERR_PTR(ret);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005629
5630}
5631
Ben Blume6a11052010-03-10 15:22:09 -08005632static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
5633 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005634{
5635 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005636
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005637 spin_lock_init(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005638 idr_init(&ss->idr);
5639
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005640 newid = get_new_cssid(ss, 0);
5641 if (IS_ERR(newid))
5642 return PTR_ERR(newid);
5643
5644 newid->stack[0] = newid->id;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005645 RCU_INIT_POINTER(newid->css, rootcss);
5646 RCU_INIT_POINTER(rootcss->id, newid);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005647 return 0;
5648}
5649
Tejun Heo623f9262013-08-13 11:01:55 -04005650static int alloc_css_id(struct cgroup_subsys_state *child_css)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005651{
Tejun Heo623f9262013-08-13 11:01:55 -04005652 struct cgroup_subsys_state *parent_css = css_parent(child_css);
Li Zefanfae9c792010-04-22 17:30:00 +08005653 struct css_id *child_id, *parent_id;
Tejun Heo623f9262013-08-13 11:01:55 -04005654 int i, depth;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005655
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005656 parent_id = rcu_dereference_protected(parent_css->id, true);
Greg Thelen94b3dd02010-06-04 14:15:03 -07005657 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005658
Tejun Heo623f9262013-08-13 11:01:55 -04005659 child_id = get_new_cssid(child_css->ss, depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005660 if (IS_ERR(child_id))
5661 return PTR_ERR(child_id);
5662
5663 for (i = 0; i < depth; i++)
5664 child_id->stack[i] = parent_id->stack[i];
5665 child_id->stack[depth] = child_id->id;
5666 /*
5667 * child_id->css pointer will be set after this cgroup is available
5668 * see cgroup_populate_dir()
5669 */
5670 rcu_assign_pointer(child_css->id, child_id);
5671
5672 return 0;
5673}
5674
5675/**
5676 * css_lookup - lookup css by id
5677 * @ss: cgroup subsys to be looked into.
5678 * @id: the id
5679 *
5680 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5681 * NULL if not. Should be called under rcu_read_lock()
5682 */
5683struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5684{
5685 struct css_id *cssid = NULL;
5686
5687 BUG_ON(!ss->use_id);
5688 cssid = idr_find(&ss->idr, id);
5689
5690 if (unlikely(!cssid))
5691 return NULL;
5692
5693 return rcu_dereference(cssid->css);
5694}
Ben Blum67523c42010-03-10 15:22:11 -08005695EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005696
Tejun Heob77d7b62013-08-13 11:01:54 -04005697/**
Tejun Heo35cf0832013-08-26 18:40:56 -04005698 * css_from_dir - get corresponding css from the dentry of a cgroup dir
5699 * @dentry: directory dentry of interest
5700 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005701 *
5702 * Must be called under RCU read lock. The caller is responsible for
5703 * pinning the returned css if it needs to be accessed outside the RCU
5704 * critical section.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005705 */
Tejun Heo35cf0832013-08-26 18:40:56 -04005706struct cgroup_subsys_state *css_from_dir(struct dentry *dentry,
5707 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005708{
5709 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005710
Tejun Heob77d7b62013-08-13 11:01:54 -04005711 WARN_ON_ONCE(!rcu_read_lock_held());
5712
Tejun Heo35cf0832013-08-26 18:40:56 -04005713 /* is @dentry a cgroup dir? */
5714 if (!dentry->d_inode ||
5715 dentry->d_inode->i_op != &cgroup_dir_inode_operations)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005716 return ERR_PTR(-EBADF);
5717
Tejun Heo35cf0832013-08-26 18:40:56 -04005718 cgrp = __d_cgrp(dentry);
Tejun Heoca8bdca2013-08-26 18:40:56 -04005719 return cgroup_css(cgrp, ss) ?: ERR_PTR(-ENOENT);
Stephane Eraniane5d13672011-02-14 11:20:01 +02005720}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005721
Li Zefan1cb650b2013-08-19 10:05:24 +08005722/**
5723 * css_from_id - lookup css by id
5724 * @id: the cgroup id
5725 * @ss: cgroup subsys to be looked into
5726 *
5727 * Returns the css if there's valid one with @id, otherwise returns NULL.
5728 * Should be called under rcu_read_lock().
5729 */
5730struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5731{
5732 struct cgroup *cgrp;
5733
5734 rcu_lockdep_assert(rcu_read_lock_held() ||
5735 lockdep_is_held(&cgroup_mutex),
5736 "css_from_id() needs proper protection");
5737
5738 cgrp = idr_find(&ss->root->cgroup_idr, id);
5739 if (cgrp)
Tejun Heod1625962013-08-27 14:27:23 -04005740 return cgroup_css(cgrp, ss);
Li Zefan1cb650b2013-08-19 10:05:24 +08005741 return NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005742}
5743
Paul Menagefe693432009-09-23 15:56:20 -07005744#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005745static struct cgroup_subsys_state *
5746debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005747{
5748 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5749
5750 if (!css)
5751 return ERR_PTR(-ENOMEM);
5752
5753 return css;
5754}
5755
Tejun Heoeb954192013-08-08 20:11:23 -04005756static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005757{
Tejun Heoeb954192013-08-08 20:11:23 -04005758 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005759}
5760
Tejun Heo182446d2013-08-08 20:11:24 -04005761static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5762 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005763{
Tejun Heo182446d2013-08-08 20:11:24 -04005764 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005765}
5766
Tejun Heo182446d2013-08-08 20:11:24 -04005767static u64 current_css_set_read(struct cgroup_subsys_state *css,
5768 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005769{
5770 return (u64)(unsigned long)current->cgroups;
5771}
5772
Tejun Heo182446d2013-08-08 20:11:24 -04005773static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005774 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005775{
5776 u64 count;
5777
5778 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005779 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005780 rcu_read_unlock();
5781 return count;
5782}
5783
Tejun Heo182446d2013-08-08 20:11:24 -04005784static int current_css_set_cg_links_read(struct cgroup_subsys_state *css,
Paul Menage7717f7b2009-09-23 15:56:22 -07005785 struct cftype *cft,
5786 struct seq_file *seq)
5787{
Tejun Heo69d02062013-06-12 21:04:50 -07005788 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005789 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005790
5791 read_lock(&css_set_lock);
5792 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005793 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005794 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005795 struct cgroup *c = link->cgrp;
5796 const char *name;
5797
5798 if (c->dentry)
5799 name = c->dentry->d_name.name;
5800 else
5801 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005802 seq_printf(seq, "Root %d group %s\n",
5803 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005804 }
5805 rcu_read_unlock();
5806 read_unlock(&css_set_lock);
5807 return 0;
5808}
5809
5810#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo182446d2013-08-08 20:11:24 -04005811static int cgroup_css_links_read(struct cgroup_subsys_state *css,
5812 struct cftype *cft, struct seq_file *seq)
Paul Menage7717f7b2009-09-23 15:56:22 -07005813{
Tejun Heo69d02062013-06-12 21:04:50 -07005814 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005815
5816 read_lock(&css_set_lock);
Tejun Heo182446d2013-08-08 20:11:24 -04005817 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005818 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005819 struct task_struct *task;
5820 int count = 0;
Tejun Heo5abb8852013-06-12 21:04:49 -07005821 seq_printf(seq, "css_set %p\n", cset);
5822 list_for_each_entry(task, &cset->tasks, cg_list) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005823 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5824 seq_puts(seq, " ...\n");
5825 break;
5826 } else {
5827 seq_printf(seq, " task %d\n",
5828 task_pid_vnr(task));
5829 }
5830 }
5831 }
5832 read_unlock(&css_set_lock);
5833 return 0;
5834}
5835
Tejun Heo182446d2013-08-08 20:11:24 -04005836static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005837{
Tejun Heo182446d2013-08-08 20:11:24 -04005838 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07005839}
5840
5841static struct cftype debug_files[] = {
5842 {
Paul Menagefe693432009-09-23 15:56:20 -07005843 .name = "taskcount",
5844 .read_u64 = debug_taskcount_read,
5845 },
5846
5847 {
5848 .name = "current_css_set",
5849 .read_u64 = current_css_set_read,
5850 },
5851
5852 {
5853 .name = "current_css_set_refcount",
5854 .read_u64 = current_css_set_refcount_read,
5855 },
5856
5857 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005858 .name = "current_css_set_cg_links",
5859 .read_seq_string = current_css_set_cg_links_read,
5860 },
5861
5862 {
5863 .name = "cgroup_css_links",
5864 .read_seq_string = cgroup_css_links_read,
5865 },
5866
5867 {
Paul Menagefe693432009-09-23 15:56:20 -07005868 .name = "releasable",
5869 .read_u64 = releasable_read,
5870 },
Paul Menagefe693432009-09-23 15:56:20 -07005871
Tejun Heo4baf6e32012-04-01 12:09:55 -07005872 { } /* terminate */
5873};
Paul Menagefe693432009-09-23 15:56:20 -07005874
5875struct cgroup_subsys debug_subsys = {
5876 .name = "debug",
Tejun Heo92fb9742012-11-19 08:13:38 -08005877 .css_alloc = debug_css_alloc,
5878 .css_free = debug_css_free,
Paul Menagefe693432009-09-23 15:56:20 -07005879 .subsys_id = debug_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005880 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005881};
5882#endif /* CONFIG_CGROUP_DEBUG */