]>
Commit | Line | Data |
---|---|---|
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 | * | |
7 | * Copyright notices from the original cpuset code: | |
8 | * -------------------------------------------------- | |
9 | * Copyright (C) 2003 BULL SA. | |
10 | * Copyright (C) 2004-2006 Silicon Graphics, Inc. | |
11 | * | |
12 | * Portions derived from Patrick Mochel's sysfs code. | |
13 | * sysfs is Copyright (c) 2001-3 Patrick Mochel | |
14 | * | |
15 | * 2003-10-10 Written by Simon Derr. | |
16 | * 2003-10-22 Updates by Stephen Hemminger. | |
17 | * 2004 May-July Rework by Paul Jackson. | |
18 | * --------------------------------------------------- | |
19 | * | |
20 | * This file is subject to the terms and conditions of the GNU General Public | |
21 | * License. See the file COPYING in the main directory of the Linux | |
22 | * distribution for more details. | |
23 | */ | |
24 | ||
25 | #include <linux/cgroup.h> | |
26 | #include <linux/errno.h> | |
27 | #include <linux/fs.h> | |
28 | #include <linux/kernel.h> | |
29 | #include <linux/list.h> | |
30 | #include <linux/mm.h> | |
31 | #include <linux/mutex.h> | |
32 | #include <linux/mount.h> | |
33 | #include <linux/pagemap.h> | |
a424316c | 34 | #include <linux/proc_fs.h> |
ddbcc7e8 PM |
35 | #include <linux/rcupdate.h> |
36 | #include <linux/sched.h> | |
817929ec | 37 | #include <linux/backing-dev.h> |
ddbcc7e8 PM |
38 | #include <linux/seq_file.h> |
39 | #include <linux/slab.h> | |
40 | #include <linux/magic.h> | |
41 | #include <linux/spinlock.h> | |
42 | #include <linux/string.h> | |
bbcb81d0 | 43 | #include <linux/sort.h> |
81a6a5cd | 44 | #include <linux/kmod.h> |
846c7bb0 BS |
45 | #include <linux/delayacct.h> |
46 | #include <linux/cgroupstats.h> | |
472b1053 | 47 | #include <linux/hash.h> |
3f8206d4 | 48 | #include <linux/namei.h> |
846c7bb0 | 49 | |
ddbcc7e8 PM |
50 | #include <asm/atomic.h> |
51 | ||
81a6a5cd PM |
52 | static DEFINE_MUTEX(cgroup_mutex); |
53 | ||
ddbcc7e8 PM |
54 | /* Generate an array of cgroup subsystem pointers */ |
55 | #define SUBSYS(_x) &_x ## _subsys, | |
56 | ||
57 | static struct cgroup_subsys *subsys[] = { | |
58 | #include <linux/cgroup_subsys.h> | |
59 | }; | |
60 | ||
61 | /* | |
62 | * A cgroupfs_root represents the root of a cgroup hierarchy, | |
63 | * and may be associated with a superblock to form an active | |
64 | * hierarchy | |
65 | */ | |
66 | struct cgroupfs_root { | |
67 | struct super_block *sb; | |
68 | ||
69 | /* | |
70 | * The bitmask of subsystems intended to be attached to this | |
71 | * hierarchy | |
72 | */ | |
73 | unsigned long subsys_bits; | |
74 | ||
75 | /* The bitmask of subsystems currently attached to this hierarchy */ | |
76 | unsigned long actual_subsys_bits; | |
77 | ||
78 | /* A list running through the attached subsystems */ | |
79 | struct list_head subsys_list; | |
80 | ||
81 | /* The root cgroup for this hierarchy */ | |
82 | struct cgroup top_cgroup; | |
83 | ||
84 | /* Tracks how many cgroups are currently defined in hierarchy.*/ | |
85 | int number_of_cgroups; | |
86 | ||
87 | /* A list running through the mounted hierarchies */ | |
88 | struct list_head root_list; | |
89 | ||
90 | /* Hierarchy-specific flags */ | |
91 | unsigned long flags; | |
81a6a5cd | 92 | |
e788e066 | 93 | /* The path to use for release notifications. */ |
81a6a5cd | 94 | char release_agent_path[PATH_MAX]; |
ddbcc7e8 PM |
95 | }; |
96 | ||
97 | ||
98 | /* | |
99 | * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the | |
100 | * subsystems that are otherwise unattached - it never has more than a | |
101 | * single cgroup, and all tasks are part of that cgroup. | |
102 | */ | |
103 | static struct cgroupfs_root rootnode; | |
104 | ||
105 | /* The list of hierarchy roots */ | |
106 | ||
107 | static LIST_HEAD(roots); | |
817929ec | 108 | static int root_count; |
ddbcc7e8 PM |
109 | |
110 | /* dummytop is a shorthand for the dummy hierarchy's top cgroup */ | |
111 | #define dummytop (&rootnode.top_cgroup) | |
112 | ||
113 | /* This flag indicates whether tasks in the fork and exit paths should | |
a043e3b2 LZ |
114 | * check for fork/exit handlers to call. This avoids us having to do |
115 | * extra work in the fork/exit path if none of the subsystems need to | |
116 | * be called. | |
ddbcc7e8 | 117 | */ |
8947f9d5 | 118 | static int need_forkexit_callback __read_mostly; |
cf475ad2 | 119 | static int need_mm_owner_callback __read_mostly; |
ddbcc7e8 | 120 | |
ddbcc7e8 | 121 | /* convenient tests for these bits */ |
bd89aabc | 122 | inline int cgroup_is_removed(const struct cgroup *cgrp) |
ddbcc7e8 | 123 | { |
bd89aabc | 124 | return test_bit(CGRP_REMOVED, &cgrp->flags); |
ddbcc7e8 PM |
125 | } |
126 | ||
127 | /* bits in struct cgroupfs_root flags field */ | |
128 | enum { | |
129 | ROOT_NOPREFIX, /* mounted subsystems have no named prefix */ | |
130 | }; | |
131 | ||
e9685a03 | 132 | static int cgroup_is_releasable(const struct cgroup *cgrp) |
81a6a5cd PM |
133 | { |
134 | const int bits = | |
bd89aabc PM |
135 | (1 << CGRP_RELEASABLE) | |
136 | (1 << CGRP_NOTIFY_ON_RELEASE); | |
137 | return (cgrp->flags & bits) == bits; | |
81a6a5cd PM |
138 | } |
139 | ||
e9685a03 | 140 | static int notify_on_release(const struct cgroup *cgrp) |
81a6a5cd | 141 | { |
bd89aabc | 142 | return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
81a6a5cd PM |
143 | } |
144 | ||
ddbcc7e8 PM |
145 | /* |
146 | * for_each_subsys() allows you to iterate on each subsystem attached to | |
147 | * an active hierarchy | |
148 | */ | |
149 | #define for_each_subsys(_root, _ss) \ | |
150 | list_for_each_entry(_ss, &_root->subsys_list, sibling) | |
151 | ||
152 | /* for_each_root() allows you to iterate across the active hierarchies */ | |
153 | #define for_each_root(_root) \ | |
154 | list_for_each_entry(_root, &roots, root_list) | |
155 | ||
81a6a5cd PM |
156 | /* the list of cgroups eligible for automatic release. Protected by |
157 | * release_list_lock */ | |
158 | static LIST_HEAD(release_list); | |
159 | static DEFINE_SPINLOCK(release_list_lock); | |
160 | static void cgroup_release_agent(struct work_struct *work); | |
161 | static DECLARE_WORK(release_agent_work, cgroup_release_agent); | |
bd89aabc | 162 | static void check_for_release(struct cgroup *cgrp); |
81a6a5cd | 163 | |
817929ec PM |
164 | /* Link structure for associating css_set objects with cgroups */ |
165 | struct cg_cgroup_link { | |
166 | /* | |
167 | * List running through cg_cgroup_links associated with a | |
168 | * cgroup, anchored on cgroup->css_sets | |
169 | */ | |
bd89aabc | 170 | struct list_head cgrp_link_list; |
817929ec PM |
171 | /* |
172 | * List running through cg_cgroup_links pointing at a | |
173 | * single css_set object, anchored on css_set->cg_links | |
174 | */ | |
175 | struct list_head cg_link_list; | |
176 | struct css_set *cg; | |
177 | }; | |
178 | ||
179 | /* The default css_set - used by init and its children prior to any | |
180 | * hierarchies being mounted. It contains a pointer to the root state | |
181 | * for each subsystem. Also used to anchor the list of css_sets. Not | |
182 | * reference-counted, to improve performance when child cgroups | |
183 | * haven't been created. | |
184 | */ | |
185 | ||
186 | static struct css_set init_css_set; | |
187 | static struct cg_cgroup_link init_css_set_link; | |
188 | ||
189 | /* css_set_lock protects the list of css_set objects, and the | |
190 | * chain of tasks off each css_set. Nests outside task->alloc_lock | |
191 | * due to cgroup_iter_start() */ | |
192 | static DEFINE_RWLOCK(css_set_lock); | |
193 | static int css_set_count; | |
194 | ||
472b1053 LZ |
195 | /* hash table for cgroup groups. This improves the performance to |
196 | * find an existing css_set */ | |
197 | #define CSS_SET_HASH_BITS 7 | |
198 | #define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS) | |
199 | static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE]; | |
200 | ||
201 | static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[]) | |
202 | { | |
203 | int i; | |
204 | int index; | |
205 | unsigned long tmp = 0UL; | |
206 | ||
207 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) | |
208 | tmp += (unsigned long)css[i]; | |
209 | tmp = (tmp >> 16) ^ tmp; | |
210 | ||
211 | index = hash_long(tmp, CSS_SET_HASH_BITS); | |
212 | ||
213 | return &css_set_table[index]; | |
214 | } | |
215 | ||
817929ec PM |
216 | /* We don't maintain the lists running through each css_set to its |
217 | * task until after the first call to cgroup_iter_start(). This | |
218 | * reduces the fork()/exit() overhead for people who have cgroups | |
219 | * compiled into their kernel but not actually in use */ | |
8947f9d5 | 220 | static int use_task_css_set_links __read_mostly; |
817929ec PM |
221 | |
222 | /* When we create or destroy a css_set, the operation simply | |
223 | * takes/releases a reference count on all the cgroups referenced | |
224 | * by subsystems in this css_set. This can end up multiple-counting | |
225 | * some cgroups, but that's OK - the ref-count is just a | |
226 | * busy/not-busy indicator; ensuring that we only count each cgroup | |
227 | * once would require taking a global lock to ensure that no | |
b4f48b63 PM |
228 | * subsystems moved between hierarchies while we were doing so. |
229 | * | |
230 | * Possible TODO: decide at boot time based on the number of | |
231 | * registered subsystems and the number of CPUs or NUMA nodes whether | |
232 | * it's better for performance to ref-count every subsystem, or to | |
233 | * take a global lock and only add one ref count to each hierarchy. | |
234 | */ | |
817929ec PM |
235 | |
236 | /* | |
237 | * unlink a css_set from the list and free it | |
238 | */ | |
81a6a5cd | 239 | static void unlink_css_set(struct css_set *cg) |
b4f48b63 | 240 | { |
71cbb949 KM |
241 | struct cg_cgroup_link *link; |
242 | struct cg_cgroup_link *saved_link; | |
243 | ||
472b1053 | 244 | hlist_del(&cg->hlist); |
817929ec | 245 | css_set_count--; |
71cbb949 KM |
246 | |
247 | list_for_each_entry_safe(link, saved_link, &cg->cg_links, | |
248 | cg_link_list) { | |
817929ec | 249 | list_del(&link->cg_link_list); |
bd89aabc | 250 | list_del(&link->cgrp_link_list); |
817929ec PM |
251 | kfree(link); |
252 | } | |
81a6a5cd PM |
253 | } |
254 | ||
146aa1bd | 255 | static void __put_css_set(struct css_set *cg, int taskexit) |
81a6a5cd PM |
256 | { |
257 | int i; | |
146aa1bd LJ |
258 | /* |
259 | * Ensure that the refcount doesn't hit zero while any readers | |
260 | * can see it. Similar to atomic_dec_and_lock(), but for an | |
261 | * rwlock | |
262 | */ | |
263 | if (atomic_add_unless(&cg->refcount, -1, 1)) | |
264 | return; | |
265 | write_lock(&css_set_lock); | |
266 | if (!atomic_dec_and_test(&cg->refcount)) { | |
267 | write_unlock(&css_set_lock); | |
268 | return; | |
269 | } | |
81a6a5cd | 270 | unlink_css_set(cg); |
146aa1bd | 271 | write_unlock(&css_set_lock); |
81a6a5cd PM |
272 | |
273 | rcu_read_lock(); | |
274 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
bd89aabc PM |
275 | struct cgroup *cgrp = cg->subsys[i]->cgroup; |
276 | if (atomic_dec_and_test(&cgrp->count) && | |
277 | notify_on_release(cgrp)) { | |
81a6a5cd | 278 | if (taskexit) |
bd89aabc PM |
279 | set_bit(CGRP_RELEASABLE, &cgrp->flags); |
280 | check_for_release(cgrp); | |
81a6a5cd PM |
281 | } |
282 | } | |
283 | rcu_read_unlock(); | |
817929ec | 284 | kfree(cg); |
b4f48b63 PM |
285 | } |
286 | ||
817929ec PM |
287 | /* |
288 | * refcounted get/put for css_set objects | |
289 | */ | |
290 | static inline void get_css_set(struct css_set *cg) | |
291 | { | |
146aa1bd | 292 | atomic_inc(&cg->refcount); |
817929ec PM |
293 | } |
294 | ||
295 | static inline void put_css_set(struct css_set *cg) | |
296 | { | |
146aa1bd | 297 | __put_css_set(cg, 0); |
817929ec PM |
298 | } |
299 | ||
81a6a5cd PM |
300 | static inline void put_css_set_taskexit(struct css_set *cg) |
301 | { | |
146aa1bd | 302 | __put_css_set(cg, 1); |
81a6a5cd PM |
303 | } |
304 | ||
817929ec PM |
305 | /* |
306 | * find_existing_css_set() is a helper for | |
307 | * find_css_set(), and checks to see whether an existing | |
472b1053 | 308 | * css_set is suitable. |
817929ec PM |
309 | * |
310 | * oldcg: the cgroup group that we're using before the cgroup | |
311 | * transition | |
312 | * | |
bd89aabc | 313 | * cgrp: the cgroup that we're moving into |
817929ec PM |
314 | * |
315 | * template: location in which to build the desired set of subsystem | |
316 | * state objects for the new cgroup group | |
317 | */ | |
817929ec PM |
318 | static struct css_set *find_existing_css_set( |
319 | struct css_set *oldcg, | |
bd89aabc | 320 | struct cgroup *cgrp, |
817929ec | 321 | struct cgroup_subsys_state *template[]) |
b4f48b63 PM |
322 | { |
323 | int i; | |
bd89aabc | 324 | struct cgroupfs_root *root = cgrp->root; |
472b1053 LZ |
325 | struct hlist_head *hhead; |
326 | struct hlist_node *node; | |
327 | struct css_set *cg; | |
817929ec PM |
328 | |
329 | /* Built the set of subsystem state objects that we want to | |
330 | * see in the new css_set */ | |
331 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
8d53d55d | 332 | if (root->subsys_bits & (1UL << i)) { |
817929ec PM |
333 | /* Subsystem is in this hierarchy. So we want |
334 | * the subsystem state from the new | |
335 | * cgroup */ | |
bd89aabc | 336 | template[i] = cgrp->subsys[i]; |
817929ec PM |
337 | } else { |
338 | /* Subsystem is not in this hierarchy, so we | |
339 | * don't want to change the subsystem state */ | |
340 | template[i] = oldcg->subsys[i]; | |
341 | } | |
342 | } | |
343 | ||
472b1053 LZ |
344 | hhead = css_set_hash(template); |
345 | hlist_for_each_entry(cg, node, hhead, hlist) { | |
817929ec PM |
346 | if (!memcmp(template, cg->subsys, sizeof(cg->subsys))) { |
347 | /* All subsystems matched */ | |
348 | return cg; | |
349 | } | |
472b1053 | 350 | } |
817929ec PM |
351 | |
352 | /* No existing cgroup group matched */ | |
353 | return NULL; | |
354 | } | |
355 | ||
36553434 LZ |
356 | static void free_cg_links(struct list_head *tmp) |
357 | { | |
358 | struct cg_cgroup_link *link; | |
359 | struct cg_cgroup_link *saved_link; | |
360 | ||
361 | list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) { | |
362 | list_del(&link->cgrp_link_list); | |
363 | kfree(link); | |
364 | } | |
365 | } | |
366 | ||
817929ec PM |
367 | /* |
368 | * allocate_cg_links() allocates "count" cg_cgroup_link structures | |
bd89aabc | 369 | * and chains them on tmp through their cgrp_link_list fields. Returns 0 on |
817929ec PM |
370 | * success or a negative error |
371 | */ | |
817929ec PM |
372 | static int allocate_cg_links(int count, struct list_head *tmp) |
373 | { | |
374 | struct cg_cgroup_link *link; | |
375 | int i; | |
376 | INIT_LIST_HEAD(tmp); | |
377 | for (i = 0; i < count; i++) { | |
378 | link = kmalloc(sizeof(*link), GFP_KERNEL); | |
379 | if (!link) { | |
36553434 | 380 | free_cg_links(tmp); |
817929ec PM |
381 | return -ENOMEM; |
382 | } | |
bd89aabc | 383 | list_add(&link->cgrp_link_list, tmp); |
817929ec PM |
384 | } |
385 | return 0; | |
386 | } | |
387 | ||
817929ec PM |
388 | /* |
389 | * find_css_set() takes an existing cgroup group and a | |
390 | * cgroup object, and returns a css_set object that's | |
391 | * equivalent to the old group, but with the given cgroup | |
392 | * substituted into the appropriate hierarchy. Must be called with | |
393 | * cgroup_mutex held | |
394 | */ | |
817929ec | 395 | static struct css_set *find_css_set( |
bd89aabc | 396 | struct css_set *oldcg, struct cgroup *cgrp) |
817929ec PM |
397 | { |
398 | struct css_set *res; | |
399 | struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT]; | |
400 | int i; | |
401 | ||
402 | struct list_head tmp_cg_links; | |
403 | struct cg_cgroup_link *link; | |
404 | ||
472b1053 LZ |
405 | struct hlist_head *hhead; |
406 | ||
817929ec PM |
407 | /* First see if we already have a cgroup group that matches |
408 | * the desired set */ | |
7e9abd89 | 409 | read_lock(&css_set_lock); |
bd89aabc | 410 | res = find_existing_css_set(oldcg, cgrp, template); |
817929ec PM |
411 | if (res) |
412 | get_css_set(res); | |
7e9abd89 | 413 | read_unlock(&css_set_lock); |
817929ec PM |
414 | |
415 | if (res) | |
416 | return res; | |
417 | ||
418 | res = kmalloc(sizeof(*res), GFP_KERNEL); | |
419 | if (!res) | |
420 | return NULL; | |
421 | ||
422 | /* Allocate all the cg_cgroup_link objects that we'll need */ | |
423 | if (allocate_cg_links(root_count, &tmp_cg_links) < 0) { | |
424 | kfree(res); | |
425 | return NULL; | |
426 | } | |
427 | ||
146aa1bd | 428 | atomic_set(&res->refcount, 1); |
817929ec PM |
429 | INIT_LIST_HEAD(&res->cg_links); |
430 | INIT_LIST_HEAD(&res->tasks); | |
472b1053 | 431 | INIT_HLIST_NODE(&res->hlist); |
817929ec PM |
432 | |
433 | /* Copy the set of subsystem state objects generated in | |
434 | * find_existing_css_set() */ | |
435 | memcpy(res->subsys, template, sizeof(res->subsys)); | |
436 | ||
437 | write_lock(&css_set_lock); | |
438 | /* Add reference counts and links from the new css_set. */ | |
439 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
bd89aabc | 440 | struct cgroup *cgrp = res->subsys[i]->cgroup; |
817929ec | 441 | struct cgroup_subsys *ss = subsys[i]; |
bd89aabc | 442 | atomic_inc(&cgrp->count); |
817929ec PM |
443 | /* |
444 | * We want to add a link once per cgroup, so we | |
445 | * only do it for the first subsystem in each | |
446 | * hierarchy | |
447 | */ | |
448 | if (ss->root->subsys_list.next == &ss->sibling) { | |
449 | BUG_ON(list_empty(&tmp_cg_links)); | |
450 | link = list_entry(tmp_cg_links.next, | |
451 | struct cg_cgroup_link, | |
bd89aabc PM |
452 | cgrp_link_list); |
453 | list_del(&link->cgrp_link_list); | |
454 | list_add(&link->cgrp_link_list, &cgrp->css_sets); | |
817929ec PM |
455 | link->cg = res; |
456 | list_add(&link->cg_link_list, &res->cg_links); | |
457 | } | |
458 | } | |
459 | if (list_empty(&rootnode.subsys_list)) { | |
460 | link = list_entry(tmp_cg_links.next, | |
461 | struct cg_cgroup_link, | |
bd89aabc PM |
462 | cgrp_link_list); |
463 | list_del(&link->cgrp_link_list); | |
464 | list_add(&link->cgrp_link_list, &dummytop->css_sets); | |
817929ec PM |
465 | link->cg = res; |
466 | list_add(&link->cg_link_list, &res->cg_links); | |
467 | } | |
468 | ||
469 | BUG_ON(!list_empty(&tmp_cg_links)); | |
470 | ||
817929ec | 471 | css_set_count++; |
472b1053 LZ |
472 | |
473 | /* Add this cgroup group to the hash table */ | |
474 | hhead = css_set_hash(res->subsys); | |
475 | hlist_add_head(&res->hlist, hhead); | |
476 | ||
817929ec PM |
477 | write_unlock(&css_set_lock); |
478 | ||
479 | return res; | |
b4f48b63 PM |
480 | } |
481 | ||
ddbcc7e8 PM |
482 | /* |
483 | * There is one global cgroup mutex. We also require taking | |
484 | * task_lock() when dereferencing a task's cgroup subsys pointers. | |
485 | * See "The task_lock() exception", at the end of this comment. | |
486 | * | |
487 | * A task must hold cgroup_mutex to modify cgroups. | |
488 | * | |
489 | * Any task can increment and decrement the count field without lock. | |
490 | * So in general, code holding cgroup_mutex can't rely on the count | |
491 | * field not changing. However, if the count goes to zero, then only | |
956db3ca | 492 | * cgroup_attach_task() can increment it again. Because a count of zero |
ddbcc7e8 PM |
493 | * means that no tasks are currently attached, therefore there is no |
494 | * way a task attached to that cgroup can fork (the other way to | |
495 | * increment the count). So code holding cgroup_mutex can safely | |
496 | * assume that if the count is zero, it will stay zero. Similarly, if | |
497 | * a task holds cgroup_mutex on a cgroup with zero count, it | |
498 | * knows that the cgroup won't be removed, as cgroup_rmdir() | |
499 | * needs that mutex. | |
500 | * | |
ddbcc7e8 PM |
501 | * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't |
502 | * (usually) take cgroup_mutex. These are the two most performance | |
503 | * critical pieces of code here. The exception occurs on cgroup_exit(), | |
504 | * when a task in a notify_on_release cgroup exits. Then cgroup_mutex | |
505 | * is taken, and if the cgroup count is zero, a usermode call made | |
a043e3b2 LZ |
506 | * to the release agent with the name of the cgroup (path relative to |
507 | * the root of cgroup file system) as the argument. | |
ddbcc7e8 PM |
508 | * |
509 | * A cgroup can only be deleted if both its 'count' of using tasks | |
510 | * is zero, and its list of 'children' cgroups is empty. Since all | |
511 | * tasks in the system use _some_ cgroup, and since there is always at | |
512 | * least one task in the system (init, pid == 1), therefore, top_cgroup | |
513 | * always has either children cgroups and/or using tasks. So we don't | |
514 | * need a special hack to ensure that top_cgroup cannot be deleted. | |
515 | * | |
516 | * The task_lock() exception | |
517 | * | |
518 | * The need for this exception arises from the action of | |
956db3ca | 519 | * cgroup_attach_task(), which overwrites one tasks cgroup pointer with |
a043e3b2 | 520 | * another. It does so using cgroup_mutex, however there are |
ddbcc7e8 PM |
521 | * several performance critical places that need to reference |
522 | * task->cgroup without the expense of grabbing a system global | |
523 | * mutex. Therefore except as noted below, when dereferencing or, as | |
956db3ca | 524 | * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use |
ddbcc7e8 PM |
525 | * task_lock(), which acts on a spinlock (task->alloc_lock) already in |
526 | * the task_struct routinely used for such matters. | |
527 | * | |
528 | * P.S. One more locking exception. RCU is used to guard the | |
956db3ca | 529 | * update of a tasks cgroup pointer by cgroup_attach_task() |
ddbcc7e8 PM |
530 | */ |
531 | ||
ddbcc7e8 PM |
532 | /** |
533 | * cgroup_lock - lock out any changes to cgroup structures | |
534 | * | |
535 | */ | |
ddbcc7e8 PM |
536 | void cgroup_lock(void) |
537 | { | |
538 | mutex_lock(&cgroup_mutex); | |
539 | } | |
540 | ||
541 | /** | |
542 | * cgroup_unlock - release lock on cgroup changes | |
543 | * | |
544 | * Undo the lock taken in a previous cgroup_lock() call. | |
545 | */ | |
ddbcc7e8 PM |
546 | void cgroup_unlock(void) |
547 | { | |
548 | mutex_unlock(&cgroup_mutex); | |
549 | } | |
550 | ||
551 | /* | |
552 | * A couple of forward declarations required, due to cyclic reference loop: | |
553 | * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir -> | |
554 | * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations | |
555 | * -> cgroup_mkdir. | |
556 | */ | |
557 | ||
558 | static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode); | |
559 | static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry); | |
bd89aabc | 560 | static int cgroup_populate_dir(struct cgroup *cgrp); |
ddbcc7e8 | 561 | static struct inode_operations cgroup_dir_inode_operations; |
a424316c PM |
562 | static struct file_operations proc_cgroupstats_operations; |
563 | ||
564 | static struct backing_dev_info cgroup_backing_dev_info = { | |
e4ad08fe | 565 | .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK, |
a424316c | 566 | }; |
ddbcc7e8 PM |
567 | |
568 | static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb) | |
569 | { | |
570 | struct inode *inode = new_inode(sb); | |
ddbcc7e8 PM |
571 | |
572 | if (inode) { | |
573 | inode->i_mode = mode; | |
76aac0e9 DH |
574 | inode->i_uid = current_fsuid(); |
575 | inode->i_gid = current_fsgid(); | |
ddbcc7e8 PM |
576 | inode->i_blocks = 0; |
577 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; | |
578 | inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info; | |
579 | } | |
580 | return inode; | |
581 | } | |
582 | ||
4fca88c8 KH |
583 | /* |
584 | * Call subsys's pre_destroy handler. | |
585 | * This is called before css refcnt check. | |
586 | */ | |
4fca88c8 KH |
587 | static void cgroup_call_pre_destroy(struct cgroup *cgrp) |
588 | { | |
589 | struct cgroup_subsys *ss; | |
590 | for_each_subsys(cgrp->root, ss) | |
591 | if (ss->pre_destroy && cgrp->subsys[ss->subsys_id]) | |
592 | ss->pre_destroy(ss, cgrp); | |
593 | return; | |
594 | } | |
595 | ||
ddbcc7e8 PM |
596 | static void cgroup_diput(struct dentry *dentry, struct inode *inode) |
597 | { | |
598 | /* is dentry a directory ? if so, kfree() associated cgroup */ | |
599 | if (S_ISDIR(inode->i_mode)) { | |
bd89aabc | 600 | struct cgroup *cgrp = dentry->d_fsdata; |
8dc4f3e1 | 601 | struct cgroup_subsys *ss; |
bd89aabc | 602 | BUG_ON(!(cgroup_is_removed(cgrp))); |
81a6a5cd PM |
603 | /* It's possible for external users to be holding css |
604 | * reference counts on a cgroup; css_put() needs to | |
605 | * be able to access the cgroup after decrementing | |
606 | * the reference count in order to know if it needs to | |
607 | * queue the cgroup to be handled by the release | |
608 | * agent */ | |
609 | synchronize_rcu(); | |
8dc4f3e1 PM |
610 | |
611 | mutex_lock(&cgroup_mutex); | |
612 | /* | |
613 | * Release the subsystem state objects. | |
614 | */ | |
615 | for_each_subsys(cgrp->root, ss) { | |
616 | if (cgrp->subsys[ss->subsys_id]) | |
617 | ss->destroy(ss, cgrp); | |
618 | } | |
619 | ||
620 | cgrp->root->number_of_cgroups--; | |
621 | mutex_unlock(&cgroup_mutex); | |
622 | ||
623 | /* Drop the active superblock reference that we took when we | |
624 | * created the cgroup */ | |
625 | deactivate_super(cgrp->root->sb); | |
626 | ||
bd89aabc | 627 | kfree(cgrp); |
ddbcc7e8 PM |
628 | } |
629 | iput(inode); | |
630 | } | |
631 | ||
632 | static void remove_dir(struct dentry *d) | |
633 | { | |
634 | struct dentry *parent = dget(d->d_parent); | |
635 | ||
636 | d_delete(d); | |
637 | simple_rmdir(parent->d_inode, d); | |
638 | dput(parent); | |
639 | } | |
640 | ||
641 | static void cgroup_clear_directory(struct dentry *dentry) | |
642 | { | |
643 | struct list_head *node; | |
644 | ||
645 | BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex)); | |
646 | spin_lock(&dcache_lock); | |
647 | node = dentry->d_subdirs.next; | |
648 | while (node != &dentry->d_subdirs) { | |
649 | struct dentry *d = list_entry(node, struct dentry, d_u.d_child); | |
650 | list_del_init(node); | |
651 | if (d->d_inode) { | |
652 | /* This should never be called on a cgroup | |
653 | * directory with child cgroups */ | |
654 | BUG_ON(d->d_inode->i_mode & S_IFDIR); | |
655 | d = dget_locked(d); | |
656 | spin_unlock(&dcache_lock); | |
657 | d_delete(d); | |
658 | simple_unlink(dentry->d_inode, d); | |
659 | dput(d); | |
660 | spin_lock(&dcache_lock); | |
661 | } | |
662 | node = dentry->d_subdirs.next; | |
663 | } | |
664 | spin_unlock(&dcache_lock); | |
665 | } | |
666 | ||
667 | /* | |
668 | * NOTE : the dentry must have been dget()'ed | |
669 | */ | |
670 | static void cgroup_d_remove_dir(struct dentry *dentry) | |
671 | { | |
672 | cgroup_clear_directory(dentry); | |
673 | ||
674 | spin_lock(&dcache_lock); | |
675 | list_del_init(&dentry->d_u.d_child); | |
676 | spin_unlock(&dcache_lock); | |
677 | remove_dir(dentry); | |
678 | } | |
679 | ||
680 | static int rebind_subsystems(struct cgroupfs_root *root, | |
681 | unsigned long final_bits) | |
682 | { | |
683 | unsigned long added_bits, removed_bits; | |
bd89aabc | 684 | struct cgroup *cgrp = &root->top_cgroup; |
ddbcc7e8 PM |
685 | int i; |
686 | ||
687 | removed_bits = root->actual_subsys_bits & ~final_bits; | |
688 | added_bits = final_bits & ~root->actual_subsys_bits; | |
689 | /* Check that any added subsystems are currently free */ | |
690 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
8d53d55d | 691 | unsigned long bit = 1UL << i; |
ddbcc7e8 PM |
692 | struct cgroup_subsys *ss = subsys[i]; |
693 | if (!(bit & added_bits)) | |
694 | continue; | |
695 | if (ss->root != &rootnode) { | |
696 | /* Subsystem isn't free */ | |
697 | return -EBUSY; | |
698 | } | |
699 | } | |
700 | ||
701 | /* Currently we don't handle adding/removing subsystems when | |
702 | * any child cgroups exist. This is theoretically supportable | |
703 | * but involves complex error handling, so it's being left until | |
704 | * later */ | |
307257cf | 705 | if (root->number_of_cgroups > 1) |
ddbcc7e8 PM |
706 | return -EBUSY; |
707 | ||
708 | /* Process each subsystem */ | |
709 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
710 | struct cgroup_subsys *ss = subsys[i]; | |
711 | unsigned long bit = 1UL << i; | |
712 | if (bit & added_bits) { | |
713 | /* We're binding this subsystem to this hierarchy */ | |
bd89aabc | 714 | BUG_ON(cgrp->subsys[i]); |
ddbcc7e8 PM |
715 | BUG_ON(!dummytop->subsys[i]); |
716 | BUG_ON(dummytop->subsys[i]->cgroup != dummytop); | |
bd89aabc PM |
717 | cgrp->subsys[i] = dummytop->subsys[i]; |
718 | cgrp->subsys[i]->cgroup = cgrp; | |
ddbcc7e8 PM |
719 | list_add(&ss->sibling, &root->subsys_list); |
720 | rcu_assign_pointer(ss->root, root); | |
721 | if (ss->bind) | |
bd89aabc | 722 | ss->bind(ss, cgrp); |
ddbcc7e8 PM |
723 | |
724 | } else if (bit & removed_bits) { | |
725 | /* We're removing this subsystem */ | |
bd89aabc PM |
726 | BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]); |
727 | BUG_ON(cgrp->subsys[i]->cgroup != cgrp); | |
ddbcc7e8 PM |
728 | if (ss->bind) |
729 | ss->bind(ss, dummytop); | |
730 | dummytop->subsys[i]->cgroup = dummytop; | |
bd89aabc | 731 | cgrp->subsys[i] = NULL; |
ddbcc7e8 PM |
732 | rcu_assign_pointer(subsys[i]->root, &rootnode); |
733 | list_del(&ss->sibling); | |
734 | } else if (bit & final_bits) { | |
735 | /* Subsystem state should already exist */ | |
bd89aabc | 736 | BUG_ON(!cgrp->subsys[i]); |
ddbcc7e8 PM |
737 | } else { |
738 | /* Subsystem state shouldn't exist */ | |
bd89aabc | 739 | BUG_ON(cgrp->subsys[i]); |
ddbcc7e8 PM |
740 | } |
741 | } | |
742 | root->subsys_bits = root->actual_subsys_bits = final_bits; | |
743 | synchronize_rcu(); | |
744 | ||
745 | return 0; | |
746 | } | |
747 | ||
748 | static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs) | |
749 | { | |
750 | struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info; | |
751 | struct cgroup_subsys *ss; | |
752 | ||
753 | mutex_lock(&cgroup_mutex); | |
754 | for_each_subsys(root, ss) | |
755 | seq_printf(seq, ",%s", ss->name); | |
756 | if (test_bit(ROOT_NOPREFIX, &root->flags)) | |
757 | seq_puts(seq, ",noprefix"); | |
81a6a5cd PM |
758 | if (strlen(root->release_agent_path)) |
759 | seq_printf(seq, ",release_agent=%s", root->release_agent_path); | |
ddbcc7e8 PM |
760 | mutex_unlock(&cgroup_mutex); |
761 | return 0; | |
762 | } | |
763 | ||
764 | struct cgroup_sb_opts { | |
765 | unsigned long subsys_bits; | |
766 | unsigned long flags; | |
81a6a5cd | 767 | char *release_agent; |
ddbcc7e8 PM |
768 | }; |
769 | ||
770 | /* Convert a hierarchy specifier into a bitmask of subsystems and | |
771 | * flags. */ | |
772 | static int parse_cgroupfs_options(char *data, | |
773 | struct cgroup_sb_opts *opts) | |
774 | { | |
775 | char *token, *o = data ?: "all"; | |
776 | ||
777 | opts->subsys_bits = 0; | |
778 | opts->flags = 0; | |
81a6a5cd | 779 | opts->release_agent = NULL; |
ddbcc7e8 PM |
780 | |
781 | while ((token = strsep(&o, ",")) != NULL) { | |
782 | if (!*token) | |
783 | return -EINVAL; | |
784 | if (!strcmp(token, "all")) { | |
8bab8dde PM |
785 | /* Add all non-disabled subsystems */ |
786 | int i; | |
787 | opts->subsys_bits = 0; | |
788 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
789 | struct cgroup_subsys *ss = subsys[i]; | |
790 | if (!ss->disabled) | |
791 | opts->subsys_bits |= 1ul << i; | |
792 | } | |
ddbcc7e8 PM |
793 | } else if (!strcmp(token, "noprefix")) { |
794 | set_bit(ROOT_NOPREFIX, &opts->flags); | |
81a6a5cd PM |
795 | } else if (!strncmp(token, "release_agent=", 14)) { |
796 | /* Specifying two release agents is forbidden */ | |
797 | if (opts->release_agent) | |
798 | return -EINVAL; | |
799 | opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL); | |
800 | if (!opts->release_agent) | |
801 | return -ENOMEM; | |
802 | strncpy(opts->release_agent, token + 14, PATH_MAX - 1); | |
803 | opts->release_agent[PATH_MAX - 1] = 0; | |
ddbcc7e8 PM |
804 | } else { |
805 | struct cgroup_subsys *ss; | |
806 | int i; | |
807 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
808 | ss = subsys[i]; | |
809 | if (!strcmp(token, ss->name)) { | |
8bab8dde PM |
810 | if (!ss->disabled) |
811 | set_bit(i, &opts->subsys_bits); | |
ddbcc7e8 PM |
812 | break; |
813 | } | |
814 | } | |
815 | if (i == CGROUP_SUBSYS_COUNT) | |
816 | return -ENOENT; | |
817 | } | |
818 | } | |
819 | ||
820 | /* We can't have an empty hierarchy */ | |
821 | if (!opts->subsys_bits) | |
822 | return -EINVAL; | |
823 | ||
824 | return 0; | |
825 | } | |
826 | ||
827 | static int cgroup_remount(struct super_block *sb, int *flags, char *data) | |
828 | { | |
829 | int ret = 0; | |
830 | struct cgroupfs_root *root = sb->s_fs_info; | |
bd89aabc | 831 | struct cgroup *cgrp = &root->top_cgroup; |
ddbcc7e8 PM |
832 | struct cgroup_sb_opts opts; |
833 | ||
bd89aabc | 834 | mutex_lock(&cgrp->dentry->d_inode->i_mutex); |
ddbcc7e8 PM |
835 | mutex_lock(&cgroup_mutex); |
836 | ||
837 | /* See what subsystems are wanted */ | |
838 | ret = parse_cgroupfs_options(data, &opts); | |
839 | if (ret) | |
840 | goto out_unlock; | |
841 | ||
842 | /* Don't allow flags to change at remount */ | |
843 | if (opts.flags != root->flags) { | |
844 | ret = -EINVAL; | |
845 | goto out_unlock; | |
846 | } | |
847 | ||
848 | ret = rebind_subsystems(root, opts.subsys_bits); | |
849 | ||
850 | /* (re)populate subsystem files */ | |
851 | if (!ret) | |
bd89aabc | 852 | cgroup_populate_dir(cgrp); |
ddbcc7e8 | 853 | |
81a6a5cd PM |
854 | if (opts.release_agent) |
855 | strcpy(root->release_agent_path, opts.release_agent); | |
ddbcc7e8 | 856 | out_unlock: |
81a6a5cd PM |
857 | if (opts.release_agent) |
858 | kfree(opts.release_agent); | |
ddbcc7e8 | 859 | mutex_unlock(&cgroup_mutex); |
bd89aabc | 860 | mutex_unlock(&cgrp->dentry->d_inode->i_mutex); |
ddbcc7e8 PM |
861 | return ret; |
862 | } | |
863 | ||
864 | static struct super_operations cgroup_ops = { | |
865 | .statfs = simple_statfs, | |
866 | .drop_inode = generic_delete_inode, | |
867 | .show_options = cgroup_show_options, | |
868 | .remount_fs = cgroup_remount, | |
869 | }; | |
870 | ||
cc31edce PM |
871 | static void init_cgroup_housekeeping(struct cgroup *cgrp) |
872 | { | |
873 | INIT_LIST_HEAD(&cgrp->sibling); | |
874 | INIT_LIST_HEAD(&cgrp->children); | |
875 | INIT_LIST_HEAD(&cgrp->css_sets); | |
876 | INIT_LIST_HEAD(&cgrp->release_list); | |
877 | init_rwsem(&cgrp->pids_mutex); | |
878 | } | |
ddbcc7e8 PM |
879 | static void init_cgroup_root(struct cgroupfs_root *root) |
880 | { | |
bd89aabc | 881 | struct cgroup *cgrp = &root->top_cgroup; |
ddbcc7e8 PM |
882 | INIT_LIST_HEAD(&root->subsys_list); |
883 | INIT_LIST_HEAD(&root->root_list); | |
884 | root->number_of_cgroups = 1; | |
bd89aabc PM |
885 | cgrp->root = root; |
886 | cgrp->top_cgroup = cgrp; | |
cc31edce | 887 | init_cgroup_housekeeping(cgrp); |
ddbcc7e8 PM |
888 | } |
889 | ||
890 | static int cgroup_test_super(struct super_block *sb, void *data) | |
891 | { | |
892 | struct cgroupfs_root *new = data; | |
893 | struct cgroupfs_root *root = sb->s_fs_info; | |
894 | ||
895 | /* First check subsystems */ | |
896 | if (new->subsys_bits != root->subsys_bits) | |
897 | return 0; | |
898 | ||
899 | /* Next check flags */ | |
900 | if (new->flags != root->flags) | |
901 | return 0; | |
902 | ||
903 | return 1; | |
904 | } | |
905 | ||
906 | static int cgroup_set_super(struct super_block *sb, void *data) | |
907 | { | |
908 | int ret; | |
909 | struct cgroupfs_root *root = data; | |
910 | ||
911 | ret = set_anon_super(sb, NULL); | |
912 | if (ret) | |
913 | return ret; | |
914 | ||
915 | sb->s_fs_info = root; | |
916 | root->sb = sb; | |
917 | ||
918 | sb->s_blocksize = PAGE_CACHE_SIZE; | |
919 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; | |
920 | sb->s_magic = CGROUP_SUPER_MAGIC; | |
921 | sb->s_op = &cgroup_ops; | |
922 | ||
923 | return 0; | |
924 | } | |
925 | ||
926 | static int cgroup_get_rootdir(struct super_block *sb) | |
927 | { | |
928 | struct inode *inode = | |
929 | cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb); | |
930 | struct dentry *dentry; | |
931 | ||
932 | if (!inode) | |
933 | return -ENOMEM; | |
934 | ||
ddbcc7e8 PM |
935 | inode->i_fop = &simple_dir_operations; |
936 | inode->i_op = &cgroup_dir_inode_operations; | |
937 | /* directories start off with i_nlink == 2 (for "." entry) */ | |
938 | inc_nlink(inode); | |
939 | dentry = d_alloc_root(inode); | |
940 | if (!dentry) { | |
941 | iput(inode); | |
942 | return -ENOMEM; | |
943 | } | |
944 | sb->s_root = dentry; | |
945 | return 0; | |
946 | } | |
947 | ||
948 | static int cgroup_get_sb(struct file_system_type *fs_type, | |
949 | int flags, const char *unused_dev_name, | |
950 | void *data, struct vfsmount *mnt) | |
951 | { | |
952 | struct cgroup_sb_opts opts; | |
953 | int ret = 0; | |
954 | struct super_block *sb; | |
955 | struct cgroupfs_root *root; | |
28fd5dfc | 956 | struct list_head tmp_cg_links; |
ddbcc7e8 PM |
957 | |
958 | /* First find the desired set of subsystems */ | |
959 | ret = parse_cgroupfs_options(data, &opts); | |
81a6a5cd PM |
960 | if (ret) { |
961 | if (opts.release_agent) | |
962 | kfree(opts.release_agent); | |
ddbcc7e8 | 963 | return ret; |
81a6a5cd | 964 | } |
ddbcc7e8 PM |
965 | |
966 | root = kzalloc(sizeof(*root), GFP_KERNEL); | |
f7770738 LZ |
967 | if (!root) { |
968 | if (opts.release_agent) | |
969 | kfree(opts.release_agent); | |
ddbcc7e8 | 970 | return -ENOMEM; |
f7770738 | 971 | } |
ddbcc7e8 PM |
972 | |
973 | init_cgroup_root(root); | |
974 | root->subsys_bits = opts.subsys_bits; | |
975 | root->flags = opts.flags; | |
81a6a5cd PM |
976 | if (opts.release_agent) { |
977 | strcpy(root->release_agent_path, opts.release_agent); | |
978 | kfree(opts.release_agent); | |
979 | } | |
ddbcc7e8 PM |
980 | |
981 | sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root); | |
982 | ||
983 | if (IS_ERR(sb)) { | |
984 | kfree(root); | |
985 | return PTR_ERR(sb); | |
986 | } | |
987 | ||
988 | if (sb->s_fs_info != root) { | |
989 | /* Reusing an existing superblock */ | |
990 | BUG_ON(sb->s_root == NULL); | |
991 | kfree(root); | |
992 | root = NULL; | |
993 | } else { | |
994 | /* New superblock */ | |
bd89aabc | 995 | struct cgroup *cgrp = &root->top_cgroup; |
817929ec | 996 | struct inode *inode; |
28fd5dfc | 997 | int i; |
ddbcc7e8 PM |
998 | |
999 | BUG_ON(sb->s_root != NULL); | |
1000 | ||
1001 | ret = cgroup_get_rootdir(sb); | |
1002 | if (ret) | |
1003 | goto drop_new_super; | |
817929ec | 1004 | inode = sb->s_root->d_inode; |
ddbcc7e8 | 1005 | |
817929ec | 1006 | mutex_lock(&inode->i_mutex); |
ddbcc7e8 PM |
1007 | mutex_lock(&cgroup_mutex); |
1008 | ||
817929ec PM |
1009 | /* |
1010 | * We're accessing css_set_count without locking | |
1011 | * css_set_lock here, but that's OK - it can only be | |
1012 | * increased by someone holding cgroup_lock, and | |
1013 | * that's us. The worst that can happen is that we | |
1014 | * have some link structures left over | |
1015 | */ | |
1016 | ret = allocate_cg_links(css_set_count, &tmp_cg_links); | |
1017 | if (ret) { | |
1018 | mutex_unlock(&cgroup_mutex); | |
1019 | mutex_unlock(&inode->i_mutex); | |
1020 | goto drop_new_super; | |
1021 | } | |
1022 | ||
ddbcc7e8 PM |
1023 | ret = rebind_subsystems(root, root->subsys_bits); |
1024 | if (ret == -EBUSY) { | |
1025 | mutex_unlock(&cgroup_mutex); | |
817929ec | 1026 | mutex_unlock(&inode->i_mutex); |
20ca9b3f | 1027 | goto free_cg_links; |
ddbcc7e8 PM |
1028 | } |
1029 | ||
1030 | /* EBUSY should be the only error here */ | |
1031 | BUG_ON(ret); | |
1032 | ||
1033 | list_add(&root->root_list, &roots); | |
817929ec | 1034 | root_count++; |
ddbcc7e8 PM |
1035 | |
1036 | sb->s_root->d_fsdata = &root->top_cgroup; | |
1037 | root->top_cgroup.dentry = sb->s_root; | |
1038 | ||
817929ec PM |
1039 | /* Link the top cgroup in this hierarchy into all |
1040 | * the css_set objects */ | |
1041 | write_lock(&css_set_lock); | |
28fd5dfc LZ |
1042 | for (i = 0; i < CSS_SET_TABLE_SIZE; i++) { |
1043 | struct hlist_head *hhead = &css_set_table[i]; | |
1044 | struct hlist_node *node; | |
817929ec | 1045 | struct css_set *cg; |
28fd5dfc LZ |
1046 | |
1047 | hlist_for_each_entry(cg, node, hhead, hlist) { | |
1048 | struct cg_cgroup_link *link; | |
1049 | ||
1050 | BUG_ON(list_empty(&tmp_cg_links)); | |
1051 | link = list_entry(tmp_cg_links.next, | |
1052 | struct cg_cgroup_link, | |
1053 | cgrp_link_list); | |
1054 | list_del(&link->cgrp_link_list); | |
1055 | link->cg = cg; | |
1056 | list_add(&link->cgrp_link_list, | |
1057 | &root->top_cgroup.css_sets); | |
1058 | list_add(&link->cg_link_list, &cg->cg_links); | |
1059 | } | |
1060 | } | |
817929ec PM |
1061 | write_unlock(&css_set_lock); |
1062 | ||
1063 | free_cg_links(&tmp_cg_links); | |
1064 | ||
bd89aabc PM |
1065 | BUG_ON(!list_empty(&cgrp->sibling)); |
1066 | BUG_ON(!list_empty(&cgrp->children)); | |
ddbcc7e8 PM |
1067 | BUG_ON(root->number_of_cgroups != 1); |
1068 | ||
bd89aabc | 1069 | cgroup_populate_dir(cgrp); |
817929ec | 1070 | mutex_unlock(&inode->i_mutex); |
ddbcc7e8 PM |
1071 | mutex_unlock(&cgroup_mutex); |
1072 | } | |
1073 | ||
1074 | return simple_set_mnt(mnt, sb); | |
1075 | ||
20ca9b3f LZ |
1076 | free_cg_links: |
1077 | free_cg_links(&tmp_cg_links); | |
ddbcc7e8 PM |
1078 | drop_new_super: |
1079 | up_write(&sb->s_umount); | |
1080 | deactivate_super(sb); | |
1081 | return ret; | |
1082 | } | |
1083 | ||
1084 | static void cgroup_kill_sb(struct super_block *sb) { | |
1085 | struct cgroupfs_root *root = sb->s_fs_info; | |
bd89aabc | 1086 | struct cgroup *cgrp = &root->top_cgroup; |
ddbcc7e8 | 1087 | int ret; |
71cbb949 KM |
1088 | struct cg_cgroup_link *link; |
1089 | struct cg_cgroup_link *saved_link; | |
ddbcc7e8 PM |
1090 | |
1091 | BUG_ON(!root); | |
1092 | ||
1093 | BUG_ON(root->number_of_cgroups != 1); | |
bd89aabc PM |
1094 | BUG_ON(!list_empty(&cgrp->children)); |
1095 | BUG_ON(!list_empty(&cgrp->sibling)); | |
ddbcc7e8 PM |
1096 | |
1097 | mutex_lock(&cgroup_mutex); | |
1098 | ||
1099 | /* Rebind all subsystems back to the default hierarchy */ | |
1100 | ret = rebind_subsystems(root, 0); | |
1101 | /* Shouldn't be able to fail ... */ | |
1102 | BUG_ON(ret); | |
1103 | ||
817929ec PM |
1104 | /* |
1105 | * Release all the links from css_sets to this hierarchy's | |
1106 | * root cgroup | |
1107 | */ | |
1108 | write_lock(&css_set_lock); | |
71cbb949 KM |
1109 | |
1110 | list_for_each_entry_safe(link, saved_link, &cgrp->css_sets, | |
1111 | cgrp_link_list) { | |
817929ec | 1112 | list_del(&link->cg_link_list); |
bd89aabc | 1113 | list_del(&link->cgrp_link_list); |
817929ec PM |
1114 | kfree(link); |
1115 | } | |
1116 | write_unlock(&css_set_lock); | |
1117 | ||
1118 | if (!list_empty(&root->root_list)) { | |
ddbcc7e8 | 1119 | list_del(&root->root_list); |
817929ec PM |
1120 | root_count--; |
1121 | } | |
ddbcc7e8 PM |
1122 | mutex_unlock(&cgroup_mutex); |
1123 | ||
1124 | kfree(root); | |
1125 | kill_litter_super(sb); | |
1126 | } | |
1127 | ||
1128 | static struct file_system_type cgroup_fs_type = { | |
1129 | .name = "cgroup", | |
1130 | .get_sb = cgroup_get_sb, | |
1131 | .kill_sb = cgroup_kill_sb, | |
1132 | }; | |
1133 | ||
bd89aabc | 1134 | static inline struct cgroup *__d_cgrp(struct dentry *dentry) |
ddbcc7e8 PM |
1135 | { |
1136 | return dentry->d_fsdata; | |
1137 | } | |
1138 | ||
1139 | static inline struct cftype *__d_cft(struct dentry *dentry) | |
1140 | { | |
1141 | return dentry->d_fsdata; | |
1142 | } | |
1143 | ||
a043e3b2 LZ |
1144 | /** |
1145 | * cgroup_path - generate the path of a cgroup | |
1146 | * @cgrp: the cgroup in question | |
1147 | * @buf: the buffer to write the path into | |
1148 | * @buflen: the length of the buffer | |
1149 | * | |
1150 | * Called with cgroup_mutex held. Writes path of cgroup into buf. | |
ddbcc7e8 PM |
1151 | * Returns 0 on success, -errno on error. |
1152 | */ | |
bd89aabc | 1153 | int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen) |
ddbcc7e8 PM |
1154 | { |
1155 | char *start; | |
1156 | ||
bd89aabc | 1157 | if (cgrp == dummytop) { |
ddbcc7e8 PM |
1158 | /* |
1159 | * Inactive subsystems have no dentry for their root | |
1160 | * cgroup | |
1161 | */ | |
1162 | strcpy(buf, "/"); | |
1163 | return 0; | |
1164 | } | |
1165 | ||
1166 | start = buf + buflen; | |
1167 | ||
1168 | *--start = '\0'; | |
1169 | for (;;) { | |
bd89aabc | 1170 | int len = cgrp->dentry->d_name.len; |
ddbcc7e8 PM |
1171 | if ((start -= len) < buf) |
1172 | return -ENAMETOOLONG; | |
bd89aabc PM |
1173 | memcpy(start, cgrp->dentry->d_name.name, len); |
1174 | cgrp = cgrp->parent; | |
1175 | if (!cgrp) | |
ddbcc7e8 | 1176 | break; |
bd89aabc | 1177 | if (!cgrp->parent) |
ddbcc7e8 PM |
1178 | continue; |
1179 | if (--start < buf) | |
1180 | return -ENAMETOOLONG; | |
1181 | *start = '/'; | |
1182 | } | |
1183 | memmove(buf, start, buf + buflen - start); | |
1184 | return 0; | |
1185 | } | |
1186 | ||
bbcb81d0 PM |
1187 | /* |
1188 | * Return the first subsystem attached to a cgroup's hierarchy, and | |
1189 | * its subsystem id. | |
1190 | */ | |
1191 | ||
bd89aabc | 1192 | static void get_first_subsys(const struct cgroup *cgrp, |
bbcb81d0 PM |
1193 | struct cgroup_subsys_state **css, int *subsys_id) |
1194 | { | |
bd89aabc | 1195 | const struct cgroupfs_root *root = cgrp->root; |
bbcb81d0 PM |
1196 | const struct cgroup_subsys *test_ss; |
1197 | BUG_ON(list_empty(&root->subsys_list)); | |
1198 | test_ss = list_entry(root->subsys_list.next, | |
1199 | struct cgroup_subsys, sibling); | |
1200 | if (css) { | |
bd89aabc | 1201 | *css = cgrp->subsys[test_ss->subsys_id]; |
bbcb81d0 PM |
1202 | BUG_ON(!*css); |
1203 | } | |
1204 | if (subsys_id) | |
1205 | *subsys_id = test_ss->subsys_id; | |
1206 | } | |
1207 | ||
a043e3b2 LZ |
1208 | /** |
1209 | * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp' | |
1210 | * @cgrp: the cgroup the task is attaching to | |
1211 | * @tsk: the task to be attached | |
bbcb81d0 | 1212 | * |
a043e3b2 LZ |
1213 | * Call holding cgroup_mutex. May take task_lock of |
1214 | * the task 'tsk' during call. | |
bbcb81d0 | 1215 | */ |
956db3ca | 1216 | int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk) |
bbcb81d0 PM |
1217 | { |
1218 | int retval = 0; | |
1219 | struct cgroup_subsys *ss; | |
bd89aabc | 1220 | struct cgroup *oldcgrp; |
817929ec PM |
1221 | struct css_set *cg = tsk->cgroups; |
1222 | struct css_set *newcg; | |
bd89aabc | 1223 | struct cgroupfs_root *root = cgrp->root; |
bbcb81d0 PM |
1224 | int subsys_id; |
1225 | ||
bd89aabc | 1226 | get_first_subsys(cgrp, NULL, &subsys_id); |
bbcb81d0 PM |
1227 | |
1228 | /* Nothing to do if the task is already in that cgroup */ | |
bd89aabc PM |
1229 | oldcgrp = task_cgroup(tsk, subsys_id); |
1230 | if (cgrp == oldcgrp) | |
bbcb81d0 PM |
1231 | return 0; |
1232 | ||
1233 | for_each_subsys(root, ss) { | |
1234 | if (ss->can_attach) { | |
bd89aabc | 1235 | retval = ss->can_attach(ss, cgrp, tsk); |
e18f6318 | 1236 | if (retval) |
bbcb81d0 | 1237 | return retval; |
bbcb81d0 PM |
1238 | } |
1239 | } | |
1240 | ||
817929ec PM |
1241 | /* |
1242 | * Locate or allocate a new css_set for this task, | |
1243 | * based on its final set of cgroups | |
1244 | */ | |
bd89aabc | 1245 | newcg = find_css_set(cg, cgrp); |
e18f6318 | 1246 | if (!newcg) |
817929ec | 1247 | return -ENOMEM; |
817929ec | 1248 | |
bbcb81d0 PM |
1249 | task_lock(tsk); |
1250 | if (tsk->flags & PF_EXITING) { | |
1251 | task_unlock(tsk); | |
817929ec | 1252 | put_css_set(newcg); |
bbcb81d0 PM |
1253 | return -ESRCH; |
1254 | } | |
817929ec | 1255 | rcu_assign_pointer(tsk->cgroups, newcg); |
bbcb81d0 PM |
1256 | task_unlock(tsk); |
1257 | ||
817929ec PM |
1258 | /* Update the css_set linked lists if we're using them */ |
1259 | write_lock(&css_set_lock); | |
1260 | if (!list_empty(&tsk->cg_list)) { | |
1261 | list_del(&tsk->cg_list); | |
1262 | list_add(&tsk->cg_list, &newcg->tasks); | |
1263 | } | |
1264 | write_unlock(&css_set_lock); | |
1265 | ||
bbcb81d0 | 1266 | for_each_subsys(root, ss) { |
e18f6318 | 1267 | if (ss->attach) |
bd89aabc | 1268 | ss->attach(ss, cgrp, oldcgrp, tsk); |
bbcb81d0 | 1269 | } |
bd89aabc | 1270 | set_bit(CGRP_RELEASABLE, &oldcgrp->flags); |
bbcb81d0 | 1271 | synchronize_rcu(); |
817929ec | 1272 | put_css_set(cg); |
bbcb81d0 PM |
1273 | return 0; |
1274 | } | |
1275 | ||
1276 | /* | |
af351026 PM |
1277 | * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex |
1278 | * held. May take task_lock of task | |
bbcb81d0 | 1279 | */ |
af351026 | 1280 | static int attach_task_by_pid(struct cgroup *cgrp, u64 pid) |
bbcb81d0 | 1281 | { |
bbcb81d0 | 1282 | struct task_struct *tsk; |
c69e8d9c | 1283 | const struct cred *cred = current_cred(), *tcred; |
bbcb81d0 PM |
1284 | int ret; |
1285 | ||
bbcb81d0 PM |
1286 | if (pid) { |
1287 | rcu_read_lock(); | |
73507f33 | 1288 | tsk = find_task_by_vpid(pid); |
bbcb81d0 PM |
1289 | if (!tsk || tsk->flags & PF_EXITING) { |
1290 | rcu_read_unlock(); | |
1291 | return -ESRCH; | |
1292 | } | |
bbcb81d0 | 1293 | |
c69e8d9c DH |
1294 | tcred = __task_cred(tsk); |
1295 | if (cred->euid && | |
1296 | cred->euid != tcred->uid && | |
1297 | cred->euid != tcred->suid) { | |
1298 | rcu_read_unlock(); | |
bbcb81d0 PM |
1299 | return -EACCES; |
1300 | } | |
c69e8d9c DH |
1301 | get_task_struct(tsk); |
1302 | rcu_read_unlock(); | |
bbcb81d0 PM |
1303 | } else { |
1304 | tsk = current; | |
1305 | get_task_struct(tsk); | |
1306 | } | |
1307 | ||
956db3ca | 1308 | ret = cgroup_attach_task(cgrp, tsk); |
bbcb81d0 PM |
1309 | put_task_struct(tsk); |
1310 | return ret; | |
1311 | } | |
1312 | ||
af351026 PM |
1313 | static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid) |
1314 | { | |
1315 | int ret; | |
1316 | if (!cgroup_lock_live_group(cgrp)) | |
1317 | return -ENODEV; | |
1318 | ret = attach_task_by_pid(cgrp, pid); | |
1319 | cgroup_unlock(); | |
1320 | return ret; | |
1321 | } | |
1322 | ||
ddbcc7e8 | 1323 | /* The various types of files and directories in a cgroup file system */ |
ddbcc7e8 PM |
1324 | enum cgroup_filetype { |
1325 | FILE_ROOT, | |
1326 | FILE_DIR, | |
1327 | FILE_TASKLIST, | |
81a6a5cd | 1328 | FILE_NOTIFY_ON_RELEASE, |
81a6a5cd | 1329 | FILE_RELEASE_AGENT, |
ddbcc7e8 PM |
1330 | }; |
1331 | ||
e788e066 PM |
1332 | /** |
1333 | * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive. | |
1334 | * @cgrp: the cgroup to be checked for liveness | |
1335 | * | |
84eea842 PM |
1336 | * On success, returns true; the lock should be later released with |
1337 | * cgroup_unlock(). On failure returns false with no lock held. | |
e788e066 | 1338 | */ |
84eea842 | 1339 | bool cgroup_lock_live_group(struct cgroup *cgrp) |
e788e066 PM |
1340 | { |
1341 | mutex_lock(&cgroup_mutex); | |
1342 | if (cgroup_is_removed(cgrp)) { | |
1343 | mutex_unlock(&cgroup_mutex); | |
1344 | return false; | |
1345 | } | |
1346 | return true; | |
1347 | } | |
1348 | ||
1349 | static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft, | |
1350 | const char *buffer) | |
1351 | { | |
1352 | BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX); | |
1353 | if (!cgroup_lock_live_group(cgrp)) | |
1354 | return -ENODEV; | |
1355 | strcpy(cgrp->root->release_agent_path, buffer); | |
84eea842 | 1356 | cgroup_unlock(); |
e788e066 PM |
1357 | return 0; |
1358 | } | |
1359 | ||
1360 | static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft, | |
1361 | struct seq_file *seq) | |
1362 | { | |
1363 | if (!cgroup_lock_live_group(cgrp)) | |
1364 | return -ENODEV; | |
1365 | seq_puts(seq, cgrp->root->release_agent_path); | |
1366 | seq_putc(seq, '\n'); | |
84eea842 | 1367 | cgroup_unlock(); |
e788e066 PM |
1368 | return 0; |
1369 | } | |
1370 | ||
84eea842 PM |
1371 | /* A buffer size big enough for numbers or short strings */ |
1372 | #define CGROUP_LOCAL_BUFFER_SIZE 64 | |
1373 | ||
e73d2c61 | 1374 | static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft, |
f4c753b7 PM |
1375 | struct file *file, |
1376 | const char __user *userbuf, | |
1377 | size_t nbytes, loff_t *unused_ppos) | |
355e0c48 | 1378 | { |
84eea842 | 1379 | char buffer[CGROUP_LOCAL_BUFFER_SIZE]; |
355e0c48 | 1380 | int retval = 0; |
355e0c48 PM |
1381 | char *end; |
1382 | ||
1383 | if (!nbytes) | |
1384 | return -EINVAL; | |
1385 | if (nbytes >= sizeof(buffer)) | |
1386 | return -E2BIG; | |
1387 | if (copy_from_user(buffer, userbuf, nbytes)) | |
1388 | return -EFAULT; | |
1389 | ||
1390 | buffer[nbytes] = 0; /* nul-terminate */ | |
b7269dfc | 1391 | strstrip(buffer); |
e73d2c61 PM |
1392 | if (cft->write_u64) { |
1393 | u64 val = simple_strtoull(buffer, &end, 0); | |
1394 | if (*end) | |
1395 | return -EINVAL; | |
1396 | retval = cft->write_u64(cgrp, cft, val); | |
1397 | } else { | |
1398 | s64 val = simple_strtoll(buffer, &end, 0); | |
1399 | if (*end) | |
1400 | return -EINVAL; | |
1401 | retval = cft->write_s64(cgrp, cft, val); | |
1402 | } | |
355e0c48 PM |
1403 | if (!retval) |
1404 | retval = nbytes; | |
1405 | return retval; | |
1406 | } | |
1407 | ||
db3b1497 PM |
1408 | static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft, |
1409 | struct file *file, | |
1410 | const char __user *userbuf, | |
1411 | size_t nbytes, loff_t *unused_ppos) | |
1412 | { | |
84eea842 | 1413 | char local_buffer[CGROUP_LOCAL_BUFFER_SIZE]; |
db3b1497 PM |
1414 | int retval = 0; |
1415 | size_t max_bytes = cft->max_write_len; | |
1416 | char *buffer = local_buffer; | |
1417 | ||
1418 | if (!max_bytes) | |
1419 | max_bytes = sizeof(local_buffer) - 1; | |
1420 | if (nbytes >= max_bytes) | |
1421 | return -E2BIG; | |
1422 | /* Allocate a dynamic buffer if we need one */ | |
1423 | if (nbytes >= sizeof(local_buffer)) { | |
1424 | buffer = kmalloc(nbytes + 1, GFP_KERNEL); | |
1425 | if (buffer == NULL) | |
1426 | return -ENOMEM; | |
1427 | } | |
5a3eb9f6 LZ |
1428 | if (nbytes && copy_from_user(buffer, userbuf, nbytes)) { |
1429 | retval = -EFAULT; | |
1430 | goto out; | |
1431 | } | |
db3b1497 PM |
1432 | |
1433 | buffer[nbytes] = 0; /* nul-terminate */ | |
1434 | strstrip(buffer); | |
1435 | retval = cft->write_string(cgrp, cft, buffer); | |
1436 | if (!retval) | |
1437 | retval = nbytes; | |
5a3eb9f6 | 1438 | out: |
db3b1497 PM |
1439 | if (buffer != local_buffer) |
1440 | kfree(buffer); | |
1441 | return retval; | |
1442 | } | |
1443 | ||
ddbcc7e8 PM |
1444 | static ssize_t cgroup_file_write(struct file *file, const char __user *buf, |
1445 | size_t nbytes, loff_t *ppos) | |
1446 | { | |
1447 | struct cftype *cft = __d_cft(file->f_dentry); | |
bd89aabc | 1448 | struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent); |
ddbcc7e8 | 1449 | |
8dc4f3e1 | 1450 | if (!cft || cgroup_is_removed(cgrp)) |
ddbcc7e8 | 1451 | return -ENODEV; |
355e0c48 | 1452 | if (cft->write) |
bd89aabc | 1453 | return cft->write(cgrp, cft, file, buf, nbytes, ppos); |
e73d2c61 PM |
1454 | if (cft->write_u64 || cft->write_s64) |
1455 | return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos); | |
db3b1497 PM |
1456 | if (cft->write_string) |
1457 | return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos); | |
d447ea2f PE |
1458 | if (cft->trigger) { |
1459 | int ret = cft->trigger(cgrp, (unsigned int)cft->private); | |
1460 | return ret ? ret : nbytes; | |
1461 | } | |
355e0c48 | 1462 | return -EINVAL; |
ddbcc7e8 PM |
1463 | } |
1464 | ||
f4c753b7 PM |
1465 | static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft, |
1466 | struct file *file, | |
1467 | char __user *buf, size_t nbytes, | |
1468 | loff_t *ppos) | |
ddbcc7e8 | 1469 | { |
84eea842 | 1470 | char tmp[CGROUP_LOCAL_BUFFER_SIZE]; |
f4c753b7 | 1471 | u64 val = cft->read_u64(cgrp, cft); |
ddbcc7e8 PM |
1472 | int len = sprintf(tmp, "%llu\n", (unsigned long long) val); |
1473 | ||
1474 | return simple_read_from_buffer(buf, nbytes, ppos, tmp, len); | |
1475 | } | |
1476 | ||
e73d2c61 PM |
1477 | static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft, |
1478 | struct file *file, | |
1479 | char __user *buf, size_t nbytes, | |
1480 | loff_t *ppos) | |
1481 | { | |
84eea842 | 1482 | char tmp[CGROUP_LOCAL_BUFFER_SIZE]; |
e73d2c61 PM |
1483 | s64 val = cft->read_s64(cgrp, cft); |
1484 | int len = sprintf(tmp, "%lld\n", (long long) val); | |
1485 | ||
1486 | return simple_read_from_buffer(buf, nbytes, ppos, tmp, len); | |
1487 | } | |
1488 | ||
ddbcc7e8 PM |
1489 | static ssize_t cgroup_file_read(struct file *file, char __user *buf, |
1490 | size_t nbytes, loff_t *ppos) | |
1491 | { | |
1492 | struct cftype *cft = __d_cft(file->f_dentry); | |
bd89aabc | 1493 | struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent); |
ddbcc7e8 | 1494 | |
8dc4f3e1 | 1495 | if (!cft || cgroup_is_removed(cgrp)) |
ddbcc7e8 PM |
1496 | return -ENODEV; |
1497 | ||
1498 | if (cft->read) | |
bd89aabc | 1499 | return cft->read(cgrp, cft, file, buf, nbytes, ppos); |
f4c753b7 PM |
1500 | if (cft->read_u64) |
1501 | return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos); | |
e73d2c61 PM |
1502 | if (cft->read_s64) |
1503 | return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos); | |
ddbcc7e8 PM |
1504 | return -EINVAL; |
1505 | } | |
1506 | ||
91796569 PM |
1507 | /* |
1508 | * seqfile ops/methods for returning structured data. Currently just | |
1509 | * supports string->u64 maps, but can be extended in future. | |
1510 | */ | |
1511 | ||
1512 | struct cgroup_seqfile_state { | |
1513 | struct cftype *cft; | |
1514 | struct cgroup *cgroup; | |
1515 | }; | |
1516 | ||
1517 | static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value) | |
1518 | { | |
1519 | struct seq_file *sf = cb->state; | |
1520 | return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value); | |
1521 | } | |
1522 | ||
1523 | static int cgroup_seqfile_show(struct seq_file *m, void *arg) | |
1524 | { | |
1525 | struct cgroup_seqfile_state *state = m->private; | |
1526 | struct cftype *cft = state->cft; | |
29486df3 SH |
1527 | if (cft->read_map) { |
1528 | struct cgroup_map_cb cb = { | |
1529 | .fill = cgroup_map_add, | |
1530 | .state = m, | |
1531 | }; | |
1532 | return cft->read_map(state->cgroup, cft, &cb); | |
1533 | } | |
1534 | return cft->read_seq_string(state->cgroup, cft, m); | |
91796569 PM |
1535 | } |
1536 | ||
96930a63 | 1537 | static int cgroup_seqfile_release(struct inode *inode, struct file *file) |
91796569 PM |
1538 | { |
1539 | struct seq_file *seq = file->private_data; | |
1540 | kfree(seq->private); | |
1541 | return single_release(inode, file); | |
1542 | } | |
1543 | ||
1544 | static struct file_operations cgroup_seqfile_operations = { | |
1545 | .read = seq_read, | |
e788e066 | 1546 | .write = cgroup_file_write, |
91796569 PM |
1547 | .llseek = seq_lseek, |
1548 | .release = cgroup_seqfile_release, | |
1549 | }; | |
1550 | ||
ddbcc7e8 PM |
1551 | static int cgroup_file_open(struct inode *inode, struct file *file) |
1552 | { | |
1553 | int err; | |
1554 | struct cftype *cft; | |
1555 | ||
1556 | err = generic_file_open(inode, file); | |
1557 | if (err) | |
1558 | return err; | |
1559 | ||
1560 | cft = __d_cft(file->f_dentry); | |
1561 | if (!cft) | |
1562 | return -ENODEV; | |
29486df3 | 1563 | if (cft->read_map || cft->read_seq_string) { |
91796569 PM |
1564 | struct cgroup_seqfile_state *state = |
1565 | kzalloc(sizeof(*state), GFP_USER); | |
1566 | if (!state) | |
1567 | return -ENOMEM; | |
1568 | state->cft = cft; | |
1569 | state->cgroup = __d_cgrp(file->f_dentry->d_parent); | |
1570 | file->f_op = &cgroup_seqfile_operations; | |
1571 | err = single_open(file, cgroup_seqfile_show, state); | |
1572 | if (err < 0) | |
1573 | kfree(state); | |
1574 | } else if (cft->open) | |
ddbcc7e8 PM |
1575 | err = cft->open(inode, file); |
1576 | else | |
1577 | err = 0; | |
1578 | ||
1579 | return err; | |
1580 | } | |
1581 | ||
1582 | static int cgroup_file_release(struct inode *inode, struct file *file) | |
1583 | { | |
1584 | struct cftype *cft = __d_cft(file->f_dentry); | |
1585 | if (cft->release) | |
1586 | return cft->release(inode, file); | |
1587 | return 0; | |
1588 | } | |
1589 | ||
1590 | /* | |
1591 | * cgroup_rename - Only allow simple rename of directories in place. | |
1592 | */ | |
1593 | static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry, | |
1594 | struct inode *new_dir, struct dentry *new_dentry) | |
1595 | { | |
1596 | if (!S_ISDIR(old_dentry->d_inode->i_mode)) | |
1597 | return -ENOTDIR; | |
1598 | if (new_dentry->d_inode) | |
1599 | return -EEXIST; | |
1600 | if (old_dir != new_dir) | |
1601 | return -EIO; | |
1602 | return simple_rename(old_dir, old_dentry, new_dir, new_dentry); | |
1603 | } | |
1604 | ||
1605 | static struct file_operations cgroup_file_operations = { | |
1606 | .read = cgroup_file_read, | |
1607 | .write = cgroup_file_write, | |
1608 | .llseek = generic_file_llseek, | |
1609 | .open = cgroup_file_open, | |
1610 | .release = cgroup_file_release, | |
1611 | }; | |
1612 | ||
1613 | static struct inode_operations cgroup_dir_inode_operations = { | |
1614 | .lookup = simple_lookup, | |
1615 | .mkdir = cgroup_mkdir, | |
1616 | .rmdir = cgroup_rmdir, | |
1617 | .rename = cgroup_rename, | |
1618 | }; | |
1619 | ||
1620 | static int cgroup_create_file(struct dentry *dentry, int mode, | |
1621 | struct super_block *sb) | |
1622 | { | |
1623 | static struct dentry_operations cgroup_dops = { | |
1624 | .d_iput = cgroup_diput, | |
1625 | }; | |
1626 | ||
1627 | struct inode *inode; | |
1628 | ||
1629 | if (!dentry) | |
1630 | return -ENOENT; | |
1631 | if (dentry->d_inode) | |
1632 | return -EEXIST; | |
1633 | ||
1634 | inode = cgroup_new_inode(mode, sb); | |
1635 | if (!inode) | |
1636 | return -ENOMEM; | |
1637 | ||
1638 | if (S_ISDIR(mode)) { | |
1639 | inode->i_op = &cgroup_dir_inode_operations; | |
1640 | inode->i_fop = &simple_dir_operations; | |
1641 | ||
1642 | /* start off with i_nlink == 2 (for "." entry) */ | |
1643 | inc_nlink(inode); | |
1644 | ||
1645 | /* start with the directory inode held, so that we can | |
1646 | * populate it without racing with another mkdir */ | |
817929ec | 1647 | mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD); |
ddbcc7e8 PM |
1648 | } else if (S_ISREG(mode)) { |
1649 | inode->i_size = 0; | |
1650 | inode->i_fop = &cgroup_file_operations; | |
1651 | } | |
1652 | dentry->d_op = &cgroup_dops; | |
1653 | d_instantiate(dentry, inode); | |
1654 | dget(dentry); /* Extra count - pin the dentry in core */ | |
1655 | return 0; | |
1656 | } | |
1657 | ||
1658 | /* | |
a043e3b2 LZ |
1659 | * cgroup_create_dir - create a directory for an object. |
1660 | * @cgrp: the cgroup we create the directory for. It must have a valid | |
1661 | * ->parent field. And we are going to fill its ->dentry field. | |
1662 | * @dentry: dentry of the new cgroup | |
1663 | * @mode: mode to set on new directory. | |
ddbcc7e8 | 1664 | */ |
bd89aabc | 1665 | static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry, |
ddbcc7e8 PM |
1666 | int mode) |
1667 | { | |
1668 | struct dentry *parent; | |
1669 | int error = 0; | |
1670 | ||
bd89aabc PM |
1671 | parent = cgrp->parent->dentry; |
1672 | error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb); | |
ddbcc7e8 | 1673 | if (!error) { |
bd89aabc | 1674 | dentry->d_fsdata = cgrp; |
ddbcc7e8 | 1675 | inc_nlink(parent->d_inode); |
bd89aabc | 1676 | cgrp->dentry = dentry; |
ddbcc7e8 PM |
1677 | dget(dentry); |
1678 | } | |
1679 | dput(dentry); | |
1680 | ||
1681 | return error; | |
1682 | } | |
1683 | ||
bd89aabc | 1684 | int cgroup_add_file(struct cgroup *cgrp, |
ddbcc7e8 PM |
1685 | struct cgroup_subsys *subsys, |
1686 | const struct cftype *cft) | |
1687 | { | |
bd89aabc | 1688 | struct dentry *dir = cgrp->dentry; |
ddbcc7e8 PM |
1689 | struct dentry *dentry; |
1690 | int error; | |
1691 | ||
1692 | char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 }; | |
bd89aabc | 1693 | if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) { |
ddbcc7e8 PM |
1694 | strcpy(name, subsys->name); |
1695 | strcat(name, "."); | |
1696 | } | |
1697 | strcat(name, cft->name); | |
1698 | BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex)); | |
1699 | dentry = lookup_one_len(name, dir, strlen(name)); | |
1700 | if (!IS_ERR(dentry)) { | |
1701 | error = cgroup_create_file(dentry, 0644 | S_IFREG, | |
bd89aabc | 1702 | cgrp->root->sb); |
ddbcc7e8 PM |
1703 | if (!error) |
1704 | dentry->d_fsdata = (void *)cft; | |
1705 | dput(dentry); | |
1706 | } else | |
1707 | error = PTR_ERR(dentry); | |
1708 | return error; | |
1709 | } | |
1710 | ||
bd89aabc | 1711 | int cgroup_add_files(struct cgroup *cgrp, |
ddbcc7e8 PM |
1712 | struct cgroup_subsys *subsys, |
1713 | const struct cftype cft[], | |
1714 | int count) | |
1715 | { | |
1716 | int i, err; | |
1717 | for (i = 0; i < count; i++) { | |
bd89aabc | 1718 | err = cgroup_add_file(cgrp, subsys, &cft[i]); |
ddbcc7e8 PM |
1719 | if (err) |
1720 | return err; | |
1721 | } | |
1722 | return 0; | |
1723 | } | |
1724 | ||
a043e3b2 LZ |
1725 | /** |
1726 | * cgroup_task_count - count the number of tasks in a cgroup. | |
1727 | * @cgrp: the cgroup in question | |
1728 | * | |
1729 | * Return the number of tasks in the cgroup. | |
1730 | */ | |
bd89aabc | 1731 | int cgroup_task_count(const struct cgroup *cgrp) |
bbcb81d0 PM |
1732 | { |
1733 | int count = 0; | |
71cbb949 | 1734 | struct cg_cgroup_link *link; |
817929ec PM |
1735 | |
1736 | read_lock(&css_set_lock); | |
71cbb949 | 1737 | list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) { |
146aa1bd | 1738 | count += atomic_read(&link->cg->refcount); |
817929ec PM |
1739 | } |
1740 | read_unlock(&css_set_lock); | |
bbcb81d0 PM |
1741 | return count; |
1742 | } | |
1743 | ||
817929ec PM |
1744 | /* |
1745 | * Advance a list_head iterator. The iterator should be positioned at | |
1746 | * the start of a css_set | |
1747 | */ | |
bd89aabc | 1748 | static void cgroup_advance_iter(struct cgroup *cgrp, |
817929ec PM |
1749 | struct cgroup_iter *it) |
1750 | { | |
1751 | struct list_head *l = it->cg_link; | |
1752 | struct cg_cgroup_link *link; | |
1753 | struct css_set *cg; | |
1754 | ||
1755 | /* Advance to the next non-empty css_set */ | |
1756 | do { | |
1757 | l = l->next; | |
bd89aabc | 1758 | if (l == &cgrp->css_sets) { |
817929ec PM |
1759 | it->cg_link = NULL; |
1760 | return; | |
1761 | } | |
bd89aabc | 1762 | link = list_entry(l, struct cg_cgroup_link, cgrp_link_list); |
817929ec PM |
1763 | cg = link->cg; |
1764 | } while (list_empty(&cg->tasks)); | |
1765 | it->cg_link = l; | |
1766 | it->task = cg->tasks.next; | |
1767 | } | |
1768 | ||
31a7df01 CW |
1769 | /* |
1770 | * To reduce the fork() overhead for systems that are not actually | |
1771 | * using their cgroups capability, we don't maintain the lists running | |
1772 | * through each css_set to its tasks until we see the list actually | |
1773 | * used - in other words after the first call to cgroup_iter_start(). | |
1774 | * | |
1775 | * The tasklist_lock is not held here, as do_each_thread() and | |
1776 | * while_each_thread() are protected by RCU. | |
1777 | */ | |
3df91fe3 | 1778 | static void cgroup_enable_task_cg_lists(void) |
31a7df01 CW |
1779 | { |
1780 | struct task_struct *p, *g; | |
1781 | write_lock(&css_set_lock); | |
1782 | use_task_css_set_links = 1; | |
1783 | do_each_thread(g, p) { | |
1784 | task_lock(p); | |
0e04388f LZ |
1785 | /* |
1786 | * We should check if the process is exiting, otherwise | |
1787 | * it will race with cgroup_exit() in that the list | |
1788 | * entry won't be deleted though the process has exited. | |
1789 | */ | |
1790 | if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list)) | |
31a7df01 CW |
1791 | list_add(&p->cg_list, &p->cgroups->tasks); |
1792 | task_unlock(p); | |
1793 | } while_each_thread(g, p); | |
1794 | write_unlock(&css_set_lock); | |
1795 | } | |
1796 | ||
bd89aabc | 1797 | void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it) |
817929ec PM |
1798 | { |
1799 | /* | |
1800 | * The first time anyone tries to iterate across a cgroup, | |
1801 | * we need to enable the list linking each css_set to its | |
1802 | * tasks, and fix up all existing tasks. | |
1803 | */ | |
31a7df01 CW |
1804 | if (!use_task_css_set_links) |
1805 | cgroup_enable_task_cg_lists(); | |
1806 | ||
817929ec | 1807 | read_lock(&css_set_lock); |
bd89aabc PM |
1808 | it->cg_link = &cgrp->css_sets; |
1809 | cgroup_advance_iter(cgrp, it); | |
817929ec PM |
1810 | } |
1811 | ||
bd89aabc | 1812 | struct task_struct *cgroup_iter_next(struct cgroup *cgrp, |
817929ec PM |
1813 | struct cgroup_iter *it) |
1814 | { | |
1815 | struct task_struct *res; | |
1816 | struct list_head *l = it->task; | |
1817 | ||
1818 | /* If the iterator cg is NULL, we have no tasks */ | |
1819 | if (!it->cg_link) | |
1820 | return NULL; | |
1821 | res = list_entry(l, struct task_struct, cg_list); | |
1822 | /* Advance iterator to find next entry */ | |
1823 | l = l->next; | |
1824 | if (l == &res->cgroups->tasks) { | |
1825 | /* We reached the end of this task list - move on to | |
1826 | * the next cg_cgroup_link */ | |
bd89aabc | 1827 | cgroup_advance_iter(cgrp, it); |
817929ec PM |
1828 | } else { |
1829 | it->task = l; | |
1830 | } | |
1831 | return res; | |
1832 | } | |
1833 | ||
bd89aabc | 1834 | void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it) |
817929ec PM |
1835 | { |
1836 | read_unlock(&css_set_lock); | |
1837 | } | |
1838 | ||
31a7df01 CW |
1839 | static inline int started_after_time(struct task_struct *t1, |
1840 | struct timespec *time, | |
1841 | struct task_struct *t2) | |
1842 | { | |
1843 | int start_diff = timespec_compare(&t1->start_time, time); | |
1844 | if (start_diff > 0) { | |
1845 | return 1; | |
1846 | } else if (start_diff < 0) { | |
1847 | return 0; | |
1848 | } else { | |
1849 | /* | |
1850 | * Arbitrarily, if two processes started at the same | |
1851 | * time, we'll say that the lower pointer value | |
1852 | * started first. Note that t2 may have exited by now | |
1853 | * so this may not be a valid pointer any longer, but | |
1854 | * that's fine - it still serves to distinguish | |
1855 | * between two tasks started (effectively) simultaneously. | |
1856 | */ | |
1857 | return t1 > t2; | |
1858 | } | |
1859 | } | |
1860 | ||
1861 | /* | |
1862 | * This function is a callback from heap_insert() and is used to order | |
1863 | * the heap. | |
1864 | * In this case we order the heap in descending task start time. | |
1865 | */ | |
1866 | static inline int started_after(void *p1, void *p2) | |
1867 | { | |
1868 | struct task_struct *t1 = p1; | |
1869 | struct task_struct *t2 = p2; | |
1870 | return started_after_time(t1, &t2->start_time, t2); | |
1871 | } | |
1872 | ||
1873 | /** | |
1874 | * cgroup_scan_tasks - iterate though all the tasks in a cgroup | |
1875 | * @scan: struct cgroup_scanner containing arguments for the scan | |
1876 | * | |
1877 | * Arguments include pointers to callback functions test_task() and | |
1878 | * process_task(). | |
1879 | * Iterate through all the tasks in a cgroup, calling test_task() for each, | |
1880 | * and if it returns true, call process_task() for it also. | |
1881 | * The test_task pointer may be NULL, meaning always true (select all tasks). | |
1882 | * Effectively duplicates cgroup_iter_{start,next,end}() | |
1883 | * but does not lock css_set_lock for the call to process_task(). | |
1884 | * The struct cgroup_scanner may be embedded in any structure of the caller's | |
1885 | * creation. | |
1886 | * It is guaranteed that process_task() will act on every task that | |
1887 | * is a member of the cgroup for the duration of this call. This | |
1888 | * function may or may not call process_task() for tasks that exit | |
1889 | * or move to a different cgroup during the call, or are forked or | |
1890 | * move into the cgroup during the call. | |
1891 | * | |
1892 | * Note that test_task() may be called with locks held, and may in some | |
1893 | * situations be called multiple times for the same task, so it should | |
1894 | * be cheap. | |
1895 | * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been | |
1896 | * pre-allocated and will be used for heap operations (and its "gt" member will | |
1897 | * be overwritten), else a temporary heap will be used (allocation of which | |
1898 | * may cause this function to fail). | |
1899 | */ | |
1900 | int cgroup_scan_tasks(struct cgroup_scanner *scan) | |
1901 | { | |
1902 | int retval, i; | |
1903 | struct cgroup_iter it; | |
1904 | struct task_struct *p, *dropped; | |
1905 | /* Never dereference latest_task, since it's not refcounted */ | |
1906 | struct task_struct *latest_task = NULL; | |
1907 | struct ptr_heap tmp_heap; | |
1908 | struct ptr_heap *heap; | |
1909 | struct timespec latest_time = { 0, 0 }; | |
1910 | ||
1911 | if (scan->heap) { | |
1912 | /* The caller supplied our heap and pre-allocated its memory */ | |
1913 | heap = scan->heap; | |
1914 | heap->gt = &started_after; | |
1915 | } else { | |
1916 | /* We need to allocate our own heap memory */ | |
1917 | heap = &tmp_heap; | |
1918 | retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after); | |
1919 | if (retval) | |
1920 | /* cannot allocate the heap */ | |
1921 | return retval; | |
1922 | } | |
1923 | ||
1924 | again: | |
1925 | /* | |
1926 | * Scan tasks in the cgroup, using the scanner's "test_task" callback | |
1927 | * to determine which are of interest, and using the scanner's | |
1928 | * "process_task" callback to process any of them that need an update. | |
1929 | * Since we don't want to hold any locks during the task updates, | |
1930 | * gather tasks to be processed in a heap structure. | |
1931 | * The heap is sorted by descending task start time. | |
1932 | * If the statically-sized heap fills up, we overflow tasks that | |
1933 | * started later, and in future iterations only consider tasks that | |
1934 | * started after the latest task in the previous pass. This | |
1935 | * guarantees forward progress and that we don't miss any tasks. | |
1936 | */ | |
1937 | heap->size = 0; | |
1938 | cgroup_iter_start(scan->cg, &it); | |
1939 | while ((p = cgroup_iter_next(scan->cg, &it))) { | |
1940 | /* | |
1941 | * Only affect tasks that qualify per the caller's callback, | |
1942 | * if he provided one | |
1943 | */ | |
1944 | if (scan->test_task && !scan->test_task(p, scan)) | |
1945 | continue; | |
1946 | /* | |
1947 | * Only process tasks that started after the last task | |
1948 | * we processed | |
1949 | */ | |
1950 | if (!started_after_time(p, &latest_time, latest_task)) | |
1951 | continue; | |
1952 | dropped = heap_insert(heap, p); | |
1953 | if (dropped == NULL) { | |
1954 | /* | |
1955 | * The new task was inserted; the heap wasn't | |
1956 | * previously full | |
1957 | */ | |
1958 | get_task_struct(p); | |
1959 | } else if (dropped != p) { | |
1960 | /* | |
1961 | * The new task was inserted, and pushed out a | |
1962 | * different task | |
1963 | */ | |
1964 | get_task_struct(p); | |
1965 | put_task_struct(dropped); | |
1966 | } | |
1967 | /* | |
1968 | * Else the new task was newer than anything already in | |
1969 | * the heap and wasn't inserted | |
1970 | */ | |
1971 | } | |
1972 | cgroup_iter_end(scan->cg, &it); | |
1973 | ||
1974 | if (heap->size) { | |
1975 | for (i = 0; i < heap->size; i++) { | |
4fe91d51 | 1976 | struct task_struct *q = heap->ptrs[i]; |
31a7df01 | 1977 | if (i == 0) { |
4fe91d51 PJ |
1978 | latest_time = q->start_time; |
1979 | latest_task = q; | |
31a7df01 CW |
1980 | } |
1981 | /* Process the task per the caller's callback */ | |
4fe91d51 PJ |
1982 | scan->process_task(q, scan); |
1983 | put_task_struct(q); | |
31a7df01 CW |
1984 | } |
1985 | /* | |
1986 | * If we had to process any tasks at all, scan again | |
1987 | * in case some of them were in the middle of forking | |
1988 | * children that didn't get processed. | |
1989 | * Not the most efficient way to do it, but it avoids | |
1990 | * having to take callback_mutex in the fork path | |
1991 | */ | |
1992 | goto again; | |
1993 | } | |
1994 | if (heap == &tmp_heap) | |
1995 | heap_free(&tmp_heap); | |
1996 | return 0; | |
1997 | } | |
1998 | ||
bbcb81d0 PM |
1999 | /* |
2000 | * Stuff for reading the 'tasks' file. | |
2001 | * | |
2002 | * Reading this file can return large amounts of data if a cgroup has | |
2003 | * *lots* of attached tasks. So it may need several calls to read(), | |
2004 | * but we cannot guarantee that the information we produce is correct | |
2005 | * unless we produce it entirely atomically. | |
2006 | * | |
bbcb81d0 | 2007 | */ |
bbcb81d0 PM |
2008 | |
2009 | /* | |
2010 | * Load into 'pidarray' up to 'npids' of the tasks using cgroup | |
bd89aabc | 2011 | * 'cgrp'. Return actual number of pids loaded. No need to |
bbcb81d0 PM |
2012 | * task_lock(p) when reading out p->cgroup, since we're in an RCU |
2013 | * read section, so the css_set can't go away, and is | |
2014 | * immutable after creation. | |
2015 | */ | |
bd89aabc | 2016 | static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp) |
bbcb81d0 PM |
2017 | { |
2018 | int n = 0; | |
817929ec PM |
2019 | struct cgroup_iter it; |
2020 | struct task_struct *tsk; | |
bd89aabc PM |
2021 | cgroup_iter_start(cgrp, &it); |
2022 | while ((tsk = cgroup_iter_next(cgrp, &it))) { | |
817929ec PM |
2023 | if (unlikely(n == npids)) |
2024 | break; | |
73507f33 | 2025 | pidarray[n++] = task_pid_vnr(tsk); |
817929ec | 2026 | } |
bd89aabc | 2027 | cgroup_iter_end(cgrp, &it); |
bbcb81d0 PM |
2028 | return n; |
2029 | } | |
2030 | ||
846c7bb0 | 2031 | /** |
a043e3b2 | 2032 | * cgroupstats_build - build and fill cgroupstats |
846c7bb0 BS |
2033 | * @stats: cgroupstats to fill information into |
2034 | * @dentry: A dentry entry belonging to the cgroup for which stats have | |
2035 | * been requested. | |
a043e3b2 LZ |
2036 | * |
2037 | * Build and fill cgroupstats so that taskstats can export it to user | |
2038 | * space. | |
846c7bb0 BS |
2039 | */ |
2040 | int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry) | |
2041 | { | |
2042 | int ret = -EINVAL; | |
bd89aabc | 2043 | struct cgroup *cgrp; |
846c7bb0 BS |
2044 | struct cgroup_iter it; |
2045 | struct task_struct *tsk; | |
33d283be | 2046 | |
846c7bb0 | 2047 | /* |
33d283be LZ |
2048 | * Validate dentry by checking the superblock operations, |
2049 | * and make sure it's a directory. | |
846c7bb0 | 2050 | */ |
33d283be LZ |
2051 | if (dentry->d_sb->s_op != &cgroup_ops || |
2052 | !S_ISDIR(dentry->d_inode->i_mode)) | |
846c7bb0 BS |
2053 | goto err; |
2054 | ||
2055 | ret = 0; | |
bd89aabc | 2056 | cgrp = dentry->d_fsdata; |
846c7bb0 BS |
2057 | rcu_read_lock(); |
2058 | ||
bd89aabc PM |
2059 | cgroup_iter_start(cgrp, &it); |
2060 | while ((tsk = cgroup_iter_next(cgrp, &it))) { | |
846c7bb0 BS |
2061 | switch (tsk->state) { |
2062 | case TASK_RUNNING: | |
2063 | stats->nr_running++; | |
2064 | break; | |
2065 | case TASK_INTERRUPTIBLE: | |
2066 | stats->nr_sleeping++; | |
2067 | break; | |
2068 | case TASK_UNINTERRUPTIBLE: | |
2069 | stats->nr_uninterruptible++; | |
2070 | break; | |
2071 | case TASK_STOPPED: | |
2072 | stats->nr_stopped++; | |
2073 | break; | |
2074 | default: | |
2075 | if (delayacct_is_task_waiting_on_io(tsk)) | |
2076 | stats->nr_io_wait++; | |
2077 | break; | |
2078 | } | |
2079 | } | |
bd89aabc | 2080 | cgroup_iter_end(cgrp, &it); |
846c7bb0 BS |
2081 | |
2082 | rcu_read_unlock(); | |
2083 | err: | |
2084 | return ret; | |
2085 | } | |
2086 | ||
bbcb81d0 PM |
2087 | static int cmppid(const void *a, const void *b) |
2088 | { | |
2089 | return *(pid_t *)a - *(pid_t *)b; | |
2090 | } | |
2091 | ||
cc31edce | 2092 | |
bbcb81d0 | 2093 | /* |
cc31edce PM |
2094 | * seq_file methods for the "tasks" file. The seq_file position is the |
2095 | * next pid to display; the seq_file iterator is a pointer to the pid | |
2096 | * in the cgroup->tasks_pids array. | |
bbcb81d0 | 2097 | */ |
cc31edce PM |
2098 | |
2099 | static void *cgroup_tasks_start(struct seq_file *s, loff_t *pos) | |
bbcb81d0 | 2100 | { |
cc31edce PM |
2101 | /* |
2102 | * Initially we receive a position value that corresponds to | |
2103 | * one more than the last pid shown (or 0 on the first call or | |
2104 | * after a seek to the start). Use a binary-search to find the | |
2105 | * next pid to display, if any | |
2106 | */ | |
2107 | struct cgroup *cgrp = s->private; | |
2108 | int index = 0, pid = *pos; | |
2109 | int *iter; | |
2110 | ||
2111 | down_read(&cgrp->pids_mutex); | |
2112 | if (pid) { | |
2113 | int end = cgrp->pids_length; | |
20777766 | 2114 | |
cc31edce PM |
2115 | while (index < end) { |
2116 | int mid = (index + end) / 2; | |
2117 | if (cgrp->tasks_pids[mid] == pid) { | |
2118 | index = mid; | |
2119 | break; | |
2120 | } else if (cgrp->tasks_pids[mid] <= pid) | |
2121 | index = mid + 1; | |
2122 | else | |
2123 | end = mid; | |
2124 | } | |
2125 | } | |
2126 | /* If we're off the end of the array, we're done */ | |
2127 | if (index >= cgrp->pids_length) | |
2128 | return NULL; | |
2129 | /* Update the abstract position to be the actual pid that we found */ | |
2130 | iter = cgrp->tasks_pids + index; | |
2131 | *pos = *iter; | |
2132 | return iter; | |
2133 | } | |
2134 | ||
2135 | static void cgroup_tasks_stop(struct seq_file *s, void *v) | |
2136 | { | |
2137 | struct cgroup *cgrp = s->private; | |
2138 | up_read(&cgrp->pids_mutex); | |
2139 | } | |
2140 | ||
2141 | static void *cgroup_tasks_next(struct seq_file *s, void *v, loff_t *pos) | |
2142 | { | |
2143 | struct cgroup *cgrp = s->private; | |
2144 | int *p = v; | |
2145 | int *end = cgrp->tasks_pids + cgrp->pids_length; | |
2146 | ||
2147 | /* | |
2148 | * Advance to the next pid in the array. If this goes off the | |
2149 | * end, we're done | |
2150 | */ | |
2151 | p++; | |
2152 | if (p >= end) { | |
2153 | return NULL; | |
2154 | } else { | |
2155 | *pos = *p; | |
2156 | return p; | |
2157 | } | |
2158 | } | |
2159 | ||
2160 | static int cgroup_tasks_show(struct seq_file *s, void *v) | |
2161 | { | |
2162 | return seq_printf(s, "%d\n", *(int *)v); | |
2163 | } | |
bbcb81d0 | 2164 | |
cc31edce PM |
2165 | static struct seq_operations cgroup_tasks_seq_operations = { |
2166 | .start = cgroup_tasks_start, | |
2167 | .stop = cgroup_tasks_stop, | |
2168 | .next = cgroup_tasks_next, | |
2169 | .show = cgroup_tasks_show, | |
2170 | }; | |
2171 | ||
2172 | static void release_cgroup_pid_array(struct cgroup *cgrp) | |
2173 | { | |
2174 | down_write(&cgrp->pids_mutex); | |
2175 | BUG_ON(!cgrp->pids_use_count); | |
2176 | if (!--cgrp->pids_use_count) { | |
2177 | kfree(cgrp->tasks_pids); | |
2178 | cgrp->tasks_pids = NULL; | |
2179 | cgrp->pids_length = 0; | |
2180 | } | |
2181 | up_write(&cgrp->pids_mutex); | |
bbcb81d0 PM |
2182 | } |
2183 | ||
cc31edce PM |
2184 | static int cgroup_tasks_release(struct inode *inode, struct file *file) |
2185 | { | |
2186 | struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent); | |
2187 | ||
2188 | if (!(file->f_mode & FMODE_READ)) | |
2189 | return 0; | |
2190 | ||
2191 | release_cgroup_pid_array(cgrp); | |
2192 | return seq_release(inode, file); | |
2193 | } | |
2194 | ||
2195 | static struct file_operations cgroup_tasks_operations = { | |
2196 | .read = seq_read, | |
2197 | .llseek = seq_lseek, | |
2198 | .write = cgroup_file_write, | |
2199 | .release = cgroup_tasks_release, | |
2200 | }; | |
2201 | ||
bbcb81d0 | 2202 | /* |
cc31edce | 2203 | * Handle an open on 'tasks' file. Prepare an array containing the |
bbcb81d0 | 2204 | * process id's of tasks currently attached to the cgroup being opened. |
bbcb81d0 | 2205 | */ |
cc31edce | 2206 | |
bbcb81d0 PM |
2207 | static int cgroup_tasks_open(struct inode *unused, struct file *file) |
2208 | { | |
bd89aabc | 2209 | struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent); |
bbcb81d0 PM |
2210 | pid_t *pidarray; |
2211 | int npids; | |
cc31edce | 2212 | int retval; |
bbcb81d0 | 2213 | |
cc31edce | 2214 | /* Nothing to do for write-only files */ |
bbcb81d0 PM |
2215 | if (!(file->f_mode & FMODE_READ)) |
2216 | return 0; | |
2217 | ||
bbcb81d0 PM |
2218 | /* |
2219 | * If cgroup gets more users after we read count, we won't have | |
2220 | * enough space - tough. This race is indistinguishable to the | |
2221 | * caller from the case that the additional cgroup users didn't | |
2222 | * show up until sometime later on. | |
2223 | */ | |
bd89aabc | 2224 | npids = cgroup_task_count(cgrp); |
cc31edce PM |
2225 | pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL); |
2226 | if (!pidarray) | |
2227 | return -ENOMEM; | |
2228 | npids = pid_array_load(pidarray, npids, cgrp); | |
2229 | sort(pidarray, npids, sizeof(pid_t), cmppid, NULL); | |
bbcb81d0 | 2230 | |
cc31edce PM |
2231 | /* |
2232 | * Store the array in the cgroup, freeing the old | |
2233 | * array if necessary | |
2234 | */ | |
2235 | down_write(&cgrp->pids_mutex); | |
2236 | kfree(cgrp->tasks_pids); | |
2237 | cgrp->tasks_pids = pidarray; | |
2238 | cgrp->pids_length = npids; | |
2239 | cgrp->pids_use_count++; | |
2240 | up_write(&cgrp->pids_mutex); | |
2241 | ||
2242 | file->f_op = &cgroup_tasks_operations; | |
2243 | ||
2244 | retval = seq_open(file, &cgroup_tasks_seq_operations); | |
2245 | if (retval) { | |
2246 | release_cgroup_pid_array(cgrp); | |
2247 | return retval; | |
bbcb81d0 | 2248 | } |
cc31edce | 2249 | ((struct seq_file *)file->private_data)->private = cgrp; |
bbcb81d0 PM |
2250 | return 0; |
2251 | } | |
2252 | ||
bd89aabc | 2253 | static u64 cgroup_read_notify_on_release(struct cgroup *cgrp, |
81a6a5cd PM |
2254 | struct cftype *cft) |
2255 | { | |
bd89aabc | 2256 | return notify_on_release(cgrp); |
81a6a5cd PM |
2257 | } |
2258 | ||
6379c106 PM |
2259 | static int cgroup_write_notify_on_release(struct cgroup *cgrp, |
2260 | struct cftype *cft, | |
2261 | u64 val) | |
2262 | { | |
2263 | clear_bit(CGRP_RELEASABLE, &cgrp->flags); | |
2264 | if (val) | |
2265 | set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); | |
2266 | else | |
2267 | clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); | |
2268 | return 0; | |
2269 | } | |
2270 | ||
bbcb81d0 PM |
2271 | /* |
2272 | * for the common functions, 'private' gives the type of file | |
2273 | */ | |
81a6a5cd PM |
2274 | static struct cftype files[] = { |
2275 | { | |
2276 | .name = "tasks", | |
2277 | .open = cgroup_tasks_open, | |
af351026 | 2278 | .write_u64 = cgroup_tasks_write, |
81a6a5cd PM |
2279 | .release = cgroup_tasks_release, |
2280 | .private = FILE_TASKLIST, | |
2281 | }, | |
2282 | ||
2283 | { | |
2284 | .name = "notify_on_release", | |
f4c753b7 | 2285 | .read_u64 = cgroup_read_notify_on_release, |
6379c106 | 2286 | .write_u64 = cgroup_write_notify_on_release, |
81a6a5cd PM |
2287 | .private = FILE_NOTIFY_ON_RELEASE, |
2288 | }, | |
81a6a5cd PM |
2289 | }; |
2290 | ||
2291 | static struct cftype cft_release_agent = { | |
2292 | .name = "release_agent", | |
e788e066 PM |
2293 | .read_seq_string = cgroup_release_agent_show, |
2294 | .write_string = cgroup_release_agent_write, | |
2295 | .max_write_len = PATH_MAX, | |
81a6a5cd | 2296 | .private = FILE_RELEASE_AGENT, |
bbcb81d0 PM |
2297 | }; |
2298 | ||
bd89aabc | 2299 | static int cgroup_populate_dir(struct cgroup *cgrp) |
ddbcc7e8 PM |
2300 | { |
2301 | int err; | |
2302 | struct cgroup_subsys *ss; | |
2303 | ||
2304 | /* First clear out any existing files */ | |
bd89aabc | 2305 | cgroup_clear_directory(cgrp->dentry); |
ddbcc7e8 | 2306 | |
bd89aabc | 2307 | err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files)); |
bbcb81d0 PM |
2308 | if (err < 0) |
2309 | return err; | |
2310 | ||
bd89aabc PM |
2311 | if (cgrp == cgrp->top_cgroup) { |
2312 | if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0) | |
81a6a5cd PM |
2313 | return err; |
2314 | } | |
2315 | ||
bd89aabc PM |
2316 | for_each_subsys(cgrp->root, ss) { |
2317 | if (ss->populate && (err = ss->populate(ss, cgrp)) < 0) | |
ddbcc7e8 PM |
2318 | return err; |
2319 | } | |
2320 | ||
2321 | return 0; | |
2322 | } | |
2323 | ||
2324 | static void init_cgroup_css(struct cgroup_subsys_state *css, | |
2325 | struct cgroup_subsys *ss, | |
bd89aabc | 2326 | struct cgroup *cgrp) |
ddbcc7e8 | 2327 | { |
bd89aabc | 2328 | css->cgroup = cgrp; |
ddbcc7e8 PM |
2329 | atomic_set(&css->refcnt, 0); |
2330 | css->flags = 0; | |
bd89aabc | 2331 | if (cgrp == dummytop) |
ddbcc7e8 | 2332 | set_bit(CSS_ROOT, &css->flags); |
bd89aabc PM |
2333 | BUG_ON(cgrp->subsys[ss->subsys_id]); |
2334 | cgrp->subsys[ss->subsys_id] = css; | |
ddbcc7e8 PM |
2335 | } |
2336 | ||
2337 | /* | |
a043e3b2 LZ |
2338 | * cgroup_create - create a cgroup |
2339 | * @parent: cgroup that will be parent of the new cgroup | |
2340 | * @dentry: dentry of the new cgroup | |
2341 | * @mode: mode to set on new inode | |
ddbcc7e8 | 2342 | * |
a043e3b2 | 2343 | * Must be called with the mutex on the parent inode held |
ddbcc7e8 | 2344 | */ |
ddbcc7e8 PM |
2345 | static long cgroup_create(struct cgroup *parent, struct dentry *dentry, |
2346 | int mode) | |
2347 | { | |
bd89aabc | 2348 | struct cgroup *cgrp; |
ddbcc7e8 PM |
2349 | struct cgroupfs_root *root = parent->root; |
2350 | int err = 0; | |
2351 | struct cgroup_subsys *ss; | |
2352 | struct super_block *sb = root->sb; | |
2353 | ||
bd89aabc PM |
2354 | cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL); |
2355 | if (!cgrp) | |
ddbcc7e8 PM |
2356 | return -ENOMEM; |
2357 | ||
2358 | /* Grab a reference on the superblock so the hierarchy doesn't | |
2359 | * get deleted on unmount if there are child cgroups. This | |
2360 | * can be done outside cgroup_mutex, since the sb can't | |
2361 | * disappear while someone has an open control file on the | |
2362 | * fs */ | |
2363 | atomic_inc(&sb->s_active); | |
2364 | ||
2365 | mutex_lock(&cgroup_mutex); | |
2366 | ||
cc31edce | 2367 | init_cgroup_housekeeping(cgrp); |
ddbcc7e8 | 2368 | |
bd89aabc PM |
2369 | cgrp->parent = parent; |
2370 | cgrp->root = parent->root; | |
2371 | cgrp->top_cgroup = parent->top_cgroup; | |
ddbcc7e8 | 2372 | |
b6abdb0e LZ |
2373 | if (notify_on_release(parent)) |
2374 | set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); | |
2375 | ||
ddbcc7e8 | 2376 | for_each_subsys(root, ss) { |
bd89aabc | 2377 | struct cgroup_subsys_state *css = ss->create(ss, cgrp); |
ddbcc7e8 PM |
2378 | if (IS_ERR(css)) { |
2379 | err = PTR_ERR(css); | |
2380 | goto err_destroy; | |
2381 | } | |
bd89aabc | 2382 | init_cgroup_css(css, ss, cgrp); |
ddbcc7e8 PM |
2383 | } |
2384 | ||
bd89aabc | 2385 | list_add(&cgrp->sibling, &cgrp->parent->children); |
ddbcc7e8 PM |
2386 | root->number_of_cgroups++; |
2387 | ||
bd89aabc | 2388 | err = cgroup_create_dir(cgrp, dentry, mode); |
ddbcc7e8 PM |
2389 | if (err < 0) |
2390 | goto err_remove; | |
2391 | ||
2392 | /* The cgroup directory was pre-locked for us */ | |
bd89aabc | 2393 | BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex)); |
ddbcc7e8 | 2394 | |
bd89aabc | 2395 | err = cgroup_populate_dir(cgrp); |
ddbcc7e8 PM |
2396 | /* If err < 0, we have a half-filled directory - oh well ;) */ |
2397 | ||
2398 | mutex_unlock(&cgroup_mutex); | |
bd89aabc | 2399 | mutex_unlock(&cgrp->dentry->d_inode->i_mutex); |
ddbcc7e8 PM |
2400 | |
2401 | return 0; | |
2402 | ||
2403 | err_remove: | |
2404 | ||
bd89aabc | 2405 | list_del(&cgrp->sibling); |
ddbcc7e8 PM |
2406 | root->number_of_cgroups--; |
2407 | ||
2408 | err_destroy: | |
2409 | ||
2410 | for_each_subsys(root, ss) { | |
bd89aabc PM |
2411 | if (cgrp->subsys[ss->subsys_id]) |
2412 | ss->destroy(ss, cgrp); | |
ddbcc7e8 PM |
2413 | } |
2414 | ||
2415 | mutex_unlock(&cgroup_mutex); | |
2416 | ||
2417 | /* Release the reference count that we took on the superblock */ | |
2418 | deactivate_super(sb); | |
2419 | ||
bd89aabc | 2420 | kfree(cgrp); |
ddbcc7e8 PM |
2421 | return err; |
2422 | } | |
2423 | ||
2424 | static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |
2425 | { | |
2426 | struct cgroup *c_parent = dentry->d_parent->d_fsdata; | |
2427 | ||
2428 | /* the vfs holds inode->i_mutex already */ | |
2429 | return cgroup_create(c_parent, dentry, mode | S_IFDIR); | |
2430 | } | |
2431 | ||
55b6fd01 | 2432 | static int cgroup_has_css_refs(struct cgroup *cgrp) |
81a6a5cd PM |
2433 | { |
2434 | /* Check the reference count on each subsystem. Since we | |
2435 | * already established that there are no tasks in the | |
2436 | * cgroup, if the css refcount is also 0, then there should | |
2437 | * be no outstanding references, so the subsystem is safe to | |
2438 | * destroy. We scan across all subsystems rather than using | |
2439 | * the per-hierarchy linked list of mounted subsystems since | |
2440 | * we can be called via check_for_release() with no | |
2441 | * synchronization other than RCU, and the subsystem linked | |
2442 | * list isn't RCU-safe */ | |
2443 | int i; | |
2444 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
2445 | struct cgroup_subsys *ss = subsys[i]; | |
2446 | struct cgroup_subsys_state *css; | |
2447 | /* Skip subsystems not in this hierarchy */ | |
bd89aabc | 2448 | if (ss->root != cgrp->root) |
81a6a5cd | 2449 | continue; |
bd89aabc | 2450 | css = cgrp->subsys[ss->subsys_id]; |
81a6a5cd PM |
2451 | /* When called from check_for_release() it's possible |
2452 | * that by this point the cgroup has been removed | |
2453 | * and the css deleted. But a false-positive doesn't | |
2454 | * matter, since it can only happen if the cgroup | |
2455 | * has been deleted and hence no longer needs the | |
2456 | * release agent to be called anyway. */ | |
e18f6318 | 2457 | if (css && atomic_read(&css->refcnt)) |
81a6a5cd | 2458 | return 1; |
81a6a5cd PM |
2459 | } |
2460 | return 0; | |
2461 | } | |
2462 | ||
ddbcc7e8 PM |
2463 | static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry) |
2464 | { | |
bd89aabc | 2465 | struct cgroup *cgrp = dentry->d_fsdata; |
ddbcc7e8 PM |
2466 | struct dentry *d; |
2467 | struct cgroup *parent; | |
ddbcc7e8 PM |
2468 | struct super_block *sb; |
2469 | struct cgroupfs_root *root; | |
ddbcc7e8 PM |
2470 | |
2471 | /* the vfs holds both inode->i_mutex already */ | |
2472 | ||
2473 | mutex_lock(&cgroup_mutex); | |
bd89aabc | 2474 | if (atomic_read(&cgrp->count) != 0) { |
ddbcc7e8 PM |
2475 | mutex_unlock(&cgroup_mutex); |
2476 | return -EBUSY; | |
2477 | } | |
bd89aabc | 2478 | if (!list_empty(&cgrp->children)) { |
ddbcc7e8 PM |
2479 | mutex_unlock(&cgroup_mutex); |
2480 | return -EBUSY; | |
2481 | } | |
3fa59dfb | 2482 | mutex_unlock(&cgroup_mutex); |
a043e3b2 | 2483 | |
4fca88c8 | 2484 | /* |
a043e3b2 LZ |
2485 | * Call pre_destroy handlers of subsys. Notify subsystems |
2486 | * that rmdir() request comes. | |
4fca88c8 KH |
2487 | */ |
2488 | cgroup_call_pre_destroy(cgrp); | |
ddbcc7e8 | 2489 | |
3fa59dfb KH |
2490 | mutex_lock(&cgroup_mutex); |
2491 | parent = cgrp->parent; | |
2492 | root = cgrp->root; | |
2493 | sb = root->sb; | |
2494 | ||
2495 | if (atomic_read(&cgrp->count) | |
2496 | || !list_empty(&cgrp->children) | |
2497 | || cgroup_has_css_refs(cgrp)) { | |
ddbcc7e8 PM |
2498 | mutex_unlock(&cgroup_mutex); |
2499 | return -EBUSY; | |
2500 | } | |
2501 | ||
81a6a5cd | 2502 | spin_lock(&release_list_lock); |
bd89aabc PM |
2503 | set_bit(CGRP_REMOVED, &cgrp->flags); |
2504 | if (!list_empty(&cgrp->release_list)) | |
2505 | list_del(&cgrp->release_list); | |
81a6a5cd | 2506 | spin_unlock(&release_list_lock); |
ddbcc7e8 | 2507 | /* delete my sibling from parent->children */ |
bd89aabc PM |
2508 | list_del(&cgrp->sibling); |
2509 | spin_lock(&cgrp->dentry->d_lock); | |
2510 | d = dget(cgrp->dentry); | |
ddbcc7e8 PM |
2511 | spin_unlock(&d->d_lock); |
2512 | ||
2513 | cgroup_d_remove_dir(d); | |
2514 | dput(d); | |
ddbcc7e8 | 2515 | |
bd89aabc | 2516 | set_bit(CGRP_RELEASABLE, &parent->flags); |
81a6a5cd PM |
2517 | check_for_release(parent); |
2518 | ||
ddbcc7e8 | 2519 | mutex_unlock(&cgroup_mutex); |
ddbcc7e8 PM |
2520 | return 0; |
2521 | } | |
2522 | ||
06a11920 | 2523 | static void __init cgroup_init_subsys(struct cgroup_subsys *ss) |
ddbcc7e8 | 2524 | { |
ddbcc7e8 | 2525 | struct cgroup_subsys_state *css; |
cfe36bde DC |
2526 | |
2527 | printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name); | |
ddbcc7e8 PM |
2528 | |
2529 | /* Create the top cgroup state for this subsystem */ | |
2530 | ss->root = &rootnode; | |
2531 | css = ss->create(ss, dummytop); | |
2532 | /* We don't handle early failures gracefully */ | |
2533 | BUG_ON(IS_ERR(css)); | |
2534 | init_cgroup_css(css, ss, dummytop); | |
2535 | ||
e8d55fde | 2536 | /* Update the init_css_set to contain a subsys |
817929ec | 2537 | * pointer to this state - since the subsystem is |
e8d55fde LZ |
2538 | * newly registered, all tasks and hence the |
2539 | * init_css_set is in the subsystem's top cgroup. */ | |
2540 | init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id]; | |
ddbcc7e8 PM |
2541 | |
2542 | need_forkexit_callback |= ss->fork || ss->exit; | |
cf475ad2 | 2543 | need_mm_owner_callback |= !!ss->mm_owner_changed; |
ddbcc7e8 | 2544 | |
e8d55fde LZ |
2545 | /* At system boot, before all subsystems have been |
2546 | * registered, no tasks have been forked, so we don't | |
2547 | * need to invoke fork callbacks here. */ | |
2548 | BUG_ON(!list_empty(&init_task.tasks)); | |
2549 | ||
ddbcc7e8 PM |
2550 | ss->active = 1; |
2551 | } | |
2552 | ||
2553 | /** | |
a043e3b2 LZ |
2554 | * cgroup_init_early - cgroup initialization at system boot |
2555 | * | |
2556 | * Initialize cgroups at system boot, and initialize any | |
2557 | * subsystems that request early init. | |
ddbcc7e8 PM |
2558 | */ |
2559 | int __init cgroup_init_early(void) | |
2560 | { | |
2561 | int i; | |
146aa1bd | 2562 | atomic_set(&init_css_set.refcount, 1); |
817929ec PM |
2563 | INIT_LIST_HEAD(&init_css_set.cg_links); |
2564 | INIT_LIST_HEAD(&init_css_set.tasks); | |
472b1053 | 2565 | INIT_HLIST_NODE(&init_css_set.hlist); |
817929ec | 2566 | css_set_count = 1; |
ddbcc7e8 PM |
2567 | init_cgroup_root(&rootnode); |
2568 | list_add(&rootnode.root_list, &roots); | |
817929ec PM |
2569 | root_count = 1; |
2570 | init_task.cgroups = &init_css_set; | |
2571 | ||
2572 | init_css_set_link.cg = &init_css_set; | |
bd89aabc | 2573 | list_add(&init_css_set_link.cgrp_link_list, |
817929ec PM |
2574 | &rootnode.top_cgroup.css_sets); |
2575 | list_add(&init_css_set_link.cg_link_list, | |
2576 | &init_css_set.cg_links); | |
ddbcc7e8 | 2577 | |
472b1053 LZ |
2578 | for (i = 0; i < CSS_SET_TABLE_SIZE; i++) |
2579 | INIT_HLIST_HEAD(&css_set_table[i]); | |
2580 | ||
ddbcc7e8 PM |
2581 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { |
2582 | struct cgroup_subsys *ss = subsys[i]; | |
2583 | ||
2584 | BUG_ON(!ss->name); | |
2585 | BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN); | |
2586 | BUG_ON(!ss->create); | |
2587 | BUG_ON(!ss->destroy); | |
2588 | if (ss->subsys_id != i) { | |
cfe36bde | 2589 | printk(KERN_ERR "cgroup: Subsys %s id == %d\n", |
ddbcc7e8 PM |
2590 | ss->name, ss->subsys_id); |
2591 | BUG(); | |
2592 | } | |
2593 | ||
2594 | if (ss->early_init) | |
2595 | cgroup_init_subsys(ss); | |
2596 | } | |
2597 | return 0; | |
2598 | } | |
2599 | ||
2600 | /** | |
a043e3b2 LZ |
2601 | * cgroup_init - cgroup initialization |
2602 | * | |
2603 | * Register cgroup filesystem and /proc file, and initialize | |
2604 | * any subsystems that didn't request early init. | |
ddbcc7e8 PM |
2605 | */ |
2606 | int __init cgroup_init(void) | |
2607 | { | |
2608 | int err; | |
2609 | int i; | |
472b1053 | 2610 | struct hlist_head *hhead; |
a424316c PM |
2611 | |
2612 | err = bdi_init(&cgroup_backing_dev_info); | |
2613 | if (err) | |
2614 | return err; | |
ddbcc7e8 PM |
2615 | |
2616 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
2617 | struct cgroup_subsys *ss = subsys[i]; | |
2618 | if (!ss->early_init) | |
2619 | cgroup_init_subsys(ss); | |
2620 | } | |
2621 | ||
472b1053 LZ |
2622 | /* Add init_css_set to the hash table */ |
2623 | hhead = css_set_hash(init_css_set.subsys); | |
2624 | hlist_add_head(&init_css_set.hlist, hhead); | |
2625 | ||
ddbcc7e8 PM |
2626 | err = register_filesystem(&cgroup_fs_type); |
2627 | if (err < 0) | |
2628 | goto out; | |
2629 | ||
46ae220b | 2630 | proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations); |
a424316c | 2631 | |
ddbcc7e8 | 2632 | out: |
a424316c PM |
2633 | if (err) |
2634 | bdi_destroy(&cgroup_backing_dev_info); | |
2635 | ||
ddbcc7e8 PM |
2636 | return err; |
2637 | } | |
b4f48b63 | 2638 | |
a424316c PM |
2639 | /* |
2640 | * proc_cgroup_show() | |
2641 | * - Print task's cgroup paths into seq_file, one line for each hierarchy | |
2642 | * - Used for /proc/<pid>/cgroup. | |
2643 | * - No need to task_lock(tsk) on this tsk->cgroup reference, as it | |
2644 | * doesn't really matter if tsk->cgroup changes after we read it, | |
956db3ca | 2645 | * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it |
a424316c PM |
2646 | * anyway. No need to check that tsk->cgroup != NULL, thanks to |
2647 | * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks | |
2648 | * cgroup to top_cgroup. | |
2649 | */ | |
2650 | ||
2651 | /* TODO: Use a proper seq_file iterator */ | |
2652 | static int proc_cgroup_show(struct seq_file *m, void *v) | |
2653 | { | |
2654 | struct pid *pid; | |
2655 | struct task_struct *tsk; | |
2656 | char *buf; | |
2657 | int retval; | |
2658 | struct cgroupfs_root *root; | |
2659 | ||
2660 | retval = -ENOMEM; | |
2661 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); | |
2662 | if (!buf) | |
2663 | goto out; | |
2664 | ||
2665 | retval = -ESRCH; | |
2666 | pid = m->private; | |
2667 | tsk = get_pid_task(pid, PIDTYPE_PID); | |
2668 | if (!tsk) | |
2669 | goto out_free; | |
2670 | ||
2671 | retval = 0; | |
2672 | ||
2673 | mutex_lock(&cgroup_mutex); | |
2674 | ||
2675 | for_each_root(root) { | |
2676 | struct cgroup_subsys *ss; | |
bd89aabc | 2677 | struct cgroup *cgrp; |
a424316c PM |
2678 | int subsys_id; |
2679 | int count = 0; | |
2680 | ||
2681 | /* Skip this hierarchy if it has no active subsystems */ | |
2682 | if (!root->actual_subsys_bits) | |
2683 | continue; | |
b6c3006d | 2684 | seq_printf(m, "%lu:", root->subsys_bits); |
a424316c PM |
2685 | for_each_subsys(root, ss) |
2686 | seq_printf(m, "%s%s", count++ ? "," : "", ss->name); | |
2687 | seq_putc(m, ':'); | |
2688 | get_first_subsys(&root->top_cgroup, NULL, &subsys_id); | |
bd89aabc PM |
2689 | cgrp = task_cgroup(tsk, subsys_id); |
2690 | retval = cgroup_path(cgrp, buf, PAGE_SIZE); | |
a424316c PM |
2691 | if (retval < 0) |
2692 | goto out_unlock; | |
2693 | seq_puts(m, buf); | |
2694 | seq_putc(m, '\n'); | |
2695 | } | |
2696 | ||
2697 | out_unlock: | |
2698 | mutex_unlock(&cgroup_mutex); | |
2699 | put_task_struct(tsk); | |
2700 | out_free: | |
2701 | kfree(buf); | |
2702 | out: | |
2703 | return retval; | |
2704 | } | |
2705 | ||
2706 | static int cgroup_open(struct inode *inode, struct file *file) | |
2707 | { | |
2708 | struct pid *pid = PROC_I(inode)->pid; | |
2709 | return single_open(file, proc_cgroup_show, pid); | |
2710 | } | |
2711 | ||
2712 | struct file_operations proc_cgroup_operations = { | |
2713 | .open = cgroup_open, | |
2714 | .read = seq_read, | |
2715 | .llseek = seq_lseek, | |
2716 | .release = single_release, | |
2717 | }; | |
2718 | ||
2719 | /* Display information about each subsystem and each hierarchy */ | |
2720 | static int proc_cgroupstats_show(struct seq_file *m, void *v) | |
2721 | { | |
2722 | int i; | |
a424316c | 2723 | |
8bab8dde | 2724 | seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n"); |
a424316c | 2725 | mutex_lock(&cgroup_mutex); |
a424316c PM |
2726 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { |
2727 | struct cgroup_subsys *ss = subsys[i]; | |
8bab8dde | 2728 | seq_printf(m, "%s\t%lu\t%d\t%d\n", |
817929ec | 2729 | ss->name, ss->root->subsys_bits, |
8bab8dde | 2730 | ss->root->number_of_cgroups, !ss->disabled); |
a424316c PM |
2731 | } |
2732 | mutex_unlock(&cgroup_mutex); | |
2733 | return 0; | |
2734 | } | |
2735 | ||
2736 | static int cgroupstats_open(struct inode *inode, struct file *file) | |
2737 | { | |
9dce07f1 | 2738 | return single_open(file, proc_cgroupstats_show, NULL); |
a424316c PM |
2739 | } |
2740 | ||
2741 | static struct file_operations proc_cgroupstats_operations = { | |
2742 | .open = cgroupstats_open, | |
2743 | .read = seq_read, | |
2744 | .llseek = seq_lseek, | |
2745 | .release = single_release, | |
2746 | }; | |
2747 | ||
b4f48b63 PM |
2748 | /** |
2749 | * cgroup_fork - attach newly forked task to its parents cgroup. | |
a043e3b2 | 2750 | * @child: pointer to task_struct of forking parent process. |
b4f48b63 PM |
2751 | * |
2752 | * Description: A task inherits its parent's cgroup at fork(). | |
2753 | * | |
2754 | * A pointer to the shared css_set was automatically copied in | |
2755 | * fork.c by dup_task_struct(). However, we ignore that copy, since | |
2756 | * it was not made under the protection of RCU or cgroup_mutex, so | |
956db3ca | 2757 | * might no longer be a valid cgroup pointer. cgroup_attach_task() might |
817929ec PM |
2758 | * have already changed current->cgroups, allowing the previously |
2759 | * referenced cgroup group to be removed and freed. | |
b4f48b63 PM |
2760 | * |
2761 | * At the point that cgroup_fork() is called, 'current' is the parent | |
2762 | * task, and the passed argument 'child' points to the child task. | |
2763 | */ | |
2764 | void cgroup_fork(struct task_struct *child) | |
2765 | { | |
817929ec PM |
2766 | task_lock(current); |
2767 | child->cgroups = current->cgroups; | |
2768 | get_css_set(child->cgroups); | |
2769 | task_unlock(current); | |
2770 | INIT_LIST_HEAD(&child->cg_list); | |
b4f48b63 PM |
2771 | } |
2772 | ||
2773 | /** | |
a043e3b2 LZ |
2774 | * cgroup_fork_callbacks - run fork callbacks |
2775 | * @child: the new task | |
2776 | * | |
2777 | * Called on a new task very soon before adding it to the | |
2778 | * tasklist. No need to take any locks since no-one can | |
2779 | * be operating on this task. | |
b4f48b63 PM |
2780 | */ |
2781 | void cgroup_fork_callbacks(struct task_struct *child) | |
2782 | { | |
2783 | if (need_forkexit_callback) { | |
2784 | int i; | |
2785 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
2786 | struct cgroup_subsys *ss = subsys[i]; | |
2787 | if (ss->fork) | |
2788 | ss->fork(ss, child); | |
2789 | } | |
2790 | } | |
2791 | } | |
2792 | ||
cf475ad2 BS |
2793 | #ifdef CONFIG_MM_OWNER |
2794 | /** | |
2795 | * cgroup_mm_owner_callbacks - run callbacks when the mm->owner changes | |
2796 | * @p: the new owner | |
2797 | * | |
2798 | * Called on every change to mm->owner. mm_init_owner() does not | |
2799 | * invoke this routine, since it assigns the mm->owner the first time | |
2800 | * and does not change it. | |
9363b9f2 BS |
2801 | * |
2802 | * The callbacks are invoked with mmap_sem held in read mode. | |
cf475ad2 BS |
2803 | */ |
2804 | void cgroup_mm_owner_callbacks(struct task_struct *old, struct task_struct *new) | |
2805 | { | |
31a78f23 | 2806 | struct cgroup *oldcgrp, *newcgrp = NULL; |
cf475ad2 BS |
2807 | |
2808 | if (need_mm_owner_callback) { | |
2809 | int i; | |
2810 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
2811 | struct cgroup_subsys *ss = subsys[i]; | |
2812 | oldcgrp = task_cgroup(old, ss->subsys_id); | |
31a78f23 BS |
2813 | if (new) |
2814 | newcgrp = task_cgroup(new, ss->subsys_id); | |
cf475ad2 BS |
2815 | if (oldcgrp == newcgrp) |
2816 | continue; | |
2817 | if (ss->mm_owner_changed) | |
9363b9f2 | 2818 | ss->mm_owner_changed(ss, oldcgrp, newcgrp, new); |
cf475ad2 BS |
2819 | } |
2820 | } | |
2821 | } | |
2822 | #endif /* CONFIG_MM_OWNER */ | |
2823 | ||
817929ec | 2824 | /** |
a043e3b2 LZ |
2825 | * cgroup_post_fork - called on a new task after adding it to the task list |
2826 | * @child: the task in question | |
2827 | * | |
2828 | * Adds the task to the list running through its css_set if necessary. | |
2829 | * Has to be after the task is visible on the task list in case we race | |
2830 | * with the first call to cgroup_iter_start() - to guarantee that the | |
2831 | * new task ends up on its list. | |
2832 | */ | |
817929ec PM |
2833 | void cgroup_post_fork(struct task_struct *child) |
2834 | { | |
2835 | if (use_task_css_set_links) { | |
2836 | write_lock(&css_set_lock); | |
2837 | if (list_empty(&child->cg_list)) | |
2838 | list_add(&child->cg_list, &child->cgroups->tasks); | |
2839 | write_unlock(&css_set_lock); | |
2840 | } | |
2841 | } | |
b4f48b63 PM |
2842 | /** |
2843 | * cgroup_exit - detach cgroup from exiting task | |
2844 | * @tsk: pointer to task_struct of exiting process | |
a043e3b2 | 2845 | * @run_callback: run exit callbacks? |
b4f48b63 PM |
2846 | * |
2847 | * Description: Detach cgroup from @tsk and release it. | |
2848 | * | |
2849 | * Note that cgroups marked notify_on_release force every task in | |
2850 | * them to take the global cgroup_mutex mutex when exiting. | |
2851 | * This could impact scaling on very large systems. Be reluctant to | |
2852 | * use notify_on_release cgroups where very high task exit scaling | |
2853 | * is required on large systems. | |
2854 | * | |
2855 | * the_top_cgroup_hack: | |
2856 | * | |
2857 | * Set the exiting tasks cgroup to the root cgroup (top_cgroup). | |
2858 | * | |
2859 | * We call cgroup_exit() while the task is still competent to | |
2860 | * handle notify_on_release(), then leave the task attached to the | |
2861 | * root cgroup in each hierarchy for the remainder of its exit. | |
2862 | * | |
2863 | * To do this properly, we would increment the reference count on | |
2864 | * top_cgroup, and near the very end of the kernel/exit.c do_exit() | |
2865 | * code we would add a second cgroup function call, to drop that | |
2866 | * reference. This would just create an unnecessary hot spot on | |
2867 | * the top_cgroup reference count, to no avail. | |
2868 | * | |
2869 | * Normally, holding a reference to a cgroup without bumping its | |
2870 | * count is unsafe. The cgroup could go away, or someone could | |
2871 | * attach us to a different cgroup, decrementing the count on | |
2872 | * the first cgroup that we never incremented. But in this case, | |
2873 | * top_cgroup isn't going away, and either task has PF_EXITING set, | |
956db3ca CW |
2874 | * which wards off any cgroup_attach_task() attempts, or task is a failed |
2875 | * fork, never visible to cgroup_attach_task. | |
b4f48b63 PM |
2876 | */ |
2877 | void cgroup_exit(struct task_struct *tsk, int run_callbacks) | |
2878 | { | |
2879 | int i; | |
817929ec | 2880 | struct css_set *cg; |
b4f48b63 PM |
2881 | |
2882 | if (run_callbacks && need_forkexit_callback) { | |
2883 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
2884 | struct cgroup_subsys *ss = subsys[i]; | |
2885 | if (ss->exit) | |
2886 | ss->exit(ss, tsk); | |
2887 | } | |
2888 | } | |
817929ec PM |
2889 | |
2890 | /* | |
2891 | * Unlink from the css_set task list if necessary. | |
2892 | * Optimistically check cg_list before taking | |
2893 | * css_set_lock | |
2894 | */ | |
2895 | if (!list_empty(&tsk->cg_list)) { | |
2896 | write_lock(&css_set_lock); | |
2897 | if (!list_empty(&tsk->cg_list)) | |
2898 | list_del(&tsk->cg_list); | |
2899 | write_unlock(&css_set_lock); | |
2900 | } | |
2901 | ||
b4f48b63 PM |
2902 | /* Reassign the task to the init_css_set. */ |
2903 | task_lock(tsk); | |
817929ec PM |
2904 | cg = tsk->cgroups; |
2905 | tsk->cgroups = &init_css_set; | |
b4f48b63 | 2906 | task_unlock(tsk); |
817929ec | 2907 | if (cg) |
81a6a5cd | 2908 | put_css_set_taskexit(cg); |
b4f48b63 | 2909 | } |
697f4161 PM |
2910 | |
2911 | /** | |
a043e3b2 LZ |
2912 | * cgroup_clone - clone the cgroup the given subsystem is attached to |
2913 | * @tsk: the task to be moved | |
2914 | * @subsys: the given subsystem | |
e885dcde | 2915 | * @nodename: the name for the new cgroup |
a043e3b2 LZ |
2916 | * |
2917 | * Duplicate the current cgroup in the hierarchy that the given | |
2918 | * subsystem is attached to, and move this task into the new | |
2919 | * child. | |
697f4161 | 2920 | */ |
e885dcde SH |
2921 | int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys, |
2922 | char *nodename) | |
697f4161 PM |
2923 | { |
2924 | struct dentry *dentry; | |
2925 | int ret = 0; | |
697f4161 PM |
2926 | struct cgroup *parent, *child; |
2927 | struct inode *inode; | |
2928 | struct css_set *cg; | |
2929 | struct cgroupfs_root *root; | |
2930 | struct cgroup_subsys *ss; | |
2931 | ||
2932 | /* We shouldn't be called by an unregistered subsystem */ | |
2933 | BUG_ON(!subsys->active); | |
2934 | ||
2935 | /* First figure out what hierarchy and cgroup we're dealing | |
2936 | * with, and pin them so we can drop cgroup_mutex */ | |
2937 | mutex_lock(&cgroup_mutex); | |
2938 | again: | |
2939 | root = subsys->root; | |
2940 | if (root == &rootnode) { | |
697f4161 PM |
2941 | mutex_unlock(&cgroup_mutex); |
2942 | return 0; | |
2943 | } | |
817929ec | 2944 | cg = tsk->cgroups; |
697f4161 PM |
2945 | parent = task_cgroup(tsk, subsys->subsys_id); |
2946 | ||
697f4161 PM |
2947 | /* Pin the hierarchy */ |
2948 | atomic_inc(&parent->root->sb->s_active); | |
2949 | ||
817929ec PM |
2950 | /* Keep the cgroup alive */ |
2951 | get_css_set(cg); | |
697f4161 PM |
2952 | mutex_unlock(&cgroup_mutex); |
2953 | ||
2954 | /* Now do the VFS work to create a cgroup */ | |
2955 | inode = parent->dentry->d_inode; | |
2956 | ||
2957 | /* Hold the parent directory mutex across this operation to | |
2958 | * stop anyone else deleting the new cgroup */ | |
2959 | mutex_lock(&inode->i_mutex); | |
2960 | dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename)); | |
2961 | if (IS_ERR(dentry)) { | |
2962 | printk(KERN_INFO | |
cfe36bde | 2963 | "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename, |
697f4161 PM |
2964 | PTR_ERR(dentry)); |
2965 | ret = PTR_ERR(dentry); | |
2966 | goto out_release; | |
2967 | } | |
2968 | ||
2969 | /* Create the cgroup directory, which also creates the cgroup */ | |
2970 | ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755); | |
bd89aabc | 2971 | child = __d_cgrp(dentry); |
697f4161 PM |
2972 | dput(dentry); |
2973 | if (ret) { | |
2974 | printk(KERN_INFO | |
2975 | "Failed to create cgroup %s: %d\n", nodename, | |
2976 | ret); | |
2977 | goto out_release; | |
2978 | } | |
2979 | ||
2980 | if (!child) { | |
2981 | printk(KERN_INFO | |
2982 | "Couldn't find new cgroup %s\n", nodename); | |
2983 | ret = -ENOMEM; | |
2984 | goto out_release; | |
2985 | } | |
2986 | ||
2987 | /* The cgroup now exists. Retake cgroup_mutex and check | |
2988 | * that we're still in the same state that we thought we | |
2989 | * were. */ | |
2990 | mutex_lock(&cgroup_mutex); | |
2991 | if ((root != subsys->root) || | |
2992 | (parent != task_cgroup(tsk, subsys->subsys_id))) { | |
2993 | /* Aargh, we raced ... */ | |
2994 | mutex_unlock(&inode->i_mutex); | |
817929ec | 2995 | put_css_set(cg); |
697f4161 PM |
2996 | |
2997 | deactivate_super(parent->root->sb); | |
2998 | /* The cgroup is still accessible in the VFS, but | |
2999 | * we're not going to try to rmdir() it at this | |
3000 | * point. */ | |
3001 | printk(KERN_INFO | |
3002 | "Race in cgroup_clone() - leaking cgroup %s\n", | |
3003 | nodename); | |
3004 | goto again; | |
3005 | } | |
3006 | ||
3007 | /* do any required auto-setup */ | |
3008 | for_each_subsys(root, ss) { | |
3009 | if (ss->post_clone) | |
3010 | ss->post_clone(ss, child); | |
3011 | } | |
3012 | ||
3013 | /* All seems fine. Finish by moving the task into the new cgroup */ | |
956db3ca | 3014 | ret = cgroup_attach_task(child, tsk); |
697f4161 PM |
3015 | mutex_unlock(&cgroup_mutex); |
3016 | ||
3017 | out_release: | |
3018 | mutex_unlock(&inode->i_mutex); | |
81a6a5cd PM |
3019 | |
3020 | mutex_lock(&cgroup_mutex); | |
817929ec | 3021 | put_css_set(cg); |
81a6a5cd | 3022 | mutex_unlock(&cgroup_mutex); |
697f4161 PM |
3023 | deactivate_super(parent->root->sb); |
3024 | return ret; | |
3025 | } | |
3026 | ||
a043e3b2 LZ |
3027 | /** |
3028 | * cgroup_is_descendant - see if @cgrp is a descendant of current task's cgrp | |
3029 | * @cgrp: the cgroup in question | |
3030 | * | |
3031 | * See if @cgrp is a descendant of the current task's cgroup in | |
3032 | * the appropriate hierarchy. | |
697f4161 PM |
3033 | * |
3034 | * If we are sending in dummytop, then presumably we are creating | |
3035 | * the top cgroup in the subsystem. | |
3036 | * | |
3037 | * Called only by the ns (nsproxy) cgroup. | |
3038 | */ | |
bd89aabc | 3039 | int cgroup_is_descendant(const struct cgroup *cgrp) |
697f4161 PM |
3040 | { |
3041 | int ret; | |
3042 | struct cgroup *target; | |
3043 | int subsys_id; | |
3044 | ||
bd89aabc | 3045 | if (cgrp == dummytop) |
697f4161 PM |
3046 | return 1; |
3047 | ||
bd89aabc | 3048 | get_first_subsys(cgrp, NULL, &subsys_id); |
697f4161 | 3049 | target = task_cgroup(current, subsys_id); |
bd89aabc PM |
3050 | while (cgrp != target && cgrp!= cgrp->top_cgroup) |
3051 | cgrp = cgrp->parent; | |
3052 | ret = (cgrp == target); | |
697f4161 PM |
3053 | return ret; |
3054 | } | |
81a6a5cd | 3055 | |
bd89aabc | 3056 | static void check_for_release(struct cgroup *cgrp) |
81a6a5cd PM |
3057 | { |
3058 | /* All of these checks rely on RCU to keep the cgroup | |
3059 | * structure alive */ | |
bd89aabc PM |
3060 | if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count) |
3061 | && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) { | |
81a6a5cd PM |
3062 | /* Control Group is currently removeable. If it's not |
3063 | * already queued for a userspace notification, queue | |
3064 | * it now */ | |
3065 | int need_schedule_work = 0; | |
3066 | spin_lock(&release_list_lock); | |
bd89aabc PM |
3067 | if (!cgroup_is_removed(cgrp) && |
3068 | list_empty(&cgrp->release_list)) { | |
3069 | list_add(&cgrp->release_list, &release_list); | |
81a6a5cd PM |
3070 | need_schedule_work = 1; |
3071 | } | |
3072 | spin_unlock(&release_list_lock); | |
3073 | if (need_schedule_work) | |
3074 | schedule_work(&release_agent_work); | |
3075 | } | |
3076 | } | |
3077 | ||
3078 | void __css_put(struct cgroup_subsys_state *css) | |
3079 | { | |
bd89aabc | 3080 | struct cgroup *cgrp = css->cgroup; |
81a6a5cd | 3081 | rcu_read_lock(); |
bd89aabc PM |
3082 | if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) { |
3083 | set_bit(CGRP_RELEASABLE, &cgrp->flags); | |
3084 | check_for_release(cgrp); | |
81a6a5cd PM |
3085 | } |
3086 | rcu_read_unlock(); | |
3087 | } | |
3088 | ||
3089 | /* | |
3090 | * Notify userspace when a cgroup is released, by running the | |
3091 | * configured release agent with the name of the cgroup (path | |
3092 | * relative to the root of cgroup file system) as the argument. | |
3093 | * | |
3094 | * Most likely, this user command will try to rmdir this cgroup. | |
3095 | * | |
3096 | * This races with the possibility that some other task will be | |
3097 | * attached to this cgroup before it is removed, or that some other | |
3098 | * user task will 'mkdir' a child cgroup of this cgroup. That's ok. | |
3099 | * The presumed 'rmdir' will fail quietly if this cgroup is no longer | |
3100 | * unused, and this cgroup will be reprieved from its death sentence, | |
3101 | * to continue to serve a useful existence. Next time it's released, | |
3102 | * we will get notified again, if it still has 'notify_on_release' set. | |
3103 | * | |
3104 | * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which | |
3105 | * means only wait until the task is successfully execve()'d. The | |
3106 | * separate release agent task is forked by call_usermodehelper(), | |
3107 | * then control in this thread returns here, without waiting for the | |
3108 | * release agent task. We don't bother to wait because the caller of | |
3109 | * this routine has no use for the exit status of the release agent | |
3110 | * task, so no sense holding our caller up for that. | |
81a6a5cd | 3111 | */ |
81a6a5cd PM |
3112 | static void cgroup_release_agent(struct work_struct *work) |
3113 | { | |
3114 | BUG_ON(work != &release_agent_work); | |
3115 | mutex_lock(&cgroup_mutex); | |
3116 | spin_lock(&release_list_lock); | |
3117 | while (!list_empty(&release_list)) { | |
3118 | char *argv[3], *envp[3]; | |
3119 | int i; | |
e788e066 | 3120 | char *pathbuf = NULL, *agentbuf = NULL; |
bd89aabc | 3121 | struct cgroup *cgrp = list_entry(release_list.next, |
81a6a5cd PM |
3122 | struct cgroup, |
3123 | release_list); | |
bd89aabc | 3124 | list_del_init(&cgrp->release_list); |
81a6a5cd PM |
3125 | spin_unlock(&release_list_lock); |
3126 | pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL); | |
e788e066 PM |
3127 | if (!pathbuf) |
3128 | goto continue_free; | |
3129 | if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0) | |
3130 | goto continue_free; | |
3131 | agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL); | |
3132 | if (!agentbuf) | |
3133 | goto continue_free; | |
81a6a5cd PM |
3134 | |
3135 | i = 0; | |
e788e066 PM |
3136 | argv[i++] = agentbuf; |
3137 | argv[i++] = pathbuf; | |
81a6a5cd PM |
3138 | argv[i] = NULL; |
3139 | ||
3140 | i = 0; | |
3141 | /* minimal command environment */ | |
3142 | envp[i++] = "HOME=/"; | |
3143 | envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin"; | |
3144 | envp[i] = NULL; | |
3145 | ||
3146 | /* Drop the lock while we invoke the usermode helper, | |
3147 | * since the exec could involve hitting disk and hence | |
3148 | * be a slow process */ | |
3149 | mutex_unlock(&cgroup_mutex); | |
3150 | call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC); | |
81a6a5cd | 3151 | mutex_lock(&cgroup_mutex); |
e788e066 PM |
3152 | continue_free: |
3153 | kfree(pathbuf); | |
3154 | kfree(agentbuf); | |
81a6a5cd PM |
3155 | spin_lock(&release_list_lock); |
3156 | } | |
3157 | spin_unlock(&release_list_lock); | |
3158 | mutex_unlock(&cgroup_mutex); | |
3159 | } | |
8bab8dde PM |
3160 | |
3161 | static int __init cgroup_disable(char *str) | |
3162 | { | |
3163 | int i; | |
3164 | char *token; | |
3165 | ||
3166 | while ((token = strsep(&str, ",")) != NULL) { | |
3167 | if (!*token) | |
3168 | continue; | |
3169 | ||
3170 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { | |
3171 | struct cgroup_subsys *ss = subsys[i]; | |
3172 | ||
3173 | if (!strcmp(token, ss->name)) { | |
3174 | ss->disabled = 1; | |
3175 | printk(KERN_INFO "Disabling %s control group" | |
3176 | " subsystem\n", ss->name); | |
3177 | break; | |
3178 | } | |
3179 | } | |
3180 | } | |
3181 | return 1; | |
3182 | } | |
3183 | __setup("cgroup_disable=", cgroup_disable); |