blob: c9bbcb2a75aecbacdb1463cf08a2b0a26d0f264b [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001#ifndef _LINUX_CGROUP_H
2#define _LINUX_CGROUP_H
3/*
4 * cgroup interface
5 *
6 * Copyright (C) 2003 BULL SA
7 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
8 *
9 */
10
11#include <linux/sched.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070012#include <linux/cpumask.h>
13#include <linux/nodemask.h>
14#include <linux/rcupdate.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070015#include <linux/cgroupstats.h>
Cliff Wickman31a7df02008-02-07 00:14:42 -080016#include <linux/prio_heap.h>
Paul Menagecc31edc2008-10-18 20:28:04 -070017#include <linux/rwsem.h>
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -070018#include <linux/idr.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070019
20#ifdef CONFIG_CGROUPS
21
22struct cgroupfs_root;
23struct cgroup_subsys;
24struct inode;
Paul Menage84eea842008-07-25 01:47:00 -070025struct cgroup;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -070026struct css_id;
Paul Menageddbcc7e2007-10-18 23:39:30 -070027
28extern int cgroup_init_early(void);
29extern int cgroup_init(void);
Paul Menageddbcc7e2007-10-18 23:39:30 -070030extern void cgroup_lock(void);
Paul E. McKenneyd11c5632010-02-22 17:04:50 -080031extern int cgroup_lock_is_held(void);
Paul Menage84eea842008-07-25 01:47:00 -070032extern bool cgroup_lock_live_group(struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -070033extern void cgroup_unlock(void);
Paul Menageb4f48b62007-10-18 23:39:33 -070034extern void cgroup_fork(struct task_struct *p);
35extern void cgroup_fork_callbacks(struct task_struct *p);
Paul Menage817929e2007-10-18 23:39:36 -070036extern void cgroup_post_fork(struct task_struct *p);
Paul Menageb4f48b62007-10-18 23:39:33 -070037extern void cgroup_exit(struct task_struct *p, int run_callbacks);
Balbir Singh846c7bb2007-10-18 23:39:44 -070038extern int cgroupstats_build(struct cgroupstats *stats,
39 struct dentry *dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -070040
Alexey Dobriyan828c0952009-10-01 15:43:56 -070041extern const struct file_operations proc_cgroup_operations;
Paul Menagea4243162007-10-18 23:39:35 -070042
Paul Menage817929e2007-10-18 23:39:36 -070043/* Define the enumeration of all cgroup subsystems */
44#define SUBSYS(_x) _x ## _subsys_id,
45enum cgroup_subsys_id {
46#include <linux/cgroup_subsys.h>
47 CGROUP_SUBSYS_COUNT
48};
49#undef SUBSYS
50
Paul Menageddbcc7e2007-10-18 23:39:30 -070051/* Per-subsystem/per-cgroup state maintained by the system. */
52struct cgroup_subsys_state {
Paul Menaged20a3902009-04-02 16:57:22 -070053 /*
54 * The cgroup that this subsystem is attached to. Useful
Paul Menageddbcc7e2007-10-18 23:39:30 -070055 * for subsystems that want to know about the cgroup
Paul Menaged20a3902009-04-02 16:57:22 -070056 * hierarchy structure
57 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070058 struct cgroup *cgroup;
59
Paul Menaged20a3902009-04-02 16:57:22 -070060 /*
61 * State maintained by the cgroup system to allow subsystems
Paul Menagee7c5ec92009-01-07 18:08:38 -080062 * to be "busy". Should be accessed via css_get(),
Paul Menaged20a3902009-04-02 16:57:22 -070063 * css_tryget() and and css_put().
64 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070065
66 atomic_t refcnt;
67
68 unsigned long flags;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -070069 /* ID for this css, if possible */
70 struct css_id *id;
Paul Menageddbcc7e2007-10-18 23:39:30 -070071};
72
73/* bits in struct cgroup_subsys_state flags field */
74enum {
75 CSS_ROOT, /* This CSS is the root of the subsystem */
Paul Menagee7c5ec92009-01-07 18:08:38 -080076 CSS_REMOVED, /* This CSS is dead */
Paul Menageddbcc7e2007-10-18 23:39:30 -070077};
78
79/*
Paul Menagee7c5ec92009-01-07 18:08:38 -080080 * Call css_get() to hold a reference on the css; it can be used
81 * for a reference obtained via:
82 * - an existing ref-counted reference to the css
83 * - task->cgroups for a locked task
Paul Menageddbcc7e2007-10-18 23:39:30 -070084 */
85
86static inline void css_get(struct cgroup_subsys_state *css)
87{
88 /* We don't need to reference count the root state */
89 if (!test_bit(CSS_ROOT, &css->flags))
90 atomic_inc(&css->refcnt);
91}
Paul Menagee7c5ec92009-01-07 18:08:38 -080092
93static inline bool css_is_removed(struct cgroup_subsys_state *css)
94{
95 return test_bit(CSS_REMOVED, &css->flags);
96}
97
98/*
99 * Call css_tryget() to take a reference on a css if your existing
100 * (known-valid) reference isn't already ref-counted. Returns false if
101 * the css has been destroyed.
102 */
103
104static inline bool css_tryget(struct cgroup_subsys_state *css)
105{
106 if (test_bit(CSS_ROOT, &css->flags))
107 return true;
108 while (!atomic_inc_not_zero(&css->refcnt)) {
109 if (test_bit(CSS_REMOVED, &css->flags))
110 return false;
Paul Menage804b3c22009-01-29 14:25:21 -0800111 cpu_relax();
Paul Menagee7c5ec92009-01-07 18:08:38 -0800112 }
113 return true;
114}
115
Paul Menageddbcc7e2007-10-18 23:39:30 -0700116/*
117 * css_put() should be called to release a reference taken by
Paul Menagee7c5ec92009-01-07 18:08:38 -0800118 * css_get() or css_tryget()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700119 */
120
Paul Menage81a6a5c2007-10-18 23:39:38 -0700121extern void __css_put(struct cgroup_subsys_state *css);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700122static inline void css_put(struct cgroup_subsys_state *css)
123{
124 if (!test_bit(CSS_ROOT, &css->flags))
Paul Menage81a6a5c2007-10-18 23:39:38 -0700125 __css_put(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700126}
127
Paul Menage3116f0e2008-04-29 01:00:04 -0700128/* bits in struct cgroup flags field */
129enum {
130 /* Control Group is dead */
131 CGRP_REMOVED,
Paul Menaged20a3902009-04-02 16:57:22 -0700132 /*
133 * Control Group has previously had a child cgroup or a task,
134 * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set)
135 */
Paul Menage3116f0e2008-04-29 01:00:04 -0700136 CGRP_RELEASABLE,
137 /* Control Group requires release notifications to userspace */
138 CGRP_NOTIFY_ON_RELEASE,
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700139 /*
140 * A thread in rmdir() is wating for this cgroup.
141 */
142 CGRP_WAIT_ON_RMDIR,
Paul Menage3116f0e2008-04-29 01:00:04 -0700143};
144
Ben Blum72a8cb32009-09-23 15:56:27 -0700145/* which pidlist file are we talking about? */
146enum cgroup_filetype {
147 CGROUP_FILE_PROCS,
148 CGROUP_FILE_TASKS,
149};
150
151/*
152 * A pidlist is a list of pids that virtually represents the contents of one
153 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
154 * a pair (one each for procs, tasks) for each pid namespace that's relevant
155 * to the cgroup.
156 */
Ben Blum102a7752009-09-23 15:56:26 -0700157struct cgroup_pidlist {
Ben Blum72a8cb32009-09-23 15:56:27 -0700158 /*
159 * used to find which pidlist is wanted. doesn't change as long as
160 * this particular list stays in the list.
161 */
162 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
Ben Blum102a7752009-09-23 15:56:26 -0700163 /* array of xids */
164 pid_t *list;
165 /* how many elements the above list has */
166 int length;
167 /* how many files are using the current array */
168 int use_count;
Ben Blum72a8cb32009-09-23 15:56:27 -0700169 /* each of these stored in a list by its cgroup */
170 struct list_head links;
171 /* pointer to the cgroup we belong to, for list removal purposes */
172 struct cgroup *owner;
173 /* protects the other fields */
174 struct rw_semaphore mutex;
Ben Blum102a7752009-09-23 15:56:26 -0700175};
176
Paul Menageddbcc7e2007-10-18 23:39:30 -0700177struct cgroup {
178 unsigned long flags; /* "unsigned long" so bitops work */
179
Paul Menaged20a3902009-04-02 16:57:22 -0700180 /*
181 * count users of this cgroup. >0 means busy, but doesn't
182 * necessarily indicate the number of tasks in the cgroup
183 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700184 atomic_t count;
185
186 /*
187 * We link our 'sibling' struct into our parent's 'children'.
188 * Our children link their 'sibling' into our 'children'.
189 */
190 struct list_head sibling; /* my parent's children */
191 struct list_head children; /* my children */
192
Paul Menaged20a3902009-04-02 16:57:22 -0700193 struct cgroup *parent; /* my parent */
Paul Menagea47295e2009-01-07 18:07:44 -0800194 struct dentry *dentry; /* cgroup fs entry, RCU protected */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700195
196 /* Private pointers for each registered subsystem */
197 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
198
199 struct cgroupfs_root *root;
200 struct cgroup *top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700201
202 /*
203 * List of cg_cgroup_links pointing at css_sets with
204 * tasks in this cgroup. Protected by css_set_lock
205 */
206 struct list_head css_sets;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700207
208 /*
209 * Linked list running through all cgroups that can
210 * potentially be reaped by the release agent. Protected by
211 * release_list_lock
212 */
213 struct list_head release_list;
Paul Menagecc31edc2008-10-18 20:28:04 -0700214
Ben Blum72a8cb32009-09-23 15:56:27 -0700215 /*
216 * list of pidlists, up to two for each namespace (one for procs, one
217 * for tasks); created on demand.
218 */
219 struct list_head pidlists;
220 struct mutex pidlist_mutex;
Paul Menagea47295e2009-01-07 18:07:44 -0800221
222 /* For RCU-protected deletion */
223 struct rcu_head rcu_head;
Paul Menage817929e2007-10-18 23:39:36 -0700224};
225
Paul Menaged20a3902009-04-02 16:57:22 -0700226/*
227 * A css_set is a structure holding pointers to a set of
Paul Menage817929e2007-10-18 23:39:36 -0700228 * cgroup_subsys_state objects. This saves space in the task struct
229 * object and speeds up fork()/exit(), since a single inc/dec and a
Paul Menaged20a3902009-04-02 16:57:22 -0700230 * list_add()/del() can bump the reference count on the entire cgroup
231 * set for a task.
Paul Menage817929e2007-10-18 23:39:36 -0700232 */
233
234struct css_set {
235
236 /* Reference count */
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700237 atomic_t refcount;
Paul Menage817929e2007-10-18 23:39:36 -0700238
239 /*
Li Zefan472b1052008-04-29 01:00:11 -0700240 * List running through all cgroup groups in the same hash
241 * slot. Protected by css_set_lock
242 */
243 struct hlist_node hlist;
244
245 /*
Paul Menage817929e2007-10-18 23:39:36 -0700246 * List running through all tasks using this cgroup
247 * group. Protected by css_set_lock
248 */
249 struct list_head tasks;
250
251 /*
252 * List of cg_cgroup_link objects on link chains from
253 * cgroups referenced from this css_set. Protected by
254 * css_set_lock
255 */
256 struct list_head cg_links;
257
258 /*
259 * Set of subsystem states, one for each subsystem. This array
260 * is immutable after creation apart from the init_css_set
261 * during subsystem registration (at boot time).
262 */
263 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
Ben Blumc3783692009-09-23 15:56:29 -0700264
265 /* For RCU-protected deletion */
266 struct rcu_head rcu_head;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700267};
268
Paul Menage91796562008-04-29 01:00:01 -0700269/*
270 * cgroup_map_cb is an abstract callback API for reporting map-valued
271 * control files
272 */
273
274struct cgroup_map_cb {
275 int (*fill)(struct cgroup_map_cb *cb, const char *key, u64 value);
276 void *state;
277};
278
Paul Menaged20a3902009-04-02 16:57:22 -0700279/*
280 * struct cftype: handler definitions for cgroup control files
Paul Menageddbcc7e2007-10-18 23:39:30 -0700281 *
282 * When reading/writing to a file:
Li Zefana043e3b2008-02-23 15:24:09 -0800283 * - the cgroup to use is file->f_dentry->d_parent->d_fsdata
Paul Menageddbcc7e2007-10-18 23:39:30 -0700284 * - the 'cftype' of the file is file->f_dentry->d_fsdata
285 */
286
287#define MAX_CFTYPE_NAME 64
288struct cftype {
Paul Menaged20a3902009-04-02 16:57:22 -0700289 /*
290 * By convention, the name should begin with the name of the
291 * subsystem, followed by a period
292 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700293 char name[MAX_CFTYPE_NAME];
294 int private;
Li Zefan099fca32009-04-02 16:57:29 -0700295 /*
296 * If not 0, file mode is set to this value, otherwise it will
297 * be figured out automatically
298 */
299 mode_t mode;
Paul Menagedb3b1492008-07-25 01:46:58 -0700300
301 /*
302 * If non-zero, defines the maximum length of string that can
303 * be passed to write_string; defaults to 64
304 */
305 size_t max_write_len;
306
Paul Menagece16b492008-07-25 01:46:57 -0700307 int (*open)(struct inode *inode, struct file *file);
308 ssize_t (*read)(struct cgroup *cgrp, struct cftype *cft,
309 struct file *file,
310 char __user *buf, size_t nbytes, loff_t *ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700311 /*
Paul Menagef4c753b2008-04-29 00:59:56 -0700312 * read_u64() is a shortcut for the common case of returning a
Paul Menageddbcc7e2007-10-18 23:39:30 -0700313 * single integer. Use it in place of read()
314 */
Paul Menagece16b492008-07-25 01:46:57 -0700315 u64 (*read_u64)(struct cgroup *cgrp, struct cftype *cft);
Paul Menage91796562008-04-29 01:00:01 -0700316 /*
Paul Menagee73d2c62008-04-29 01:00:06 -0700317 * read_s64() is a signed version of read_u64()
318 */
Paul Menagece16b492008-07-25 01:46:57 -0700319 s64 (*read_s64)(struct cgroup *cgrp, struct cftype *cft);
Paul Menagee73d2c62008-04-29 01:00:06 -0700320 /*
Paul Menage91796562008-04-29 01:00:01 -0700321 * read_map() is used for defining a map of key/value
322 * pairs. It should call cb->fill(cb, key, value) for each
323 * entry. The key/value pairs (and their ordering) should not
324 * change between reboots.
325 */
Paul Menagece16b492008-07-25 01:46:57 -0700326 int (*read_map)(struct cgroup *cont, struct cftype *cft,
327 struct cgroup_map_cb *cb);
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700328 /*
329 * read_seq_string() is used for outputting a simple sequence
330 * using seqfile.
331 */
Paul Menagece16b492008-07-25 01:46:57 -0700332 int (*read_seq_string)(struct cgroup *cont, struct cftype *cft,
333 struct seq_file *m);
Paul Menage91796562008-04-29 01:00:01 -0700334
Paul Menagece16b492008-07-25 01:46:57 -0700335 ssize_t (*write)(struct cgroup *cgrp, struct cftype *cft,
336 struct file *file,
337 const char __user *buf, size_t nbytes, loff_t *ppos);
Paul Menage355e0c42007-10-18 23:39:33 -0700338
339 /*
Paul Menagef4c753b2008-04-29 00:59:56 -0700340 * write_u64() is a shortcut for the common case of accepting
Paul Menage355e0c42007-10-18 23:39:33 -0700341 * a single integer (as parsed by simple_strtoull) from
342 * userspace. Use in place of write(); return 0 or error.
343 */
Paul Menagece16b492008-07-25 01:46:57 -0700344 int (*write_u64)(struct cgroup *cgrp, struct cftype *cft, u64 val);
Paul Menagee73d2c62008-04-29 01:00:06 -0700345 /*
346 * write_s64() is a signed version of write_u64()
347 */
Paul Menagece16b492008-07-25 01:46:57 -0700348 int (*write_s64)(struct cgroup *cgrp, struct cftype *cft, s64 val);
Paul Menage355e0c42007-10-18 23:39:33 -0700349
Pavel Emelyanovd447ea22008-04-29 01:00:08 -0700350 /*
Paul Menagedb3b1492008-07-25 01:46:58 -0700351 * write_string() is passed a nul-terminated kernelspace
352 * buffer of maximum length determined by max_write_len.
353 * Returns 0 or -ve error code.
354 */
355 int (*write_string)(struct cgroup *cgrp, struct cftype *cft,
356 const char *buffer);
357 /*
Pavel Emelyanovd447ea22008-04-29 01:00:08 -0700358 * trigger() callback can be used to get some kick from the
359 * userspace, when the actual string written is not important
360 * at all. The private field can be used to determine the
361 * kick type for multiplexing.
362 */
363 int (*trigger)(struct cgroup *cgrp, unsigned int event);
364
Paul Menagece16b492008-07-25 01:46:57 -0700365 int (*release)(struct inode *inode, struct file *file);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700366};
367
Cliff Wickman31a7df02008-02-07 00:14:42 -0800368struct cgroup_scanner {
369 struct cgroup *cg;
370 int (*test_task)(struct task_struct *p, struct cgroup_scanner *scan);
371 void (*process_task)(struct task_struct *p,
372 struct cgroup_scanner *scan);
373 struct ptr_heap *heap;
Li Zefanbd1a8ab2009-04-02 16:57:50 -0700374 void *data;
Cliff Wickman31a7df02008-02-07 00:14:42 -0800375};
376
Paul Menaged20a3902009-04-02 16:57:22 -0700377/*
378 * Add a new file to the given cgroup directory. Should only be
379 * called by subsystems from within a populate() method
380 */
Li Zefanffd2d882008-02-23 15:24:09 -0800381int cgroup_add_file(struct cgroup *cgrp, struct cgroup_subsys *subsys,
Paul Menageddbcc7e2007-10-18 23:39:30 -0700382 const struct cftype *cft);
383
Paul Menaged20a3902009-04-02 16:57:22 -0700384/*
385 * Add a set of new files to the given cgroup directory. Should
386 * only be called by subsystems from within a populate() method
387 */
Li Zefanffd2d882008-02-23 15:24:09 -0800388int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -0700389 struct cgroup_subsys *subsys,
390 const struct cftype cft[],
391 int count);
392
Li Zefanffd2d882008-02-23 15:24:09 -0800393int cgroup_is_removed(const struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700394
Li Zefanffd2d882008-02-23 15:24:09 -0800395int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700396
Li Zefanffd2d882008-02-23 15:24:09 -0800397int cgroup_task_count(const struct cgroup *cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -0700398
Grzegorz Nosek313e9242009-04-02 16:57:23 -0700399/* Return true if cgrp is a descendant of the task's cgroup */
400int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700401
Thadeu Lima de Souza Cascardo21acb9c2009-02-04 10:12:08 +0100402/*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700403 * When the subsys has to access css and may add permanent refcnt to css,
404 * it should take care of racy conditions with rmdir(). Following set of
405 * functions, is for stop/restart rmdir if necessary.
406 * Because these will call css_get/put, "css" should be alive css.
407 *
408 * cgroup_exclude_rmdir();
409 * ...do some jobs which may access arbitrary empty cgroup
410 * cgroup_release_and_wakeup_rmdir();
411 *
412 * When someone removes a cgroup while cgroup_exclude_rmdir() holds it,
413 * it sleeps and cgroup_release_and_wakeup_rmdir() will wake him up.
414 */
415
416void cgroup_exclude_rmdir(struct cgroup_subsys_state *css);
417void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css);
418
419/*
Thadeu Lima de Souza Cascardo21acb9c2009-02-04 10:12:08 +0100420 * Control Group subsystem type.
421 * See Documentation/cgroups/cgroups.txt for details
422 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700423
424struct cgroup_subsys {
425 struct cgroup_subsys_state *(*create)(struct cgroup_subsys *ss,
Li Zefanffd2d882008-02-23 15:24:09 -0800426 struct cgroup *cgrp);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700427 int (*pre_destroy)(struct cgroup_subsys *ss, struct cgroup *cgrp);
Li Zefanffd2d882008-02-23 15:24:09 -0800428 void (*destroy)(struct cgroup_subsys *ss, struct cgroup *cgrp);
Ben Blumbe367d02009-09-23 15:56:31 -0700429 int (*can_attach)(struct cgroup_subsys *ss, struct cgroup *cgrp,
430 struct task_struct *tsk, bool threadgroup);
Li Zefanffd2d882008-02-23 15:24:09 -0800431 void (*attach)(struct cgroup_subsys *ss, struct cgroup *cgrp,
Ben Blumbe367d02009-09-23 15:56:31 -0700432 struct cgroup *old_cgrp, struct task_struct *tsk,
433 bool threadgroup);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700434 void (*fork)(struct cgroup_subsys *ss, struct task_struct *task);
435 void (*exit)(struct cgroup_subsys *ss, struct task_struct *task);
436 int (*populate)(struct cgroup_subsys *ss,
Li Zefanffd2d882008-02-23 15:24:09 -0800437 struct cgroup *cgrp);
438 void (*post_clone)(struct cgroup_subsys *ss, struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700439 void (*bind)(struct cgroup_subsys *ss, struct cgroup *root);
Hugh Dickinse5991372009-01-06 14:39:22 -0800440
Paul Menageddbcc7e2007-10-18 23:39:30 -0700441 int subsys_id;
442 int active;
Paul Menage8bab8dd2008-04-04 14:29:57 -0700443 int disabled;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700444 int early_init;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700445 /*
446 * True if this subsys uses ID. ID is not available before cgroup_init()
447 * (not available in early_init time.)
448 */
449 bool use_id;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700450#define MAX_CGROUP_TYPE_NAMELEN 32
451 const char *name;
452
Paul Menage999cd8a2009-01-07 18:08:36 -0800453 /*
454 * Protects sibling/children links of cgroups in this
455 * hierarchy, plus protects which hierarchy (or none) the
456 * subsystem is a part of (i.e. root/sibling). To avoid
457 * potential deadlocks, the following operations should not be
458 * undertaken while holding any hierarchy_mutex:
459 *
460 * - allocating memory
461 * - initiating hotplug events
462 */
463 struct mutex hierarchy_mutex;
Li Zefancfebe562009-02-11 13:04:36 -0800464 struct lock_class_key subsys_key;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700465
Paul Menage999cd8a2009-01-07 18:08:36 -0800466 /*
467 * Link to parent, and list entry in parent's children.
468 * Protected by this->hierarchy_mutex and cgroup_lock()
469 */
470 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700471 struct list_head sibling;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700472 /* used when use_id == true */
473 struct idr idr;
474 spinlock_t id_lock;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700475};
476
477#define SUBSYS(_x) extern struct cgroup_subsys _x ## _subsys;
478#include <linux/cgroup_subsys.h>
479#undef SUBSYS
480
481static inline struct cgroup_subsys_state *cgroup_subsys_state(
Li Zefanffd2d882008-02-23 15:24:09 -0800482 struct cgroup *cgrp, int subsys_id)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700483{
Li Zefanffd2d882008-02-23 15:24:09 -0800484 return cgrp->subsys[subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700485}
486
487static inline struct cgroup_subsys_state *task_subsys_state(
488 struct task_struct *task, int subsys_id)
489{
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800490 return rcu_dereference_check(task->cgroups->subsys[subsys_id],
491 rcu_read_lock_held() ||
492 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -0700493}
494
495static inline struct cgroup* task_cgroup(struct task_struct *task,
496 int subsys_id)
497{
498 return task_subsys_state(task, subsys_id)->cgroup;
499}
500
Serge E. Hallyne885dcd2008-07-25 01:47:06 -0700501int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *ss,
502 char *nodename);
Paul Menage697f4162007-10-18 23:39:34 -0700503
Paul Menage817929e2007-10-18 23:39:36 -0700504/* A cgroup_iter should be treated as an opaque object */
505struct cgroup_iter {
506 struct list_head *cg_link;
507 struct list_head *task;
508};
509
Paul Menaged20a3902009-04-02 16:57:22 -0700510/*
511 * To iterate across the tasks in a cgroup:
Paul Menage817929e2007-10-18 23:39:36 -0700512 *
513 * 1) call cgroup_iter_start to intialize an iterator
514 *
515 * 2) call cgroup_iter_next() to retrieve member tasks until it
516 * returns NULL or until you want to end the iteration
517 *
518 * 3) call cgroup_iter_end() to destroy the iterator.
Cliff Wickman31a7df02008-02-07 00:14:42 -0800519 *
Paul Menaged20a3902009-04-02 16:57:22 -0700520 * Or, call cgroup_scan_tasks() to iterate through every task in a
521 * cgroup - cgroup_scan_tasks() holds the css_set_lock when calling
522 * the test_task() callback, but not while calling the process_task()
523 * callback.
Paul Menage817929e2007-10-18 23:39:36 -0700524 */
Li Zefanffd2d882008-02-23 15:24:09 -0800525void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it);
526struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700527 struct cgroup_iter *it);
Li Zefanffd2d882008-02-23 15:24:09 -0800528void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it);
Cliff Wickman31a7df02008-02-07 00:14:42 -0800529int cgroup_scan_tasks(struct cgroup_scanner *scan);
Cliff Wickman956db3c2008-02-07 00:14:43 -0800530int cgroup_attach_task(struct cgroup *, struct task_struct *);
Paul Menage817929e2007-10-18 23:39:36 -0700531
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700532/*
533 * CSS ID is ID for cgroup_subsys_state structs under subsys. This only works
534 * if cgroup_subsys.use_id == true. It can be used for looking up and scanning.
535 * CSS ID is assigned at cgroup allocation (create) automatically
536 * and removed when subsys calls free_css_id() function. This is because
537 * the lifetime of cgroup_subsys_state is subsys's matter.
538 *
539 * Looking up and scanning function should be called under rcu_read_lock().
540 * Taking cgroup_mutex()/hierarchy_mutex() is not necessary for following calls.
541 * But the css returned by this routine can be "not populated yet" or "being
542 * destroyed". The caller should check css and cgroup's status.
543 */
544
545/*
546 * Typically Called at ->destroy(), or somewhere the subsys frees
547 * cgroup_subsys_state.
548 */
549void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css);
550
551/* Find a cgroup_subsys_state which has given ID */
552
553struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id);
554
555/*
556 * Get a cgroup whose id is greater than or equal to id under tree of root.
557 * Returning a cgroup_subsys_state or NULL.
558 */
559struct cgroup_subsys_state *css_get_next(struct cgroup_subsys *ss, int id,
560 struct cgroup_subsys_state *root, int *foundid);
561
562/* Returns true if root is ancestor of cg */
563bool css_is_ancestor(struct cgroup_subsys_state *cg,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700564 const struct cgroup_subsys_state *root);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700565
566/* Get id and depth of css */
567unsigned short css_id(struct cgroup_subsys_state *css);
568unsigned short css_depth(struct cgroup_subsys_state *css);
569
Paul Menageddbcc7e2007-10-18 23:39:30 -0700570#else /* !CONFIG_CGROUPS */
571
572static inline int cgroup_init_early(void) { return 0; }
573static inline int cgroup_init(void) { return 0; }
Paul Menageb4f48b62007-10-18 23:39:33 -0700574static inline void cgroup_fork(struct task_struct *p) {}
575static inline void cgroup_fork_callbacks(struct task_struct *p) {}
Paul Menage817929e2007-10-18 23:39:36 -0700576static inline void cgroup_post_fork(struct task_struct *p) {}
Paul Menageb4f48b62007-10-18 23:39:33 -0700577static inline void cgroup_exit(struct task_struct *p, int callbacks) {}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700578
579static inline void cgroup_lock(void) {}
580static inline void cgroup_unlock(void) {}
Balbir Singh846c7bb2007-10-18 23:39:44 -0700581static inline int cgroupstats_build(struct cgroupstats *stats,
582 struct dentry *dentry)
583{
584 return -EINVAL;
585}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700586
587#endif /* !CONFIG_CGROUPS */
588
Paul Menageddbcc7e2007-10-18 23:39:30 -0700589#endif /* _LINUX_CGROUP_H */