cgroup: make ->pre_destroy() return void
[deliverable/linux.git] / kernel / cgroup.c
CommitLineData
ddbcc7e8 1/*
ddbcc7e8
PM
2 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
0dea1168
KS
7 * Notifications support
8 * Copyright (C) 2009 Nokia Corporation
9 * Author: Kirill A. Shutemov
10 *
ddbcc7e8
PM
11 * 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>
2ce9738b 30#include <linux/cred.h>
c6d57f33 31#include <linux/ctype.h>
ddbcc7e8
PM
32#include <linux/errno.h>
33#include <linux/fs.h>
2ce9738b 34#include <linux/init_task.h>
ddbcc7e8
PM
35#include <linux/kernel.h>
36#include <linux/list.h>
37#include <linux/mm.h>
38#include <linux/mutex.h>
39#include <linux/mount.h>
40#include <linux/pagemap.h>
a424316c 41#include <linux/proc_fs.h>
ddbcc7e8
PM
42#include <linux/rcupdate.h>
43#include <linux/sched.h>
817929ec 44#include <linux/backing-dev.h>
ddbcc7e8
PM
45#include <linux/seq_file.h>
46#include <linux/slab.h>
47#include <linux/magic.h>
48#include <linux/spinlock.h>
49#include <linux/string.h>
bbcb81d0 50#include <linux/sort.h>
81a6a5cd 51#include <linux/kmod.h>
e6a1105b 52#include <linux/module.h>
846c7bb0
BS
53#include <linux/delayacct.h>
54#include <linux/cgroupstats.h>
472b1053 55#include <linux/hash.h>
3f8206d4 56#include <linux/namei.h>
096b7fe0 57#include <linux/pid_namespace.h>
2c6ab6d2 58#include <linux/idr.h>
d1d9fd33 59#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
0dea1168
KS
60#include <linux/eventfd.h>
61#include <linux/poll.h>
d846687d 62#include <linux/flex_array.h> /* used in cgroup_attach_proc */
c4c27fbd 63#include <linux/kthread.h>
846c7bb0 64
60063497 65#include <linux/atomic.h>
ddbcc7e8 66
28b4c27b
TH
67/* css deactivation bias, makes css->refcnt negative to deny new trygets */
68#define CSS_DEACT_BIAS INT_MIN
69
e25e2cbb
TH
70/*
71 * cgroup_mutex is the master lock. Any modification to cgroup or its
72 * hierarchy must be performed while holding it.
73 *
74 * cgroup_root_mutex nests inside cgroup_mutex and should be held to modify
75 * cgroupfs_root of any cgroup hierarchy - subsys list, flags,
76 * release_agent_path and so on. Modifying requires both cgroup_mutex and
77 * cgroup_root_mutex. Readers can acquire either of the two. This is to
78 * break the following locking order cycle.
79 *
80 * A. cgroup_mutex -> cred_guard_mutex -> s_type->i_mutex_key -> namespace_sem
81 * B. namespace_sem -> cgroup_mutex
82 *
83 * B happens only through cgroup_show_options() and using cgroup_root_mutex
84 * breaks it.
85 */
81a6a5cd 86static DEFINE_MUTEX(cgroup_mutex);
e25e2cbb 87static DEFINE_MUTEX(cgroup_root_mutex);
81a6a5cd 88
aae8aab4
BB
89/*
90 * Generate an array of cgroup subsystem pointers. At boot time, this is
91 * populated up to CGROUP_BUILTIN_SUBSYS_COUNT, and modular subsystems are
92 * registered after that. The mutable section of this array is protected by
93 * cgroup_mutex.
94 */
ddbcc7e8 95#define SUBSYS(_x) &_x ## _subsys,
aae8aab4 96static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = {
ddbcc7e8
PM
97#include <linux/cgroup_subsys.h>
98};
99
c6d57f33
PM
100#define MAX_CGROUP_ROOT_NAMELEN 64
101
ddbcc7e8
PM
102/*
103 * A cgroupfs_root represents the root of a cgroup hierarchy,
104 * and may be associated with a superblock to form an active
105 * hierarchy
106 */
107struct cgroupfs_root {
108 struct super_block *sb;
109
110 /*
111 * The bitmask of subsystems intended to be attached to this
112 * hierarchy
113 */
114 unsigned long subsys_bits;
115
2c6ab6d2
PM
116 /* Unique id for this hierarchy. */
117 int hierarchy_id;
118
ddbcc7e8
PM
119 /* The bitmask of subsystems currently attached to this hierarchy */
120 unsigned long actual_subsys_bits;
121
122 /* A list running through the attached subsystems */
123 struct list_head subsys_list;
124
125 /* The root cgroup for this hierarchy */
126 struct cgroup top_cgroup;
127
128 /* Tracks how many cgroups are currently defined in hierarchy.*/
129 int number_of_cgroups;
130
e5f6a860 131 /* A list running through the active hierarchies */
ddbcc7e8
PM
132 struct list_head root_list;
133
b0ca5a84
TH
134 /* All cgroups on this root, cgroup_mutex protected */
135 struct list_head allcg_list;
136
ddbcc7e8
PM
137 /* Hierarchy-specific flags */
138 unsigned long flags;
81a6a5cd 139
e788e066 140 /* The path to use for release notifications. */
81a6a5cd 141 char release_agent_path[PATH_MAX];
c6d57f33
PM
142
143 /* The name for this hierarchy - may be empty */
144 char name[MAX_CGROUP_ROOT_NAMELEN];
ddbcc7e8
PM
145};
146
ddbcc7e8
PM
147/*
148 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
149 * subsystems that are otherwise unattached - it never has more than a
150 * single cgroup, and all tasks are part of that cgroup.
151 */
152static struct cgroupfs_root rootnode;
153
05ef1d7c
TH
154/*
155 * cgroupfs file entry, pointed to from leaf dentry->d_fsdata.
156 */
157struct cfent {
158 struct list_head node;
159 struct dentry *dentry;
160 struct cftype *type;
161};
162
38460b48
KH
163/*
164 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
165 * cgroup_subsys->use_id != 0.
166 */
167#define CSS_ID_MAX (65535)
168struct css_id {
169 /*
170 * The css to which this ID points. This pointer is set to valid value
171 * after cgroup is populated. If cgroup is removed, this will be NULL.
172 * This pointer is expected to be RCU-safe because destroy()
e9316080
TH
173 * is called after synchronize_rcu(). But for safe use, css_tryget()
174 * should be used for avoiding race.
38460b48 175 */
2c392b8c 176 struct cgroup_subsys_state __rcu *css;
38460b48
KH
177 /*
178 * ID of this css.
179 */
180 unsigned short id;
181 /*
182 * Depth in hierarchy which this ID belongs to.
183 */
184 unsigned short depth;
185 /*
186 * ID is freed by RCU. (and lookup routine is RCU safe.)
187 */
188 struct rcu_head rcu_head;
189 /*
190 * Hierarchy of CSS ID belongs to.
191 */
192 unsigned short stack[0]; /* Array of Length (depth+1) */
193};
194
0dea1168 195/*
25985edc 196 * cgroup_event represents events which userspace want to receive.
0dea1168
KS
197 */
198struct cgroup_event {
199 /*
200 * Cgroup which the event belongs to.
201 */
202 struct cgroup *cgrp;
203 /*
204 * Control file which the event associated.
205 */
206 struct cftype *cft;
207 /*
208 * eventfd to signal userspace about the event.
209 */
210 struct eventfd_ctx *eventfd;
211 /*
212 * Each of these stored in a list by the cgroup.
213 */
214 struct list_head list;
215 /*
216 * All fields below needed to unregister event when
217 * userspace closes eventfd.
218 */
219 poll_table pt;
220 wait_queue_head_t *wqh;
221 wait_queue_t wait;
222 struct work_struct remove;
223};
38460b48 224
ddbcc7e8
PM
225/* The list of hierarchy roots */
226
227static LIST_HEAD(roots);
817929ec 228static int root_count;
ddbcc7e8 229
2c6ab6d2
PM
230static DEFINE_IDA(hierarchy_ida);
231static int next_hierarchy_id;
232static DEFINE_SPINLOCK(hierarchy_id_lock);
233
ddbcc7e8
PM
234/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
235#define dummytop (&rootnode.top_cgroup)
236
237/* This flag indicates whether tasks in the fork and exit paths should
a043e3b2
LZ
238 * check for fork/exit handlers to call. This avoids us having to do
239 * extra work in the fork/exit path if none of the subsystems need to
240 * be called.
ddbcc7e8 241 */
8947f9d5 242static int need_forkexit_callback __read_mostly;
ddbcc7e8 243
d11c563d
PM
244#ifdef CONFIG_PROVE_LOCKING
245int cgroup_lock_is_held(void)
246{
247 return lockdep_is_held(&cgroup_mutex);
248}
249#else /* #ifdef CONFIG_PROVE_LOCKING */
250int cgroup_lock_is_held(void)
251{
252 return mutex_is_locked(&cgroup_mutex);
253}
254#endif /* #else #ifdef CONFIG_PROVE_LOCKING */
255
256EXPORT_SYMBOL_GPL(cgroup_lock_is_held);
257
8e3bbf42
SQ
258static int css_unbias_refcnt(int refcnt)
259{
260 return refcnt >= 0 ? refcnt : refcnt - CSS_DEACT_BIAS;
261}
262
28b4c27b
TH
263/* the current nr of refs, always >= 0 whether @css is deactivated or not */
264static int css_refcnt(struct cgroup_subsys_state *css)
265{
266 int v = atomic_read(&css->refcnt);
267
8e3bbf42 268 return css_unbias_refcnt(v);
28b4c27b
TH
269}
270
ddbcc7e8 271/* convenient tests for these bits */
bd89aabc 272inline int cgroup_is_removed(const struct cgroup *cgrp)
ddbcc7e8 273{
bd89aabc 274 return test_bit(CGRP_REMOVED, &cgrp->flags);
ddbcc7e8
PM
275}
276
277/* bits in struct cgroupfs_root flags field */
278enum {
279 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
280};
281
e9685a03 282static int cgroup_is_releasable(const struct cgroup *cgrp)
81a6a5cd
PM
283{
284 const int bits =
bd89aabc
PM
285 (1 << CGRP_RELEASABLE) |
286 (1 << CGRP_NOTIFY_ON_RELEASE);
287 return (cgrp->flags & bits) == bits;
81a6a5cd
PM
288}
289
e9685a03 290static int notify_on_release(const struct cgroup *cgrp)
81a6a5cd 291{
bd89aabc 292 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
81a6a5cd
PM
293}
294
97978e6d
DL
295static int clone_children(const struct cgroup *cgrp)
296{
297 return test_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
298}
299
ddbcc7e8
PM
300/*
301 * for_each_subsys() allows you to iterate on each subsystem attached to
302 * an active hierarchy
303 */
304#define for_each_subsys(_root, _ss) \
305list_for_each_entry(_ss, &_root->subsys_list, sibling)
306
e5f6a860
LZ
307/* for_each_active_root() allows you to iterate across the active hierarchies */
308#define for_each_active_root(_root) \
ddbcc7e8
PM
309list_for_each_entry(_root, &roots, root_list)
310
f6ea9372
TH
311static inline struct cgroup *__d_cgrp(struct dentry *dentry)
312{
313 return dentry->d_fsdata;
314}
315
05ef1d7c 316static inline struct cfent *__d_cfe(struct dentry *dentry)
f6ea9372
TH
317{
318 return dentry->d_fsdata;
319}
320
05ef1d7c
TH
321static inline struct cftype *__d_cft(struct dentry *dentry)
322{
323 return __d_cfe(dentry)->type;
324}
325
81a6a5cd
PM
326/* the list of cgroups eligible for automatic release. Protected by
327 * release_list_lock */
328static LIST_HEAD(release_list);
cdcc136f 329static DEFINE_RAW_SPINLOCK(release_list_lock);
81a6a5cd
PM
330static void cgroup_release_agent(struct work_struct *work);
331static DECLARE_WORK(release_agent_work, cgroup_release_agent);
bd89aabc 332static void check_for_release(struct cgroup *cgrp);
81a6a5cd 333
817929ec
PM
334/* Link structure for associating css_set objects with cgroups */
335struct cg_cgroup_link {
336 /*
337 * List running through cg_cgroup_links associated with a
338 * cgroup, anchored on cgroup->css_sets
339 */
bd89aabc 340 struct list_head cgrp_link_list;
7717f7ba 341 struct cgroup *cgrp;
817929ec
PM
342 /*
343 * List running through cg_cgroup_links pointing at a
344 * single css_set object, anchored on css_set->cg_links
345 */
346 struct list_head cg_link_list;
347 struct css_set *cg;
348};
349
350/* The default css_set - used by init and its children prior to any
351 * hierarchies being mounted. It contains a pointer to the root state
352 * for each subsystem. Also used to anchor the list of css_sets. Not
353 * reference-counted, to improve performance when child cgroups
354 * haven't been created.
355 */
356
357static struct css_set init_css_set;
358static struct cg_cgroup_link init_css_set_link;
359
e6a1105b
BB
360static int cgroup_init_idr(struct cgroup_subsys *ss,
361 struct cgroup_subsys_state *css);
38460b48 362
817929ec
PM
363/* css_set_lock protects the list of css_set objects, and the
364 * chain of tasks off each css_set. Nests outside task->alloc_lock
365 * due to cgroup_iter_start() */
366static DEFINE_RWLOCK(css_set_lock);
367static int css_set_count;
368
7717f7ba
PM
369/*
370 * hash table for cgroup groups. This improves the performance to find
371 * an existing css_set. This hash doesn't (currently) take into
372 * account cgroups in empty hierarchies.
373 */
472b1053
LZ
374#define CSS_SET_HASH_BITS 7
375#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
376static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
377
378static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
379{
380 int i;
381 int index;
382 unsigned long tmp = 0UL;
383
384 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
385 tmp += (unsigned long)css[i];
386 tmp = (tmp >> 16) ^ tmp;
387
388 index = hash_long(tmp, CSS_SET_HASH_BITS);
389
390 return &css_set_table[index];
391}
392
817929ec
PM
393/* We don't maintain the lists running through each css_set to its
394 * task until after the first call to cgroup_iter_start(). This
395 * reduces the fork()/exit() overhead for people who have cgroups
396 * compiled into their kernel but not actually in use */
8947f9d5 397static int use_task_css_set_links __read_mostly;
817929ec 398
2c6ab6d2 399static void __put_css_set(struct css_set *cg, int taskexit)
b4f48b63 400{
71cbb949
KM
401 struct cg_cgroup_link *link;
402 struct cg_cgroup_link *saved_link;
146aa1bd
LJ
403 /*
404 * Ensure that the refcount doesn't hit zero while any readers
405 * can see it. Similar to atomic_dec_and_lock(), but for an
406 * rwlock
407 */
408 if (atomic_add_unless(&cg->refcount, -1, 1))
409 return;
410 write_lock(&css_set_lock);
411 if (!atomic_dec_and_test(&cg->refcount)) {
412 write_unlock(&css_set_lock);
413 return;
414 }
81a6a5cd 415
2c6ab6d2
PM
416 /* This css_set is dead. unlink it and release cgroup refcounts */
417 hlist_del(&cg->hlist);
418 css_set_count--;
419
420 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
421 cg_link_list) {
422 struct cgroup *cgrp = link->cgrp;
423 list_del(&link->cg_link_list);
424 list_del(&link->cgrp_link_list);
bd89aabc
PM
425 if (atomic_dec_and_test(&cgrp->count) &&
426 notify_on_release(cgrp)) {
81a6a5cd 427 if (taskexit)
bd89aabc
PM
428 set_bit(CGRP_RELEASABLE, &cgrp->flags);
429 check_for_release(cgrp);
81a6a5cd 430 }
2c6ab6d2
PM
431
432 kfree(link);
81a6a5cd 433 }
2c6ab6d2
PM
434
435 write_unlock(&css_set_lock);
30088ad8 436 kfree_rcu(cg, rcu_head);
b4f48b63
PM
437}
438
817929ec
PM
439/*
440 * refcounted get/put for css_set objects
441 */
442static inline void get_css_set(struct css_set *cg)
443{
146aa1bd 444 atomic_inc(&cg->refcount);
817929ec
PM
445}
446
447static inline void put_css_set(struct css_set *cg)
448{
146aa1bd 449 __put_css_set(cg, 0);
817929ec
PM
450}
451
81a6a5cd
PM
452static inline void put_css_set_taskexit(struct css_set *cg)
453{
146aa1bd 454 __put_css_set(cg, 1);
81a6a5cd
PM
455}
456
7717f7ba
PM
457/*
458 * compare_css_sets - helper function for find_existing_css_set().
459 * @cg: candidate css_set being tested
460 * @old_cg: existing css_set for a task
461 * @new_cgrp: cgroup that's being entered by the task
462 * @template: desired set of css pointers in css_set (pre-calculated)
463 *
464 * Returns true if "cg" matches "old_cg" except for the hierarchy
465 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
466 */
467static bool compare_css_sets(struct css_set *cg,
468 struct css_set *old_cg,
469 struct cgroup *new_cgrp,
470 struct cgroup_subsys_state *template[])
471{
472 struct list_head *l1, *l2;
473
474 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
475 /* Not all subsystems matched */
476 return false;
477 }
478
479 /*
480 * Compare cgroup pointers in order to distinguish between
481 * different cgroups in heirarchies with no subsystems. We
482 * could get by with just this check alone (and skip the
483 * memcmp above) but on most setups the memcmp check will
484 * avoid the need for this more expensive check on almost all
485 * candidates.
486 */
487
488 l1 = &cg->cg_links;
489 l2 = &old_cg->cg_links;
490 while (1) {
491 struct cg_cgroup_link *cgl1, *cgl2;
492 struct cgroup *cg1, *cg2;
493
494 l1 = l1->next;
495 l2 = l2->next;
496 /* See if we reached the end - both lists are equal length. */
497 if (l1 == &cg->cg_links) {
498 BUG_ON(l2 != &old_cg->cg_links);
499 break;
500 } else {
501 BUG_ON(l2 == &old_cg->cg_links);
502 }
503 /* Locate the cgroups associated with these links. */
504 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
505 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
506 cg1 = cgl1->cgrp;
507 cg2 = cgl2->cgrp;
508 /* Hierarchies should be linked in the same order. */
509 BUG_ON(cg1->root != cg2->root);
510
511 /*
512 * If this hierarchy is the hierarchy of the cgroup
513 * that's changing, then we need to check that this
514 * css_set points to the new cgroup; if it's any other
515 * hierarchy, then this css_set should point to the
516 * same cgroup as the old css_set.
517 */
518 if (cg1->root == new_cgrp->root) {
519 if (cg1 != new_cgrp)
520 return false;
521 } else {
522 if (cg1 != cg2)
523 return false;
524 }
525 }
526 return true;
527}
528
817929ec
PM
529/*
530 * find_existing_css_set() is a helper for
531 * find_css_set(), and checks to see whether an existing
472b1053 532 * css_set is suitable.
817929ec
PM
533 *
534 * oldcg: the cgroup group that we're using before the cgroup
535 * transition
536 *
bd89aabc 537 * cgrp: the cgroup that we're moving into
817929ec
PM
538 *
539 * template: location in which to build the desired set of subsystem
540 * state objects for the new cgroup group
541 */
817929ec
PM
542static struct css_set *find_existing_css_set(
543 struct css_set *oldcg,
bd89aabc 544 struct cgroup *cgrp,
817929ec 545 struct cgroup_subsys_state *template[])
b4f48b63
PM
546{
547 int i;
bd89aabc 548 struct cgroupfs_root *root = cgrp->root;
472b1053
LZ
549 struct hlist_head *hhead;
550 struct hlist_node *node;
551 struct css_set *cg;
817929ec 552
aae8aab4
BB
553 /*
554 * Build the set of subsystem state objects that we want to see in the
555 * new css_set. while subsystems can change globally, the entries here
556 * won't change, so no need for locking.
557 */
817929ec 558 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
8d53d55d 559 if (root->subsys_bits & (1UL << i)) {
817929ec
PM
560 /* Subsystem is in this hierarchy. So we want
561 * the subsystem state from the new
562 * cgroup */
bd89aabc 563 template[i] = cgrp->subsys[i];
817929ec
PM
564 } else {
565 /* Subsystem is not in this hierarchy, so we
566 * don't want to change the subsystem state */
567 template[i] = oldcg->subsys[i];
568 }
569 }
570
472b1053
LZ
571 hhead = css_set_hash(template);
572 hlist_for_each_entry(cg, node, hhead, hlist) {
7717f7ba
PM
573 if (!compare_css_sets(cg, oldcg, cgrp, template))
574 continue;
575
576 /* This css_set matches what we need */
577 return cg;
472b1053 578 }
817929ec
PM
579
580 /* No existing cgroup group matched */
581 return NULL;
582}
583
36553434
LZ
584static void free_cg_links(struct list_head *tmp)
585{
586 struct cg_cgroup_link *link;
587 struct cg_cgroup_link *saved_link;
588
589 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
590 list_del(&link->cgrp_link_list);
591 kfree(link);
592 }
593}
594
817929ec
PM
595/*
596 * allocate_cg_links() allocates "count" cg_cgroup_link structures
bd89aabc 597 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
817929ec
PM
598 * success or a negative error
599 */
817929ec
PM
600static int allocate_cg_links(int count, struct list_head *tmp)
601{
602 struct cg_cgroup_link *link;
603 int i;
604 INIT_LIST_HEAD(tmp);
605 for (i = 0; i < count; i++) {
606 link = kmalloc(sizeof(*link), GFP_KERNEL);
607 if (!link) {
36553434 608 free_cg_links(tmp);
817929ec
PM
609 return -ENOMEM;
610 }
bd89aabc 611 list_add(&link->cgrp_link_list, tmp);
817929ec
PM
612 }
613 return 0;
614}
615
c12f65d4
LZ
616/**
617 * link_css_set - a helper function to link a css_set to a cgroup
618 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
619 * @cg: the css_set to be linked
620 * @cgrp: the destination cgroup
621 */
622static void link_css_set(struct list_head *tmp_cg_links,
623 struct css_set *cg, struct cgroup *cgrp)
624{
625 struct cg_cgroup_link *link;
626
627 BUG_ON(list_empty(tmp_cg_links));
628 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
629 cgrp_link_list);
630 link->cg = cg;
7717f7ba 631 link->cgrp = cgrp;
2c6ab6d2 632 atomic_inc(&cgrp->count);
c12f65d4 633 list_move(&link->cgrp_link_list, &cgrp->css_sets);
7717f7ba
PM
634 /*
635 * Always add links to the tail of the list so that the list
636 * is sorted by order of hierarchy creation
637 */
638 list_add_tail(&link->cg_link_list, &cg->cg_links);
c12f65d4
LZ
639}
640
817929ec
PM
641/*
642 * find_css_set() takes an existing cgroup group and a
643 * cgroup object, and returns a css_set object that's
644 * equivalent to the old group, but with the given cgroup
645 * substituted into the appropriate hierarchy. Must be called with
646 * cgroup_mutex held
647 */
817929ec 648static struct css_set *find_css_set(
bd89aabc 649 struct css_set *oldcg, struct cgroup *cgrp)
817929ec
PM
650{
651 struct css_set *res;
652 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
817929ec
PM
653
654 struct list_head tmp_cg_links;
817929ec 655
472b1053 656 struct hlist_head *hhead;
7717f7ba 657 struct cg_cgroup_link *link;
472b1053 658
817929ec
PM
659 /* First see if we already have a cgroup group that matches
660 * the desired set */
7e9abd89 661 read_lock(&css_set_lock);
bd89aabc 662 res = find_existing_css_set(oldcg, cgrp, template);
817929ec
PM
663 if (res)
664 get_css_set(res);
7e9abd89 665 read_unlock(&css_set_lock);
817929ec
PM
666
667 if (res)
668 return res;
669
670 res = kmalloc(sizeof(*res), GFP_KERNEL);
671 if (!res)
672 return NULL;
673
674 /* Allocate all the cg_cgroup_link objects that we'll need */
675 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
676 kfree(res);
677 return NULL;
678 }
679
146aa1bd 680 atomic_set(&res->refcount, 1);
817929ec
PM
681 INIT_LIST_HEAD(&res->cg_links);
682 INIT_LIST_HEAD(&res->tasks);
472b1053 683 INIT_HLIST_NODE(&res->hlist);
817929ec
PM
684
685 /* Copy the set of subsystem state objects generated in
686 * find_existing_css_set() */
687 memcpy(res->subsys, template, sizeof(res->subsys));
688
689 write_lock(&css_set_lock);
690 /* Add reference counts and links from the new css_set. */
7717f7ba
PM
691 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
692 struct cgroup *c = link->cgrp;
693 if (c->root == cgrp->root)
694 c = cgrp;
695 link_css_set(&tmp_cg_links, res, c);
696 }
817929ec
PM
697
698 BUG_ON(!list_empty(&tmp_cg_links));
699
817929ec 700 css_set_count++;
472b1053
LZ
701
702 /* Add this cgroup group to the hash table */
703 hhead = css_set_hash(res->subsys);
704 hlist_add_head(&res->hlist, hhead);
705
817929ec
PM
706 write_unlock(&css_set_lock);
707
708 return res;
b4f48b63
PM
709}
710
7717f7ba
PM
711/*
712 * Return the cgroup for "task" from the given hierarchy. Must be
713 * called with cgroup_mutex held.
714 */
715static struct cgroup *task_cgroup_from_root(struct task_struct *task,
716 struct cgroupfs_root *root)
717{
718 struct css_set *css;
719 struct cgroup *res = NULL;
720
721 BUG_ON(!mutex_is_locked(&cgroup_mutex));
722 read_lock(&css_set_lock);
723 /*
724 * No need to lock the task - since we hold cgroup_mutex the
725 * task can't change groups, so the only thing that can happen
726 * is that it exits and its css is set back to init_css_set.
727 */
728 css = task->cgroups;
729 if (css == &init_css_set) {
730 res = &root->top_cgroup;
731 } else {
732 struct cg_cgroup_link *link;
733 list_for_each_entry(link, &css->cg_links, cg_link_list) {
734 struct cgroup *c = link->cgrp;
735 if (c->root == root) {
736 res = c;
737 break;
738 }
739 }
740 }
741 read_unlock(&css_set_lock);
742 BUG_ON(!res);
743 return res;
744}
745
ddbcc7e8
PM
746/*
747 * There is one global cgroup mutex. We also require taking
748 * task_lock() when dereferencing a task's cgroup subsys pointers.
749 * See "The task_lock() exception", at the end of this comment.
750 *
751 * A task must hold cgroup_mutex to modify cgroups.
752 *
753 * Any task can increment and decrement the count field without lock.
754 * So in general, code holding cgroup_mutex can't rely on the count
755 * field not changing. However, if the count goes to zero, then only
956db3ca 756 * cgroup_attach_task() can increment it again. Because a count of zero
ddbcc7e8
PM
757 * means that no tasks are currently attached, therefore there is no
758 * way a task attached to that cgroup can fork (the other way to
759 * increment the count). So code holding cgroup_mutex can safely
760 * assume that if the count is zero, it will stay zero. Similarly, if
761 * a task holds cgroup_mutex on a cgroup with zero count, it
762 * knows that the cgroup won't be removed, as cgroup_rmdir()
763 * needs that mutex.
764 *
ddbcc7e8
PM
765 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
766 * (usually) take cgroup_mutex. These are the two most performance
767 * critical pieces of code here. The exception occurs on cgroup_exit(),
768 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
769 * is taken, and if the cgroup count is zero, a usermode call made
a043e3b2
LZ
770 * to the release agent with the name of the cgroup (path relative to
771 * the root of cgroup file system) as the argument.
ddbcc7e8
PM
772 *
773 * A cgroup can only be deleted if both its 'count' of using tasks
774 * is zero, and its list of 'children' cgroups is empty. Since all
775 * tasks in the system use _some_ cgroup, and since there is always at
776 * least one task in the system (init, pid == 1), therefore, top_cgroup
777 * always has either children cgroups and/or using tasks. So we don't
778 * need a special hack to ensure that top_cgroup cannot be deleted.
779 *
780 * The task_lock() exception
781 *
782 * The need for this exception arises from the action of
956db3ca 783 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
a043e3b2 784 * another. It does so using cgroup_mutex, however there are
ddbcc7e8
PM
785 * several performance critical places that need to reference
786 * task->cgroup without the expense of grabbing a system global
787 * mutex. Therefore except as noted below, when dereferencing or, as
956db3ca 788 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
ddbcc7e8
PM
789 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
790 * the task_struct routinely used for such matters.
791 *
792 * P.S. One more locking exception. RCU is used to guard the
956db3ca 793 * update of a tasks cgroup pointer by cgroup_attach_task()
ddbcc7e8
PM
794 */
795
ddbcc7e8
PM
796/**
797 * cgroup_lock - lock out any changes to cgroup structures
798 *
799 */
ddbcc7e8
PM
800void cgroup_lock(void)
801{
802 mutex_lock(&cgroup_mutex);
803}
67523c48 804EXPORT_SYMBOL_GPL(cgroup_lock);
ddbcc7e8
PM
805
806/**
807 * cgroup_unlock - release lock on cgroup changes
808 *
809 * Undo the lock taken in a previous cgroup_lock() call.
810 */
ddbcc7e8
PM
811void cgroup_unlock(void)
812{
813 mutex_unlock(&cgroup_mutex);
814}
67523c48 815EXPORT_SYMBOL_GPL(cgroup_unlock);
ddbcc7e8
PM
816
817/*
818 * A couple of forward declarations required, due to cyclic reference loop:
819 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
820 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
821 * -> cgroup_mkdir.
822 */
823
18bb1db3 824static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
00cd8dd3 825static struct dentry *cgroup_lookup(struct inode *, struct dentry *, unsigned int);
ddbcc7e8 826static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
bd89aabc 827static int cgroup_populate_dir(struct cgroup *cgrp);
6e1d5dcc 828static const struct inode_operations cgroup_dir_inode_operations;
828c0950 829static const struct file_operations proc_cgroupstats_operations;
a424316c
PM
830
831static struct backing_dev_info cgroup_backing_dev_info = {
d993831f 832 .name = "cgroup",
e4ad08fe 833 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
a424316c 834};
ddbcc7e8 835
38460b48
KH
836static int alloc_css_id(struct cgroup_subsys *ss,
837 struct cgroup *parent, struct cgroup *child);
838
a5e7ed32 839static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb)
ddbcc7e8
PM
840{
841 struct inode *inode = new_inode(sb);
ddbcc7e8
PM
842
843 if (inode) {
85fe4025 844 inode->i_ino = get_next_ino();
ddbcc7e8 845 inode->i_mode = mode;
76aac0e9
DH
846 inode->i_uid = current_fsuid();
847 inode->i_gid = current_fsgid();
ddbcc7e8
PM
848 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
849 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
850 }
851 return inode;
852}
853
854static void cgroup_diput(struct dentry *dentry, struct inode *inode)
855{
856 /* is dentry a directory ? if so, kfree() associated cgroup */
857 if (S_ISDIR(inode->i_mode)) {
bd89aabc 858 struct cgroup *cgrp = dentry->d_fsdata;
8dc4f3e1 859 struct cgroup_subsys *ss;
bd89aabc 860 BUG_ON(!(cgroup_is_removed(cgrp)));
81a6a5cd
PM
861 /* It's possible for external users to be holding css
862 * reference counts on a cgroup; css_put() needs to
863 * be able to access the cgroup after decrementing
864 * the reference count in order to know if it needs to
865 * queue the cgroup to be handled by the release
866 * agent */
867 synchronize_rcu();
8dc4f3e1
PM
868
869 mutex_lock(&cgroup_mutex);
870 /*
871 * Release the subsystem state objects.
872 */
75139b82 873 for_each_subsys(cgrp->root, ss)
761b3ef5 874 ss->destroy(cgrp);
8dc4f3e1
PM
875
876 cgrp->root->number_of_cgroups--;
877 mutex_unlock(&cgroup_mutex);
878
a47295e6 879 /*
7db5b3ca
TH
880 * Drop the active superblock reference that we took when we
881 * created the cgroup
a47295e6 882 */
7db5b3ca 883 deactivate_super(cgrp->root->sb);
8dc4f3e1 884
72a8cb30
BB
885 /*
886 * if we're getting rid of the cgroup, refcount should ensure
887 * that there are no pidlists left.
888 */
889 BUG_ON(!list_empty(&cgrp->pidlists));
890
f2da1c40 891 kfree_rcu(cgrp, rcu_head);
05ef1d7c
TH
892 } else {
893 struct cfent *cfe = __d_cfe(dentry);
894 struct cgroup *cgrp = dentry->d_parent->d_fsdata;
895
896 WARN_ONCE(!list_empty(&cfe->node) &&
897 cgrp != &cgrp->root->top_cgroup,
898 "cfe still linked for %s\n", cfe->type->name);
899 kfree(cfe);
ddbcc7e8
PM
900 }
901 iput(inode);
902}
903
c72a04e3
AV
904static int cgroup_delete(const struct dentry *d)
905{
906 return 1;
907}
908
ddbcc7e8
PM
909static void remove_dir(struct dentry *d)
910{
911 struct dentry *parent = dget(d->d_parent);
912
913 d_delete(d);
914 simple_rmdir(parent->d_inode, d);
915 dput(parent);
916}
917
05ef1d7c
TH
918static int cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
919{
920 struct cfent *cfe;
921
922 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
923 lockdep_assert_held(&cgroup_mutex);
924
925 list_for_each_entry(cfe, &cgrp->files, node) {
926 struct dentry *d = cfe->dentry;
927
928 if (cft && cfe->type != cft)
929 continue;
930
931 dget(d);
932 d_delete(d);
ce27e317 933 simple_unlink(cgrp->dentry->d_inode, d);
05ef1d7c
TH
934 list_del_init(&cfe->node);
935 dput(d);
936
937 return 0;
ddbcc7e8 938 }
05ef1d7c
TH
939 return -ENOENT;
940}
941
942static void cgroup_clear_directory(struct dentry *dir)
943{
944 struct cgroup *cgrp = __d_cgrp(dir);
945
946 while (!list_empty(&cgrp->files))
947 cgroup_rm_file(cgrp, NULL);
ddbcc7e8
PM
948}
949
950/*
951 * NOTE : the dentry must have been dget()'ed
952 */
953static void cgroup_d_remove_dir(struct dentry *dentry)
954{
2fd6b7f5
NP
955 struct dentry *parent;
956
ddbcc7e8
PM
957 cgroup_clear_directory(dentry);
958
2fd6b7f5
NP
959 parent = dentry->d_parent;
960 spin_lock(&parent->d_lock);
3ec762ad 961 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
ddbcc7e8 962 list_del_init(&dentry->d_u.d_child);
2fd6b7f5
NP
963 spin_unlock(&dentry->d_lock);
964 spin_unlock(&parent->d_lock);
ddbcc7e8
PM
965 remove_dir(dentry);
966}
967
aae8aab4 968/*
cf5d5941
BB
969 * Call with cgroup_mutex held. Drops reference counts on modules, including
970 * any duplicate ones that parse_cgroupfs_options took. If this function
971 * returns an error, no reference counts are touched.
aae8aab4 972 */
ddbcc7e8
PM
973static int rebind_subsystems(struct cgroupfs_root *root,
974 unsigned long final_bits)
975{
976 unsigned long added_bits, removed_bits;
bd89aabc 977 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
978 int i;
979
aae8aab4 980 BUG_ON(!mutex_is_locked(&cgroup_mutex));
e25e2cbb 981 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
aae8aab4 982
ddbcc7e8
PM
983 removed_bits = root->actual_subsys_bits & ~final_bits;
984 added_bits = final_bits & ~root->actual_subsys_bits;
985 /* Check that any added subsystems are currently free */
986 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
8d53d55d 987 unsigned long bit = 1UL << i;
ddbcc7e8
PM
988 struct cgroup_subsys *ss = subsys[i];
989 if (!(bit & added_bits))
990 continue;
aae8aab4
BB
991 /*
992 * Nobody should tell us to do a subsys that doesn't exist:
993 * parse_cgroupfs_options should catch that case and refcounts
994 * ensure that subsystems won't disappear once selected.
995 */
996 BUG_ON(ss == NULL);
ddbcc7e8
PM
997 if (ss->root != &rootnode) {
998 /* Subsystem isn't free */
999 return -EBUSY;
1000 }
1001 }
1002
1003 /* Currently we don't handle adding/removing subsystems when
1004 * any child cgroups exist. This is theoretically supportable
1005 * but involves complex error handling, so it's being left until
1006 * later */
307257cf 1007 if (root->number_of_cgroups > 1)
ddbcc7e8
PM
1008 return -EBUSY;
1009
1010 /* Process each subsystem */
1011 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1012 struct cgroup_subsys *ss = subsys[i];
1013 unsigned long bit = 1UL << i;
1014 if (bit & added_bits) {
1015 /* We're binding this subsystem to this hierarchy */
aae8aab4 1016 BUG_ON(ss == NULL);
bd89aabc 1017 BUG_ON(cgrp->subsys[i]);
ddbcc7e8
PM
1018 BUG_ON(!dummytop->subsys[i]);
1019 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
bd89aabc
PM
1020 cgrp->subsys[i] = dummytop->subsys[i];
1021 cgrp->subsys[i]->cgroup = cgrp;
33a68ac1 1022 list_move(&ss->sibling, &root->subsys_list);
b2aa30f7 1023 ss->root = root;
ddbcc7e8 1024 if (ss->bind)
761b3ef5 1025 ss->bind(cgrp);
cf5d5941 1026 /* refcount was already taken, and we're keeping it */
ddbcc7e8
PM
1027 } else if (bit & removed_bits) {
1028 /* We're removing this subsystem */
aae8aab4 1029 BUG_ON(ss == NULL);
bd89aabc
PM
1030 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1031 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
ddbcc7e8 1032 if (ss->bind)
761b3ef5 1033 ss->bind(dummytop);
ddbcc7e8 1034 dummytop->subsys[i]->cgroup = dummytop;
bd89aabc 1035 cgrp->subsys[i] = NULL;
b2aa30f7 1036 subsys[i]->root = &rootnode;
33a68ac1 1037 list_move(&ss->sibling, &rootnode.subsys_list);
cf5d5941
BB
1038 /* subsystem is now free - drop reference on module */
1039 module_put(ss->module);
ddbcc7e8
PM
1040 } else if (bit & final_bits) {
1041 /* Subsystem state should already exist */
aae8aab4 1042 BUG_ON(ss == NULL);
bd89aabc 1043 BUG_ON(!cgrp->subsys[i]);
cf5d5941
BB
1044 /*
1045 * a refcount was taken, but we already had one, so
1046 * drop the extra reference.
1047 */
1048 module_put(ss->module);
1049#ifdef CONFIG_MODULE_UNLOAD
1050 BUG_ON(ss->module && !module_refcount(ss->module));
1051#endif
ddbcc7e8
PM
1052 } else {
1053 /* Subsystem state shouldn't exist */
bd89aabc 1054 BUG_ON(cgrp->subsys[i]);
ddbcc7e8
PM
1055 }
1056 }
1057 root->subsys_bits = root->actual_subsys_bits = final_bits;
1058 synchronize_rcu();
1059
1060 return 0;
1061}
1062
34c80b1d 1063static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
ddbcc7e8 1064{
34c80b1d 1065 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
ddbcc7e8
PM
1066 struct cgroup_subsys *ss;
1067
e25e2cbb 1068 mutex_lock(&cgroup_root_mutex);
ddbcc7e8
PM
1069 for_each_subsys(root, ss)
1070 seq_printf(seq, ",%s", ss->name);
1071 if (test_bit(ROOT_NOPREFIX, &root->flags))
1072 seq_puts(seq, ",noprefix");
81a6a5cd
PM
1073 if (strlen(root->release_agent_path))
1074 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
97978e6d
DL
1075 if (clone_children(&root->top_cgroup))
1076 seq_puts(seq, ",clone_children");
c6d57f33
PM
1077 if (strlen(root->name))
1078 seq_printf(seq, ",name=%s", root->name);
e25e2cbb 1079 mutex_unlock(&cgroup_root_mutex);
ddbcc7e8
PM
1080 return 0;
1081}
1082
1083struct cgroup_sb_opts {
1084 unsigned long subsys_bits;
1085 unsigned long flags;
81a6a5cd 1086 char *release_agent;
97978e6d 1087 bool clone_children;
c6d57f33 1088 char *name;
2c6ab6d2
PM
1089 /* User explicitly requested empty subsystem */
1090 bool none;
c6d57f33
PM
1091
1092 struct cgroupfs_root *new_root;
2c6ab6d2 1093
ddbcc7e8
PM
1094};
1095
aae8aab4
BB
1096/*
1097 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
cf5d5941
BB
1098 * with cgroup_mutex held to protect the subsys[] array. This function takes
1099 * refcounts on subsystems to be used, unless it returns error, in which case
1100 * no refcounts are taken.
aae8aab4 1101 */
cf5d5941 1102static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
ddbcc7e8 1103{
32a8cf23
DL
1104 char *token, *o = data;
1105 bool all_ss = false, one_ss = false;
f9ab5b5b 1106 unsigned long mask = (unsigned long)-1;
cf5d5941
BB
1107 int i;
1108 bool module_pin_failed = false;
f9ab5b5b 1109
aae8aab4
BB
1110 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1111
f9ab5b5b
LZ
1112#ifdef CONFIG_CPUSETS
1113 mask = ~(1UL << cpuset_subsys_id);
1114#endif
ddbcc7e8 1115
c6d57f33 1116 memset(opts, 0, sizeof(*opts));
ddbcc7e8
PM
1117
1118 while ((token = strsep(&o, ",")) != NULL) {
1119 if (!*token)
1120 return -EINVAL;
32a8cf23 1121 if (!strcmp(token, "none")) {
2c6ab6d2
PM
1122 /* Explicitly have no subsystems */
1123 opts->none = true;
32a8cf23
DL
1124 continue;
1125 }
1126 if (!strcmp(token, "all")) {
1127 /* Mutually exclusive option 'all' + subsystem name */
1128 if (one_ss)
1129 return -EINVAL;
1130 all_ss = true;
1131 continue;
1132 }
1133 if (!strcmp(token, "noprefix")) {
ddbcc7e8 1134 set_bit(ROOT_NOPREFIX, &opts->flags);
32a8cf23
DL
1135 continue;
1136 }
1137 if (!strcmp(token, "clone_children")) {
97978e6d 1138 opts->clone_children = true;
32a8cf23
DL
1139 continue;
1140 }
1141 if (!strncmp(token, "release_agent=", 14)) {
81a6a5cd
PM
1142 /* Specifying two release agents is forbidden */
1143 if (opts->release_agent)
1144 return -EINVAL;
c6d57f33 1145 opts->release_agent =
e400c285 1146 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
81a6a5cd
PM
1147 if (!opts->release_agent)
1148 return -ENOMEM;
32a8cf23
DL
1149 continue;
1150 }
1151 if (!strncmp(token, "name=", 5)) {
c6d57f33
PM
1152 const char *name = token + 5;
1153 /* Can't specify an empty name */
1154 if (!strlen(name))
1155 return -EINVAL;
1156 /* Must match [\w.-]+ */
1157 for (i = 0; i < strlen(name); i++) {
1158 char c = name[i];
1159 if (isalnum(c))
1160 continue;
1161 if ((c == '.') || (c == '-') || (c == '_'))
1162 continue;
1163 return -EINVAL;
1164 }
1165 /* Specifying two names is forbidden */
1166 if (opts->name)
1167 return -EINVAL;
1168 opts->name = kstrndup(name,
e400c285 1169 MAX_CGROUP_ROOT_NAMELEN - 1,
c6d57f33
PM
1170 GFP_KERNEL);
1171 if (!opts->name)
1172 return -ENOMEM;
32a8cf23
DL
1173
1174 continue;
1175 }
1176
1177 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1178 struct cgroup_subsys *ss = subsys[i];
1179 if (ss == NULL)
1180 continue;
1181 if (strcmp(token, ss->name))
1182 continue;
1183 if (ss->disabled)
1184 continue;
1185
1186 /* Mutually exclusive option 'all' + subsystem name */
1187 if (all_ss)
1188 return -EINVAL;
1189 set_bit(i, &opts->subsys_bits);
1190 one_ss = true;
1191
1192 break;
1193 }
1194 if (i == CGROUP_SUBSYS_COUNT)
1195 return -ENOENT;
1196 }
1197
1198 /*
1199 * If the 'all' option was specified select all the subsystems,
0d19ea86
LZ
1200 * otherwise if 'none', 'name=' and a subsystem name options
1201 * were not specified, let's default to 'all'
32a8cf23 1202 */
0d19ea86 1203 if (all_ss || (!one_ss && !opts->none && !opts->name)) {
32a8cf23
DL
1204 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1205 struct cgroup_subsys *ss = subsys[i];
1206 if (ss == NULL)
1207 continue;
1208 if (ss->disabled)
1209 continue;
1210 set_bit(i, &opts->subsys_bits);
ddbcc7e8
PM
1211 }
1212 }
1213
2c6ab6d2
PM
1214 /* Consistency checks */
1215
f9ab5b5b
LZ
1216 /*
1217 * Option noprefix was introduced just for backward compatibility
1218 * with the old cpuset, so we allow noprefix only if mounting just
1219 * the cpuset subsystem.
1220 */
1221 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1222 (opts->subsys_bits & mask))
1223 return -EINVAL;
1224
2c6ab6d2
PM
1225
1226 /* Can't specify "none" and some subsystems */
1227 if (opts->subsys_bits && opts->none)
1228 return -EINVAL;
1229
1230 /*
1231 * We either have to specify by name or by subsystems. (So all
1232 * empty hierarchies must have a name).
1233 */
c6d57f33 1234 if (!opts->subsys_bits && !opts->name)
ddbcc7e8
PM
1235 return -EINVAL;
1236
cf5d5941
BB
1237 /*
1238 * Grab references on all the modules we'll need, so the subsystems
1239 * don't dance around before rebind_subsystems attaches them. This may
1240 * take duplicate reference counts on a subsystem that's already used,
1241 * but rebind_subsystems handles this case.
1242 */
1243 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1244 unsigned long bit = 1UL << i;
1245
1246 if (!(bit & opts->subsys_bits))
1247 continue;
1248 if (!try_module_get(subsys[i]->module)) {
1249 module_pin_failed = true;
1250 break;
1251 }
1252 }
1253 if (module_pin_failed) {
1254 /*
1255 * oops, one of the modules was going away. this means that we
1256 * raced with a module_delete call, and to the user this is
1257 * essentially a "subsystem doesn't exist" case.
1258 */
1259 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1260 /* drop refcounts only on the ones we took */
1261 unsigned long bit = 1UL << i;
1262
1263 if (!(bit & opts->subsys_bits))
1264 continue;
1265 module_put(subsys[i]->module);
1266 }
1267 return -ENOENT;
1268 }
1269
ddbcc7e8
PM
1270 return 0;
1271}
1272
cf5d5941
BB
1273static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1274{
1275 int i;
1276 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1277 unsigned long bit = 1UL << i;
1278
1279 if (!(bit & subsys_bits))
1280 continue;
1281 module_put(subsys[i]->module);
1282 }
1283}
1284
ddbcc7e8
PM
1285static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1286{
1287 int ret = 0;
1288 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 1289 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
1290 struct cgroup_sb_opts opts;
1291
bd89aabc 1292 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8 1293 mutex_lock(&cgroup_mutex);
e25e2cbb 1294 mutex_lock(&cgroup_root_mutex);
ddbcc7e8
PM
1295
1296 /* See what subsystems are wanted */
1297 ret = parse_cgroupfs_options(data, &opts);
1298 if (ret)
1299 goto out_unlock;
1300
8b5a5a9d
TH
1301 /* See feature-removal-schedule.txt */
1302 if (opts.subsys_bits != root->actual_subsys_bits || opts.release_agent)
1303 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1304 task_tgid_nr(current), current->comm);
1305
cf5d5941
BB
1306 /* Don't allow flags or name to change at remount */
1307 if (opts.flags != root->flags ||
1308 (opts.name && strcmp(opts.name, root->name))) {
c6d57f33 1309 ret = -EINVAL;
cf5d5941 1310 drop_parsed_module_refcounts(opts.subsys_bits);
c6d57f33
PM
1311 goto out_unlock;
1312 }
1313
ddbcc7e8 1314 ret = rebind_subsystems(root, opts.subsys_bits);
cf5d5941
BB
1315 if (ret) {
1316 drop_parsed_module_refcounts(opts.subsys_bits);
0670e08b 1317 goto out_unlock;
cf5d5941 1318 }
ddbcc7e8 1319
ff4c8d50
TH
1320 /* clear out any existing files and repopulate subsystem files */
1321 cgroup_clear_directory(cgrp->dentry);
0670e08b 1322 cgroup_populate_dir(cgrp);
ddbcc7e8 1323
81a6a5cd
PM
1324 if (opts.release_agent)
1325 strcpy(root->release_agent_path, opts.release_agent);
ddbcc7e8 1326 out_unlock:
66bdc9cf 1327 kfree(opts.release_agent);
c6d57f33 1328 kfree(opts.name);
e25e2cbb 1329 mutex_unlock(&cgroup_root_mutex);
ddbcc7e8 1330 mutex_unlock(&cgroup_mutex);
bd89aabc 1331 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
1332 return ret;
1333}
1334
b87221de 1335static const struct super_operations cgroup_ops = {
ddbcc7e8
PM
1336 .statfs = simple_statfs,
1337 .drop_inode = generic_delete_inode,
1338 .show_options = cgroup_show_options,
1339 .remount_fs = cgroup_remount,
1340};
1341
cc31edce
PM
1342static void init_cgroup_housekeeping(struct cgroup *cgrp)
1343{
1344 INIT_LIST_HEAD(&cgrp->sibling);
1345 INIT_LIST_HEAD(&cgrp->children);
05ef1d7c 1346 INIT_LIST_HEAD(&cgrp->files);
cc31edce
PM
1347 INIT_LIST_HEAD(&cgrp->css_sets);
1348 INIT_LIST_HEAD(&cgrp->release_list);
72a8cb30
BB
1349 INIT_LIST_HEAD(&cgrp->pidlists);
1350 mutex_init(&cgrp->pidlist_mutex);
0dea1168
KS
1351 INIT_LIST_HEAD(&cgrp->event_list);
1352 spin_lock_init(&cgrp->event_list_lock);
cc31edce 1353}
c6d57f33 1354
ddbcc7e8
PM
1355static void init_cgroup_root(struct cgroupfs_root *root)
1356{
bd89aabc 1357 struct cgroup *cgrp = &root->top_cgroup;
b0ca5a84 1358
ddbcc7e8
PM
1359 INIT_LIST_HEAD(&root->subsys_list);
1360 INIT_LIST_HEAD(&root->root_list);
b0ca5a84 1361 INIT_LIST_HEAD(&root->allcg_list);
ddbcc7e8 1362 root->number_of_cgroups = 1;
bd89aabc
PM
1363 cgrp->root = root;
1364 cgrp->top_cgroup = cgrp;
b0ca5a84 1365 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
cc31edce 1366 init_cgroup_housekeeping(cgrp);
ddbcc7e8
PM
1367}
1368
2c6ab6d2
PM
1369static bool init_root_id(struct cgroupfs_root *root)
1370{
1371 int ret = 0;
1372
1373 do {
1374 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1375 return false;
1376 spin_lock(&hierarchy_id_lock);
1377 /* Try to allocate the next unused ID */
1378 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1379 &root->hierarchy_id);
1380 if (ret == -ENOSPC)
1381 /* Try again starting from 0 */
1382 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1383 if (!ret) {
1384 next_hierarchy_id = root->hierarchy_id + 1;
1385 } else if (ret != -EAGAIN) {
1386 /* Can only get here if the 31-bit IDR is full ... */
1387 BUG_ON(ret);
1388 }
1389 spin_unlock(&hierarchy_id_lock);
1390 } while (ret);
1391 return true;
1392}
1393
ddbcc7e8
PM
1394static int cgroup_test_super(struct super_block *sb, void *data)
1395{
c6d57f33 1396 struct cgroup_sb_opts *opts = data;
ddbcc7e8
PM
1397 struct cgroupfs_root *root = sb->s_fs_info;
1398
c6d57f33
PM
1399 /* If we asked for a name then it must match */
1400 if (opts->name && strcmp(opts->name, root->name))
1401 return 0;
ddbcc7e8 1402
2c6ab6d2
PM
1403 /*
1404 * If we asked for subsystems (or explicitly for no
1405 * subsystems) then they must match
1406 */
1407 if ((opts->subsys_bits || opts->none)
1408 && (opts->subsys_bits != root->subsys_bits))
ddbcc7e8
PM
1409 return 0;
1410
1411 return 1;
1412}
1413
c6d57f33
PM
1414static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1415{
1416 struct cgroupfs_root *root;
1417
2c6ab6d2 1418 if (!opts->subsys_bits && !opts->none)
c6d57f33
PM
1419 return NULL;
1420
1421 root = kzalloc(sizeof(*root), GFP_KERNEL);
1422 if (!root)
1423 return ERR_PTR(-ENOMEM);
1424
2c6ab6d2
PM
1425 if (!init_root_id(root)) {
1426 kfree(root);
1427 return ERR_PTR(-ENOMEM);
1428 }
c6d57f33 1429 init_cgroup_root(root);
2c6ab6d2 1430
c6d57f33
PM
1431 root->subsys_bits = opts->subsys_bits;
1432 root->flags = opts->flags;
1433 if (opts->release_agent)
1434 strcpy(root->release_agent_path, opts->release_agent);
1435 if (opts->name)
1436 strcpy(root->name, opts->name);
97978e6d
DL
1437 if (opts->clone_children)
1438 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
c6d57f33
PM
1439 return root;
1440}
1441
2c6ab6d2
PM
1442static void cgroup_drop_root(struct cgroupfs_root *root)
1443{
1444 if (!root)
1445 return;
1446
1447 BUG_ON(!root->hierarchy_id);
1448 spin_lock(&hierarchy_id_lock);
1449 ida_remove(&hierarchy_ida, root->hierarchy_id);
1450 spin_unlock(&hierarchy_id_lock);
1451 kfree(root);
1452}
1453
ddbcc7e8
PM
1454static int cgroup_set_super(struct super_block *sb, void *data)
1455{
1456 int ret;
c6d57f33
PM
1457 struct cgroup_sb_opts *opts = data;
1458
1459 /* If we don't have a new root, we can't set up a new sb */
1460 if (!opts->new_root)
1461 return -EINVAL;
1462
2c6ab6d2 1463 BUG_ON(!opts->subsys_bits && !opts->none);
ddbcc7e8
PM
1464
1465 ret = set_anon_super(sb, NULL);
1466 if (ret)
1467 return ret;
1468
c6d57f33
PM
1469 sb->s_fs_info = opts->new_root;
1470 opts->new_root->sb = sb;
ddbcc7e8
PM
1471
1472 sb->s_blocksize = PAGE_CACHE_SIZE;
1473 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1474 sb->s_magic = CGROUP_SUPER_MAGIC;
1475 sb->s_op = &cgroup_ops;
1476
1477 return 0;
1478}
1479
1480static int cgroup_get_rootdir(struct super_block *sb)
1481{
0df6a63f
AV
1482 static const struct dentry_operations cgroup_dops = {
1483 .d_iput = cgroup_diput,
c72a04e3 1484 .d_delete = cgroup_delete,
0df6a63f
AV
1485 };
1486
ddbcc7e8
PM
1487 struct inode *inode =
1488 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
ddbcc7e8
PM
1489
1490 if (!inode)
1491 return -ENOMEM;
1492
ddbcc7e8
PM
1493 inode->i_fop = &simple_dir_operations;
1494 inode->i_op = &cgroup_dir_inode_operations;
1495 /* directories start off with i_nlink == 2 (for "." entry) */
1496 inc_nlink(inode);
48fde701
AV
1497 sb->s_root = d_make_root(inode);
1498 if (!sb->s_root)
ddbcc7e8 1499 return -ENOMEM;
0df6a63f
AV
1500 /* for everything else we want ->d_op set */
1501 sb->s_d_op = &cgroup_dops;
ddbcc7e8
PM
1502 return 0;
1503}
1504
f7e83571 1505static struct dentry *cgroup_mount(struct file_system_type *fs_type,
ddbcc7e8 1506 int flags, const char *unused_dev_name,
f7e83571 1507 void *data)
ddbcc7e8
PM
1508{
1509 struct cgroup_sb_opts opts;
c6d57f33 1510 struct cgroupfs_root *root;
ddbcc7e8
PM
1511 int ret = 0;
1512 struct super_block *sb;
c6d57f33 1513 struct cgroupfs_root *new_root;
e25e2cbb 1514 struct inode *inode;
ddbcc7e8
PM
1515
1516 /* First find the desired set of subsystems */
aae8aab4 1517 mutex_lock(&cgroup_mutex);
ddbcc7e8 1518 ret = parse_cgroupfs_options(data, &opts);
aae8aab4 1519 mutex_unlock(&cgroup_mutex);
c6d57f33
PM
1520 if (ret)
1521 goto out_err;
ddbcc7e8 1522
c6d57f33
PM
1523 /*
1524 * Allocate a new cgroup root. We may not need it if we're
1525 * reusing an existing hierarchy.
1526 */
1527 new_root = cgroup_root_from_opts(&opts);
1528 if (IS_ERR(new_root)) {
1529 ret = PTR_ERR(new_root);
cf5d5941 1530 goto drop_modules;
81a6a5cd 1531 }
c6d57f33 1532 opts.new_root = new_root;
ddbcc7e8 1533
c6d57f33 1534 /* Locate an existing or new sb for this hierarchy */
9249e17f 1535 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, 0, &opts);
ddbcc7e8 1536 if (IS_ERR(sb)) {
c6d57f33 1537 ret = PTR_ERR(sb);
2c6ab6d2 1538 cgroup_drop_root(opts.new_root);
cf5d5941 1539 goto drop_modules;
ddbcc7e8
PM
1540 }
1541
c6d57f33
PM
1542 root = sb->s_fs_info;
1543 BUG_ON(!root);
1544 if (root == opts.new_root) {
1545 /* We used the new root structure, so this is a new hierarchy */
1546 struct list_head tmp_cg_links;
c12f65d4 1547 struct cgroup *root_cgrp = &root->top_cgroup;
c6d57f33 1548 struct cgroupfs_root *existing_root;
2ce9738b 1549 const struct cred *cred;
28fd5dfc 1550 int i;
ddbcc7e8
PM
1551
1552 BUG_ON(sb->s_root != NULL);
1553
1554 ret = cgroup_get_rootdir(sb);
1555 if (ret)
1556 goto drop_new_super;
817929ec 1557 inode = sb->s_root->d_inode;
ddbcc7e8 1558
817929ec 1559 mutex_lock(&inode->i_mutex);
ddbcc7e8 1560 mutex_lock(&cgroup_mutex);
e25e2cbb 1561 mutex_lock(&cgroup_root_mutex);
ddbcc7e8 1562
e25e2cbb
TH
1563 /* Check for name clashes with existing mounts */
1564 ret = -EBUSY;
1565 if (strlen(root->name))
1566 for_each_active_root(existing_root)
1567 if (!strcmp(existing_root->name, root->name))
1568 goto unlock_drop;
c6d57f33 1569
817929ec
PM
1570 /*
1571 * We're accessing css_set_count without locking
1572 * css_set_lock here, but that's OK - it can only be
1573 * increased by someone holding cgroup_lock, and
1574 * that's us. The worst that can happen is that we
1575 * have some link structures left over
1576 */
1577 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
e25e2cbb
TH
1578 if (ret)
1579 goto unlock_drop;
817929ec 1580
ddbcc7e8
PM
1581 ret = rebind_subsystems(root, root->subsys_bits);
1582 if (ret == -EBUSY) {
c6d57f33 1583 free_cg_links(&tmp_cg_links);
e25e2cbb 1584 goto unlock_drop;
ddbcc7e8 1585 }
cf5d5941
BB
1586 /*
1587 * There must be no failure case after here, since rebinding
1588 * takes care of subsystems' refcounts, which are explicitly
1589 * dropped in the failure exit path.
1590 */
ddbcc7e8
PM
1591
1592 /* EBUSY should be the only error here */
1593 BUG_ON(ret);
1594
1595 list_add(&root->root_list, &roots);
817929ec 1596 root_count++;
ddbcc7e8 1597
c12f65d4 1598 sb->s_root->d_fsdata = root_cgrp;
ddbcc7e8
PM
1599 root->top_cgroup.dentry = sb->s_root;
1600
817929ec
PM
1601 /* Link the top cgroup in this hierarchy into all
1602 * the css_set objects */
1603 write_lock(&css_set_lock);
28fd5dfc
LZ
1604 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1605 struct hlist_head *hhead = &css_set_table[i];
1606 struct hlist_node *node;
817929ec 1607 struct css_set *cg;
28fd5dfc 1608
c12f65d4
LZ
1609 hlist_for_each_entry(cg, node, hhead, hlist)
1610 link_css_set(&tmp_cg_links, cg, root_cgrp);
28fd5dfc 1611 }
817929ec
PM
1612 write_unlock(&css_set_lock);
1613
1614 free_cg_links(&tmp_cg_links);
1615
c12f65d4
LZ
1616 BUG_ON(!list_empty(&root_cgrp->sibling));
1617 BUG_ON(!list_empty(&root_cgrp->children));
ddbcc7e8
PM
1618 BUG_ON(root->number_of_cgroups != 1);
1619
2ce9738b 1620 cred = override_creds(&init_cred);
c12f65d4 1621 cgroup_populate_dir(root_cgrp);
2ce9738b 1622 revert_creds(cred);
e25e2cbb 1623 mutex_unlock(&cgroup_root_mutex);
ddbcc7e8 1624 mutex_unlock(&cgroup_mutex);
34f77a90 1625 mutex_unlock(&inode->i_mutex);
c6d57f33
PM
1626 } else {
1627 /*
1628 * We re-used an existing hierarchy - the new root (if
1629 * any) is not needed
1630 */
2c6ab6d2 1631 cgroup_drop_root(opts.new_root);
cf5d5941
BB
1632 /* no subsys rebinding, so refcounts don't change */
1633 drop_parsed_module_refcounts(opts.subsys_bits);
ddbcc7e8
PM
1634 }
1635
c6d57f33
PM
1636 kfree(opts.release_agent);
1637 kfree(opts.name);
f7e83571 1638 return dget(sb->s_root);
ddbcc7e8 1639
e25e2cbb
TH
1640 unlock_drop:
1641 mutex_unlock(&cgroup_root_mutex);
1642 mutex_unlock(&cgroup_mutex);
1643 mutex_unlock(&inode->i_mutex);
ddbcc7e8 1644 drop_new_super:
6f5bbff9 1645 deactivate_locked_super(sb);
cf5d5941
BB
1646 drop_modules:
1647 drop_parsed_module_refcounts(opts.subsys_bits);
c6d57f33
PM
1648 out_err:
1649 kfree(opts.release_agent);
1650 kfree(opts.name);
f7e83571 1651 return ERR_PTR(ret);
ddbcc7e8
PM
1652}
1653
1654static void cgroup_kill_sb(struct super_block *sb) {
1655 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 1656 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8 1657 int ret;
71cbb949
KM
1658 struct cg_cgroup_link *link;
1659 struct cg_cgroup_link *saved_link;
ddbcc7e8
PM
1660
1661 BUG_ON(!root);
1662
1663 BUG_ON(root->number_of_cgroups != 1);
bd89aabc
PM
1664 BUG_ON(!list_empty(&cgrp->children));
1665 BUG_ON(!list_empty(&cgrp->sibling));
ddbcc7e8
PM
1666
1667 mutex_lock(&cgroup_mutex);
e25e2cbb 1668 mutex_lock(&cgroup_root_mutex);
ddbcc7e8
PM
1669
1670 /* Rebind all subsystems back to the default hierarchy */
1671 ret = rebind_subsystems(root, 0);
1672 /* Shouldn't be able to fail ... */
1673 BUG_ON(ret);
1674
817929ec
PM
1675 /*
1676 * Release all the links from css_sets to this hierarchy's
1677 * root cgroup
1678 */
1679 write_lock(&css_set_lock);
71cbb949
KM
1680
1681 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1682 cgrp_link_list) {
817929ec 1683 list_del(&link->cg_link_list);
bd89aabc 1684 list_del(&link->cgrp_link_list);
817929ec
PM
1685 kfree(link);
1686 }
1687 write_unlock(&css_set_lock);
1688
839ec545
PM
1689 if (!list_empty(&root->root_list)) {
1690 list_del(&root->root_list);
1691 root_count--;
1692 }
e5f6a860 1693
e25e2cbb 1694 mutex_unlock(&cgroup_root_mutex);
ddbcc7e8
PM
1695 mutex_unlock(&cgroup_mutex);
1696
ddbcc7e8 1697 kill_litter_super(sb);
2c6ab6d2 1698 cgroup_drop_root(root);
ddbcc7e8
PM
1699}
1700
1701static struct file_system_type cgroup_fs_type = {
1702 .name = "cgroup",
f7e83571 1703 .mount = cgroup_mount,
ddbcc7e8
PM
1704 .kill_sb = cgroup_kill_sb,
1705};
1706
676db4af
GK
1707static struct kobject *cgroup_kobj;
1708
a043e3b2
LZ
1709/**
1710 * cgroup_path - generate the path of a cgroup
1711 * @cgrp: the cgroup in question
1712 * @buf: the buffer to write the path into
1713 * @buflen: the length of the buffer
1714 *
a47295e6
PM
1715 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1716 * reference. Writes path of cgroup into buf. Returns 0 on success,
1717 * -errno on error.
ddbcc7e8 1718 */
bd89aabc 1719int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
ddbcc7e8
PM
1720{
1721 char *start;
9a9686b6 1722 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
9a9686b6 1723 cgroup_lock_is_held());
ddbcc7e8 1724
a47295e6 1725 if (!dentry || cgrp == dummytop) {
ddbcc7e8
PM
1726 /*
1727 * Inactive subsystems have no dentry for their root
1728 * cgroup
1729 */
1730 strcpy(buf, "/");
1731 return 0;
1732 }
1733
1734 start = buf + buflen;
1735
1736 *--start = '\0';
1737 for (;;) {
a47295e6 1738 int len = dentry->d_name.len;
9a9686b6 1739
ddbcc7e8
PM
1740 if ((start -= len) < buf)
1741 return -ENAMETOOLONG;
9a9686b6 1742 memcpy(start, dentry->d_name.name, len);
bd89aabc
PM
1743 cgrp = cgrp->parent;
1744 if (!cgrp)
ddbcc7e8 1745 break;
9a9686b6
LZ
1746
1747 dentry = rcu_dereference_check(cgrp->dentry,
9a9686b6 1748 cgroup_lock_is_held());
bd89aabc 1749 if (!cgrp->parent)
ddbcc7e8
PM
1750 continue;
1751 if (--start < buf)
1752 return -ENAMETOOLONG;
1753 *start = '/';
1754 }
1755 memmove(buf, start, buf + buflen - start);
1756 return 0;
1757}
67523c48 1758EXPORT_SYMBOL_GPL(cgroup_path);
ddbcc7e8 1759
2f7ee569
TH
1760/*
1761 * Control Group taskset
1762 */
134d3373
TH
1763struct task_and_cgroup {
1764 struct task_struct *task;
1765 struct cgroup *cgrp;
61d1d219 1766 struct css_set *cg;
134d3373
TH
1767};
1768
2f7ee569
TH
1769struct cgroup_taskset {
1770 struct task_and_cgroup single;
1771 struct flex_array *tc_array;
1772 int tc_array_len;
1773 int idx;
1774 struct cgroup *cur_cgrp;
1775};
1776
1777/**
1778 * cgroup_taskset_first - reset taskset and return the first task
1779 * @tset: taskset of interest
1780 *
1781 * @tset iteration is initialized and the first task is returned.
1782 */
1783struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1784{
1785 if (tset->tc_array) {
1786 tset->idx = 0;
1787 return cgroup_taskset_next(tset);
1788 } else {
1789 tset->cur_cgrp = tset->single.cgrp;
1790 return tset->single.task;
1791 }
1792}
1793EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1794
1795/**
1796 * cgroup_taskset_next - iterate to the next task in taskset
1797 * @tset: taskset of interest
1798 *
1799 * Return the next task in @tset. Iteration must have been initialized
1800 * with cgroup_taskset_first().
1801 */
1802struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1803{
1804 struct task_and_cgroup *tc;
1805
1806 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1807 return NULL;
1808
1809 tc = flex_array_get(tset->tc_array, tset->idx++);
1810 tset->cur_cgrp = tc->cgrp;
1811 return tc->task;
1812}
1813EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1814
1815/**
1816 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1817 * @tset: taskset of interest
1818 *
1819 * Return the cgroup for the current (last returned) task of @tset. This
1820 * function must be preceded by either cgroup_taskset_first() or
1821 * cgroup_taskset_next().
1822 */
1823struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1824{
1825 return tset->cur_cgrp;
1826}
1827EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1828
1829/**
1830 * cgroup_taskset_size - return the number of tasks in taskset
1831 * @tset: taskset of interest
1832 */
1833int cgroup_taskset_size(struct cgroup_taskset *tset)
1834{
1835 return tset->tc_array ? tset->tc_array_len : 1;
1836}
1837EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1838
1839
74a1166d
BB
1840/*
1841 * cgroup_task_migrate - move a task from one cgroup to another.
1842 *
1843 * 'guarantee' is set if the caller promises that a new css_set for the task
1844 * will already exist. If not set, this function might sleep, and can fail with
cd3d0952 1845 * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked.
74a1166d 1846 */
61d1d219
MSB
1847static void cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1848 struct task_struct *tsk, struct css_set *newcg)
74a1166d
BB
1849{
1850 struct css_set *oldcg;
74a1166d
BB
1851
1852 /*
026085ef
MSB
1853 * We are synchronized through threadgroup_lock() against PF_EXITING
1854 * setting such that we can't race against cgroup_exit() changing the
1855 * css_set to init_css_set and dropping the old one.
74a1166d 1856 */
c84cdf75 1857 WARN_ON_ONCE(tsk->flags & PF_EXITING);
74a1166d 1858 oldcg = tsk->cgroups;
74a1166d 1859
74a1166d 1860 task_lock(tsk);
74a1166d
BB
1861 rcu_assign_pointer(tsk->cgroups, newcg);
1862 task_unlock(tsk);
1863
1864 /* Update the css_set linked lists if we're using them */
1865 write_lock(&css_set_lock);
1866 if (!list_empty(&tsk->cg_list))
1867 list_move(&tsk->cg_list, &newcg->tasks);
1868 write_unlock(&css_set_lock);
1869
1870 /*
1871 * We just gained a reference on oldcg by taking it from the task. As
1872 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1873 * it here; it will be freed under RCU.
1874 */
1875 put_css_set(oldcg);
1876
1877 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
74a1166d
BB
1878}
1879
a043e3b2
LZ
1880/**
1881 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1882 * @cgrp: the cgroup the task is attaching to
1883 * @tsk: the task to be attached
bbcb81d0 1884 *
cd3d0952
TH
1885 * Call with cgroup_mutex and threadgroup locked. May take task_lock of
1886 * @tsk during call.
bbcb81d0 1887 */
956db3ca 1888int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
bbcb81d0 1889{
8f121918 1890 int retval = 0;
2468c723 1891 struct cgroup_subsys *ss, *failed_ss = NULL;
bd89aabc 1892 struct cgroup *oldcgrp;
bd89aabc 1893 struct cgroupfs_root *root = cgrp->root;
2f7ee569 1894 struct cgroup_taskset tset = { };
61d1d219 1895 struct css_set *newcg;
bbcb81d0 1896
cd3d0952
TH
1897 /* @tsk either already exited or can't exit until the end */
1898 if (tsk->flags & PF_EXITING)
1899 return -ESRCH;
bbcb81d0
PM
1900
1901 /* Nothing to do if the task is already in that cgroup */
7717f7ba 1902 oldcgrp = task_cgroup_from_root(tsk, root);
bd89aabc 1903 if (cgrp == oldcgrp)
bbcb81d0
PM
1904 return 0;
1905
2f7ee569
TH
1906 tset.single.task = tsk;
1907 tset.single.cgrp = oldcgrp;
1908
bbcb81d0
PM
1909 for_each_subsys(root, ss) {
1910 if (ss->can_attach) {
761b3ef5 1911 retval = ss->can_attach(cgrp, &tset);
2468c723
DN
1912 if (retval) {
1913 /*
1914 * Remember on which subsystem the can_attach()
1915 * failed, so that we only call cancel_attach()
1916 * against the subsystems whose can_attach()
1917 * succeeded. (See below)
1918 */
1919 failed_ss = ss;
1920 goto out;
1921 }
bbcb81d0
PM
1922 }
1923 }
1924
61d1d219
MSB
1925 newcg = find_css_set(tsk->cgroups, cgrp);
1926 if (!newcg) {
1927 retval = -ENOMEM;
2468c723 1928 goto out;
61d1d219
MSB
1929 }
1930
1931 cgroup_task_migrate(cgrp, oldcgrp, tsk, newcg);
817929ec 1932
bbcb81d0 1933 for_each_subsys(root, ss) {
e18f6318 1934 if (ss->attach)
761b3ef5 1935 ss->attach(cgrp, &tset);
bbcb81d0 1936 }
74a1166d 1937
bbcb81d0 1938 synchronize_rcu();
2468c723
DN
1939out:
1940 if (retval) {
1941 for_each_subsys(root, ss) {
1942 if (ss == failed_ss)
1943 /*
1944 * This subsystem was the one that failed the
1945 * can_attach() check earlier, so we don't need
1946 * to call cancel_attach() against it or any
1947 * remaining subsystems.
1948 */
1949 break;
1950 if (ss->cancel_attach)
761b3ef5 1951 ss->cancel_attach(cgrp, &tset);
2468c723
DN
1952 }
1953 }
1954 return retval;
bbcb81d0
PM
1955}
1956
d7926ee3 1957/**
31583bb0
MT
1958 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1959 * @from: attach to all cgroups of a given task
d7926ee3
SS
1960 * @tsk: the task to be attached
1961 */
31583bb0 1962int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
d7926ee3
SS
1963{
1964 struct cgroupfs_root *root;
d7926ee3
SS
1965 int retval = 0;
1966
1967 cgroup_lock();
1968 for_each_active_root(root) {
31583bb0
MT
1969 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1970
1971 retval = cgroup_attach_task(from_cg, tsk);
d7926ee3
SS
1972 if (retval)
1973 break;
1974 }
1975 cgroup_unlock();
1976
1977 return retval;
1978}
31583bb0 1979EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
d7926ee3 1980
74a1166d
BB
1981/**
1982 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
1983 * @cgrp: the cgroup to attach to
1984 * @leader: the threadgroup leader task_struct of the group to be attached
1985 *
257058ae
TH
1986 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
1987 * task_lock of each thread in leader's threadgroup individually in turn.
74a1166d 1988 */
1c6c3fad 1989static int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
74a1166d
BB
1990{
1991 int retval, i, group_size;
1992 struct cgroup_subsys *ss, *failed_ss = NULL;
74a1166d 1993 /* guaranteed to be initialized later, but the compiler needs this */
74a1166d
BB
1994 struct cgroupfs_root *root = cgrp->root;
1995 /* threadgroup list cursor and array */
1996 struct task_struct *tsk;
134d3373 1997 struct task_and_cgroup *tc;
d846687d 1998 struct flex_array *group;
2f7ee569 1999 struct cgroup_taskset tset = { };
74a1166d
BB
2000
2001 /*
2002 * step 0: in order to do expensive, possibly blocking operations for
2003 * every thread, we cannot iterate the thread group list, since it needs
2004 * rcu or tasklist locked. instead, build an array of all threads in the
257058ae
TH
2005 * group - group_rwsem prevents new threads from appearing, and if
2006 * threads exit, this will just be an over-estimate.
74a1166d
BB
2007 */
2008 group_size = get_nr_threads(leader);
d846687d 2009 /* flex_array supports very large thread-groups better than kmalloc. */
134d3373 2010 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
74a1166d
BB
2011 if (!group)
2012 return -ENOMEM;
d846687d
BB
2013 /* pre-allocate to guarantee space while iterating in rcu read-side. */
2014 retval = flex_array_prealloc(group, 0, group_size - 1, GFP_KERNEL);
2015 if (retval)
2016 goto out_free_group_list;
74a1166d 2017
74a1166d
BB
2018 tsk = leader;
2019 i = 0;
fb5d2b4c
MSB
2020 /*
2021 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2022 * already PF_EXITING could be freed from underneath us unless we
2023 * take an rcu_read_lock.
2024 */
2025 rcu_read_lock();
74a1166d 2026 do {
134d3373
TH
2027 struct task_and_cgroup ent;
2028
cd3d0952
TH
2029 /* @tsk either already exited or can't exit until the end */
2030 if (tsk->flags & PF_EXITING)
2031 continue;
2032
74a1166d
BB
2033 /* as per above, nr_threads may decrease, but not increase. */
2034 BUG_ON(i >= group_size);
134d3373
TH
2035 ent.task = tsk;
2036 ent.cgrp = task_cgroup_from_root(tsk, root);
892a2b90
MSB
2037 /* nothing to do if this task is already in the cgroup */
2038 if (ent.cgrp == cgrp)
2039 continue;
61d1d219
MSB
2040 /*
2041 * saying GFP_ATOMIC has no effect here because we did prealloc
2042 * earlier, but it's good form to communicate our expectations.
2043 */
134d3373 2044 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
d846687d 2045 BUG_ON(retval != 0);
74a1166d
BB
2046 i++;
2047 } while_each_thread(leader, tsk);
fb5d2b4c 2048 rcu_read_unlock();
74a1166d
BB
2049 /* remember the number of threads in the array for later. */
2050 group_size = i;
2f7ee569
TH
2051 tset.tc_array = group;
2052 tset.tc_array_len = group_size;
74a1166d 2053
134d3373
TH
2054 /* methods shouldn't be called if no task is actually migrating */
2055 retval = 0;
892a2b90 2056 if (!group_size)
b07ef774 2057 goto out_free_group_list;
134d3373 2058
74a1166d
BB
2059 /*
2060 * step 1: check that we can legitimately attach to the cgroup.
2061 */
2062 for_each_subsys(root, ss) {
2063 if (ss->can_attach) {
761b3ef5 2064 retval = ss->can_attach(cgrp, &tset);
74a1166d
BB
2065 if (retval) {
2066 failed_ss = ss;
2067 goto out_cancel_attach;
2068 }
2069 }
74a1166d
BB
2070 }
2071
2072 /*
2073 * step 2: make sure css_sets exist for all threads to be migrated.
2074 * we use find_css_set, which allocates a new one if necessary.
2075 */
74a1166d 2076 for (i = 0; i < group_size; i++) {
134d3373 2077 tc = flex_array_get(group, i);
61d1d219
MSB
2078 tc->cg = find_css_set(tc->task->cgroups, cgrp);
2079 if (!tc->cg) {
2080 retval = -ENOMEM;
2081 goto out_put_css_set_refs;
74a1166d
BB
2082 }
2083 }
2084
2085 /*
494c167c
TH
2086 * step 3: now that we're guaranteed success wrt the css_sets,
2087 * proceed to move all tasks to the new cgroup. There are no
2088 * failure cases after here, so this is the commit point.
74a1166d 2089 */
74a1166d 2090 for (i = 0; i < group_size; i++) {
134d3373 2091 tc = flex_array_get(group, i);
61d1d219 2092 cgroup_task_migrate(cgrp, tc->cgrp, tc->task, tc->cg);
74a1166d
BB
2093 }
2094 /* nothing is sensitive to fork() after this point. */
2095
2096 /*
494c167c 2097 * step 4: do subsystem attach callbacks.
74a1166d
BB
2098 */
2099 for_each_subsys(root, ss) {
2100 if (ss->attach)
761b3ef5 2101 ss->attach(cgrp, &tset);
74a1166d
BB
2102 }
2103
2104 /*
2105 * step 5: success! and cleanup
2106 */
2107 synchronize_rcu();
74a1166d 2108 retval = 0;
61d1d219
MSB
2109out_put_css_set_refs:
2110 if (retval) {
2111 for (i = 0; i < group_size; i++) {
2112 tc = flex_array_get(group, i);
2113 if (!tc->cg)
2114 break;
2115 put_css_set(tc->cg);
2116 }
74a1166d
BB
2117 }
2118out_cancel_attach:
74a1166d
BB
2119 if (retval) {
2120 for_each_subsys(root, ss) {
494c167c 2121 if (ss == failed_ss)
74a1166d 2122 break;
74a1166d 2123 if (ss->cancel_attach)
761b3ef5 2124 ss->cancel_attach(cgrp, &tset);
74a1166d
BB
2125 }
2126 }
74a1166d 2127out_free_group_list:
d846687d 2128 flex_array_free(group);
74a1166d
BB
2129 return retval;
2130}
2131
2132/*
2133 * Find the task_struct of the task to attach by vpid and pass it along to the
cd3d0952
TH
2134 * function to attach either it or all tasks in its threadgroup. Will lock
2135 * cgroup_mutex and threadgroup; may take task_lock of task.
bbcb81d0 2136 */
74a1166d 2137static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
bbcb81d0 2138{
bbcb81d0 2139 struct task_struct *tsk;
c69e8d9c 2140 const struct cred *cred = current_cred(), *tcred;
bbcb81d0
PM
2141 int ret;
2142
74a1166d
BB
2143 if (!cgroup_lock_live_group(cgrp))
2144 return -ENODEV;
2145
b78949eb
MSB
2146retry_find_task:
2147 rcu_read_lock();
bbcb81d0 2148 if (pid) {
73507f33 2149 tsk = find_task_by_vpid(pid);
74a1166d
BB
2150 if (!tsk) {
2151 rcu_read_unlock();
b78949eb
MSB
2152 ret= -ESRCH;
2153 goto out_unlock_cgroup;
bbcb81d0 2154 }
74a1166d
BB
2155 /*
2156 * even if we're attaching all tasks in the thread group, we
2157 * only need to check permissions on one of them.
2158 */
c69e8d9c 2159 tcred = __task_cred(tsk);
14a590c3
EB
2160 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2161 !uid_eq(cred->euid, tcred->uid) &&
2162 !uid_eq(cred->euid, tcred->suid)) {
c69e8d9c 2163 rcu_read_unlock();
b78949eb
MSB
2164 ret = -EACCES;
2165 goto out_unlock_cgroup;
bbcb81d0 2166 }
b78949eb
MSB
2167 } else
2168 tsk = current;
cd3d0952
TH
2169
2170 if (threadgroup)
b78949eb 2171 tsk = tsk->group_leader;
c4c27fbd
MG
2172
2173 /*
2174 * Workqueue threads may acquire PF_THREAD_BOUND and become
2175 * trapped in a cpuset, or RT worker may be born in a cgroup
2176 * with no rt_runtime allocated. Just say no.
2177 */
2178 if (tsk == kthreadd_task || (tsk->flags & PF_THREAD_BOUND)) {
2179 ret = -EINVAL;
2180 rcu_read_unlock();
2181 goto out_unlock_cgroup;
2182 }
2183
b78949eb
MSB
2184 get_task_struct(tsk);
2185 rcu_read_unlock();
2186
2187 threadgroup_lock(tsk);
2188 if (threadgroup) {
2189 if (!thread_group_leader(tsk)) {
2190 /*
2191 * a race with de_thread from another thread's exec()
2192 * may strip us of our leadership, if this happens,
2193 * there is no choice but to throw this task away and
2194 * try again; this is
2195 * "double-double-toil-and-trouble-check locking".
2196 */
2197 threadgroup_unlock(tsk);
2198 put_task_struct(tsk);
2199 goto retry_find_task;
2200 }
74a1166d 2201 ret = cgroup_attach_proc(cgrp, tsk);
b78949eb 2202 } else
74a1166d 2203 ret = cgroup_attach_task(cgrp, tsk);
cd3d0952
TH
2204 threadgroup_unlock(tsk);
2205
bbcb81d0 2206 put_task_struct(tsk);
b78949eb 2207out_unlock_cgroup:
74a1166d 2208 cgroup_unlock();
bbcb81d0
PM
2209 return ret;
2210}
2211
af351026 2212static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
74a1166d
BB
2213{
2214 return attach_task_by_pid(cgrp, pid, false);
2215}
2216
2217static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
af351026 2218{
b78949eb 2219 return attach_task_by_pid(cgrp, tgid, true);
af351026
PM
2220}
2221
e788e066
PM
2222/**
2223 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2224 * @cgrp: the cgroup to be checked for liveness
2225 *
84eea842
PM
2226 * On success, returns true; the lock should be later released with
2227 * cgroup_unlock(). On failure returns false with no lock held.
e788e066 2228 */
84eea842 2229bool cgroup_lock_live_group(struct cgroup *cgrp)
e788e066
PM
2230{
2231 mutex_lock(&cgroup_mutex);
2232 if (cgroup_is_removed(cgrp)) {
2233 mutex_unlock(&cgroup_mutex);
2234 return false;
2235 }
2236 return true;
2237}
67523c48 2238EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
e788e066
PM
2239
2240static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2241 const char *buffer)
2242{
2243 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
f4a2589f
EK
2244 if (strlen(buffer) >= PATH_MAX)
2245 return -EINVAL;
e788e066
PM
2246 if (!cgroup_lock_live_group(cgrp))
2247 return -ENODEV;
e25e2cbb 2248 mutex_lock(&cgroup_root_mutex);
e788e066 2249 strcpy(cgrp->root->release_agent_path, buffer);
e25e2cbb 2250 mutex_unlock(&cgroup_root_mutex);
84eea842 2251 cgroup_unlock();
e788e066
PM
2252 return 0;
2253}
2254
2255static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2256 struct seq_file *seq)
2257{
2258 if (!cgroup_lock_live_group(cgrp))
2259 return -ENODEV;
2260 seq_puts(seq, cgrp->root->release_agent_path);
2261 seq_putc(seq, '\n');
84eea842 2262 cgroup_unlock();
e788e066
PM
2263 return 0;
2264}
2265
84eea842
PM
2266/* A buffer size big enough for numbers or short strings */
2267#define CGROUP_LOCAL_BUFFER_SIZE 64
2268
e73d2c61 2269static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
f4c753b7
PM
2270 struct file *file,
2271 const char __user *userbuf,
2272 size_t nbytes, loff_t *unused_ppos)
355e0c48 2273{
84eea842 2274 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
355e0c48 2275 int retval = 0;
355e0c48
PM
2276 char *end;
2277
2278 if (!nbytes)
2279 return -EINVAL;
2280 if (nbytes >= sizeof(buffer))
2281 return -E2BIG;
2282 if (copy_from_user(buffer, userbuf, nbytes))
2283 return -EFAULT;
2284
2285 buffer[nbytes] = 0; /* nul-terminate */
e73d2c61 2286 if (cft->write_u64) {
478988d3 2287 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
e73d2c61
PM
2288 if (*end)
2289 return -EINVAL;
2290 retval = cft->write_u64(cgrp, cft, val);
2291 } else {
478988d3 2292 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
e73d2c61
PM
2293 if (*end)
2294 return -EINVAL;
2295 retval = cft->write_s64(cgrp, cft, val);
2296 }
355e0c48
PM
2297 if (!retval)
2298 retval = nbytes;
2299 return retval;
2300}
2301
db3b1497
PM
2302static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2303 struct file *file,
2304 const char __user *userbuf,
2305 size_t nbytes, loff_t *unused_ppos)
2306{
84eea842 2307 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
db3b1497
PM
2308 int retval = 0;
2309 size_t max_bytes = cft->max_write_len;
2310 char *buffer = local_buffer;
2311
2312 if (!max_bytes)
2313 max_bytes = sizeof(local_buffer) - 1;
2314 if (nbytes >= max_bytes)
2315 return -E2BIG;
2316 /* Allocate a dynamic buffer if we need one */
2317 if (nbytes >= sizeof(local_buffer)) {
2318 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2319 if (buffer == NULL)
2320 return -ENOMEM;
2321 }
5a3eb9f6
LZ
2322 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2323 retval = -EFAULT;
2324 goto out;
2325 }
db3b1497
PM
2326
2327 buffer[nbytes] = 0; /* nul-terminate */
478988d3 2328 retval = cft->write_string(cgrp, cft, strstrip(buffer));
db3b1497
PM
2329 if (!retval)
2330 retval = nbytes;
5a3eb9f6 2331out:
db3b1497
PM
2332 if (buffer != local_buffer)
2333 kfree(buffer);
2334 return retval;
2335}
2336
ddbcc7e8
PM
2337static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2338 size_t nbytes, loff_t *ppos)
2339{
2340 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 2341 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8 2342
75139b82 2343 if (cgroup_is_removed(cgrp))
ddbcc7e8 2344 return -ENODEV;
355e0c48 2345 if (cft->write)
bd89aabc 2346 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
e73d2c61
PM
2347 if (cft->write_u64 || cft->write_s64)
2348 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
db3b1497
PM
2349 if (cft->write_string)
2350 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
d447ea2f
PE
2351 if (cft->trigger) {
2352 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2353 return ret ? ret : nbytes;
2354 }
355e0c48 2355 return -EINVAL;
ddbcc7e8
PM
2356}
2357
f4c753b7
PM
2358static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2359 struct file *file,
2360 char __user *buf, size_t nbytes,
2361 loff_t *ppos)
ddbcc7e8 2362{
84eea842 2363 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
f4c753b7 2364 u64 val = cft->read_u64(cgrp, cft);
ddbcc7e8
PM
2365 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2366
2367 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2368}
2369
e73d2c61
PM
2370static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2371 struct file *file,
2372 char __user *buf, size_t nbytes,
2373 loff_t *ppos)
2374{
84eea842 2375 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
e73d2c61
PM
2376 s64 val = cft->read_s64(cgrp, cft);
2377 int len = sprintf(tmp, "%lld\n", (long long) val);
2378
2379 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2380}
2381
ddbcc7e8
PM
2382static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2383 size_t nbytes, loff_t *ppos)
2384{
2385 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 2386 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8 2387
75139b82 2388 if (cgroup_is_removed(cgrp))
ddbcc7e8
PM
2389 return -ENODEV;
2390
2391 if (cft->read)
bd89aabc 2392 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
f4c753b7
PM
2393 if (cft->read_u64)
2394 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
e73d2c61
PM
2395 if (cft->read_s64)
2396 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
ddbcc7e8
PM
2397 return -EINVAL;
2398}
2399
91796569
PM
2400/*
2401 * seqfile ops/methods for returning structured data. Currently just
2402 * supports string->u64 maps, but can be extended in future.
2403 */
2404
2405struct cgroup_seqfile_state {
2406 struct cftype *cft;
2407 struct cgroup *cgroup;
2408};
2409
2410static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2411{
2412 struct seq_file *sf = cb->state;
2413 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2414}
2415
2416static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2417{
2418 struct cgroup_seqfile_state *state = m->private;
2419 struct cftype *cft = state->cft;
29486df3
SH
2420 if (cft->read_map) {
2421 struct cgroup_map_cb cb = {
2422 .fill = cgroup_map_add,
2423 .state = m,
2424 };
2425 return cft->read_map(state->cgroup, cft, &cb);
2426 }
2427 return cft->read_seq_string(state->cgroup, cft, m);
91796569
PM
2428}
2429
96930a63 2430static int cgroup_seqfile_release(struct inode *inode, struct file *file)
91796569
PM
2431{
2432 struct seq_file *seq = file->private_data;
2433 kfree(seq->private);
2434 return single_release(inode, file);
2435}
2436
828c0950 2437static const struct file_operations cgroup_seqfile_operations = {
91796569 2438 .read = seq_read,
e788e066 2439 .write = cgroup_file_write,
91796569
PM
2440 .llseek = seq_lseek,
2441 .release = cgroup_seqfile_release,
2442};
2443
ddbcc7e8
PM
2444static int cgroup_file_open(struct inode *inode, struct file *file)
2445{
2446 int err;
2447 struct cftype *cft;
2448
2449 err = generic_file_open(inode, file);
2450 if (err)
2451 return err;
ddbcc7e8 2452 cft = __d_cft(file->f_dentry);
75139b82 2453
29486df3 2454 if (cft->read_map || cft->read_seq_string) {
91796569
PM
2455 struct cgroup_seqfile_state *state =
2456 kzalloc(sizeof(*state), GFP_USER);
2457 if (!state)
2458 return -ENOMEM;
2459 state->cft = cft;
2460 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2461 file->f_op = &cgroup_seqfile_operations;
2462 err = single_open(file, cgroup_seqfile_show, state);
2463 if (err < 0)
2464 kfree(state);
2465 } else if (cft->open)
ddbcc7e8
PM
2466 err = cft->open(inode, file);
2467 else
2468 err = 0;
2469
2470 return err;
2471}
2472
2473static int cgroup_file_release(struct inode *inode, struct file *file)
2474{
2475 struct cftype *cft = __d_cft(file->f_dentry);
2476 if (cft->release)
2477 return cft->release(inode, file);
2478 return 0;
2479}
2480
2481/*
2482 * cgroup_rename - Only allow simple rename of directories in place.
2483 */
2484static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2485 struct inode *new_dir, struct dentry *new_dentry)
2486{
2487 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2488 return -ENOTDIR;
2489 if (new_dentry->d_inode)
2490 return -EEXIST;
2491 if (old_dir != new_dir)
2492 return -EIO;
2493 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2494}
2495
828c0950 2496static const struct file_operations cgroup_file_operations = {
ddbcc7e8
PM
2497 .read = cgroup_file_read,
2498 .write = cgroup_file_write,
2499 .llseek = generic_file_llseek,
2500 .open = cgroup_file_open,
2501 .release = cgroup_file_release,
2502};
2503
6e1d5dcc 2504static const struct inode_operations cgroup_dir_inode_operations = {
c72a04e3 2505 .lookup = cgroup_lookup,
ddbcc7e8
PM
2506 .mkdir = cgroup_mkdir,
2507 .rmdir = cgroup_rmdir,
2508 .rename = cgroup_rename,
2509};
2510
00cd8dd3 2511static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
c72a04e3
AV
2512{
2513 if (dentry->d_name.len > NAME_MAX)
2514 return ERR_PTR(-ENAMETOOLONG);
2515 d_add(dentry, NULL);
2516 return NULL;
2517}
2518
0dea1168
KS
2519/*
2520 * Check if a file is a control file
2521 */
2522static inline struct cftype *__file_cft(struct file *file)
2523{
2524 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2525 return ERR_PTR(-EINVAL);
2526 return __d_cft(file->f_dentry);
2527}
2528
a5e7ed32 2529static int cgroup_create_file(struct dentry *dentry, umode_t mode,
5adcee1d
NP
2530 struct super_block *sb)
2531{
ddbcc7e8
PM
2532 struct inode *inode;
2533
2534 if (!dentry)
2535 return -ENOENT;
2536 if (dentry->d_inode)
2537 return -EEXIST;
2538
2539 inode = cgroup_new_inode(mode, sb);
2540 if (!inode)
2541 return -ENOMEM;
2542
2543 if (S_ISDIR(mode)) {
2544 inode->i_op = &cgroup_dir_inode_operations;
2545 inode->i_fop = &simple_dir_operations;
2546
2547 /* start off with i_nlink == 2 (for "." entry) */
2548 inc_nlink(inode);
2549
2550 /* start with the directory inode held, so that we can
2551 * populate it without racing with another mkdir */
817929ec 2552 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
ddbcc7e8
PM
2553 } else if (S_ISREG(mode)) {
2554 inode->i_size = 0;
2555 inode->i_fop = &cgroup_file_operations;
2556 }
ddbcc7e8
PM
2557 d_instantiate(dentry, inode);
2558 dget(dentry); /* Extra count - pin the dentry in core */
2559 return 0;
2560}
2561
2562/*
a043e3b2
LZ
2563 * cgroup_create_dir - create a directory for an object.
2564 * @cgrp: the cgroup we create the directory for. It must have a valid
2565 * ->parent field. And we are going to fill its ->dentry field.
2566 * @dentry: dentry of the new cgroup
2567 * @mode: mode to set on new directory.
ddbcc7e8 2568 */
bd89aabc 2569static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
a5e7ed32 2570 umode_t mode)
ddbcc7e8
PM
2571{
2572 struct dentry *parent;
2573 int error = 0;
2574
bd89aabc
PM
2575 parent = cgrp->parent->dentry;
2576 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
ddbcc7e8 2577 if (!error) {
bd89aabc 2578 dentry->d_fsdata = cgrp;
ddbcc7e8 2579 inc_nlink(parent->d_inode);
a47295e6 2580 rcu_assign_pointer(cgrp->dentry, dentry);
ddbcc7e8
PM
2581 dget(dentry);
2582 }
2583 dput(dentry);
2584
2585 return error;
2586}
2587
099fca32
LZ
2588/**
2589 * cgroup_file_mode - deduce file mode of a control file
2590 * @cft: the control file in question
2591 *
2592 * returns cft->mode if ->mode is not 0
2593 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2594 * returns S_IRUGO if it has only a read handler
2595 * returns S_IWUSR if it has only a write hander
2596 */
a5e7ed32 2597static umode_t cgroup_file_mode(const struct cftype *cft)
099fca32 2598{
a5e7ed32 2599 umode_t mode = 0;
099fca32
LZ
2600
2601 if (cft->mode)
2602 return cft->mode;
2603
2604 if (cft->read || cft->read_u64 || cft->read_s64 ||
2605 cft->read_map || cft->read_seq_string)
2606 mode |= S_IRUGO;
2607
2608 if (cft->write || cft->write_u64 || cft->write_s64 ||
2609 cft->write_string || cft->trigger)
2610 mode |= S_IWUSR;
2611
2612 return mode;
2613}
2614
db0416b6
TH
2615static int cgroup_add_file(struct cgroup *cgrp, struct cgroup_subsys *subsys,
2616 const struct cftype *cft)
ddbcc7e8 2617{
bd89aabc 2618 struct dentry *dir = cgrp->dentry;
05ef1d7c 2619 struct cgroup *parent = __d_cgrp(dir);
ddbcc7e8 2620 struct dentry *dentry;
05ef1d7c 2621 struct cfent *cfe;
ddbcc7e8 2622 int error;
a5e7ed32 2623 umode_t mode;
ddbcc7e8 2624 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
8e3f6541
TH
2625
2626 /* does @cft->flags tell us to skip creation on @cgrp? */
2627 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2628 return 0;
2629 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2630 return 0;
2631
bd89aabc 2632 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
ddbcc7e8
PM
2633 strcpy(name, subsys->name);
2634 strcat(name, ".");
2635 }
2636 strcat(name, cft->name);
05ef1d7c 2637
ddbcc7e8 2638 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
05ef1d7c
TH
2639
2640 cfe = kzalloc(sizeof(*cfe), GFP_KERNEL);
2641 if (!cfe)
2642 return -ENOMEM;
2643
ddbcc7e8 2644 dentry = lookup_one_len(name, dir, strlen(name));
05ef1d7c 2645 if (IS_ERR(dentry)) {
ddbcc7e8 2646 error = PTR_ERR(dentry);
05ef1d7c
TH
2647 goto out;
2648 }
2649
2650 mode = cgroup_file_mode(cft);
2651 error = cgroup_create_file(dentry, mode | S_IFREG, cgrp->root->sb);
2652 if (!error) {
2653 cfe->type = (void *)cft;
2654 cfe->dentry = dentry;
2655 dentry->d_fsdata = cfe;
2656 list_add_tail(&cfe->node, &parent->files);
2657 cfe = NULL;
2658 }
2659 dput(dentry);
2660out:
2661 kfree(cfe);
ddbcc7e8
PM
2662 return error;
2663}
2664
79578621
TH
2665static int cgroup_addrm_files(struct cgroup *cgrp, struct cgroup_subsys *subsys,
2666 const struct cftype cfts[], bool is_add)
ddbcc7e8 2667{
db0416b6
TH
2668 const struct cftype *cft;
2669 int err, ret = 0;
2670
2671 for (cft = cfts; cft->name[0] != '\0'; cft++) {
79578621
TH
2672 if (is_add)
2673 err = cgroup_add_file(cgrp, subsys, cft);
2674 else
2675 err = cgroup_rm_file(cgrp, cft);
db0416b6 2676 if (err) {
79578621
TH
2677 pr_warning("cgroup_addrm_files: failed to %s %s, err=%d\n",
2678 is_add ? "add" : "remove", cft->name, err);
db0416b6
TH
2679 ret = err;
2680 }
ddbcc7e8 2681 }
db0416b6 2682 return ret;
ddbcc7e8
PM
2683}
2684
8e3f6541
TH
2685static DEFINE_MUTEX(cgroup_cft_mutex);
2686
2687static void cgroup_cfts_prepare(void)
2688 __acquires(&cgroup_cft_mutex) __acquires(&cgroup_mutex)
2689{
2690 /*
2691 * Thanks to the entanglement with vfs inode locking, we can't walk
2692 * the existing cgroups under cgroup_mutex and create files.
2693 * Instead, we increment reference on all cgroups and build list of
2694 * them using @cgrp->cft_q_node. Grab cgroup_cft_mutex to ensure
2695 * exclusive access to the field.
2696 */
2697 mutex_lock(&cgroup_cft_mutex);
2698 mutex_lock(&cgroup_mutex);
2699}
2700
2701static void cgroup_cfts_commit(struct cgroup_subsys *ss,
79578621 2702 const struct cftype *cfts, bool is_add)
8e3f6541
TH
2703 __releases(&cgroup_mutex) __releases(&cgroup_cft_mutex)
2704{
2705 LIST_HEAD(pending);
2706 struct cgroup *cgrp, *n;
8e3f6541
TH
2707
2708 /* %NULL @cfts indicates abort and don't bother if @ss isn't attached */
2709 if (cfts && ss->root != &rootnode) {
2710 list_for_each_entry(cgrp, &ss->root->allcg_list, allcg_node) {
2711 dget(cgrp->dentry);
2712 list_add_tail(&cgrp->cft_q_node, &pending);
2713 }
2714 }
2715
2716 mutex_unlock(&cgroup_mutex);
2717
2718 /*
2719 * All new cgroups will see @cfts update on @ss->cftsets. Add/rm
2720 * files for all cgroups which were created before.
2721 */
2722 list_for_each_entry_safe(cgrp, n, &pending, cft_q_node) {
2723 struct inode *inode = cgrp->dentry->d_inode;
2724
2725 mutex_lock(&inode->i_mutex);
2726 mutex_lock(&cgroup_mutex);
2727 if (!cgroup_is_removed(cgrp))
79578621 2728 cgroup_addrm_files(cgrp, ss, cfts, is_add);
8e3f6541
TH
2729 mutex_unlock(&cgroup_mutex);
2730 mutex_unlock(&inode->i_mutex);
2731
2732 list_del_init(&cgrp->cft_q_node);
2733 dput(cgrp->dentry);
2734 }
2735
2736 mutex_unlock(&cgroup_cft_mutex);
2737}
2738
2739/**
2740 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2741 * @ss: target cgroup subsystem
2742 * @cfts: zero-length name terminated array of cftypes
2743 *
2744 * Register @cfts to @ss. Files described by @cfts are created for all
2745 * existing cgroups to which @ss is attached and all future cgroups will
2746 * have them too. This function can be called anytime whether @ss is
2747 * attached or not.
2748 *
2749 * Returns 0 on successful registration, -errno on failure. Note that this
2750 * function currently returns 0 as long as @cfts registration is successful
2751 * even if some file creation attempts on existing cgroups fail.
2752 */
2753int cgroup_add_cftypes(struct cgroup_subsys *ss, const struct cftype *cfts)
2754{
2755 struct cftype_set *set;
2756
2757 set = kzalloc(sizeof(*set), GFP_KERNEL);
2758 if (!set)
2759 return -ENOMEM;
2760
2761 cgroup_cfts_prepare();
2762 set->cfts = cfts;
2763 list_add_tail(&set->node, &ss->cftsets);
79578621 2764 cgroup_cfts_commit(ss, cfts, true);
8e3f6541
TH
2765
2766 return 0;
2767}
2768EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2769
79578621
TH
2770/**
2771 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2772 * @ss: target cgroup subsystem
2773 * @cfts: zero-length name terminated array of cftypes
2774 *
2775 * Unregister @cfts from @ss. Files described by @cfts are removed from
2776 * all existing cgroups to which @ss is attached and all future cgroups
2777 * won't have them either. This function can be called anytime whether @ss
2778 * is attached or not.
2779 *
2780 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2781 * registered with @ss.
2782 */
2783int cgroup_rm_cftypes(struct cgroup_subsys *ss, const struct cftype *cfts)
2784{
2785 struct cftype_set *set;
2786
2787 cgroup_cfts_prepare();
2788
2789 list_for_each_entry(set, &ss->cftsets, node) {
2790 if (set->cfts == cfts) {
2791 list_del_init(&set->node);
2792 cgroup_cfts_commit(ss, cfts, false);
2793 return 0;
2794 }
2795 }
2796
2797 cgroup_cfts_commit(ss, NULL, false);
2798 return -ENOENT;
2799}
2800
a043e3b2
LZ
2801/**
2802 * cgroup_task_count - count the number of tasks in a cgroup.
2803 * @cgrp: the cgroup in question
2804 *
2805 * Return the number of tasks in the cgroup.
2806 */
bd89aabc 2807int cgroup_task_count(const struct cgroup *cgrp)
bbcb81d0
PM
2808{
2809 int count = 0;
71cbb949 2810 struct cg_cgroup_link *link;
817929ec
PM
2811
2812 read_lock(&css_set_lock);
71cbb949 2813 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
146aa1bd 2814 count += atomic_read(&link->cg->refcount);
817929ec
PM
2815 }
2816 read_unlock(&css_set_lock);
bbcb81d0
PM
2817 return count;
2818}
2819
817929ec
PM
2820/*
2821 * Advance a list_head iterator. The iterator should be positioned at
2822 * the start of a css_set
2823 */
bd89aabc 2824static void cgroup_advance_iter(struct cgroup *cgrp,
7717f7ba 2825 struct cgroup_iter *it)
817929ec
PM
2826{
2827 struct list_head *l = it->cg_link;
2828 struct cg_cgroup_link *link;
2829 struct css_set *cg;
2830
2831 /* Advance to the next non-empty css_set */
2832 do {
2833 l = l->next;
bd89aabc 2834 if (l == &cgrp->css_sets) {
817929ec
PM
2835 it->cg_link = NULL;
2836 return;
2837 }
bd89aabc 2838 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
817929ec
PM
2839 cg = link->cg;
2840 } while (list_empty(&cg->tasks));
2841 it->cg_link = l;
2842 it->task = cg->tasks.next;
2843}
2844
31a7df01
CW
2845/*
2846 * To reduce the fork() overhead for systems that are not actually
2847 * using their cgroups capability, we don't maintain the lists running
2848 * through each css_set to its tasks until we see the list actually
2849 * used - in other words after the first call to cgroup_iter_start().
31a7df01 2850 */
3df91fe3 2851static void cgroup_enable_task_cg_lists(void)
31a7df01
CW
2852{
2853 struct task_struct *p, *g;
2854 write_lock(&css_set_lock);
2855 use_task_css_set_links = 1;
3ce3230a
FW
2856 /*
2857 * We need tasklist_lock because RCU is not safe against
2858 * while_each_thread(). Besides, a forking task that has passed
2859 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2860 * is not guaranteed to have its child immediately visible in the
2861 * tasklist if we walk through it with RCU.
2862 */
2863 read_lock(&tasklist_lock);
31a7df01
CW
2864 do_each_thread(g, p) {
2865 task_lock(p);
0e04388f
LZ
2866 /*
2867 * We should check if the process is exiting, otherwise
2868 * it will race with cgroup_exit() in that the list
2869 * entry won't be deleted though the process has exited.
2870 */
2871 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
31a7df01
CW
2872 list_add(&p->cg_list, &p->cgroups->tasks);
2873 task_unlock(p);
2874 } while_each_thread(g, p);
3ce3230a 2875 read_unlock(&tasklist_lock);
31a7df01
CW
2876 write_unlock(&css_set_lock);
2877}
2878
bd89aabc 2879void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
c6ca5750 2880 __acquires(css_set_lock)
817929ec
PM
2881{
2882 /*
2883 * The first time anyone tries to iterate across a cgroup,
2884 * we need to enable the list linking each css_set to its
2885 * tasks, and fix up all existing tasks.
2886 */
31a7df01
CW
2887 if (!use_task_css_set_links)
2888 cgroup_enable_task_cg_lists();
2889
817929ec 2890 read_lock(&css_set_lock);
bd89aabc
PM
2891 it->cg_link = &cgrp->css_sets;
2892 cgroup_advance_iter(cgrp, it);
817929ec
PM
2893}
2894
bd89aabc 2895struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
817929ec
PM
2896 struct cgroup_iter *it)
2897{
2898 struct task_struct *res;
2899 struct list_head *l = it->task;
2019f634 2900 struct cg_cgroup_link *link;
817929ec
PM
2901
2902 /* If the iterator cg is NULL, we have no tasks */
2903 if (!it->cg_link)
2904 return NULL;
2905 res = list_entry(l, struct task_struct, cg_list);
2906 /* Advance iterator to find next entry */
2907 l = l->next;
2019f634
LJ
2908 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2909 if (l == &link->cg->tasks) {
817929ec
PM
2910 /* We reached the end of this task list - move on to
2911 * the next cg_cgroup_link */
bd89aabc 2912 cgroup_advance_iter(cgrp, it);
817929ec
PM
2913 } else {
2914 it->task = l;
2915 }
2916 return res;
2917}
2918
bd89aabc 2919void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
c6ca5750 2920 __releases(css_set_lock)
817929ec
PM
2921{
2922 read_unlock(&css_set_lock);
2923}
2924
31a7df01
CW
2925static inline int started_after_time(struct task_struct *t1,
2926 struct timespec *time,
2927 struct task_struct *t2)
2928{
2929 int start_diff = timespec_compare(&t1->start_time, time);
2930 if (start_diff > 0) {
2931 return 1;
2932 } else if (start_diff < 0) {
2933 return 0;
2934 } else {
2935 /*
2936 * Arbitrarily, if two processes started at the same
2937 * time, we'll say that the lower pointer value
2938 * started first. Note that t2 may have exited by now
2939 * so this may not be a valid pointer any longer, but
2940 * that's fine - it still serves to distinguish
2941 * between two tasks started (effectively) simultaneously.
2942 */
2943 return t1 > t2;
2944 }
2945}
2946
2947/*
2948 * This function is a callback from heap_insert() and is used to order
2949 * the heap.
2950 * In this case we order the heap in descending task start time.
2951 */
2952static inline int started_after(void *p1, void *p2)
2953{
2954 struct task_struct *t1 = p1;
2955 struct task_struct *t2 = p2;
2956 return started_after_time(t1, &t2->start_time, t2);
2957}
2958
2959/**
2960 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2961 * @scan: struct cgroup_scanner containing arguments for the scan
2962 *
2963 * Arguments include pointers to callback functions test_task() and
2964 * process_task().
2965 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2966 * and if it returns true, call process_task() for it also.
2967 * The test_task pointer may be NULL, meaning always true (select all tasks).
2968 * Effectively duplicates cgroup_iter_{start,next,end}()
2969 * but does not lock css_set_lock for the call to process_task().
2970 * The struct cgroup_scanner may be embedded in any structure of the caller's
2971 * creation.
2972 * It is guaranteed that process_task() will act on every task that
2973 * is a member of the cgroup for the duration of this call. This
2974 * function may or may not call process_task() for tasks that exit
2975 * or move to a different cgroup during the call, or are forked or
2976 * move into the cgroup during the call.
2977 *
2978 * Note that test_task() may be called with locks held, and may in some
2979 * situations be called multiple times for the same task, so it should
2980 * be cheap.
2981 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2982 * pre-allocated and will be used for heap operations (and its "gt" member will
2983 * be overwritten), else a temporary heap will be used (allocation of which
2984 * may cause this function to fail).
2985 */
2986int cgroup_scan_tasks(struct cgroup_scanner *scan)
2987{
2988 int retval, i;
2989 struct cgroup_iter it;
2990 struct task_struct *p, *dropped;
2991 /* Never dereference latest_task, since it's not refcounted */
2992 struct task_struct *latest_task = NULL;
2993 struct ptr_heap tmp_heap;
2994 struct ptr_heap *heap;
2995 struct timespec latest_time = { 0, 0 };
2996
2997 if (scan->heap) {
2998 /* The caller supplied our heap and pre-allocated its memory */
2999 heap = scan->heap;
3000 heap->gt = &started_after;
3001 } else {
3002 /* We need to allocate our own heap memory */
3003 heap = &tmp_heap;
3004 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
3005 if (retval)
3006 /* cannot allocate the heap */
3007 return retval;
3008 }
3009
3010 again:
3011 /*
3012 * Scan tasks in the cgroup, using the scanner's "test_task" callback
3013 * to determine which are of interest, and using the scanner's
3014 * "process_task" callback to process any of them that need an update.
3015 * Since we don't want to hold any locks during the task updates,
3016 * gather tasks to be processed in a heap structure.
3017 * The heap is sorted by descending task start time.
3018 * If the statically-sized heap fills up, we overflow tasks that
3019 * started later, and in future iterations only consider tasks that
3020 * started after the latest task in the previous pass. This
3021 * guarantees forward progress and that we don't miss any tasks.
3022 */
3023 heap->size = 0;
3024 cgroup_iter_start(scan->cg, &it);
3025 while ((p = cgroup_iter_next(scan->cg, &it))) {
3026 /*
3027 * Only affect tasks that qualify per the caller's callback,
3028 * if he provided one
3029 */
3030 if (scan->test_task && !scan->test_task(p, scan))
3031 continue;
3032 /*
3033 * Only process tasks that started after the last task
3034 * we processed
3035 */
3036 if (!started_after_time(p, &latest_time, latest_task))
3037 continue;
3038 dropped = heap_insert(heap, p);
3039 if (dropped == NULL) {
3040 /*
3041 * The new task was inserted; the heap wasn't
3042 * previously full
3043 */
3044 get_task_struct(p);
3045 } else if (dropped != p) {
3046 /*
3047 * The new task was inserted, and pushed out a
3048 * different task
3049 */
3050 get_task_struct(p);
3051 put_task_struct(dropped);
3052 }
3053 /*
3054 * Else the new task was newer than anything already in
3055 * the heap and wasn't inserted
3056 */
3057 }
3058 cgroup_iter_end(scan->cg, &it);
3059
3060 if (heap->size) {
3061 for (i = 0; i < heap->size; i++) {
4fe91d51 3062 struct task_struct *q = heap->ptrs[i];
31a7df01 3063 if (i == 0) {
4fe91d51
PJ
3064 latest_time = q->start_time;
3065 latest_task = q;
31a7df01
CW
3066 }
3067 /* Process the task per the caller's callback */
4fe91d51
PJ
3068 scan->process_task(q, scan);
3069 put_task_struct(q);
31a7df01
CW
3070 }
3071 /*
3072 * If we had to process any tasks at all, scan again
3073 * in case some of them were in the middle of forking
3074 * children that didn't get processed.
3075 * Not the most efficient way to do it, but it avoids
3076 * having to take callback_mutex in the fork path
3077 */
3078 goto again;
3079 }
3080 if (heap == &tmp_heap)
3081 heap_free(&tmp_heap);
3082 return 0;
3083}
3084
bbcb81d0 3085/*
102a775e 3086 * Stuff for reading the 'tasks'/'procs' files.
bbcb81d0
PM
3087 *
3088 * Reading this file can return large amounts of data if a cgroup has
3089 * *lots* of attached tasks. So it may need several calls to read(),
3090 * but we cannot guarantee that the information we produce is correct
3091 * unless we produce it entirely atomically.
3092 *
bbcb81d0 3093 */
bbcb81d0 3094
24528255
LZ
3095/* which pidlist file are we talking about? */
3096enum cgroup_filetype {
3097 CGROUP_FILE_PROCS,
3098 CGROUP_FILE_TASKS,
3099};
3100
3101/*
3102 * A pidlist is a list of pids that virtually represents the contents of one
3103 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3104 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3105 * to the cgroup.
3106 */
3107struct cgroup_pidlist {
3108 /*
3109 * used to find which pidlist is wanted. doesn't change as long as
3110 * this particular list stays in the list.
3111 */
3112 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3113 /* array of xids */
3114 pid_t *list;
3115 /* how many elements the above list has */
3116 int length;
3117 /* how many files are using the current array */
3118 int use_count;
3119 /* each of these stored in a list by its cgroup */
3120 struct list_head links;
3121 /* pointer to the cgroup we belong to, for list removal purposes */
3122 struct cgroup *owner;
3123 /* protects the other fields */
3124 struct rw_semaphore mutex;
3125};
3126
d1d9fd33
BB
3127/*
3128 * The following two functions "fix" the issue where there are more pids
3129 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3130 * TODO: replace with a kernel-wide solution to this problem
3131 */
3132#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3133static void *pidlist_allocate(int count)
3134{
3135 if (PIDLIST_TOO_LARGE(count))
3136 return vmalloc(count * sizeof(pid_t));
3137 else
3138 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3139}
3140static void pidlist_free(void *p)
3141{
3142 if (is_vmalloc_addr(p))
3143 vfree(p);
3144 else
3145 kfree(p);
3146}
3147static void *pidlist_resize(void *p, int newcount)
3148{
3149 void *newlist;
3150 /* note: if new alloc fails, old p will still be valid either way */
3151 if (is_vmalloc_addr(p)) {
3152 newlist = vmalloc(newcount * sizeof(pid_t));
3153 if (!newlist)
3154 return NULL;
3155 memcpy(newlist, p, newcount * sizeof(pid_t));
3156 vfree(p);
3157 } else {
3158 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3159 }
3160 return newlist;
3161}
3162
bbcb81d0 3163/*
102a775e
BB
3164 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3165 * If the new stripped list is sufficiently smaller and there's enough memory
3166 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3167 * number of unique elements.
bbcb81d0 3168 */
102a775e
BB
3169/* is the size difference enough that we should re-allocate the array? */
3170#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3171static int pidlist_uniq(pid_t **p, int length)
bbcb81d0 3172{
102a775e
BB
3173 int src, dest = 1;
3174 pid_t *list = *p;
3175 pid_t *newlist;
3176
3177 /*
3178 * we presume the 0th element is unique, so i starts at 1. trivial
3179 * edge cases first; no work needs to be done for either
3180 */
3181 if (length == 0 || length == 1)
3182 return length;
3183 /* src and dest walk down the list; dest counts unique elements */
3184 for (src = 1; src < length; src++) {
3185 /* find next unique element */
3186 while (list[src] == list[src-1]) {
3187 src++;
3188 if (src == length)
3189 goto after;
3190 }
3191 /* dest always points to where the next unique element goes */
3192 list[dest] = list[src];
3193 dest++;
3194 }
3195after:
3196 /*
3197 * if the length difference is large enough, we want to allocate a
3198 * smaller buffer to save memory. if this fails due to out of memory,
3199 * we'll just stay with what we've got.
3200 */
3201 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
d1d9fd33 3202 newlist = pidlist_resize(list, dest);
102a775e
BB
3203 if (newlist)
3204 *p = newlist;
3205 }
3206 return dest;
3207}
3208
3209static int cmppid(const void *a, const void *b)
3210{
3211 return *(pid_t *)a - *(pid_t *)b;
3212}
3213
72a8cb30
BB
3214/*
3215 * find the appropriate pidlist for our purpose (given procs vs tasks)
3216 * returns with the lock on that pidlist already held, and takes care
3217 * of the use count, or returns NULL with no locks held if we're out of
3218 * memory.
3219 */
3220static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3221 enum cgroup_filetype type)
3222{
3223 struct cgroup_pidlist *l;
3224 /* don't need task_nsproxy() if we're looking at ourself */
b70cc5fd
LZ
3225 struct pid_namespace *ns = current->nsproxy->pid_ns;
3226
72a8cb30
BB
3227 /*
3228 * We can't drop the pidlist_mutex before taking the l->mutex in case
3229 * the last ref-holder is trying to remove l from the list at the same
3230 * time. Holding the pidlist_mutex precludes somebody taking whichever
3231 * list we find out from under us - compare release_pid_array().
3232 */
3233 mutex_lock(&cgrp->pidlist_mutex);
3234 list_for_each_entry(l, &cgrp->pidlists, links) {
3235 if (l->key.type == type && l->key.ns == ns) {
72a8cb30
BB
3236 /* make sure l doesn't vanish out from under us */
3237 down_write(&l->mutex);
3238 mutex_unlock(&cgrp->pidlist_mutex);
72a8cb30
BB
3239 return l;
3240 }
3241 }
3242 /* entry not found; create a new one */
3243 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3244 if (!l) {
3245 mutex_unlock(&cgrp->pidlist_mutex);
72a8cb30
BB
3246 return l;
3247 }
3248 init_rwsem(&l->mutex);
3249 down_write(&l->mutex);
3250 l->key.type = type;
b70cc5fd 3251 l->key.ns = get_pid_ns(ns);
72a8cb30
BB
3252 l->use_count = 0; /* don't increment here */
3253 l->list = NULL;
3254 l->owner = cgrp;
3255 list_add(&l->links, &cgrp->pidlists);
3256 mutex_unlock(&cgrp->pidlist_mutex);
3257 return l;
3258}
3259
102a775e
BB
3260/*
3261 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3262 */
72a8cb30
BB
3263static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3264 struct cgroup_pidlist **lp)
102a775e
BB
3265{
3266 pid_t *array;
3267 int length;
3268 int pid, n = 0; /* used for populating the array */
817929ec
PM
3269 struct cgroup_iter it;
3270 struct task_struct *tsk;
102a775e
BB
3271 struct cgroup_pidlist *l;
3272
3273 /*
3274 * If cgroup gets more users after we read count, we won't have
3275 * enough space - tough. This race is indistinguishable to the
3276 * caller from the case that the additional cgroup users didn't
3277 * show up until sometime later on.
3278 */
3279 length = cgroup_task_count(cgrp);
d1d9fd33 3280 array = pidlist_allocate(length);
102a775e
BB
3281 if (!array)
3282 return -ENOMEM;
3283 /* now, populate the array */
bd89aabc
PM
3284 cgroup_iter_start(cgrp, &it);
3285 while ((tsk = cgroup_iter_next(cgrp, &it))) {
102a775e 3286 if (unlikely(n == length))
817929ec 3287 break;
102a775e 3288 /* get tgid or pid for procs or tasks file respectively */
72a8cb30
BB
3289 if (type == CGROUP_FILE_PROCS)
3290 pid = task_tgid_vnr(tsk);
3291 else
3292 pid = task_pid_vnr(tsk);
102a775e
BB
3293 if (pid > 0) /* make sure to only use valid results */
3294 array[n++] = pid;
817929ec 3295 }
bd89aabc 3296 cgroup_iter_end(cgrp, &it);
102a775e
BB
3297 length = n;
3298 /* now sort & (if procs) strip out duplicates */
3299 sort(array, length, sizeof(pid_t), cmppid, NULL);
72a8cb30 3300 if (type == CGROUP_FILE_PROCS)
102a775e 3301 length = pidlist_uniq(&array, length);
72a8cb30
BB
3302 l = cgroup_pidlist_find(cgrp, type);
3303 if (!l) {
d1d9fd33 3304 pidlist_free(array);
72a8cb30 3305 return -ENOMEM;
102a775e 3306 }
72a8cb30 3307 /* store array, freeing old if necessary - lock already held */
d1d9fd33 3308 pidlist_free(l->list);
102a775e
BB
3309 l->list = array;
3310 l->length = length;
3311 l->use_count++;
3312 up_write(&l->mutex);
72a8cb30 3313 *lp = l;
102a775e 3314 return 0;
bbcb81d0
PM
3315}
3316
846c7bb0 3317/**
a043e3b2 3318 * cgroupstats_build - build and fill cgroupstats
846c7bb0
BS
3319 * @stats: cgroupstats to fill information into
3320 * @dentry: A dentry entry belonging to the cgroup for which stats have
3321 * been requested.
a043e3b2
LZ
3322 *
3323 * Build and fill cgroupstats so that taskstats can export it to user
3324 * space.
846c7bb0
BS
3325 */
3326int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3327{
3328 int ret = -EINVAL;
bd89aabc 3329 struct cgroup *cgrp;
846c7bb0
BS
3330 struct cgroup_iter it;
3331 struct task_struct *tsk;
33d283be 3332
846c7bb0 3333 /*
33d283be
LZ
3334 * Validate dentry by checking the superblock operations,
3335 * and make sure it's a directory.
846c7bb0 3336 */
33d283be
LZ
3337 if (dentry->d_sb->s_op != &cgroup_ops ||
3338 !S_ISDIR(dentry->d_inode->i_mode))
846c7bb0
BS
3339 goto err;
3340
3341 ret = 0;
bd89aabc 3342 cgrp = dentry->d_fsdata;
846c7bb0 3343
bd89aabc
PM
3344 cgroup_iter_start(cgrp, &it);
3345 while ((tsk = cgroup_iter_next(cgrp, &it))) {
846c7bb0
BS
3346 switch (tsk->state) {
3347 case TASK_RUNNING:
3348 stats->nr_running++;
3349 break;
3350 case TASK_INTERRUPTIBLE:
3351 stats->nr_sleeping++;
3352 break;
3353 case TASK_UNINTERRUPTIBLE:
3354 stats->nr_uninterruptible++;
3355 break;
3356 case TASK_STOPPED:
3357 stats->nr_stopped++;
3358 break;
3359 default:
3360 if (delayacct_is_task_waiting_on_io(tsk))
3361 stats->nr_io_wait++;
3362 break;
3363 }
3364 }
bd89aabc 3365 cgroup_iter_end(cgrp, &it);
846c7bb0 3366
846c7bb0
BS
3367err:
3368 return ret;
3369}
3370
8f3ff208 3371
bbcb81d0 3372/*
102a775e 3373 * seq_file methods for the tasks/procs files. The seq_file position is the
cc31edce 3374 * next pid to display; the seq_file iterator is a pointer to the pid
102a775e 3375 * in the cgroup->l->list array.
bbcb81d0 3376 */
cc31edce 3377
102a775e 3378static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
bbcb81d0 3379{
cc31edce
PM
3380 /*
3381 * Initially we receive a position value that corresponds to
3382 * one more than the last pid shown (or 0 on the first call or
3383 * after a seek to the start). Use a binary-search to find the
3384 * next pid to display, if any
3385 */
102a775e 3386 struct cgroup_pidlist *l = s->private;
cc31edce
PM
3387 int index = 0, pid = *pos;
3388 int *iter;
3389
102a775e 3390 down_read(&l->mutex);
cc31edce 3391 if (pid) {
102a775e 3392 int end = l->length;
20777766 3393
cc31edce
PM
3394 while (index < end) {
3395 int mid = (index + end) / 2;
102a775e 3396 if (l->list[mid] == pid) {
cc31edce
PM
3397 index = mid;
3398 break;
102a775e 3399 } else if (l->list[mid] <= pid)
cc31edce
PM
3400 index = mid + 1;
3401 else
3402 end = mid;
3403 }
3404 }
3405 /* If we're off the end of the array, we're done */
102a775e 3406 if (index >= l->length)
cc31edce
PM
3407 return NULL;
3408 /* Update the abstract position to be the actual pid that we found */
102a775e 3409 iter = l->list + index;
cc31edce
PM
3410 *pos = *iter;
3411 return iter;
3412}
3413
102a775e 3414static void cgroup_pidlist_stop(struct seq_file *s, void *v)
cc31edce 3415{
102a775e
BB
3416 struct cgroup_pidlist *l = s->private;
3417 up_read(&l->mutex);
cc31edce
PM
3418}
3419
102a775e 3420static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
cc31edce 3421{
102a775e
BB
3422 struct cgroup_pidlist *l = s->private;
3423 pid_t *p = v;
3424 pid_t *end = l->list + l->length;
cc31edce
PM
3425 /*
3426 * Advance to the next pid in the array. If this goes off the
3427 * end, we're done
3428 */
3429 p++;
3430 if (p >= end) {
3431 return NULL;
3432 } else {
3433 *pos = *p;
3434 return p;
3435 }
3436}
3437
102a775e 3438static int cgroup_pidlist_show(struct seq_file *s, void *v)
cc31edce
PM
3439{
3440 return seq_printf(s, "%d\n", *(int *)v);
3441}
bbcb81d0 3442
102a775e
BB
3443/*
3444 * seq_operations functions for iterating on pidlists through seq_file -
3445 * independent of whether it's tasks or procs
3446 */
3447static const struct seq_operations cgroup_pidlist_seq_operations = {
3448 .start = cgroup_pidlist_start,
3449 .stop = cgroup_pidlist_stop,
3450 .next = cgroup_pidlist_next,
3451 .show = cgroup_pidlist_show,
cc31edce
PM
3452};
3453
102a775e 3454static void cgroup_release_pid_array(struct cgroup_pidlist *l)
cc31edce 3455{
72a8cb30
BB
3456 /*
3457 * the case where we're the last user of this particular pidlist will
3458 * have us remove it from the cgroup's list, which entails taking the
3459 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3460 * pidlist_mutex, we have to take pidlist_mutex first.
3461 */
3462 mutex_lock(&l->owner->pidlist_mutex);
102a775e
BB
3463 down_write(&l->mutex);
3464 BUG_ON(!l->use_count);
3465 if (!--l->use_count) {
72a8cb30
BB
3466 /* we're the last user if refcount is 0; remove and free */
3467 list_del(&l->links);
3468 mutex_unlock(&l->owner->pidlist_mutex);
d1d9fd33 3469 pidlist_free(l->list);
72a8cb30
BB
3470 put_pid_ns(l->key.ns);
3471 up_write(&l->mutex);
3472 kfree(l);
3473 return;
cc31edce 3474 }
72a8cb30 3475 mutex_unlock(&l->owner->pidlist_mutex);
102a775e 3476 up_write(&l->mutex);
bbcb81d0
PM
3477}
3478
102a775e 3479static int cgroup_pidlist_release(struct inode *inode, struct file *file)
cc31edce 3480{
102a775e 3481 struct cgroup_pidlist *l;
cc31edce
PM
3482 if (!(file->f_mode & FMODE_READ))
3483 return 0;
102a775e
BB
3484 /*
3485 * the seq_file will only be initialized if the file was opened for
3486 * reading; hence we check if it's not null only in that case.
3487 */
3488 l = ((struct seq_file *)file->private_data)->private;
3489 cgroup_release_pid_array(l);
cc31edce
PM
3490 return seq_release(inode, file);
3491}
3492
102a775e 3493static const struct file_operations cgroup_pidlist_operations = {
cc31edce
PM
3494 .read = seq_read,
3495 .llseek = seq_lseek,
3496 .write = cgroup_file_write,
102a775e 3497 .release = cgroup_pidlist_release,
cc31edce
PM
3498};
3499
bbcb81d0 3500/*
102a775e
BB
3501 * The following functions handle opens on a file that displays a pidlist
3502 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3503 * in the cgroup.
bbcb81d0 3504 */
102a775e 3505/* helper function for the two below it */
72a8cb30 3506static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
bbcb81d0 3507{
bd89aabc 3508 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
72a8cb30 3509 struct cgroup_pidlist *l;
cc31edce 3510 int retval;
bbcb81d0 3511
cc31edce 3512 /* Nothing to do for write-only files */
bbcb81d0
PM
3513 if (!(file->f_mode & FMODE_READ))
3514 return 0;
3515
102a775e 3516 /* have the array populated */
72a8cb30 3517 retval = pidlist_array_load(cgrp, type, &l);
102a775e
BB
3518 if (retval)
3519 return retval;
3520 /* configure file information */
3521 file->f_op = &cgroup_pidlist_operations;
cc31edce 3522
102a775e 3523 retval = seq_open(file, &cgroup_pidlist_seq_operations);
cc31edce 3524 if (retval) {
102a775e 3525 cgroup_release_pid_array(l);
cc31edce 3526 return retval;
bbcb81d0 3527 }
102a775e 3528 ((struct seq_file *)file->private_data)->private = l;
bbcb81d0
PM
3529 return 0;
3530}
102a775e
BB
3531static int cgroup_tasks_open(struct inode *unused, struct file *file)
3532{
72a8cb30 3533 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
102a775e
BB
3534}
3535static int cgroup_procs_open(struct inode *unused, struct file *file)
3536{
72a8cb30 3537 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
102a775e 3538}
bbcb81d0 3539
bd89aabc 3540static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
81a6a5cd
PM
3541 struct cftype *cft)
3542{
bd89aabc 3543 return notify_on_release(cgrp);
81a6a5cd
PM
3544}
3545
6379c106
PM
3546static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3547 struct cftype *cft,
3548 u64 val)
3549{
3550 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3551 if (val)
3552 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3553 else
3554 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3555 return 0;
3556}
3557
0dea1168
KS
3558/*
3559 * Unregister event and free resources.
3560 *
3561 * Gets called from workqueue.
3562 */
3563static void cgroup_event_remove(struct work_struct *work)
3564{
3565 struct cgroup_event *event = container_of(work, struct cgroup_event,
3566 remove);
3567 struct cgroup *cgrp = event->cgrp;
3568
0dea1168
KS
3569 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3570
3571 eventfd_ctx_put(event->eventfd);
0dea1168 3572 kfree(event);
a0a4db54 3573 dput(cgrp->dentry);
0dea1168
KS
3574}
3575
3576/*
3577 * Gets called on POLLHUP on eventfd when user closes it.
3578 *
3579 * Called with wqh->lock held and interrupts disabled.
3580 */
3581static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3582 int sync, void *key)
3583{
3584 struct cgroup_event *event = container_of(wait,
3585 struct cgroup_event, wait);
3586 struct cgroup *cgrp = event->cgrp;
3587 unsigned long flags = (unsigned long)key;
3588
3589 if (flags & POLLHUP) {
a93d2f17 3590 __remove_wait_queue(event->wqh, &event->wait);
0dea1168
KS
3591 spin_lock(&cgrp->event_list_lock);
3592 list_del(&event->list);
3593 spin_unlock(&cgrp->event_list_lock);
3594 /*
3595 * We are in atomic context, but cgroup_event_remove() may
3596 * sleep, so we have to call it in workqueue.
3597 */
3598 schedule_work(&event->remove);
3599 }
3600
3601 return 0;
3602}
3603
3604static void cgroup_event_ptable_queue_proc(struct file *file,
3605 wait_queue_head_t *wqh, poll_table *pt)
3606{
3607 struct cgroup_event *event = container_of(pt,
3608 struct cgroup_event, pt);
3609
3610 event->wqh = wqh;
3611 add_wait_queue(wqh, &event->wait);
3612}
3613
3614/*
3615 * Parse input and register new cgroup event handler.
3616 *
3617 * Input must be in format '<event_fd> <control_fd> <args>'.
3618 * Interpretation of args is defined by control file implementation.
3619 */
3620static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3621 const char *buffer)
3622{
3623 struct cgroup_event *event = NULL;
3624 unsigned int efd, cfd;
3625 struct file *efile = NULL;
3626 struct file *cfile = NULL;
3627 char *endp;
3628 int ret;
3629
3630 efd = simple_strtoul(buffer, &endp, 10);
3631 if (*endp != ' ')
3632 return -EINVAL;
3633 buffer = endp + 1;
3634
3635 cfd = simple_strtoul(buffer, &endp, 10);
3636 if ((*endp != ' ') && (*endp != '\0'))
3637 return -EINVAL;
3638 buffer = endp + 1;
3639
3640 event = kzalloc(sizeof(*event), GFP_KERNEL);
3641 if (!event)
3642 return -ENOMEM;
3643 event->cgrp = cgrp;
3644 INIT_LIST_HEAD(&event->list);
3645 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3646 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3647 INIT_WORK(&event->remove, cgroup_event_remove);
3648
3649 efile = eventfd_fget(efd);
3650 if (IS_ERR(efile)) {
3651 ret = PTR_ERR(efile);
3652 goto fail;
3653 }
3654
3655 event->eventfd = eventfd_ctx_fileget(efile);
3656 if (IS_ERR(event->eventfd)) {
3657 ret = PTR_ERR(event->eventfd);
3658 goto fail;
3659 }
3660
3661 cfile = fget(cfd);
3662 if (!cfile) {
3663 ret = -EBADF;
3664 goto fail;
3665 }
3666
3667 /* the process need read permission on control file */
3bfa784a
AV
3668 /* AV: shouldn't we check that it's been opened for read instead? */
3669 ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ);
0dea1168
KS
3670 if (ret < 0)
3671 goto fail;
3672
3673 event->cft = __file_cft(cfile);
3674 if (IS_ERR(event->cft)) {
3675 ret = PTR_ERR(event->cft);
3676 goto fail;
3677 }
3678
3679 if (!event->cft->register_event || !event->cft->unregister_event) {
3680 ret = -EINVAL;
3681 goto fail;
3682 }
3683
3684 ret = event->cft->register_event(cgrp, event->cft,
3685 event->eventfd, buffer);
3686 if (ret)
3687 goto fail;
3688
3689 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3690 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3691 ret = 0;
3692 goto fail;
3693 }
3694
a0a4db54
KS
3695 /*
3696 * Events should be removed after rmdir of cgroup directory, but before
3697 * destroying subsystem state objects. Let's take reference to cgroup
3698 * directory dentry to do that.
3699 */
3700 dget(cgrp->dentry);
3701
0dea1168
KS
3702 spin_lock(&cgrp->event_list_lock);
3703 list_add(&event->list, &cgrp->event_list);
3704 spin_unlock(&cgrp->event_list_lock);
3705
3706 fput(cfile);
3707 fput(efile);
3708
3709 return 0;
3710
3711fail:
3712 if (cfile)
3713 fput(cfile);
3714
3715 if (event && event->eventfd && !IS_ERR(event->eventfd))
3716 eventfd_ctx_put(event->eventfd);
3717
3718 if (!IS_ERR_OR_NULL(efile))
3719 fput(efile);
3720
3721 kfree(event);
3722
3723 return ret;
3724}
3725
97978e6d
DL
3726static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3727 struct cftype *cft)
3728{
3729 return clone_children(cgrp);
3730}
3731
3732static int cgroup_clone_children_write(struct cgroup *cgrp,
3733 struct cftype *cft,
3734 u64 val)
3735{
3736 if (val)
3737 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3738 else
3739 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3740 return 0;
3741}
3742
bbcb81d0
PM
3743/*
3744 * for the common functions, 'private' gives the type of file
3745 */
102a775e
BB
3746/* for hysterical raisins, we can't put this on the older files */
3747#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
81a6a5cd
PM
3748static struct cftype files[] = {
3749 {
3750 .name = "tasks",
3751 .open = cgroup_tasks_open,
af351026 3752 .write_u64 = cgroup_tasks_write,
102a775e 3753 .release = cgroup_pidlist_release,
099fca32 3754 .mode = S_IRUGO | S_IWUSR,
81a6a5cd 3755 },
102a775e
BB
3756 {
3757 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3758 .open = cgroup_procs_open,
74a1166d 3759 .write_u64 = cgroup_procs_write,
102a775e 3760 .release = cgroup_pidlist_release,
74a1166d 3761 .mode = S_IRUGO | S_IWUSR,
102a775e 3762 },
81a6a5cd
PM
3763 {
3764 .name = "notify_on_release",
f4c753b7 3765 .read_u64 = cgroup_read_notify_on_release,
6379c106 3766 .write_u64 = cgroup_write_notify_on_release,
81a6a5cd 3767 },
0dea1168
KS
3768 {
3769 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3770 .write_string = cgroup_write_event_control,
3771 .mode = S_IWUGO,
3772 },
97978e6d
DL
3773 {
3774 .name = "cgroup.clone_children",
3775 .read_u64 = cgroup_clone_children_read,
3776 .write_u64 = cgroup_clone_children_write,
3777 },
6e6ff25b
TH
3778 {
3779 .name = "release_agent",
3780 .flags = CFTYPE_ONLY_ON_ROOT,
3781 .read_seq_string = cgroup_release_agent_show,
3782 .write_string = cgroup_release_agent_write,
3783 .max_write_len = PATH_MAX,
3784 },
db0416b6 3785 { } /* terminate */
bbcb81d0
PM
3786};
3787
bd89aabc 3788static int cgroup_populate_dir(struct cgroup *cgrp)
ddbcc7e8
PM
3789{
3790 int err;
3791 struct cgroup_subsys *ss;
3792
79578621 3793 err = cgroup_addrm_files(cgrp, NULL, files, true);
bbcb81d0
PM
3794 if (err < 0)
3795 return err;
3796
8e3f6541 3797 /* process cftsets of each subsystem */
bd89aabc 3798 for_each_subsys(cgrp->root, ss) {
8e3f6541
TH
3799 struct cftype_set *set;
3800
db0416b6 3801 list_for_each_entry(set, &ss->cftsets, node)
79578621 3802 cgroup_addrm_files(cgrp, ss, set->cfts, true);
ddbcc7e8 3803 }
8e3f6541 3804
38460b48
KH
3805 /* This cgroup is ready now */
3806 for_each_subsys(cgrp->root, ss) {
3807 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3808 /*
3809 * Update id->css pointer and make this css visible from
3810 * CSS ID functions. This pointer will be dereferened
3811 * from RCU-read-side without locks.
3812 */
3813 if (css->id)
3814 rcu_assign_pointer(css->id->css, css);
3815 }
ddbcc7e8
PM
3816
3817 return 0;
3818}
3819
48ddbe19
TH
3820static void css_dput_fn(struct work_struct *work)
3821{
3822 struct cgroup_subsys_state *css =
3823 container_of(work, struct cgroup_subsys_state, dput_work);
5db9a4d9
TH
3824 struct dentry *dentry = css->cgroup->dentry;
3825 struct super_block *sb = dentry->d_sb;
48ddbe19 3826
5db9a4d9
TH
3827 atomic_inc(&sb->s_active);
3828 dput(dentry);
3829 deactivate_super(sb);
48ddbe19
TH
3830}
3831
ddbcc7e8
PM
3832static void init_cgroup_css(struct cgroup_subsys_state *css,
3833 struct cgroup_subsys *ss,
bd89aabc 3834 struct cgroup *cgrp)
ddbcc7e8 3835{
bd89aabc 3836 css->cgroup = cgrp;
e7c5ec91 3837 atomic_set(&css->refcnt, 1);
ddbcc7e8 3838 css->flags = 0;
38460b48 3839 css->id = NULL;
bd89aabc 3840 if (cgrp == dummytop)
ddbcc7e8 3841 set_bit(CSS_ROOT, &css->flags);
bd89aabc
PM
3842 BUG_ON(cgrp->subsys[ss->subsys_id]);
3843 cgrp->subsys[ss->subsys_id] = css;
48ddbe19
TH
3844
3845 /*
ed957793
TH
3846 * css holds an extra ref to @cgrp->dentry which is put on the last
3847 * css_put(). dput() requires process context, which css_put() may
3848 * be called without. @css->dput_work will be used to invoke
3849 * dput() asynchronously from css_put().
48ddbe19
TH
3850 */
3851 INIT_WORK(&css->dput_work, css_dput_fn);
ddbcc7e8
PM
3852}
3853
3854/*
a043e3b2
LZ
3855 * cgroup_create - create a cgroup
3856 * @parent: cgroup that will be parent of the new cgroup
3857 * @dentry: dentry of the new cgroup
3858 * @mode: mode to set on new inode
ddbcc7e8 3859 *
a043e3b2 3860 * Must be called with the mutex on the parent inode held
ddbcc7e8 3861 */
ddbcc7e8 3862static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
a5e7ed32 3863 umode_t mode)
ddbcc7e8 3864{
bd89aabc 3865 struct cgroup *cgrp;
ddbcc7e8
PM
3866 struct cgroupfs_root *root = parent->root;
3867 int err = 0;
3868 struct cgroup_subsys *ss;
3869 struct super_block *sb = root->sb;
3870
bd89aabc
PM
3871 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3872 if (!cgrp)
ddbcc7e8
PM
3873 return -ENOMEM;
3874
976c06bc
TH
3875 /*
3876 * Only live parents can have children. Note that the liveliness
3877 * check isn't strictly necessary because cgroup_mkdir() and
3878 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
3879 * anyway so that locking is contained inside cgroup proper and we
3880 * don't get nasty surprises if we ever grow another caller.
3881 */
3882 if (!cgroup_lock_live_group(parent)) {
3883 err = -ENODEV;
3884 goto err_free;
3885 }
3886
ddbcc7e8
PM
3887 /* Grab a reference on the superblock so the hierarchy doesn't
3888 * get deleted on unmount if there are child cgroups. This
3889 * can be done outside cgroup_mutex, since the sb can't
3890 * disappear while someone has an open control file on the
3891 * fs */
3892 atomic_inc(&sb->s_active);
3893
cc31edce 3894 init_cgroup_housekeeping(cgrp);
ddbcc7e8 3895
bd89aabc
PM
3896 cgrp->parent = parent;
3897 cgrp->root = parent->root;
3898 cgrp->top_cgroup = parent->top_cgroup;
ddbcc7e8 3899
b6abdb0e
LZ
3900 if (notify_on_release(parent))
3901 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3902
97978e6d
DL
3903 if (clone_children(parent))
3904 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3905
ddbcc7e8 3906 for_each_subsys(root, ss) {
761b3ef5 3907 struct cgroup_subsys_state *css = ss->create(cgrp);
4528fd05 3908
ddbcc7e8
PM
3909 if (IS_ERR(css)) {
3910 err = PTR_ERR(css);
3911 goto err_destroy;
3912 }
bd89aabc 3913 init_cgroup_css(css, ss, cgrp);
4528fd05
LZ
3914 if (ss->use_id) {
3915 err = alloc_css_id(ss, parent, cgrp);
3916 if (err)
38460b48 3917 goto err_destroy;
4528fd05 3918 }
38460b48 3919 /* At error, ->destroy() callback has to free assigned ID. */
97978e6d 3920 if (clone_children(parent) && ss->post_clone)
761b3ef5 3921 ss->post_clone(cgrp);
ddbcc7e8
PM
3922 }
3923
bd89aabc 3924 list_add(&cgrp->sibling, &cgrp->parent->children);
ddbcc7e8
PM
3925 root->number_of_cgroups++;
3926
bd89aabc 3927 err = cgroup_create_dir(cgrp, dentry, mode);
ddbcc7e8
PM
3928 if (err < 0)
3929 goto err_remove;
3930
ed957793 3931 /* each css holds a ref to the cgroup's dentry */
48ddbe19 3932 for_each_subsys(root, ss)
ed957793 3933 dget(dentry);
48ddbe19 3934
ddbcc7e8 3935 /* The cgroup directory was pre-locked for us */
bd89aabc 3936 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
ddbcc7e8 3937
b0ca5a84
TH
3938 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
3939
bd89aabc 3940 err = cgroup_populate_dir(cgrp);
ddbcc7e8
PM
3941 /* If err < 0, we have a half-filled directory - oh well ;) */
3942
3943 mutex_unlock(&cgroup_mutex);
bd89aabc 3944 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
3945
3946 return 0;
3947
3948 err_remove:
3949
bd89aabc 3950 list_del(&cgrp->sibling);
ddbcc7e8
PM
3951 root->number_of_cgroups--;
3952
3953 err_destroy:
3954
3955 for_each_subsys(root, ss) {
bd89aabc 3956 if (cgrp->subsys[ss->subsys_id])
761b3ef5 3957 ss->destroy(cgrp);
ddbcc7e8
PM
3958 }
3959
3960 mutex_unlock(&cgroup_mutex);
3961
3962 /* Release the reference count that we took on the superblock */
3963 deactivate_super(sb);
976c06bc 3964err_free:
bd89aabc 3965 kfree(cgrp);
ddbcc7e8
PM
3966 return err;
3967}
3968
18bb1db3 3969static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
ddbcc7e8
PM
3970{
3971 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3972
3973 /* the vfs holds inode->i_mutex already */
3974 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3975}
3976
28b4c27b
TH
3977/*
3978 * Check the reference count on each subsystem. Since we already
3979 * established that there are no tasks in the cgroup, if the css refcount
3980 * is also 1, then there should be no outstanding references, so the
3981 * subsystem is safe to destroy. We scan across all subsystems rather than
3982 * using the per-hierarchy linked list of mounted subsystems since we can
3983 * be called via check_for_release() with no synchronization other than
3984 * RCU, and the subsystem linked list isn't RCU-safe.
3985 */
55b6fd01 3986static int cgroup_has_css_refs(struct cgroup *cgrp)
81a6a5cd 3987{
81a6a5cd 3988 int i;
28b4c27b 3989
aae8aab4
BB
3990 /*
3991 * We won't need to lock the subsys array, because the subsystems
3992 * we're concerned about aren't going anywhere since our cgroup root
3993 * has a reference on them.
3994 */
81a6a5cd
PM
3995 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3996 struct cgroup_subsys *ss = subsys[i];
3997 struct cgroup_subsys_state *css;
28b4c27b 3998
aae8aab4
BB
3999 /* Skip subsystems not present or not in this hierarchy */
4000 if (ss == NULL || ss->root != cgrp->root)
81a6a5cd 4001 continue;
28b4c27b 4002
bd89aabc 4003 css = cgrp->subsys[ss->subsys_id];
28b4c27b
TH
4004 /*
4005 * When called from check_for_release() it's possible
81a6a5cd
PM
4006 * that by this point the cgroup has been removed
4007 * and the css deleted. But a false-positive doesn't
4008 * matter, since it can only happen if the cgroup
4009 * has been deleted and hence no longer needs the
28b4c27b
TH
4010 * release agent to be called anyway.
4011 */
4012 if (css && css_refcnt(css) > 1)
81a6a5cd 4013 return 1;
81a6a5cd
PM
4014 }
4015 return 0;
4016}
4017
ddbcc7e8
PM
4018static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
4019{
bd89aabc 4020 struct cgroup *cgrp = dentry->d_fsdata;
ddbcc7e8
PM
4021 struct dentry *d;
4022 struct cgroup *parent;
ec64f515 4023 DEFINE_WAIT(wait);
4ab78683 4024 struct cgroup_event *event, *tmp;
ed957793 4025 struct cgroup_subsys *ss;
a043e3b2 4026
1a90dd50 4027 /* the vfs holds both inode->i_mutex already */
3fa59dfb
KH
4028 mutex_lock(&cgroup_mutex);
4029 parent = cgrp->parent;
ec64f515 4030 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
ddbcc7e8
PM
4031 mutex_unlock(&cgroup_mutex);
4032 return -EBUSY;
4033 }
ed957793 4034
1a90dd50
TH
4035 /*
4036 * Block new css_tryget() by deactivating refcnt and mark @cgrp
4037 * removed. This makes future css_tryget() and child creation
4038 * attempts fail thus maintaining the removal conditions verified
4039 * above.
4040 */
ed957793
TH
4041 for_each_subsys(cgrp->root, ss) {
4042 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
4043
4044 WARN_ON(atomic_read(&css->refcnt) < 0);
4045 atomic_add(CSS_DEACT_BIAS, &css->refcnt);
4046 }
1a90dd50
TH
4047 set_bit(CGRP_REMOVED, &cgrp->flags);
4048
4049 /*
4050 * Tell subsystems to initate destruction. pre_destroy() should be
4051 * called with cgroup_mutex unlocked. See 3fa59dfbc3 ("cgroup: fix
4052 * potential deadlock in pre_destroy") for details.
4053 */
4054 mutex_unlock(&cgroup_mutex);
4055 for_each_subsys(cgrp->root, ss)
4056 if (ss->pre_destroy)
bcf6de1b 4057 ss->pre_destroy(cgrp);
1a90dd50 4058 mutex_lock(&cgroup_mutex);
ed957793
TH
4059
4060 /*
ed957793
TH
4061 * Put all the base refs. Each css holds an extra reference to the
4062 * cgroup's dentry and cgroup removal proceeds regardless of css
4063 * refs. On the last put of each css, whenever that may be, the
4064 * extra dentry ref is put so that dentry destruction happens only
4065 * after all css's are released.
4066 */
e9316080
TH
4067 for_each_subsys(cgrp->root, ss)
4068 css_put(cgrp->subsys[ss->subsys_id]);
ed957793 4069
cdcc136f 4070 raw_spin_lock(&release_list_lock);
bd89aabc 4071 if (!list_empty(&cgrp->release_list))
8d258797 4072 list_del_init(&cgrp->release_list);
cdcc136f 4073 raw_spin_unlock(&release_list_lock);
999cd8a4 4074
999cd8a4 4075 /* delete this cgroup from parent->children */
8d258797 4076 list_del_init(&cgrp->sibling);
999cd8a4 4077
b0ca5a84
TH
4078 list_del_init(&cgrp->allcg_node);
4079
bd89aabc 4080 d = dget(cgrp->dentry);
ddbcc7e8
PM
4081
4082 cgroup_d_remove_dir(d);
4083 dput(d);
ddbcc7e8 4084
bd89aabc 4085 set_bit(CGRP_RELEASABLE, &parent->flags);
81a6a5cd
PM
4086 check_for_release(parent);
4087
4ab78683
KS
4088 /*
4089 * Unregister events and notify userspace.
4090 * Notify userspace about cgroup removing only after rmdir of cgroup
4091 * directory to avoid race between userspace and kernelspace
4092 */
4093 spin_lock(&cgrp->event_list_lock);
4094 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4095 list_del(&event->list);
4096 remove_wait_queue(event->wqh, &event->wait);
4097 eventfd_signal(event->eventfd, 1);
4098 schedule_work(&event->remove);
4099 }
4100 spin_unlock(&cgrp->event_list_lock);
4101
ddbcc7e8 4102 mutex_unlock(&cgroup_mutex);
ddbcc7e8
PM
4103 return 0;
4104}
4105
8e3f6541
TH
4106static void __init_or_module cgroup_init_cftsets(struct cgroup_subsys *ss)
4107{
4108 INIT_LIST_HEAD(&ss->cftsets);
4109
4110 /*
4111 * base_cftset is embedded in subsys itself, no need to worry about
4112 * deregistration.
4113 */
4114 if (ss->base_cftypes) {
4115 ss->base_cftset.cfts = ss->base_cftypes;
4116 list_add_tail(&ss->base_cftset.node, &ss->cftsets);
4117 }
4118}
4119
06a11920 4120static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
ddbcc7e8 4121{
ddbcc7e8 4122 struct cgroup_subsys_state *css;
cfe36bde
DC
4123
4124 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
ddbcc7e8 4125
8e3f6541
TH
4126 /* init base cftset */
4127 cgroup_init_cftsets(ss);
4128
ddbcc7e8 4129 /* Create the top cgroup state for this subsystem */
33a68ac1 4130 list_add(&ss->sibling, &rootnode.subsys_list);
ddbcc7e8 4131 ss->root = &rootnode;
761b3ef5 4132 css = ss->create(dummytop);
ddbcc7e8
PM
4133 /* We don't handle early failures gracefully */
4134 BUG_ON(IS_ERR(css));
4135 init_cgroup_css(css, ss, dummytop);
4136
e8d55fde 4137 /* Update the init_css_set to contain a subsys
817929ec 4138 * pointer to this state - since the subsystem is
e8d55fde
LZ
4139 * newly registered, all tasks and hence the
4140 * init_css_set is in the subsystem's top cgroup. */
4141 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
ddbcc7e8
PM
4142
4143 need_forkexit_callback |= ss->fork || ss->exit;
4144
e8d55fde
LZ
4145 /* At system boot, before all subsystems have been
4146 * registered, no tasks have been forked, so we don't
4147 * need to invoke fork callbacks here. */
4148 BUG_ON(!list_empty(&init_task.tasks));
4149
ddbcc7e8 4150 ss->active = 1;
e6a1105b
BB
4151
4152 /* this function shouldn't be used with modular subsystems, since they
4153 * need to register a subsys_id, among other things */
4154 BUG_ON(ss->module);
4155}
4156
4157/**
4158 * cgroup_load_subsys: load and register a modular subsystem at runtime
4159 * @ss: the subsystem to load
4160 *
4161 * This function should be called in a modular subsystem's initcall. If the
88393161 4162 * subsystem is built as a module, it will be assigned a new subsys_id and set
e6a1105b
BB
4163 * up for use. If the subsystem is built-in anyway, work is delegated to the
4164 * simpler cgroup_init_subsys.
4165 */
4166int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4167{
4168 int i;
4169 struct cgroup_subsys_state *css;
4170
4171 /* check name and function validity */
4172 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4173 ss->create == NULL || ss->destroy == NULL)
4174 return -EINVAL;
4175
4176 /*
4177 * we don't support callbacks in modular subsystems. this check is
4178 * before the ss->module check for consistency; a subsystem that could
4179 * be a module should still have no callbacks even if the user isn't
4180 * compiling it as one.
4181 */
4182 if (ss->fork || ss->exit)
4183 return -EINVAL;
4184
4185 /*
4186 * an optionally modular subsystem is built-in: we want to do nothing,
4187 * since cgroup_init_subsys will have already taken care of it.
4188 */
4189 if (ss->module == NULL) {
4190 /* a few sanity checks */
4191 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
4192 BUG_ON(subsys[ss->subsys_id] != ss);
4193 return 0;
4194 }
4195
8e3f6541
TH
4196 /* init base cftset */
4197 cgroup_init_cftsets(ss);
4198
e6a1105b
BB
4199 /*
4200 * need to register a subsys id before anything else - for example,
4201 * init_cgroup_css needs it.
4202 */
4203 mutex_lock(&cgroup_mutex);
4204 /* find the first empty slot in the array */
4205 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
4206 if (subsys[i] == NULL)
4207 break;
4208 }
4209 if (i == CGROUP_SUBSYS_COUNT) {
4210 /* maximum number of subsystems already registered! */
4211 mutex_unlock(&cgroup_mutex);
4212 return -EBUSY;
4213 }
4214 /* assign ourselves the subsys_id */
4215 ss->subsys_id = i;
4216 subsys[i] = ss;
4217
4218 /*
4219 * no ss->create seems to need anything important in the ss struct, so
4220 * this can happen first (i.e. before the rootnode attachment).
4221 */
761b3ef5 4222 css = ss->create(dummytop);
e6a1105b
BB
4223 if (IS_ERR(css)) {
4224 /* failure case - need to deassign the subsys[] slot. */
4225 subsys[i] = NULL;
4226 mutex_unlock(&cgroup_mutex);
4227 return PTR_ERR(css);
4228 }
4229
4230 list_add(&ss->sibling, &rootnode.subsys_list);
4231 ss->root = &rootnode;
4232
4233 /* our new subsystem will be attached to the dummy hierarchy. */
4234 init_cgroup_css(css, ss, dummytop);
4235 /* init_idr must be after init_cgroup_css because it sets css->id. */
4236 if (ss->use_id) {
4237 int ret = cgroup_init_idr(ss, css);
4238 if (ret) {
4239 dummytop->subsys[ss->subsys_id] = NULL;
761b3ef5 4240 ss->destroy(dummytop);
e6a1105b
BB
4241 subsys[i] = NULL;
4242 mutex_unlock(&cgroup_mutex);
4243 return ret;
4244 }
4245 }
4246
4247 /*
4248 * Now we need to entangle the css into the existing css_sets. unlike
4249 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4250 * will need a new pointer to it; done by iterating the css_set_table.
4251 * furthermore, modifying the existing css_sets will corrupt the hash
4252 * table state, so each changed css_set will need its hash recomputed.
4253 * this is all done under the css_set_lock.
4254 */
4255 write_lock(&css_set_lock);
4256 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4257 struct css_set *cg;
4258 struct hlist_node *node, *tmp;
4259 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4260
4261 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4262 /* skip entries that we already rehashed */
4263 if (cg->subsys[ss->subsys_id])
4264 continue;
4265 /* remove existing entry */
4266 hlist_del(&cg->hlist);
4267 /* set new value */
4268 cg->subsys[ss->subsys_id] = css;
4269 /* recompute hash and restore entry */
4270 new_bucket = css_set_hash(cg->subsys);
4271 hlist_add_head(&cg->hlist, new_bucket);
4272 }
4273 }
4274 write_unlock(&css_set_lock);
4275
e6a1105b
BB
4276 ss->active = 1;
4277
e6a1105b
BB
4278 /* success! */
4279 mutex_unlock(&cgroup_mutex);
4280 return 0;
ddbcc7e8 4281}
e6a1105b 4282EXPORT_SYMBOL_GPL(cgroup_load_subsys);
ddbcc7e8 4283
cf5d5941
BB
4284/**
4285 * cgroup_unload_subsys: unload a modular subsystem
4286 * @ss: the subsystem to unload
4287 *
4288 * This function should be called in a modular subsystem's exitcall. When this
4289 * function is invoked, the refcount on the subsystem's module will be 0, so
4290 * the subsystem will not be attached to any hierarchy.
4291 */
4292void cgroup_unload_subsys(struct cgroup_subsys *ss)
4293{
4294 struct cg_cgroup_link *link;
4295 struct hlist_head *hhead;
4296
4297 BUG_ON(ss->module == NULL);
4298
4299 /*
4300 * we shouldn't be called if the subsystem is in use, and the use of
4301 * try_module_get in parse_cgroupfs_options should ensure that it
4302 * doesn't start being used while we're killing it off.
4303 */
4304 BUG_ON(ss->root != &rootnode);
4305
4306 mutex_lock(&cgroup_mutex);
4307 /* deassign the subsys_id */
4308 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
4309 subsys[ss->subsys_id] = NULL;
4310
4311 /* remove subsystem from rootnode's list of subsystems */
8d258797 4312 list_del_init(&ss->sibling);
cf5d5941
BB
4313
4314 /*
4315 * disentangle the css from all css_sets attached to the dummytop. as
4316 * in loading, we need to pay our respects to the hashtable gods.
4317 */
4318 write_lock(&css_set_lock);
4319 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4320 struct css_set *cg = link->cg;
4321
4322 hlist_del(&cg->hlist);
4323 BUG_ON(!cg->subsys[ss->subsys_id]);
4324 cg->subsys[ss->subsys_id] = NULL;
4325 hhead = css_set_hash(cg->subsys);
4326 hlist_add_head(&cg->hlist, hhead);
4327 }
4328 write_unlock(&css_set_lock);
4329
4330 /*
4331 * remove subsystem's css from the dummytop and free it - need to free
4332 * before marking as null because ss->destroy needs the cgrp->subsys
4333 * pointer to find their state. note that this also takes care of
4334 * freeing the css_id.
4335 */
761b3ef5 4336 ss->destroy(dummytop);
cf5d5941
BB
4337 dummytop->subsys[ss->subsys_id] = NULL;
4338
4339 mutex_unlock(&cgroup_mutex);
4340}
4341EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4342
ddbcc7e8 4343/**
a043e3b2
LZ
4344 * cgroup_init_early - cgroup initialization at system boot
4345 *
4346 * Initialize cgroups at system boot, and initialize any
4347 * subsystems that request early init.
ddbcc7e8
PM
4348 */
4349int __init cgroup_init_early(void)
4350{
4351 int i;
146aa1bd 4352 atomic_set(&init_css_set.refcount, 1);
817929ec
PM
4353 INIT_LIST_HEAD(&init_css_set.cg_links);
4354 INIT_LIST_HEAD(&init_css_set.tasks);
472b1053 4355 INIT_HLIST_NODE(&init_css_set.hlist);
817929ec 4356 css_set_count = 1;
ddbcc7e8 4357 init_cgroup_root(&rootnode);
817929ec
PM
4358 root_count = 1;
4359 init_task.cgroups = &init_css_set;
4360
4361 init_css_set_link.cg = &init_css_set;
7717f7ba 4362 init_css_set_link.cgrp = dummytop;
bd89aabc 4363 list_add(&init_css_set_link.cgrp_link_list,
817929ec
PM
4364 &rootnode.top_cgroup.css_sets);
4365 list_add(&init_css_set_link.cg_link_list,
4366 &init_css_set.cg_links);
ddbcc7e8 4367
472b1053
LZ
4368 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4369 INIT_HLIST_HEAD(&css_set_table[i]);
4370
aae8aab4
BB
4371 /* at bootup time, we don't worry about modular subsystems */
4372 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
ddbcc7e8
PM
4373 struct cgroup_subsys *ss = subsys[i];
4374
4375 BUG_ON(!ss->name);
4376 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4377 BUG_ON(!ss->create);
4378 BUG_ON(!ss->destroy);
4379 if (ss->subsys_id != i) {
cfe36bde 4380 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
ddbcc7e8
PM
4381 ss->name, ss->subsys_id);
4382 BUG();
4383 }
4384
4385 if (ss->early_init)
4386 cgroup_init_subsys(ss);
4387 }
4388 return 0;
4389}
4390
4391/**
a043e3b2
LZ
4392 * cgroup_init - cgroup initialization
4393 *
4394 * Register cgroup filesystem and /proc file, and initialize
4395 * any subsystems that didn't request early init.
ddbcc7e8
PM
4396 */
4397int __init cgroup_init(void)
4398{
4399 int err;
4400 int i;
472b1053 4401 struct hlist_head *hhead;
a424316c
PM
4402
4403 err = bdi_init(&cgroup_backing_dev_info);
4404 if (err)
4405 return err;
ddbcc7e8 4406
aae8aab4
BB
4407 /* at bootup time, we don't worry about modular subsystems */
4408 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
ddbcc7e8
PM
4409 struct cgroup_subsys *ss = subsys[i];
4410 if (!ss->early_init)
4411 cgroup_init_subsys(ss);
38460b48 4412 if (ss->use_id)
e6a1105b 4413 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
ddbcc7e8
PM
4414 }
4415
472b1053
LZ
4416 /* Add init_css_set to the hash table */
4417 hhead = css_set_hash(init_css_set.subsys);
4418 hlist_add_head(&init_css_set.hlist, hhead);
2c6ab6d2 4419 BUG_ON(!init_root_id(&rootnode));
676db4af
GK
4420
4421 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4422 if (!cgroup_kobj) {
4423 err = -ENOMEM;
4424 goto out;
4425 }
4426
ddbcc7e8 4427 err = register_filesystem(&cgroup_fs_type);
676db4af
GK
4428 if (err < 0) {
4429 kobject_put(cgroup_kobj);
ddbcc7e8 4430 goto out;
676db4af 4431 }
ddbcc7e8 4432
46ae220b 4433 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
a424316c 4434
ddbcc7e8 4435out:
a424316c
PM
4436 if (err)
4437 bdi_destroy(&cgroup_backing_dev_info);
4438
ddbcc7e8
PM
4439 return err;
4440}
b4f48b63 4441
a424316c
PM
4442/*
4443 * proc_cgroup_show()
4444 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4445 * - Used for /proc/<pid>/cgroup.
4446 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4447 * doesn't really matter if tsk->cgroup changes after we read it,
956db3ca 4448 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
a424316c
PM
4449 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4450 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4451 * cgroup to top_cgroup.
4452 */
4453
4454/* TODO: Use a proper seq_file iterator */
4455static int proc_cgroup_show(struct seq_file *m, void *v)
4456{
4457 struct pid *pid;
4458 struct task_struct *tsk;
4459 char *buf;
4460 int retval;
4461 struct cgroupfs_root *root;
4462
4463 retval = -ENOMEM;
4464 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4465 if (!buf)
4466 goto out;
4467
4468 retval = -ESRCH;
4469 pid = m->private;
4470 tsk = get_pid_task(pid, PIDTYPE_PID);
4471 if (!tsk)
4472 goto out_free;
4473
4474 retval = 0;
4475
4476 mutex_lock(&cgroup_mutex);
4477
e5f6a860 4478 for_each_active_root(root) {
a424316c 4479 struct cgroup_subsys *ss;
bd89aabc 4480 struct cgroup *cgrp;
a424316c
PM
4481 int count = 0;
4482
2c6ab6d2 4483 seq_printf(m, "%d:", root->hierarchy_id);
a424316c
PM
4484 for_each_subsys(root, ss)
4485 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
c6d57f33
PM
4486 if (strlen(root->name))
4487 seq_printf(m, "%sname=%s", count ? "," : "",
4488 root->name);
a424316c 4489 seq_putc(m, ':');
7717f7ba 4490 cgrp = task_cgroup_from_root(tsk, root);
bd89aabc 4491 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
a424316c
PM
4492 if (retval < 0)
4493 goto out_unlock;
4494 seq_puts(m, buf);
4495 seq_putc(m, '\n');
4496 }
4497
4498out_unlock:
4499 mutex_unlock(&cgroup_mutex);
4500 put_task_struct(tsk);
4501out_free:
4502 kfree(buf);
4503out:
4504 return retval;
4505}
4506
4507static int cgroup_open(struct inode *inode, struct file *file)
4508{
4509 struct pid *pid = PROC_I(inode)->pid;
4510 return single_open(file, proc_cgroup_show, pid);
4511}
4512
828c0950 4513const struct file_operations proc_cgroup_operations = {
a424316c
PM
4514 .open = cgroup_open,
4515 .read = seq_read,
4516 .llseek = seq_lseek,
4517 .release = single_release,
4518};
4519
4520/* Display information about each subsystem and each hierarchy */
4521static int proc_cgroupstats_show(struct seq_file *m, void *v)
4522{
4523 int i;
a424316c 4524
8bab8dde 4525 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
aae8aab4
BB
4526 /*
4527 * ideally we don't want subsystems moving around while we do this.
4528 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4529 * subsys/hierarchy state.
4530 */
a424316c 4531 mutex_lock(&cgroup_mutex);
a424316c
PM
4532 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4533 struct cgroup_subsys *ss = subsys[i];
aae8aab4
BB
4534 if (ss == NULL)
4535 continue;
2c6ab6d2
PM
4536 seq_printf(m, "%s\t%d\t%d\t%d\n",
4537 ss->name, ss->root->hierarchy_id,
8bab8dde 4538 ss->root->number_of_cgroups, !ss->disabled);
a424316c
PM
4539 }
4540 mutex_unlock(&cgroup_mutex);
4541 return 0;
4542}
4543
4544static int cgroupstats_open(struct inode *inode, struct file *file)
4545{
9dce07f1 4546 return single_open(file, proc_cgroupstats_show, NULL);
a424316c
PM
4547}
4548
828c0950 4549static const struct file_operations proc_cgroupstats_operations = {
a424316c
PM
4550 .open = cgroupstats_open,
4551 .read = seq_read,
4552 .llseek = seq_lseek,
4553 .release = single_release,
4554};
4555
b4f48b63
PM
4556/**
4557 * cgroup_fork - attach newly forked task to its parents cgroup.
a043e3b2 4558 * @child: pointer to task_struct of forking parent process.
b4f48b63
PM
4559 *
4560 * Description: A task inherits its parent's cgroup at fork().
4561 *
4562 * A pointer to the shared css_set was automatically copied in
4563 * fork.c by dup_task_struct(). However, we ignore that copy, since
7e381b0e
FW
4564 * it was not made under the protection of RCU, cgroup_mutex or
4565 * threadgroup_change_begin(), so it might no longer be a valid
4566 * cgroup pointer. cgroup_attach_task() might have already changed
4567 * current->cgroups, allowing the previously referenced cgroup
4568 * group to be removed and freed.
4569 *
4570 * Outside the pointer validity we also need to process the css_set
4571 * inheritance between threadgoup_change_begin() and
4572 * threadgoup_change_end(), this way there is no leak in any process
4573 * wide migration performed by cgroup_attach_proc() that could otherwise
4574 * miss a thread because it is too early or too late in the fork stage.
b4f48b63
PM
4575 *
4576 * At the point that cgroup_fork() is called, 'current' is the parent
4577 * task, and the passed argument 'child' points to the child task.
4578 */
4579void cgroup_fork(struct task_struct *child)
4580{
7e381b0e
FW
4581 /*
4582 * We don't need to task_lock() current because current->cgroups
4583 * can't be changed concurrently here. The parent obviously hasn't
4584 * exited and called cgroup_exit(), and we are synchronized against
4585 * cgroup migration through threadgroup_change_begin().
4586 */
817929ec
PM
4587 child->cgroups = current->cgroups;
4588 get_css_set(child->cgroups);
817929ec 4589 INIT_LIST_HEAD(&child->cg_list);
b4f48b63
PM
4590}
4591
4592/**
a043e3b2
LZ
4593 * cgroup_fork_callbacks - run fork callbacks
4594 * @child: the new task
4595 *
4596 * Called on a new task very soon before adding it to the
4597 * tasklist. No need to take any locks since no-one can
4598 * be operating on this task.
b4f48b63
PM
4599 */
4600void cgroup_fork_callbacks(struct task_struct *child)
4601{
4602 if (need_forkexit_callback) {
4603 int i;
aae8aab4
BB
4604 /*
4605 * forkexit callbacks are only supported for builtin
4606 * subsystems, and the builtin section of the subsys array is
4607 * immutable, so we don't need to lock the subsys array here.
4608 */
4609 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
b4f48b63
PM
4610 struct cgroup_subsys *ss = subsys[i];
4611 if (ss->fork)
761b3ef5 4612 ss->fork(child);
b4f48b63
PM
4613 }
4614 }
4615}
4616
817929ec 4617/**
a043e3b2
LZ
4618 * cgroup_post_fork - called on a new task after adding it to the task list
4619 * @child: the task in question
4620 *
4621 * Adds the task to the list running through its css_set if necessary.
4622 * Has to be after the task is visible on the task list in case we race
4623 * with the first call to cgroup_iter_start() - to guarantee that the
4624 * new task ends up on its list.
4625 */
817929ec
PM
4626void cgroup_post_fork(struct task_struct *child)
4627{
3ce3230a
FW
4628 /*
4629 * use_task_css_set_links is set to 1 before we walk the tasklist
4630 * under the tasklist_lock and we read it here after we added the child
4631 * to the tasklist under the tasklist_lock as well. If the child wasn't
4632 * yet in the tasklist when we walked through it from
4633 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4634 * should be visible now due to the paired locking and barriers implied
4635 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4636 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4637 * lock on fork.
4638 */
817929ec
PM
4639 if (use_task_css_set_links) {
4640 write_lock(&css_set_lock);
7e3aa30a
FW
4641 if (list_empty(&child->cg_list)) {
4642 /*
4643 * It's safe to use child->cgroups without task_lock()
4644 * here because we are protected through
4645 * threadgroup_change_begin() against concurrent
4646 * css_set change in cgroup_task_migrate(). Also
4647 * the task can't exit at that point until
4648 * wake_up_new_task() is called, so we are protected
4649 * against cgroup_exit() setting child->cgroup to
4650 * init_css_set.
4651 */
817929ec 4652 list_add(&child->cg_list, &child->cgroups->tasks);
7e3aa30a 4653 }
817929ec
PM
4654 write_unlock(&css_set_lock);
4655 }
4656}
b4f48b63
PM
4657/**
4658 * cgroup_exit - detach cgroup from exiting task
4659 * @tsk: pointer to task_struct of exiting process
a043e3b2 4660 * @run_callback: run exit callbacks?
b4f48b63
PM
4661 *
4662 * Description: Detach cgroup from @tsk and release it.
4663 *
4664 * Note that cgroups marked notify_on_release force every task in
4665 * them to take the global cgroup_mutex mutex when exiting.
4666 * This could impact scaling on very large systems. Be reluctant to
4667 * use notify_on_release cgroups where very high task exit scaling
4668 * is required on large systems.
4669 *
4670 * the_top_cgroup_hack:
4671 *
4672 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4673 *
4674 * We call cgroup_exit() while the task is still competent to
4675 * handle notify_on_release(), then leave the task attached to the
4676 * root cgroup in each hierarchy for the remainder of its exit.
4677 *
4678 * To do this properly, we would increment the reference count on
4679 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4680 * code we would add a second cgroup function call, to drop that
4681 * reference. This would just create an unnecessary hot spot on
4682 * the top_cgroup reference count, to no avail.
4683 *
4684 * Normally, holding a reference to a cgroup without bumping its
4685 * count is unsafe. The cgroup could go away, or someone could
4686 * attach us to a different cgroup, decrementing the count on
4687 * the first cgroup that we never incremented. But in this case,
4688 * top_cgroup isn't going away, and either task has PF_EXITING set,
956db3ca
CW
4689 * which wards off any cgroup_attach_task() attempts, or task is a failed
4690 * fork, never visible to cgroup_attach_task.
b4f48b63
PM
4691 */
4692void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4693{
817929ec 4694 struct css_set *cg;
d41d5a01 4695 int i;
817929ec
PM
4696
4697 /*
4698 * Unlink from the css_set task list if necessary.
4699 * Optimistically check cg_list before taking
4700 * css_set_lock
4701 */
4702 if (!list_empty(&tsk->cg_list)) {
4703 write_lock(&css_set_lock);
4704 if (!list_empty(&tsk->cg_list))
8d258797 4705 list_del_init(&tsk->cg_list);
817929ec
PM
4706 write_unlock(&css_set_lock);
4707 }
4708
b4f48b63
PM
4709 /* Reassign the task to the init_css_set. */
4710 task_lock(tsk);
817929ec
PM
4711 cg = tsk->cgroups;
4712 tsk->cgroups = &init_css_set;
d41d5a01
PZ
4713
4714 if (run_callbacks && need_forkexit_callback) {
4715 /*
4716 * modular subsystems can't use callbacks, so no need to lock
4717 * the subsys array
4718 */
4719 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4720 struct cgroup_subsys *ss = subsys[i];
4721 if (ss->exit) {
4722 struct cgroup *old_cgrp =
4723 rcu_dereference_raw(cg->subsys[i])->cgroup;
4724 struct cgroup *cgrp = task_cgroup(tsk, i);
761b3ef5 4725 ss->exit(cgrp, old_cgrp, tsk);
d41d5a01
PZ
4726 }
4727 }
4728 }
b4f48b63 4729 task_unlock(tsk);
d41d5a01 4730
817929ec 4731 if (cg)
81a6a5cd 4732 put_css_set_taskexit(cg);
b4f48b63 4733}
697f4161 4734
a043e3b2 4735/**
313e924c 4736 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
a043e3b2 4737 * @cgrp: the cgroup in question
313e924c 4738 * @task: the task in question
a043e3b2 4739 *
313e924c
GN
4740 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4741 * hierarchy.
697f4161
PM
4742 *
4743 * If we are sending in dummytop, then presumably we are creating
4744 * the top cgroup in the subsystem.
4745 *
4746 * Called only by the ns (nsproxy) cgroup.
4747 */
313e924c 4748int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
697f4161
PM
4749{
4750 int ret;
4751 struct cgroup *target;
697f4161 4752
bd89aabc 4753 if (cgrp == dummytop)
697f4161
PM
4754 return 1;
4755
7717f7ba 4756 target = task_cgroup_from_root(task, cgrp->root);
bd89aabc
PM
4757 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4758 cgrp = cgrp->parent;
4759 ret = (cgrp == target);
697f4161
PM
4760 return ret;
4761}
81a6a5cd 4762
bd89aabc 4763static void check_for_release(struct cgroup *cgrp)
81a6a5cd
PM
4764{
4765 /* All of these checks rely on RCU to keep the cgroup
4766 * structure alive */
bd89aabc
PM
4767 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4768 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
81a6a5cd
PM
4769 /* Control Group is currently removeable. If it's not
4770 * already queued for a userspace notification, queue
4771 * it now */
4772 int need_schedule_work = 0;
cdcc136f 4773 raw_spin_lock(&release_list_lock);
bd89aabc
PM
4774 if (!cgroup_is_removed(cgrp) &&
4775 list_empty(&cgrp->release_list)) {
4776 list_add(&cgrp->release_list, &release_list);
81a6a5cd
PM
4777 need_schedule_work = 1;
4778 }
cdcc136f 4779 raw_spin_unlock(&release_list_lock);
81a6a5cd
PM
4780 if (need_schedule_work)
4781 schedule_work(&release_agent_work);
4782 }
4783}
4784
d7b9fff7 4785/* Caller must verify that the css is not for root cgroup */
28b4c27b
TH
4786bool __css_tryget(struct cgroup_subsys_state *css)
4787{
e9316080
TH
4788 while (true) {
4789 int t, v;
28b4c27b 4790
e9316080
TH
4791 v = css_refcnt(css);
4792 t = atomic_cmpxchg(&css->refcnt, v, v + 1);
4793 if (likely(t == v))
28b4c27b 4794 return true;
e9316080
TH
4795 else if (t < 0)
4796 return false;
28b4c27b 4797 cpu_relax();
e9316080 4798 }
28b4c27b
TH
4799}
4800EXPORT_SYMBOL_GPL(__css_tryget);
4801
4802/* Caller must verify that the css is not for root cgroup */
4803void __css_put(struct cgroup_subsys_state *css)
81a6a5cd 4804{
bd89aabc 4805 struct cgroup *cgrp = css->cgroup;
8e3bbf42 4806 int v;
28b4c27b 4807
81a6a5cd 4808 rcu_read_lock();
8e3bbf42
SQ
4809 v = css_unbias_refcnt(atomic_dec_return(&css->refcnt));
4810
4811 switch (v) {
48ddbe19 4812 case 1:
ec64f515
KH
4813 if (notify_on_release(cgrp)) {
4814 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4815 check_for_release(cgrp);
4816 }
48ddbe19
TH
4817 break;
4818 case 0:
ed957793 4819 schedule_work(&css->dput_work);
48ddbe19 4820 break;
81a6a5cd
PM
4821 }
4822 rcu_read_unlock();
4823}
67523c48 4824EXPORT_SYMBOL_GPL(__css_put);
81a6a5cd
PM
4825
4826/*
4827 * Notify userspace when a cgroup is released, by running the
4828 * configured release agent with the name of the cgroup (path
4829 * relative to the root of cgroup file system) as the argument.
4830 *
4831 * Most likely, this user command will try to rmdir this cgroup.
4832 *
4833 * This races with the possibility that some other task will be
4834 * attached to this cgroup before it is removed, or that some other
4835 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4836 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4837 * unused, and this cgroup will be reprieved from its death sentence,
4838 * to continue to serve a useful existence. Next time it's released,
4839 * we will get notified again, if it still has 'notify_on_release' set.
4840 *
4841 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4842 * means only wait until the task is successfully execve()'d. The
4843 * separate release agent task is forked by call_usermodehelper(),
4844 * then control in this thread returns here, without waiting for the
4845 * release agent task. We don't bother to wait because the caller of
4846 * this routine has no use for the exit status of the release agent
4847 * task, so no sense holding our caller up for that.
81a6a5cd 4848 */
81a6a5cd
PM
4849static void cgroup_release_agent(struct work_struct *work)
4850{
4851 BUG_ON(work != &release_agent_work);
4852 mutex_lock(&cgroup_mutex);
cdcc136f 4853 raw_spin_lock(&release_list_lock);
81a6a5cd
PM
4854 while (!list_empty(&release_list)) {
4855 char *argv[3], *envp[3];
4856 int i;
e788e066 4857 char *pathbuf = NULL, *agentbuf = NULL;
bd89aabc 4858 struct cgroup *cgrp = list_entry(release_list.next,
81a6a5cd
PM
4859 struct cgroup,
4860 release_list);
bd89aabc 4861 list_del_init(&cgrp->release_list);
cdcc136f 4862 raw_spin_unlock(&release_list_lock);
81a6a5cd 4863 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
e788e066
PM
4864 if (!pathbuf)
4865 goto continue_free;
4866 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4867 goto continue_free;
4868 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4869 if (!agentbuf)
4870 goto continue_free;
81a6a5cd
PM
4871
4872 i = 0;
e788e066
PM
4873 argv[i++] = agentbuf;
4874 argv[i++] = pathbuf;
81a6a5cd
PM
4875 argv[i] = NULL;
4876
4877 i = 0;
4878 /* minimal command environment */
4879 envp[i++] = "HOME=/";
4880 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4881 envp[i] = NULL;
4882
4883 /* Drop the lock while we invoke the usermode helper,
4884 * since the exec could involve hitting disk and hence
4885 * be a slow process */
4886 mutex_unlock(&cgroup_mutex);
4887 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
81a6a5cd 4888 mutex_lock(&cgroup_mutex);
e788e066
PM
4889 continue_free:
4890 kfree(pathbuf);
4891 kfree(agentbuf);
cdcc136f 4892 raw_spin_lock(&release_list_lock);
81a6a5cd 4893 }
cdcc136f 4894 raw_spin_unlock(&release_list_lock);
81a6a5cd
PM
4895 mutex_unlock(&cgroup_mutex);
4896}
8bab8dde
PM
4897
4898static int __init cgroup_disable(char *str)
4899{
4900 int i;
4901 char *token;
4902
4903 while ((token = strsep(&str, ",")) != NULL) {
4904 if (!*token)
4905 continue;
aae8aab4
BB
4906 /*
4907 * cgroup_disable, being at boot time, can't know about module
4908 * subsystems, so we don't worry about them.
4909 */
4910 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
8bab8dde
PM
4911 struct cgroup_subsys *ss = subsys[i];
4912
4913 if (!strcmp(token, ss->name)) {
4914 ss->disabled = 1;
4915 printk(KERN_INFO "Disabling %s control group"
4916 " subsystem\n", ss->name);
4917 break;
4918 }
4919 }
4920 }
4921 return 1;
4922}
4923__setup("cgroup_disable=", cgroup_disable);
38460b48
KH
4924
4925/*
4926 * Functons for CSS ID.
4927 */
4928
4929/*
4930 *To get ID other than 0, this should be called when !cgroup_is_removed().
4931 */
4932unsigned short css_id(struct cgroup_subsys_state *css)
4933{
7f0f1546
KH
4934 struct css_id *cssid;
4935
4936 /*
4937 * This css_id() can return correct value when somone has refcnt
4938 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4939 * it's unchanged until freed.
4940 */
28b4c27b 4941 cssid = rcu_dereference_check(css->id, css_refcnt(css));
38460b48
KH
4942
4943 if (cssid)
4944 return cssid->id;
4945 return 0;
4946}
67523c48 4947EXPORT_SYMBOL_GPL(css_id);
38460b48
KH
4948
4949unsigned short css_depth(struct cgroup_subsys_state *css)
4950{
7f0f1546
KH
4951 struct css_id *cssid;
4952
28b4c27b 4953 cssid = rcu_dereference_check(css->id, css_refcnt(css));
38460b48
KH
4954
4955 if (cssid)
4956 return cssid->depth;
4957 return 0;
4958}
67523c48 4959EXPORT_SYMBOL_GPL(css_depth);
38460b48 4960
747388d7
KH
4961/**
4962 * css_is_ancestor - test "root" css is an ancestor of "child"
4963 * @child: the css to be tested.
4964 * @root: the css supporsed to be an ancestor of the child.
4965 *
4966 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
91c63734 4967 * this function reads css->id, the caller must hold rcu_read_lock().
747388d7
KH
4968 * But, considering usual usage, the csses should be valid objects after test.
4969 * Assuming that the caller will do some action to the child if this returns
4970 * returns true, the caller must take "child";s reference count.
4971 * If "child" is valid object and this returns true, "root" is valid, too.
4972 */
4973
38460b48 4974bool css_is_ancestor(struct cgroup_subsys_state *child,
0b7f569e 4975 const struct cgroup_subsys_state *root)
38460b48 4976{
747388d7
KH
4977 struct css_id *child_id;
4978 struct css_id *root_id;
38460b48 4979
747388d7 4980 child_id = rcu_dereference(child->id);
91c63734
JW
4981 if (!child_id)
4982 return false;
747388d7 4983 root_id = rcu_dereference(root->id);
91c63734
JW
4984 if (!root_id)
4985 return false;
4986 if (child_id->depth < root_id->depth)
4987 return false;
4988 if (child_id->stack[root_id->depth] != root_id->id)
4989 return false;
4990 return true;
38460b48
KH
4991}
4992
38460b48
KH
4993void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4994{
4995 struct css_id *id = css->id;
4996 /* When this is called before css_id initialization, id can be NULL */
4997 if (!id)
4998 return;
4999
5000 BUG_ON(!ss->use_id);
5001
5002 rcu_assign_pointer(id->css, NULL);
5003 rcu_assign_pointer(css->id, NULL);
42aee6c4 5004 spin_lock(&ss->id_lock);
38460b48 5005 idr_remove(&ss->idr, id->id);
42aee6c4 5006 spin_unlock(&ss->id_lock);
025cea99 5007 kfree_rcu(id, rcu_head);
38460b48 5008}
67523c48 5009EXPORT_SYMBOL_GPL(free_css_id);
38460b48
KH
5010
5011/*
5012 * This is called by init or create(). Then, calls to this function are
5013 * always serialized (By cgroup_mutex() at create()).
5014 */
5015
5016static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
5017{
5018 struct css_id *newid;
5019 int myid, error, size;
5020
5021 BUG_ON(!ss->use_id);
5022
5023 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
5024 newid = kzalloc(size, GFP_KERNEL);
5025 if (!newid)
5026 return ERR_PTR(-ENOMEM);
5027 /* get id */
5028 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
5029 error = -ENOMEM;
5030 goto err_out;
5031 }
42aee6c4 5032 spin_lock(&ss->id_lock);
38460b48
KH
5033 /* Don't use 0. allocates an ID of 1-65535 */
5034 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
42aee6c4 5035 spin_unlock(&ss->id_lock);
38460b48
KH
5036
5037 /* Returns error when there are no free spaces for new ID.*/
5038 if (error) {
5039 error = -ENOSPC;
5040 goto err_out;
5041 }
5042 if (myid > CSS_ID_MAX)
5043 goto remove_idr;
5044
5045 newid->id = myid;
5046 newid->depth = depth;
5047 return newid;
5048remove_idr:
5049 error = -ENOSPC;
42aee6c4 5050 spin_lock(&ss->id_lock);
38460b48 5051 idr_remove(&ss->idr, myid);
42aee6c4 5052 spin_unlock(&ss->id_lock);
38460b48
KH
5053err_out:
5054 kfree(newid);
5055 return ERR_PTR(error);
5056
5057}
5058
e6a1105b
BB
5059static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
5060 struct cgroup_subsys_state *rootcss)
38460b48
KH
5061{
5062 struct css_id *newid;
38460b48 5063
42aee6c4 5064 spin_lock_init(&ss->id_lock);
38460b48
KH
5065 idr_init(&ss->idr);
5066
38460b48
KH
5067 newid = get_new_cssid(ss, 0);
5068 if (IS_ERR(newid))
5069 return PTR_ERR(newid);
5070
5071 newid->stack[0] = newid->id;
5072 newid->css = rootcss;
5073 rootcss->id = newid;
5074 return 0;
5075}
5076
5077static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5078 struct cgroup *child)
5079{
5080 int subsys_id, i, depth = 0;
5081 struct cgroup_subsys_state *parent_css, *child_css;
fae9c791 5082 struct css_id *child_id, *parent_id;
38460b48
KH
5083
5084 subsys_id = ss->subsys_id;
5085 parent_css = parent->subsys[subsys_id];
5086 child_css = child->subsys[subsys_id];
38460b48 5087 parent_id = parent_css->id;
94b3dd0f 5088 depth = parent_id->depth + 1;
38460b48
KH
5089
5090 child_id = get_new_cssid(ss, depth);
5091 if (IS_ERR(child_id))
5092 return PTR_ERR(child_id);
5093
5094 for (i = 0; i < depth; i++)
5095 child_id->stack[i] = parent_id->stack[i];
5096 child_id->stack[depth] = child_id->id;
5097 /*
5098 * child_id->css pointer will be set after this cgroup is available
5099 * see cgroup_populate_dir()
5100 */
5101 rcu_assign_pointer(child_css->id, child_id);
5102
5103 return 0;
5104}
5105
5106/**
5107 * css_lookup - lookup css by id
5108 * @ss: cgroup subsys to be looked into.
5109 * @id: the id
5110 *
5111 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5112 * NULL if not. Should be called under rcu_read_lock()
5113 */
5114struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5115{
5116 struct css_id *cssid = NULL;
5117
5118 BUG_ON(!ss->use_id);
5119 cssid = idr_find(&ss->idr, id);
5120
5121 if (unlikely(!cssid))
5122 return NULL;
5123
5124 return rcu_dereference(cssid->css);
5125}
67523c48 5126EXPORT_SYMBOL_GPL(css_lookup);
38460b48
KH
5127
5128/**
5129 * css_get_next - lookup next cgroup under specified hierarchy.
5130 * @ss: pointer to subsystem
5131 * @id: current position of iteration.
5132 * @root: pointer to css. search tree under this.
5133 * @foundid: position of found object.
5134 *
5135 * Search next css under the specified hierarchy of rootid. Calling under
5136 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5137 */
5138struct cgroup_subsys_state *
5139css_get_next(struct cgroup_subsys *ss, int id,
5140 struct cgroup_subsys_state *root, int *foundid)
5141{
5142 struct cgroup_subsys_state *ret = NULL;
5143 struct css_id *tmp;
5144 int tmpid;
5145 int rootid = css_id(root);
5146 int depth = css_depth(root);
5147
5148 if (!rootid)
5149 return NULL;
5150
5151 BUG_ON(!ss->use_id);
ca464d69
HD
5152 WARN_ON_ONCE(!rcu_read_lock_held());
5153
38460b48
KH
5154 /* fill start point for scan */
5155 tmpid = id;
5156 while (1) {
5157 /*
5158 * scan next entry from bitmap(tree), tmpid is updated after
5159 * idr_get_next().
5160 */
38460b48 5161 tmp = idr_get_next(&ss->idr, &tmpid);
38460b48
KH
5162 if (!tmp)
5163 break;
5164 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5165 ret = rcu_dereference(tmp->css);
5166 if (ret) {
5167 *foundid = tmpid;
5168 break;
5169 }
5170 }
5171 /* continue to scan from next id */
5172 tmpid = tmpid + 1;
5173 }
5174 return ret;
5175}
5176
e5d1367f
SE
5177/*
5178 * get corresponding css from file open on cgroupfs directory
5179 */
5180struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5181{
5182 struct cgroup *cgrp;
5183 struct inode *inode;
5184 struct cgroup_subsys_state *css;
5185
5186 inode = f->f_dentry->d_inode;
5187 /* check in cgroup filesystem dir */
5188 if (inode->i_op != &cgroup_dir_inode_operations)
5189 return ERR_PTR(-EBADF);
5190
5191 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5192 return ERR_PTR(-EINVAL);
5193
5194 /* get cgroup */
5195 cgrp = __d_cgrp(f->f_dentry);
5196 css = cgrp->subsys[id];
5197 return css ? css : ERR_PTR(-ENOENT);
5198}
5199
fe693435 5200#ifdef CONFIG_CGROUP_DEBUG
761b3ef5 5201static struct cgroup_subsys_state *debug_create(struct cgroup *cont)
fe693435
PM
5202{
5203 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5204
5205 if (!css)
5206 return ERR_PTR(-ENOMEM);
5207
5208 return css;
5209}
5210
761b3ef5 5211static void debug_destroy(struct cgroup *cont)
fe693435
PM
5212{
5213 kfree(cont->subsys[debug_subsys_id]);
5214}
5215
5216static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5217{
5218 return atomic_read(&cont->count);
5219}
5220
5221static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5222{
5223 return cgroup_task_count(cont);
5224}
5225
5226static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5227{
5228 return (u64)(unsigned long)current->cgroups;
5229}
5230
5231static u64 current_css_set_refcount_read(struct cgroup *cont,
5232 struct cftype *cft)
5233{
5234 u64 count;
5235
5236 rcu_read_lock();
5237 count = atomic_read(&current->cgroups->refcount);
5238 rcu_read_unlock();
5239 return count;
5240}
5241
7717f7ba
PM
5242static int current_css_set_cg_links_read(struct cgroup *cont,
5243 struct cftype *cft,
5244 struct seq_file *seq)
5245{
5246 struct cg_cgroup_link *link;
5247 struct css_set *cg;
5248
5249 read_lock(&css_set_lock);
5250 rcu_read_lock();
5251 cg = rcu_dereference(current->cgroups);
5252 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5253 struct cgroup *c = link->cgrp;
5254 const char *name;
5255
5256 if (c->dentry)
5257 name = c->dentry->d_name.name;
5258 else
5259 name = "?";
2c6ab6d2
PM
5260 seq_printf(seq, "Root %d group %s\n",
5261 c->root->hierarchy_id, name);
7717f7ba
PM
5262 }
5263 rcu_read_unlock();
5264 read_unlock(&css_set_lock);
5265 return 0;
5266}
5267
5268#define MAX_TASKS_SHOWN_PER_CSS 25
5269static int cgroup_css_links_read(struct cgroup *cont,
5270 struct cftype *cft,
5271 struct seq_file *seq)
5272{
5273 struct cg_cgroup_link *link;
5274
5275 read_lock(&css_set_lock);
5276 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5277 struct css_set *cg = link->cg;
5278 struct task_struct *task;
5279 int count = 0;
5280 seq_printf(seq, "css_set %p\n", cg);
5281 list_for_each_entry(task, &cg->tasks, cg_list) {
5282 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5283 seq_puts(seq, " ...\n");
5284 break;
5285 } else {
5286 seq_printf(seq, " task %d\n",
5287 task_pid_vnr(task));
5288 }
5289 }
5290 }
5291 read_unlock(&css_set_lock);
5292 return 0;
5293}
5294
fe693435
PM
5295static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5296{
5297 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5298}
5299
5300static struct cftype debug_files[] = {
5301 {
5302 .name = "cgroup_refcount",
5303 .read_u64 = cgroup_refcount_read,
5304 },
5305 {
5306 .name = "taskcount",
5307 .read_u64 = debug_taskcount_read,
5308 },
5309
5310 {
5311 .name = "current_css_set",
5312 .read_u64 = current_css_set_read,
5313 },
5314
5315 {
5316 .name = "current_css_set_refcount",
5317 .read_u64 = current_css_set_refcount_read,
5318 },
5319
7717f7ba
PM
5320 {
5321 .name = "current_css_set_cg_links",
5322 .read_seq_string = current_css_set_cg_links_read,
5323 },
5324
5325 {
5326 .name = "cgroup_css_links",
5327 .read_seq_string = cgroup_css_links_read,
5328 },
5329
fe693435
PM
5330 {
5331 .name = "releasable",
5332 .read_u64 = releasable_read,
5333 },
fe693435 5334
4baf6e33
TH
5335 { } /* terminate */
5336};
fe693435
PM
5337
5338struct cgroup_subsys debug_subsys = {
5339 .name = "debug",
5340 .create = debug_create,
5341 .destroy = debug_destroy,
fe693435 5342 .subsys_id = debug_subsys_id,
4baf6e33 5343 .base_cftypes = debug_files,
fe693435
PM
5344};
5345#endif /* CONFIG_CGROUP_DEBUG */
This page took 1.07096 seconds and 5 git commands to generate.