blob: 402ce477c47eca772e578d59229477bbc9e04af1 [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);
Ben Blume6a11052010-03-10 15:22:09 -080040extern int cgroup_load_subsys(struct cgroup_subsys *ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -070041
Alexey Dobriyan828c0952009-10-01 15:43:56 -070042extern const struct file_operations proc_cgroup_operations;
Paul Menagea4243162007-10-18 23:39:35 -070043
Ben Blumaae8aab2010-03-10 15:22:07 -080044/* Define the enumeration of all builtin cgroup subsystems */
Paul Menage817929e2007-10-18 23:39:36 -070045#define SUBSYS(_x) _x ## _subsys_id,
46enum cgroup_subsys_id {
47#include <linux/cgroup_subsys.h>
Ben Blumaae8aab2010-03-10 15:22:07 -080048 CGROUP_BUILTIN_SUBSYS_COUNT
Paul Menage817929e2007-10-18 23:39:36 -070049};
50#undef SUBSYS
Ben Blumaae8aab2010-03-10 15:22:07 -080051/*
52 * This define indicates the maximum number of subsystems that can be loaded
53 * at once. We limit to this many since cgroupfs_root has subsys_bits to keep
54 * track of all of them.
55 */
56#define CGROUP_SUBSYS_COUNT (BITS_PER_BYTE*sizeof(unsigned long))
Paul Menage817929e2007-10-18 23:39:36 -070057
Paul Menageddbcc7e2007-10-18 23:39:30 -070058/* Per-subsystem/per-cgroup state maintained by the system. */
59struct cgroup_subsys_state {
Paul Menaged20a3902009-04-02 16:57:22 -070060 /*
61 * The cgroup that this subsystem is attached to. Useful
Paul Menageddbcc7e2007-10-18 23:39:30 -070062 * for subsystems that want to know about the cgroup
Paul Menaged20a3902009-04-02 16:57:22 -070063 * hierarchy structure
64 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070065 struct cgroup *cgroup;
66
Paul Menaged20a3902009-04-02 16:57:22 -070067 /*
68 * State maintained by the cgroup system to allow subsystems
Paul Menagee7c5ec92009-01-07 18:08:38 -080069 * to be "busy". Should be accessed via css_get(),
Paul Menaged20a3902009-04-02 16:57:22 -070070 * css_tryget() and and css_put().
71 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070072
73 atomic_t refcnt;
74
75 unsigned long flags;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -070076 /* ID for this css, if possible */
77 struct css_id *id;
Paul Menageddbcc7e2007-10-18 23:39:30 -070078};
79
80/* bits in struct cgroup_subsys_state flags field */
81enum {
82 CSS_ROOT, /* This CSS is the root of the subsystem */
Paul Menagee7c5ec92009-01-07 18:08:38 -080083 CSS_REMOVED, /* This CSS is dead */
Paul Menageddbcc7e2007-10-18 23:39:30 -070084};
85
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -080086/* Caller must verify that the css is not for root cgroup */
87static inline void __css_get(struct cgroup_subsys_state *css, int count)
88{
89 atomic_add(count, &css->refcnt);
90}
91
Paul Menageddbcc7e2007-10-18 23:39:30 -070092/*
Paul Menagee7c5ec92009-01-07 18:08:38 -080093 * Call css_get() to hold a reference on the css; it can be used
94 * for a reference obtained via:
95 * - an existing ref-counted reference to the css
96 * - task->cgroups for a locked task
Paul Menageddbcc7e2007-10-18 23:39:30 -070097 */
98
99static inline void css_get(struct cgroup_subsys_state *css)
100{
101 /* We don't need to reference count the root state */
102 if (!test_bit(CSS_ROOT, &css->flags))
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -0800103 __css_get(css, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700104}
Paul Menagee7c5ec92009-01-07 18:08:38 -0800105
106static inline bool css_is_removed(struct cgroup_subsys_state *css)
107{
108 return test_bit(CSS_REMOVED, &css->flags);
109}
110
111/*
112 * Call css_tryget() to take a reference on a css if your existing
113 * (known-valid) reference isn't already ref-counted. Returns false if
114 * the css has been destroyed.
115 */
116
117static inline bool css_tryget(struct cgroup_subsys_state *css)
118{
119 if (test_bit(CSS_ROOT, &css->flags))
120 return true;
121 while (!atomic_inc_not_zero(&css->refcnt)) {
122 if (test_bit(CSS_REMOVED, &css->flags))
123 return false;
Paul Menage804b3c22009-01-29 14:25:21 -0800124 cpu_relax();
Paul Menagee7c5ec92009-01-07 18:08:38 -0800125 }
126 return true;
127}
128
Paul Menageddbcc7e2007-10-18 23:39:30 -0700129/*
130 * css_put() should be called to release a reference taken by
Paul Menagee7c5ec92009-01-07 18:08:38 -0800131 * css_get() or css_tryget()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700132 */
133
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -0800134extern void __css_put(struct cgroup_subsys_state *css, int count);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700135static inline void css_put(struct cgroup_subsys_state *css)
136{
137 if (!test_bit(CSS_ROOT, &css->flags))
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -0800138 __css_put(css, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700139}
140
Paul Menage3116f0e2008-04-29 01:00:04 -0700141/* bits in struct cgroup flags field */
142enum {
143 /* Control Group is dead */
144 CGRP_REMOVED,
Paul Menaged20a3902009-04-02 16:57:22 -0700145 /*
146 * Control Group has previously had a child cgroup or a task,
147 * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set)
148 */
Paul Menage3116f0e2008-04-29 01:00:04 -0700149 CGRP_RELEASABLE,
150 /* Control Group requires release notifications to userspace */
151 CGRP_NOTIFY_ON_RELEASE,
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700152 /*
153 * A thread in rmdir() is wating for this cgroup.
154 */
155 CGRP_WAIT_ON_RMDIR,
Paul Menage3116f0e2008-04-29 01:00:04 -0700156};
157
Ben Blum72a8cb32009-09-23 15:56:27 -0700158/* which pidlist file are we talking about? */
159enum cgroup_filetype {
160 CGROUP_FILE_PROCS,
161 CGROUP_FILE_TASKS,
162};
163
164/*
165 * A pidlist is a list of pids that virtually represents the contents of one
166 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
167 * a pair (one each for procs, tasks) for each pid namespace that's relevant
168 * to the cgroup.
169 */
Ben Blum102a7752009-09-23 15:56:26 -0700170struct cgroup_pidlist {
Ben Blum72a8cb32009-09-23 15:56:27 -0700171 /*
172 * used to find which pidlist is wanted. doesn't change as long as
173 * this particular list stays in the list.
174 */
175 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
Ben Blum102a7752009-09-23 15:56:26 -0700176 /* array of xids */
177 pid_t *list;
178 /* how many elements the above list has */
179 int length;
180 /* how many files are using the current array */
181 int use_count;
Ben Blum72a8cb32009-09-23 15:56:27 -0700182 /* each of these stored in a list by its cgroup */
183 struct list_head links;
184 /* pointer to the cgroup we belong to, for list removal purposes */
185 struct cgroup *owner;
186 /* protects the other fields */
187 struct rw_semaphore mutex;
Ben Blum102a7752009-09-23 15:56:26 -0700188};
189
Paul Menageddbcc7e2007-10-18 23:39:30 -0700190struct cgroup {
191 unsigned long flags; /* "unsigned long" so bitops work */
192
Paul Menaged20a3902009-04-02 16:57:22 -0700193 /*
194 * count users of this cgroup. >0 means busy, but doesn't
195 * necessarily indicate the number of tasks in the cgroup
196 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700197 atomic_t count;
198
199 /*
200 * We link our 'sibling' struct into our parent's 'children'.
201 * Our children link their 'sibling' into our 'children'.
202 */
203 struct list_head sibling; /* my parent's children */
204 struct list_head children; /* my children */
205
Paul Menaged20a3902009-04-02 16:57:22 -0700206 struct cgroup *parent; /* my parent */
Paul Menagea47295e2009-01-07 18:07:44 -0800207 struct dentry *dentry; /* cgroup fs entry, RCU protected */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700208
209 /* Private pointers for each registered subsystem */
210 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
211
212 struct cgroupfs_root *root;
213 struct cgroup *top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700214
215 /*
216 * List of cg_cgroup_links pointing at css_sets with
217 * tasks in this cgroup. Protected by css_set_lock
218 */
219 struct list_head css_sets;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700220
221 /*
222 * Linked list running through all cgroups that can
223 * potentially be reaped by the release agent. Protected by
224 * release_list_lock
225 */
226 struct list_head release_list;
Paul Menagecc31edc2008-10-18 20:28:04 -0700227
Ben Blum72a8cb32009-09-23 15:56:27 -0700228 /*
229 * list of pidlists, up to two for each namespace (one for procs, one
230 * for tasks); created on demand.
231 */
232 struct list_head pidlists;
233 struct mutex pidlist_mutex;
Paul Menagea47295e2009-01-07 18:07:44 -0800234
235 /* For RCU-protected deletion */
236 struct rcu_head rcu_head;
Paul Menage817929e2007-10-18 23:39:36 -0700237};
238
Paul Menaged20a3902009-04-02 16:57:22 -0700239/*
240 * A css_set is a structure holding pointers to a set of
Paul Menage817929e2007-10-18 23:39:36 -0700241 * cgroup_subsys_state objects. This saves space in the task struct
242 * object and speeds up fork()/exit(), since a single inc/dec and a
Paul Menaged20a3902009-04-02 16:57:22 -0700243 * list_add()/del() can bump the reference count on the entire cgroup
244 * set for a task.
Paul Menage817929e2007-10-18 23:39:36 -0700245 */
246
247struct css_set {
248
249 /* Reference count */
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700250 atomic_t refcount;
Paul Menage817929e2007-10-18 23:39:36 -0700251
252 /*
Li Zefan472b1052008-04-29 01:00:11 -0700253 * List running through all cgroup groups in the same hash
254 * slot. Protected by css_set_lock
255 */
256 struct hlist_node hlist;
257
258 /*
Paul Menage817929e2007-10-18 23:39:36 -0700259 * List running through all tasks using this cgroup
260 * group. Protected by css_set_lock
261 */
262 struct list_head tasks;
263
264 /*
265 * List of cg_cgroup_link objects on link chains from
266 * cgroups referenced from this css_set. Protected by
267 * css_set_lock
268 */
269 struct list_head cg_links;
270
271 /*
272 * Set of subsystem states, one for each subsystem. This array
273 * is immutable after creation apart from the init_css_set
274 * during subsystem registration (at boot time).
275 */
276 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
Ben Blumc3783692009-09-23 15:56:29 -0700277
278 /* For RCU-protected deletion */
279 struct rcu_head rcu_head;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700280};
281
Paul Menage91796562008-04-29 01:00:01 -0700282/*
283 * cgroup_map_cb is an abstract callback API for reporting map-valued
284 * control files
285 */
286
287struct cgroup_map_cb {
288 int (*fill)(struct cgroup_map_cb *cb, const char *key, u64 value);
289 void *state;
290};
291
Paul Menaged20a3902009-04-02 16:57:22 -0700292/*
293 * struct cftype: handler definitions for cgroup control files
Paul Menageddbcc7e2007-10-18 23:39:30 -0700294 *
295 * When reading/writing to a file:
Li Zefana043e3b2008-02-23 15:24:09 -0800296 * - the cgroup to use is file->f_dentry->d_parent->d_fsdata
Paul Menageddbcc7e2007-10-18 23:39:30 -0700297 * - the 'cftype' of the file is file->f_dentry->d_fsdata
298 */
299
300#define MAX_CFTYPE_NAME 64
301struct cftype {
Paul Menaged20a3902009-04-02 16:57:22 -0700302 /*
303 * By convention, the name should begin with the name of the
304 * subsystem, followed by a period
305 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700306 char name[MAX_CFTYPE_NAME];
307 int private;
Li Zefan099fca32009-04-02 16:57:29 -0700308 /*
309 * If not 0, file mode is set to this value, otherwise it will
310 * be figured out automatically
311 */
312 mode_t mode;
Paul Menagedb3b1492008-07-25 01:46:58 -0700313
314 /*
315 * If non-zero, defines the maximum length of string that can
316 * be passed to write_string; defaults to 64
317 */
318 size_t max_write_len;
319
Paul Menagece16b492008-07-25 01:46:57 -0700320 int (*open)(struct inode *inode, struct file *file);
321 ssize_t (*read)(struct cgroup *cgrp, struct cftype *cft,
322 struct file *file,
323 char __user *buf, size_t nbytes, loff_t *ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700324 /*
Paul Menagef4c753b2008-04-29 00:59:56 -0700325 * read_u64() is a shortcut for the common case of returning a
Paul Menageddbcc7e2007-10-18 23:39:30 -0700326 * single integer. Use it in place of read()
327 */
Paul Menagece16b492008-07-25 01:46:57 -0700328 u64 (*read_u64)(struct cgroup *cgrp, struct cftype *cft);
Paul Menage91796562008-04-29 01:00:01 -0700329 /*
Paul Menagee73d2c62008-04-29 01:00:06 -0700330 * read_s64() is a signed version of read_u64()
331 */
Paul Menagece16b492008-07-25 01:46:57 -0700332 s64 (*read_s64)(struct cgroup *cgrp, struct cftype *cft);
Paul Menagee73d2c62008-04-29 01:00:06 -0700333 /*
Paul Menage91796562008-04-29 01:00:01 -0700334 * read_map() is used for defining a map of key/value
335 * pairs. It should call cb->fill(cb, key, value) for each
336 * entry. The key/value pairs (and their ordering) should not
337 * change between reboots.
338 */
Paul Menagece16b492008-07-25 01:46:57 -0700339 int (*read_map)(struct cgroup *cont, struct cftype *cft,
340 struct cgroup_map_cb *cb);
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700341 /*
342 * read_seq_string() is used for outputting a simple sequence
343 * using seqfile.
344 */
Paul Menagece16b492008-07-25 01:46:57 -0700345 int (*read_seq_string)(struct cgroup *cont, struct cftype *cft,
346 struct seq_file *m);
Paul Menage91796562008-04-29 01:00:01 -0700347
Paul Menagece16b492008-07-25 01:46:57 -0700348 ssize_t (*write)(struct cgroup *cgrp, struct cftype *cft,
349 struct file *file,
350 const char __user *buf, size_t nbytes, loff_t *ppos);
Paul Menage355e0c42007-10-18 23:39:33 -0700351
352 /*
Paul Menagef4c753b2008-04-29 00:59:56 -0700353 * write_u64() is a shortcut for the common case of accepting
Paul Menage355e0c42007-10-18 23:39:33 -0700354 * a single integer (as parsed by simple_strtoull) from
355 * userspace. Use in place of write(); return 0 or error.
356 */
Paul Menagece16b492008-07-25 01:46:57 -0700357 int (*write_u64)(struct cgroup *cgrp, struct cftype *cft, u64 val);
Paul Menagee73d2c62008-04-29 01:00:06 -0700358 /*
359 * write_s64() is a signed version of write_u64()
360 */
Paul Menagece16b492008-07-25 01:46:57 -0700361 int (*write_s64)(struct cgroup *cgrp, struct cftype *cft, s64 val);
Paul Menage355e0c42007-10-18 23:39:33 -0700362
Pavel Emelyanovd447ea22008-04-29 01:00:08 -0700363 /*
Paul Menagedb3b1492008-07-25 01:46:58 -0700364 * write_string() is passed a nul-terminated kernelspace
365 * buffer of maximum length determined by max_write_len.
366 * Returns 0 or -ve error code.
367 */
368 int (*write_string)(struct cgroup *cgrp, struct cftype *cft,
369 const char *buffer);
370 /*
Pavel Emelyanovd447ea22008-04-29 01:00:08 -0700371 * trigger() callback can be used to get some kick from the
372 * userspace, when the actual string written is not important
373 * at all. The private field can be used to determine the
374 * kick type for multiplexing.
375 */
376 int (*trigger)(struct cgroup *cgrp, unsigned int event);
377
Paul Menagece16b492008-07-25 01:46:57 -0700378 int (*release)(struct inode *inode, struct file *file);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700379};
380
Cliff Wickman31a7df02008-02-07 00:14:42 -0800381struct cgroup_scanner {
382 struct cgroup *cg;
383 int (*test_task)(struct task_struct *p, struct cgroup_scanner *scan);
384 void (*process_task)(struct task_struct *p,
385 struct cgroup_scanner *scan);
386 struct ptr_heap *heap;
Li Zefanbd1a8ab2009-04-02 16:57:50 -0700387 void *data;
Cliff Wickman31a7df02008-02-07 00:14:42 -0800388};
389
Paul Menaged20a3902009-04-02 16:57:22 -0700390/*
391 * Add a new file to the given cgroup directory. Should only be
392 * called by subsystems from within a populate() method
393 */
Li Zefanffd2d882008-02-23 15:24:09 -0800394int cgroup_add_file(struct cgroup *cgrp, struct cgroup_subsys *subsys,
Paul Menageddbcc7e2007-10-18 23:39:30 -0700395 const struct cftype *cft);
396
Paul Menaged20a3902009-04-02 16:57:22 -0700397/*
398 * Add a set of new files to the given cgroup directory. Should
399 * only be called by subsystems from within a populate() method
400 */
Li Zefanffd2d882008-02-23 15:24:09 -0800401int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -0700402 struct cgroup_subsys *subsys,
403 const struct cftype cft[],
404 int count);
405
Li Zefanffd2d882008-02-23 15:24:09 -0800406int cgroup_is_removed(const struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700407
Li Zefanffd2d882008-02-23 15:24:09 -0800408int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700409
Li Zefanffd2d882008-02-23 15:24:09 -0800410int cgroup_task_count(const struct cgroup *cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -0700411
Grzegorz Nosek313e9242009-04-02 16:57:23 -0700412/* Return true if cgrp is a descendant of the task's cgroup */
413int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700414
Thadeu Lima de Souza Cascardo21acb9c2009-02-04 10:12:08 +0100415/*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700416 * When the subsys has to access css and may add permanent refcnt to css,
417 * it should take care of racy conditions with rmdir(). Following set of
418 * functions, is for stop/restart rmdir if necessary.
419 * Because these will call css_get/put, "css" should be alive css.
420 *
421 * cgroup_exclude_rmdir();
422 * ...do some jobs which may access arbitrary empty cgroup
423 * cgroup_release_and_wakeup_rmdir();
424 *
425 * When someone removes a cgroup while cgroup_exclude_rmdir() holds it,
426 * it sleeps and cgroup_release_and_wakeup_rmdir() will wake him up.
427 */
428
429void cgroup_exclude_rmdir(struct cgroup_subsys_state *css);
430void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css);
431
432/*
Thadeu Lima de Souza Cascardo21acb9c2009-02-04 10:12:08 +0100433 * Control Group subsystem type.
434 * See Documentation/cgroups/cgroups.txt for details
435 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700436
437struct cgroup_subsys {
438 struct cgroup_subsys_state *(*create)(struct cgroup_subsys *ss,
Li Zefanffd2d882008-02-23 15:24:09 -0800439 struct cgroup *cgrp);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700440 int (*pre_destroy)(struct cgroup_subsys *ss, struct cgroup *cgrp);
Li Zefanffd2d882008-02-23 15:24:09 -0800441 void (*destroy)(struct cgroup_subsys *ss, struct cgroup *cgrp);
Ben Blumbe367d02009-09-23 15:56:31 -0700442 int (*can_attach)(struct cgroup_subsys *ss, struct cgroup *cgrp,
443 struct task_struct *tsk, bool threadgroup);
Daisuke Nishimura2468c722010-03-10 15:22:03 -0800444 void (*cancel_attach)(struct cgroup_subsys *ss, struct cgroup *cgrp,
445 struct task_struct *tsk, bool threadgroup);
Li Zefanffd2d882008-02-23 15:24:09 -0800446 void (*attach)(struct cgroup_subsys *ss, struct cgroup *cgrp,
Ben Blumbe367d02009-09-23 15:56:31 -0700447 struct cgroup *old_cgrp, struct task_struct *tsk,
448 bool threadgroup);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700449 void (*fork)(struct cgroup_subsys *ss, struct task_struct *task);
450 void (*exit)(struct cgroup_subsys *ss, struct task_struct *task);
451 int (*populate)(struct cgroup_subsys *ss,
Li Zefanffd2d882008-02-23 15:24:09 -0800452 struct cgroup *cgrp);
453 void (*post_clone)(struct cgroup_subsys *ss, struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700454 void (*bind)(struct cgroup_subsys *ss, struct cgroup *root);
Hugh Dickinse5991372009-01-06 14:39:22 -0800455
Paul Menageddbcc7e2007-10-18 23:39:30 -0700456 int subsys_id;
457 int active;
Paul Menage8bab8dd2008-04-04 14:29:57 -0700458 int disabled;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700459 int early_init;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700460 /*
461 * True if this subsys uses ID. ID is not available before cgroup_init()
462 * (not available in early_init time.)
463 */
464 bool use_id;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700465#define MAX_CGROUP_TYPE_NAMELEN 32
466 const char *name;
467
Paul Menage999cd8a2009-01-07 18:08:36 -0800468 /*
469 * Protects sibling/children links of cgroups in this
470 * hierarchy, plus protects which hierarchy (or none) the
471 * subsystem is a part of (i.e. root/sibling). To avoid
472 * potential deadlocks, the following operations should not be
473 * undertaken while holding any hierarchy_mutex:
474 *
475 * - allocating memory
476 * - initiating hotplug events
477 */
478 struct mutex hierarchy_mutex;
Li Zefancfebe562009-02-11 13:04:36 -0800479 struct lock_class_key subsys_key;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700480
Paul Menage999cd8a2009-01-07 18:08:36 -0800481 /*
482 * Link to parent, and list entry in parent's children.
483 * Protected by this->hierarchy_mutex and cgroup_lock()
484 */
485 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700486 struct list_head sibling;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700487 /* used when use_id == true */
488 struct idr idr;
489 spinlock_t id_lock;
Ben Blume6a11052010-03-10 15:22:09 -0800490
491 /* should be defined only by modular subsystems */
492 struct module *module;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700493};
494
495#define SUBSYS(_x) extern struct cgroup_subsys _x ## _subsys;
496#include <linux/cgroup_subsys.h>
497#undef SUBSYS
498
499static inline struct cgroup_subsys_state *cgroup_subsys_state(
Li Zefanffd2d882008-02-23 15:24:09 -0800500 struct cgroup *cgrp, int subsys_id)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700501{
Li Zefanffd2d882008-02-23 15:24:09 -0800502 return cgrp->subsys[subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700503}
504
505static inline struct cgroup_subsys_state *task_subsys_state(
506 struct task_struct *task, int subsys_id)
507{
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800508 return rcu_dereference_check(task->cgroups->subsys[subsys_id],
509 rcu_read_lock_held() ||
510 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -0700511}
512
513static inline struct cgroup* task_cgroup(struct task_struct *task,
514 int subsys_id)
515{
516 return task_subsys_state(task, subsys_id)->cgroup;
517}
518
Serge E. Hallyne885dcd2008-07-25 01:47:06 -0700519int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *ss,
520 char *nodename);
Paul Menage697f4162007-10-18 23:39:34 -0700521
Paul Menage817929e2007-10-18 23:39:36 -0700522/* A cgroup_iter should be treated as an opaque object */
523struct cgroup_iter {
524 struct list_head *cg_link;
525 struct list_head *task;
526};
527
Paul Menaged20a3902009-04-02 16:57:22 -0700528/*
529 * To iterate across the tasks in a cgroup:
Paul Menage817929e2007-10-18 23:39:36 -0700530 *
531 * 1) call cgroup_iter_start to intialize an iterator
532 *
533 * 2) call cgroup_iter_next() to retrieve member tasks until it
534 * returns NULL or until you want to end the iteration
535 *
536 * 3) call cgroup_iter_end() to destroy the iterator.
Cliff Wickman31a7df02008-02-07 00:14:42 -0800537 *
Paul Menaged20a3902009-04-02 16:57:22 -0700538 * Or, call cgroup_scan_tasks() to iterate through every task in a
539 * cgroup - cgroup_scan_tasks() holds the css_set_lock when calling
540 * the test_task() callback, but not while calling the process_task()
541 * callback.
Paul Menage817929e2007-10-18 23:39:36 -0700542 */
Li Zefanffd2d882008-02-23 15:24:09 -0800543void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it);
544struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700545 struct cgroup_iter *it);
Li Zefanffd2d882008-02-23 15:24:09 -0800546void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it);
Cliff Wickman31a7df02008-02-07 00:14:42 -0800547int cgroup_scan_tasks(struct cgroup_scanner *scan);
Cliff Wickman956db3c2008-02-07 00:14:43 -0800548int cgroup_attach_task(struct cgroup *, struct task_struct *);
Paul Menage817929e2007-10-18 23:39:36 -0700549
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700550/*
551 * CSS ID is ID for cgroup_subsys_state structs under subsys. This only works
552 * if cgroup_subsys.use_id == true. It can be used for looking up and scanning.
553 * CSS ID is assigned at cgroup allocation (create) automatically
554 * and removed when subsys calls free_css_id() function. This is because
555 * the lifetime of cgroup_subsys_state is subsys's matter.
556 *
557 * Looking up and scanning function should be called under rcu_read_lock().
558 * Taking cgroup_mutex()/hierarchy_mutex() is not necessary for following calls.
559 * But the css returned by this routine can be "not populated yet" or "being
560 * destroyed". The caller should check css and cgroup's status.
561 */
562
563/*
564 * Typically Called at ->destroy(), or somewhere the subsys frees
565 * cgroup_subsys_state.
566 */
567void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css);
568
569/* Find a cgroup_subsys_state which has given ID */
570
571struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id);
572
573/*
574 * Get a cgroup whose id is greater than or equal to id under tree of root.
575 * Returning a cgroup_subsys_state or NULL.
576 */
577struct cgroup_subsys_state *css_get_next(struct cgroup_subsys *ss, int id,
578 struct cgroup_subsys_state *root, int *foundid);
579
580/* Returns true if root is ancestor of cg */
581bool css_is_ancestor(struct cgroup_subsys_state *cg,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700582 const struct cgroup_subsys_state *root);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700583
584/* Get id and depth of css */
585unsigned short css_id(struct cgroup_subsys_state *css);
586unsigned short css_depth(struct cgroup_subsys_state *css);
587
Paul Menageddbcc7e2007-10-18 23:39:30 -0700588#else /* !CONFIG_CGROUPS */
589
590static inline int cgroup_init_early(void) { return 0; }
591static inline int cgroup_init(void) { return 0; }
Paul Menageb4f48b62007-10-18 23:39:33 -0700592static inline void cgroup_fork(struct task_struct *p) {}
593static inline void cgroup_fork_callbacks(struct task_struct *p) {}
Paul Menage817929e2007-10-18 23:39:36 -0700594static inline void cgroup_post_fork(struct task_struct *p) {}
Paul Menageb4f48b62007-10-18 23:39:33 -0700595static inline void cgroup_exit(struct task_struct *p, int callbacks) {}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700596
597static inline void cgroup_lock(void) {}
598static inline void cgroup_unlock(void) {}
Balbir Singh846c7bb2007-10-18 23:39:44 -0700599static inline int cgroupstats_build(struct cgroupstats *stats,
600 struct dentry *dentry)
601{
602 return -EINVAL;
603}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700604
605#endif /* !CONFIG_CGROUPS */
606
Paul Menageddbcc7e2007-10-18 23:39:30 -0700607#endif /* _LINUX_CGROUP_H */