blob: d3f5fba2c159c3efdef245a7abd23842c3c5be07 [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>
Tejun Heo48ddbe12012-04-01 12:09:56 -070019#include <linux/workqueue.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070020
21#ifdef CONFIG_CGROUPS
22
23struct cgroupfs_root;
24struct cgroup_subsys;
25struct inode;
Paul Menage84eea842008-07-25 01:47:00 -070026struct cgroup;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -070027struct css_id;
Paul Menageddbcc7e2007-10-18 23:39:30 -070028
29extern int cgroup_init_early(void);
30extern int cgroup_init(void);
Paul Menageddbcc7e2007-10-18 23:39:30 -070031extern void cgroup_lock(void);
Paul E. McKenneyd11c5632010-02-22 17:04:50 -080032extern int cgroup_lock_is_held(void);
Paul Menage84eea842008-07-25 01:47:00 -070033extern bool cgroup_lock_live_group(struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -070034extern void cgroup_unlock(void);
Paul Menageb4f48b62007-10-18 23:39:33 -070035extern void cgroup_fork(struct task_struct *p);
36extern void cgroup_fork_callbacks(struct task_struct *p);
Paul Menage817929e2007-10-18 23:39:36 -070037extern void cgroup_post_fork(struct task_struct *p);
Paul Menageb4f48b62007-10-18 23:39:33 -070038extern void cgroup_exit(struct task_struct *p, int run_callbacks);
Balbir Singh846c7bb2007-10-18 23:39:44 -070039extern int cgroupstats_build(struct cgroupstats *stats,
40 struct dentry *dentry);
Ben Blume6a11052010-03-10 15:22:09 -080041extern int cgroup_load_subsys(struct cgroup_subsys *ss);
Ben Blumcf5d5942010-03-10 15:22:09 -080042extern void cgroup_unload_subsys(struct cgroup_subsys *ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -070043
Alexey Dobriyan828c0952009-10-01 15:43:56 -070044extern const struct file_operations proc_cgroup_operations;
Paul Menagea4243162007-10-18 23:39:35 -070045
Ben Blumaae8aab2010-03-10 15:22:07 -080046/* Define the enumeration of all builtin cgroup subsystems */
Paul Menage817929e2007-10-18 23:39:36 -070047#define SUBSYS(_x) _x ## _subsys_id,
48enum cgroup_subsys_id {
49#include <linux/cgroup_subsys.h>
Ben Blumaae8aab2010-03-10 15:22:07 -080050 CGROUP_BUILTIN_SUBSYS_COUNT
Paul Menage817929e2007-10-18 23:39:36 -070051};
52#undef SUBSYS
Ben Blumaae8aab2010-03-10 15:22:07 -080053/*
54 * This define indicates the maximum number of subsystems that can be loaded
55 * at once. We limit to this many since cgroupfs_root has subsys_bits to keep
56 * track of all of them.
57 */
58#define CGROUP_SUBSYS_COUNT (BITS_PER_BYTE*sizeof(unsigned long))
Paul Menage817929e2007-10-18 23:39:36 -070059
Paul Menageddbcc7e2007-10-18 23:39:30 -070060/* Per-subsystem/per-cgroup state maintained by the system. */
61struct cgroup_subsys_state {
Paul Menaged20a3902009-04-02 16:57:22 -070062 /*
63 * The cgroup that this subsystem is attached to. Useful
Paul Menageddbcc7e2007-10-18 23:39:30 -070064 * for subsystems that want to know about the cgroup
Paul Menaged20a3902009-04-02 16:57:22 -070065 * hierarchy structure
66 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070067 struct cgroup *cgroup;
68
Paul Menaged20a3902009-04-02 16:57:22 -070069 /*
70 * State maintained by the cgroup system to allow subsystems
Paul Menagee7c5ec92009-01-07 18:08:38 -080071 * to be "busy". Should be accessed via css_get(),
Paul Menaged20a3902009-04-02 16:57:22 -070072 * css_tryget() and and css_put().
73 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070074
75 atomic_t refcnt;
76
77 unsigned long flags;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -070078 /* ID for this css, if possible */
Arnd Bergmann2c392b82010-02-24 19:41:39 +010079 struct css_id __rcu *id;
Tejun Heo48ddbe12012-04-01 12:09:56 -070080
81 /* Used to put @cgroup->dentry on the last css_put() */
82 struct work_struct dput_work;
Paul Menageddbcc7e2007-10-18 23:39:30 -070083};
84
85/* bits in struct cgroup_subsys_state flags field */
86enum {
87 CSS_ROOT, /* This CSS is the root of the subsystem */
Paul Menagee7c5ec92009-01-07 18:08:38 -080088 CSS_REMOVED, /* This CSS is dead */
Tejun Heo48ddbe12012-04-01 12:09:56 -070089 CSS_CLEAR_CSS_REFS, /* @ss->__DEPRECATED_clear_css_refs */
Paul Menageddbcc7e2007-10-18 23:39:30 -070090};
91
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -080092/* Caller must verify that the css is not for root cgroup */
93static inline void __css_get(struct cgroup_subsys_state *css, int count)
94{
95 atomic_add(count, &css->refcnt);
96}
97
Paul Menageddbcc7e2007-10-18 23:39:30 -070098/*
Paul Menagee7c5ec92009-01-07 18:08:38 -080099 * Call css_get() to hold a reference on the css; it can be used
100 * for a reference obtained via:
101 * - an existing ref-counted reference to the css
102 * - task->cgroups for a locked task
Paul Menageddbcc7e2007-10-18 23:39:30 -0700103 */
104
105static inline void css_get(struct cgroup_subsys_state *css)
106{
107 /* We don't need to reference count the root state */
108 if (!test_bit(CSS_ROOT, &css->flags))
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -0800109 __css_get(css, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700110}
Paul Menagee7c5ec92009-01-07 18:08:38 -0800111
112static inline bool css_is_removed(struct cgroup_subsys_state *css)
113{
114 return test_bit(CSS_REMOVED, &css->flags);
115}
116
117/*
118 * Call css_tryget() to take a reference on a css if your existing
119 * (known-valid) reference isn't already ref-counted. Returns false if
120 * the css has been destroyed.
121 */
122
Tejun Heo28b4c272012-04-01 12:09:56 -0700123extern bool __css_tryget(struct cgroup_subsys_state *css);
Paul Menagee7c5ec92009-01-07 18:08:38 -0800124static inline bool css_tryget(struct cgroup_subsys_state *css)
125{
126 if (test_bit(CSS_ROOT, &css->flags))
127 return true;
Tejun Heo28b4c272012-04-01 12:09:56 -0700128 return __css_tryget(css);
Paul Menagee7c5ec92009-01-07 18:08:38 -0800129}
130
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131/*
132 * css_put() should be called to release a reference taken by
Paul Menagee7c5ec92009-01-07 18:08:38 -0800133 * css_get() or css_tryget()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700134 */
135
Tejun Heo28b4c272012-04-01 12:09:56 -0700136extern void __css_put(struct cgroup_subsys_state *css);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700137static inline void css_put(struct cgroup_subsys_state *css)
138{
139 if (!test_bit(CSS_ROOT, &css->flags))
Tejun Heo28b4c272012-04-01 12:09:56 -0700140 __css_put(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700141}
142
Paul Menage3116f0e2008-04-29 01:00:04 -0700143/* bits in struct cgroup flags field */
144enum {
145 /* Control Group is dead */
146 CGRP_REMOVED,
Paul Menaged20a3902009-04-02 16:57:22 -0700147 /*
148 * Control Group has previously had a child cgroup or a task,
149 * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set)
150 */
Paul Menage3116f0e2008-04-29 01:00:04 -0700151 CGRP_RELEASABLE,
152 /* Control Group requires release notifications to userspace */
153 CGRP_NOTIFY_ON_RELEASE,
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700154 /*
155 * A thread in rmdir() is wating for this cgroup.
156 */
157 CGRP_WAIT_ON_RMDIR,
Daniel Lezcano97978e62010-10-27 15:33:35 -0700158 /*
159 * Clone cgroup values when creating a new child cgroup
160 */
161 CGRP_CLONE_CHILDREN,
Paul Menage3116f0e2008-04-29 01:00:04 -0700162};
163
Paul Menageddbcc7e2007-10-18 23:39:30 -0700164struct cgroup {
165 unsigned long flags; /* "unsigned long" so bitops work */
166
Paul Menaged20a3902009-04-02 16:57:22 -0700167 /*
168 * count users of this cgroup. >0 means busy, but doesn't
169 * necessarily indicate the number of tasks in the cgroup
170 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700171 atomic_t count;
172
173 /*
174 * We link our 'sibling' struct into our parent's 'children'.
175 * Our children link their 'sibling' into our 'children'.
176 */
177 struct list_head sibling; /* my parent's children */
178 struct list_head children; /* my children */
Tejun Heo05ef1d72012-04-01 12:09:56 -0700179 struct list_head files; /* my files */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700180
Paul Menaged20a3902009-04-02 16:57:22 -0700181 struct cgroup *parent; /* my parent */
Arnd Bergmann2c392b82010-02-24 19:41:39 +0100182 struct dentry __rcu *dentry; /* cgroup fs entry, RCU protected */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700183
184 /* Private pointers for each registered subsystem */
185 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
186
187 struct cgroupfs_root *root;
188 struct cgroup *top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700189
190 /*
191 * List of cg_cgroup_links pointing at css_sets with
192 * tasks in this cgroup. Protected by css_set_lock
193 */
194 struct list_head css_sets;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700195
Tejun Heob0ca5a82012-04-01 12:09:54 -0700196 struct list_head allcg_node; /* cgroupfs_root->allcg_list */
Tejun Heo8e3f6542012-04-01 12:09:55 -0700197 struct list_head cft_q_node; /* used during cftype add/rm */
Tejun Heob0ca5a82012-04-01 12:09:54 -0700198
Paul Menage81a6a5c2007-10-18 23:39:38 -0700199 /*
200 * Linked list running through all cgroups that can
201 * potentially be reaped by the release agent. Protected by
202 * release_list_lock
203 */
204 struct list_head release_list;
Paul Menagecc31edc2008-10-18 20:28:04 -0700205
Ben Blum72a8cb32009-09-23 15:56:27 -0700206 /*
207 * list of pidlists, up to two for each namespace (one for procs, one
208 * for tasks); created on demand.
209 */
210 struct list_head pidlists;
211 struct mutex pidlist_mutex;
Paul Menagea47295e2009-01-07 18:07:44 -0800212
213 /* For RCU-protected deletion */
214 struct rcu_head rcu_head;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800215
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300216 /* List of events which userspace want to receive */
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800217 struct list_head event_list;
218 spinlock_t event_list_lock;
Paul Menage817929e2007-10-18 23:39:36 -0700219};
220
Paul Menaged20a3902009-04-02 16:57:22 -0700221/*
222 * A css_set is a structure holding pointers to a set of
Paul Menage817929e2007-10-18 23:39:36 -0700223 * cgroup_subsys_state objects. This saves space in the task struct
224 * object and speeds up fork()/exit(), since a single inc/dec and a
Paul Menaged20a3902009-04-02 16:57:22 -0700225 * list_add()/del() can bump the reference count on the entire cgroup
226 * set for a task.
Paul Menage817929e2007-10-18 23:39:36 -0700227 */
228
229struct css_set {
230
231 /* Reference count */
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700232 atomic_t refcount;
Paul Menage817929e2007-10-18 23:39:36 -0700233
234 /*
Li Zefan472b1052008-04-29 01:00:11 -0700235 * List running through all cgroup groups in the same hash
236 * slot. Protected by css_set_lock
237 */
238 struct hlist_node hlist;
239
240 /*
Paul Menage817929e2007-10-18 23:39:36 -0700241 * List running through all tasks using this cgroup
242 * group. Protected by css_set_lock
243 */
244 struct list_head tasks;
245
246 /*
247 * List of cg_cgroup_link objects on link chains from
248 * cgroups referenced from this css_set. Protected by
249 * css_set_lock
250 */
251 struct list_head cg_links;
252
253 /*
254 * Set of subsystem states, one for each subsystem. This array
255 * is immutable after creation apart from the init_css_set
Ben Blumcf5d5942010-03-10 15:22:09 -0800256 * during subsystem registration (at boot time) and modular subsystem
257 * loading/unloading.
Paul Menage817929e2007-10-18 23:39:36 -0700258 */
259 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
Ben Blumc3783692009-09-23 15:56:29 -0700260
261 /* For RCU-protected deletion */
262 struct rcu_head rcu_head;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700263};
264
Paul Menage91796562008-04-29 01:00:01 -0700265/*
266 * cgroup_map_cb is an abstract callback API for reporting map-valued
267 * control files
268 */
269
270struct cgroup_map_cb {
271 int (*fill)(struct cgroup_map_cb *cb, const char *key, u64 value);
272 void *state;
273};
274
Paul Menaged20a3902009-04-02 16:57:22 -0700275/*
276 * struct cftype: handler definitions for cgroup control files
Paul Menageddbcc7e2007-10-18 23:39:30 -0700277 *
278 * When reading/writing to a file:
Li Zefana043e3b2008-02-23 15:24:09 -0800279 * - the cgroup to use is file->f_dentry->d_parent->d_fsdata
Paul Menageddbcc7e2007-10-18 23:39:30 -0700280 * - the 'cftype' of the file is file->f_dentry->d_fsdata
281 */
282
Tejun Heo8e3f6542012-04-01 12:09:55 -0700283/* cftype->flags */
284#define CFTYPE_ONLY_ON_ROOT (1U << 0) /* only create on root cg */
285#define CFTYPE_NOT_ON_ROOT (1U << 1) /* don't create onp root cg */
286
287#define MAX_CFTYPE_NAME 64
288
Paul Menageddbcc7e2007-10-18 23:39:30 -0700289struct cftype {
Paul Menaged20a3902009-04-02 16:57:22 -0700290 /*
291 * By convention, the name should begin with the name of the
Tejun Heo8e3f6542012-04-01 12:09:55 -0700292 * subsystem, followed by a period. Zero length string indicates
293 * end of cftype array.
Paul Menaged20a3902009-04-02 16:57:22 -0700294 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700295 char name[MAX_CFTYPE_NAME];
296 int private;
Li Zefan099fca32009-04-02 16:57:29 -0700297 /*
298 * If not 0, file mode is set to this value, otherwise it will
299 * be figured out automatically
300 */
Al Viroa5e7ed32011-07-26 01:55:55 -0400301 umode_t mode;
Paul Menagedb3b1492008-07-25 01:46:58 -0700302
303 /*
304 * If non-zero, defines the maximum length of string that can
305 * be passed to write_string; defaults to 64
306 */
307 size_t max_write_len;
308
Tejun Heo8e3f6542012-04-01 12:09:55 -0700309 /* CFTYPE_* flags */
310 unsigned int flags;
311
Paul Menagece16b492008-07-25 01:46:57 -0700312 int (*open)(struct inode *inode, struct file *file);
313 ssize_t (*read)(struct cgroup *cgrp, struct cftype *cft,
314 struct file *file,
315 char __user *buf, size_t nbytes, loff_t *ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700316 /*
Paul Menagef4c753b2008-04-29 00:59:56 -0700317 * read_u64() is a shortcut for the common case of returning a
Paul Menageddbcc7e2007-10-18 23:39:30 -0700318 * single integer. Use it in place of read()
319 */
Paul Menagece16b492008-07-25 01:46:57 -0700320 u64 (*read_u64)(struct cgroup *cgrp, struct cftype *cft);
Paul Menage91796562008-04-29 01:00:01 -0700321 /*
Paul Menagee73d2c62008-04-29 01:00:06 -0700322 * read_s64() is a signed version of read_u64()
323 */
Paul Menagece16b492008-07-25 01:46:57 -0700324 s64 (*read_s64)(struct cgroup *cgrp, struct cftype *cft);
Paul Menagee73d2c62008-04-29 01:00:06 -0700325 /*
Paul Menage91796562008-04-29 01:00:01 -0700326 * read_map() is used for defining a map of key/value
327 * pairs. It should call cb->fill(cb, key, value) for each
328 * entry. The key/value pairs (and their ordering) should not
329 * change between reboots.
330 */
Paul Menagece16b492008-07-25 01:46:57 -0700331 int (*read_map)(struct cgroup *cont, struct cftype *cft,
332 struct cgroup_map_cb *cb);
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700333 /*
334 * read_seq_string() is used for outputting a simple sequence
335 * using seqfile.
336 */
Paul Menagece16b492008-07-25 01:46:57 -0700337 int (*read_seq_string)(struct cgroup *cont, struct cftype *cft,
338 struct seq_file *m);
Paul Menage91796562008-04-29 01:00:01 -0700339
Paul Menagece16b492008-07-25 01:46:57 -0700340 ssize_t (*write)(struct cgroup *cgrp, struct cftype *cft,
341 struct file *file,
342 const char __user *buf, size_t nbytes, loff_t *ppos);
Paul Menage355e0c42007-10-18 23:39:33 -0700343
344 /*
Paul Menagef4c753b2008-04-29 00:59:56 -0700345 * write_u64() is a shortcut for the common case of accepting
Paul Menage355e0c42007-10-18 23:39:33 -0700346 * a single integer (as parsed by simple_strtoull) from
347 * userspace. Use in place of write(); return 0 or error.
348 */
Paul Menagece16b492008-07-25 01:46:57 -0700349 int (*write_u64)(struct cgroup *cgrp, struct cftype *cft, u64 val);
Paul Menagee73d2c62008-04-29 01:00:06 -0700350 /*
351 * write_s64() is a signed version of write_u64()
352 */
Paul Menagece16b492008-07-25 01:46:57 -0700353 int (*write_s64)(struct cgroup *cgrp, struct cftype *cft, s64 val);
Paul Menage355e0c42007-10-18 23:39:33 -0700354
Pavel Emelyanovd447ea22008-04-29 01:00:08 -0700355 /*
Paul Menagedb3b1492008-07-25 01:46:58 -0700356 * write_string() is passed a nul-terminated kernelspace
357 * buffer of maximum length determined by max_write_len.
358 * Returns 0 or -ve error code.
359 */
360 int (*write_string)(struct cgroup *cgrp, struct cftype *cft,
361 const char *buffer);
362 /*
Pavel Emelyanovd447ea22008-04-29 01:00:08 -0700363 * trigger() callback can be used to get some kick from the
364 * userspace, when the actual string written is not important
365 * at all. The private field can be used to determine the
366 * kick type for multiplexing.
367 */
368 int (*trigger)(struct cgroup *cgrp, unsigned int event);
369
Paul Menagece16b492008-07-25 01:46:57 -0700370 int (*release)(struct inode *inode, struct file *file);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800371
372 /*
373 * register_event() callback will be used to add new userspace
374 * waiter for changes related to the cftype. Implement it if
375 * you want to provide this functionality. Use eventfd_signal()
376 * on eventfd to send notification to userspace.
377 */
378 int (*register_event)(struct cgroup *cgrp, struct cftype *cft,
379 struct eventfd_ctx *eventfd, const char *args);
380 /*
381 * unregister_event() callback will be called when userspace
382 * closes the eventfd or on cgroup removing.
383 * This callback must be implemented, if you want provide
384 * notification functionality.
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800385 */
Kirill A. Shutemov907860e2010-05-26 14:42:46 -0700386 void (*unregister_event)(struct cgroup *cgrp, struct cftype *cft,
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800387 struct eventfd_ctx *eventfd);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700388};
389
Tejun Heo8e3f6542012-04-01 12:09:55 -0700390/*
391 * cftype_sets describe cftypes belonging to a subsystem and are chained at
392 * cgroup_subsys->cftsets. Each cftset points to an array of cftypes
393 * terminated by zero length name.
394 */
395struct cftype_set {
396 struct list_head node; /* chained at subsys->cftsets */
397 const struct cftype *cfts;
398};
399
Cliff Wickman31a7df02008-02-07 00:14:42 -0800400struct cgroup_scanner {
401 struct cgroup *cg;
402 int (*test_task)(struct task_struct *p, struct cgroup_scanner *scan);
403 void (*process_task)(struct task_struct *p,
404 struct cgroup_scanner *scan);
405 struct ptr_heap *heap;
Li Zefanbd1a8ab2009-04-02 16:57:50 -0700406 void *data;
Cliff Wickman31a7df02008-02-07 00:14:42 -0800407};
408
Tejun Heo8e3f6542012-04-01 12:09:55 -0700409int cgroup_add_cftypes(struct cgroup_subsys *ss, const struct cftype *cfts);
Tejun Heo79578622012-04-01 12:09:56 -0700410int cgroup_rm_cftypes(struct cgroup_subsys *ss, const struct cftype *cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -0700411
Li Zefanffd2d882008-02-23 15:24:09 -0800412int cgroup_is_removed(const struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700413
Li Zefanffd2d882008-02-23 15:24:09 -0800414int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700415
Li Zefanffd2d882008-02-23 15:24:09 -0800416int cgroup_task_count(const struct cgroup *cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -0700417
Grzegorz Nosek313e9242009-04-02 16:57:23 -0700418/* Return true if cgrp is a descendant of the task's cgroup */
419int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700420
Thadeu Lima de Souza Cascardo21acb9c2009-02-04 10:12:08 +0100421/*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700422 * When the subsys has to access css and may add permanent refcnt to css,
423 * it should take care of racy conditions with rmdir(). Following set of
424 * functions, is for stop/restart rmdir if necessary.
425 * Because these will call css_get/put, "css" should be alive css.
426 *
427 * cgroup_exclude_rmdir();
428 * ...do some jobs which may access arbitrary empty cgroup
429 * cgroup_release_and_wakeup_rmdir();
430 *
431 * When someone removes a cgroup while cgroup_exclude_rmdir() holds it,
432 * it sleeps and cgroup_release_and_wakeup_rmdir() will wake him up.
433 */
434
435void cgroup_exclude_rmdir(struct cgroup_subsys_state *css);
436void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css);
437
438/*
Tejun Heo2f7ee562011-12-12 18:12:21 -0800439 * Control Group taskset, used to pass around set of tasks to cgroup_subsys
440 * methods.
441 */
442struct cgroup_taskset;
443struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset);
444struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset);
445struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset);
446int cgroup_taskset_size(struct cgroup_taskset *tset);
447
448/**
449 * cgroup_taskset_for_each - iterate cgroup_taskset
450 * @task: the loop cursor
451 * @skip_cgrp: skip if task's cgroup matches this, %NULL to iterate through all
452 * @tset: taskset to iterate
453 */
454#define cgroup_taskset_for_each(task, skip_cgrp, tset) \
455 for ((task) = cgroup_taskset_first((tset)); (task); \
456 (task) = cgroup_taskset_next((tset))) \
457 if (!(skip_cgrp) || \
458 cgroup_taskset_cur_cgroup((tset)) != (skip_cgrp))
459
460/*
Thadeu Lima de Souza Cascardo21acb9c2009-02-04 10:12:08 +0100461 * Control Group subsystem type.
462 * See Documentation/cgroups/cgroups.txt for details
463 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700464
465struct cgroup_subsys {
Li Zefan761b3ef2012-01-31 13:47:36 +0800466 struct cgroup_subsys_state *(*create)(struct cgroup *cgrp);
467 int (*pre_destroy)(struct cgroup *cgrp);
468 void (*destroy)(struct cgroup *cgrp);
469 int (*can_attach)(struct cgroup *cgrp, struct cgroup_taskset *tset);
470 void (*cancel_attach)(struct cgroup *cgrp, struct cgroup_taskset *tset);
471 void (*attach)(struct cgroup *cgrp, struct cgroup_taskset *tset);
472 void (*fork)(struct task_struct *task);
473 void (*exit)(struct cgroup *cgrp, struct cgroup *old_cgrp,
474 struct task_struct *task);
Li Zefan761b3ef2012-01-31 13:47:36 +0800475 void (*post_clone)(struct cgroup *cgrp);
476 void (*bind)(struct cgroup *root);
Hugh Dickinse5991372009-01-06 14:39:22 -0800477
Paul Menageddbcc7e2007-10-18 23:39:30 -0700478 int subsys_id;
479 int active;
Paul Menage8bab8dd2008-04-04 14:29:57 -0700480 int disabled;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700481 int early_init;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700482 /*
483 * True if this subsys uses ID. ID is not available before cgroup_init()
484 * (not available in early_init time.)
485 */
486 bool use_id;
Tejun Heo48ddbe12012-04-01 12:09:56 -0700487
488 /*
489 * If %true, cgroup removal will try to clear css refs by retrying
490 * ss->pre_destroy() until there's no css ref left. This behavior
491 * is strictly for backward compatibility and will be removed as
492 * soon as the current user (memcg) is updated.
493 *
494 * If %false, ss->pre_destroy() can't fail and cgroup removal won't
495 * wait for css refs to drop to zero before proceeding.
496 */
497 bool __DEPRECATED_clear_css_refs;
498
Paul Menageddbcc7e2007-10-18 23:39:30 -0700499#define MAX_CGROUP_TYPE_NAMELEN 32
500 const char *name;
501
Paul Menage999cd8a2009-01-07 18:08:36 -0800502 /*
503 * Protects sibling/children links of cgroups in this
504 * hierarchy, plus protects which hierarchy (or none) the
505 * subsystem is a part of (i.e. root/sibling). To avoid
506 * potential deadlocks, the following operations should not be
507 * undertaken while holding any hierarchy_mutex:
508 *
509 * - allocating memory
510 * - initiating hotplug events
511 */
512 struct mutex hierarchy_mutex;
Li Zefancfebe562009-02-11 13:04:36 -0800513 struct lock_class_key subsys_key;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700514
Paul Menage999cd8a2009-01-07 18:08:36 -0800515 /*
516 * Link to parent, and list entry in parent's children.
517 * Protected by this->hierarchy_mutex and cgroup_lock()
518 */
519 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700520 struct list_head sibling;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700521 /* used when use_id == true */
522 struct idr idr;
Hugh Dickins42aee6c2012-03-21 16:34:21 -0700523 spinlock_t id_lock;
Ben Blume6a11052010-03-10 15:22:09 -0800524
Tejun Heo8e3f6542012-04-01 12:09:55 -0700525 /* list of cftype_sets */
526 struct list_head cftsets;
527
528 /* base cftypes, automatically [de]registered with subsys itself */
529 struct cftype *base_cftypes;
530 struct cftype_set base_cftset;
531
Ben Blume6a11052010-03-10 15:22:09 -0800532 /* should be defined only by modular subsystems */
533 struct module *module;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700534};
535
536#define SUBSYS(_x) extern struct cgroup_subsys _x ## _subsys;
537#include <linux/cgroup_subsys.h>
538#undef SUBSYS
539
540static inline struct cgroup_subsys_state *cgroup_subsys_state(
Li Zefanffd2d882008-02-23 15:24:09 -0800541 struct cgroup *cgrp, int subsys_id)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700542{
Li Zefanffd2d882008-02-23 15:24:09 -0800543 return cgrp->subsys[subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700544}
545
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200546/*
547 * function to get the cgroup_subsys_state which allows for extra
548 * rcu_dereference_check() conditions, such as locks used during the
549 * cgroup_subsys::attach() methods.
550 */
551#define task_subsys_state_check(task, subsys_id, __c) \
552 rcu_dereference_check(task->cgroups->subsys[subsys_id], \
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200553 lockdep_is_held(&task->alloc_lock) || \
554 cgroup_lock_is_held() || (__c))
555
556static inline struct cgroup_subsys_state *
557task_subsys_state(struct task_struct *task, int subsys_id)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700558{
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200559 return task_subsys_state_check(task, subsys_id, false);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700560}
561
562static inline struct cgroup* task_cgroup(struct task_struct *task,
563 int subsys_id)
564{
565 return task_subsys_state(task, subsys_id)->cgroup;
566}
567
Paul Menage817929e2007-10-18 23:39:36 -0700568/* A cgroup_iter should be treated as an opaque object */
569struct cgroup_iter {
570 struct list_head *cg_link;
571 struct list_head *task;
572};
573
Paul Menaged20a3902009-04-02 16:57:22 -0700574/*
575 * To iterate across the tasks in a cgroup:
Paul Menage817929e2007-10-18 23:39:36 -0700576 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400577 * 1) call cgroup_iter_start to initialize an iterator
Paul Menage817929e2007-10-18 23:39:36 -0700578 *
579 * 2) call cgroup_iter_next() to retrieve member tasks until it
580 * returns NULL or until you want to end the iteration
581 *
582 * 3) call cgroup_iter_end() to destroy the iterator.
Cliff Wickman31a7df02008-02-07 00:14:42 -0800583 *
Paul Menaged20a3902009-04-02 16:57:22 -0700584 * Or, call cgroup_scan_tasks() to iterate through every task in a
585 * cgroup - cgroup_scan_tasks() holds the css_set_lock when calling
586 * the test_task() callback, but not while calling the process_task()
587 * callback.
Paul Menage817929e2007-10-18 23:39:36 -0700588 */
Li Zefanffd2d882008-02-23 15:24:09 -0800589void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it);
590struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700591 struct cgroup_iter *it);
Li Zefanffd2d882008-02-23 15:24:09 -0800592void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it);
Cliff Wickman31a7df02008-02-07 00:14:42 -0800593int cgroup_scan_tasks(struct cgroup_scanner *scan);
Cliff Wickman956db3c2008-02-07 00:14:43 -0800594int cgroup_attach_task(struct cgroup *, struct task_struct *);
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -0700595int cgroup_attach_task_all(struct task_struct *from, struct task_struct *);
596
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700597/*
598 * CSS ID is ID for cgroup_subsys_state structs under subsys. This only works
599 * if cgroup_subsys.use_id == true. It can be used for looking up and scanning.
600 * CSS ID is assigned at cgroup allocation (create) automatically
601 * and removed when subsys calls free_css_id() function. This is because
602 * the lifetime of cgroup_subsys_state is subsys's matter.
603 *
604 * Looking up and scanning function should be called under rcu_read_lock().
605 * Taking cgroup_mutex()/hierarchy_mutex() is not necessary for following calls.
606 * But the css returned by this routine can be "not populated yet" or "being
607 * destroyed". The caller should check css and cgroup's status.
608 */
609
610/*
611 * Typically Called at ->destroy(), or somewhere the subsys frees
612 * cgroup_subsys_state.
613 */
614void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css);
615
616/* Find a cgroup_subsys_state which has given ID */
617
618struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id);
619
620/*
621 * Get a cgroup whose id is greater than or equal to id under tree of root.
622 * Returning a cgroup_subsys_state or NULL.
623 */
624struct cgroup_subsys_state *css_get_next(struct cgroup_subsys *ss, int id,
625 struct cgroup_subsys_state *root, int *foundid);
626
627/* Returns true if root is ancestor of cg */
628bool css_is_ancestor(struct cgroup_subsys_state *cg,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700629 const struct cgroup_subsys_state *root);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700630
631/* Get id and depth of css */
632unsigned short css_id(struct cgroup_subsys_state *css);
633unsigned short css_depth(struct cgroup_subsys_state *css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200634struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700635
Paul Menageddbcc7e2007-10-18 23:39:30 -0700636#else /* !CONFIG_CGROUPS */
637
638static inline int cgroup_init_early(void) { return 0; }
639static inline int cgroup_init(void) { return 0; }
Paul Menageb4f48b62007-10-18 23:39:33 -0700640static inline void cgroup_fork(struct task_struct *p) {}
641static inline void cgroup_fork_callbacks(struct task_struct *p) {}
Paul Menage817929e2007-10-18 23:39:36 -0700642static inline void cgroup_post_fork(struct task_struct *p) {}
Paul Menageb4f48b62007-10-18 23:39:33 -0700643static inline void cgroup_exit(struct task_struct *p, int callbacks) {}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700644
645static inline void cgroup_lock(void) {}
646static inline void cgroup_unlock(void) {}
Balbir Singh846c7bb2007-10-18 23:39:44 -0700647static inline int cgroupstats_build(struct cgroupstats *stats,
648 struct dentry *dentry)
649{
650 return -EINVAL;
651}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700652
Sridhar Samudralad7926ee2010-05-30 22:24:39 +0200653/* No cgroups - nothing to do */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -0700654static inline int cgroup_attach_task_all(struct task_struct *from,
655 struct task_struct *t)
656{
657 return 0;
658}
Sridhar Samudralad7926ee2010-05-30 22:24:39 +0200659
Paul Menageddbcc7e2007-10-18 23:39:30 -0700660#endif /* !CONFIG_CGROUPS */
661
Paul Menageddbcc7e2007-10-18 23:39:30 -0700662#endif /* _LINUX_CGROUP_H */