blob: 10d814bcd487d5c541006463063bb64642c677bc [file] [log] [blame]
Tejun Heob4a04ab2015-05-13 15:38:40 -04001/*
2 * linux/cgroup-defs.h - basic definitions for cgroup
3 *
4 * This file provides basic type and interface. Include this file directly
5 * only if necessary to avoid cyclic dependencies.
6 */
7#ifndef _LINUX_CGROUP_DEFS_H
8#define _LINUX_CGROUP_DEFS_H
9
10#include <linux/limits.h>
11#include <linux/list.h>
12#include <linux/idr.h>
13#include <linux/wait.h>
14#include <linux/mutex.h>
15#include <linux/rcupdate.h>
16#include <linux/percpu-refcount.h>
Tejun Heo7d7efec2015-05-13 16:35:16 -040017#include <linux/percpu-rwsem.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040018#include <linux/workqueue.h>
19
20#ifdef CONFIG_CGROUPS
21
22struct cgroup;
23struct cgroup_root;
24struct cgroup_subsys;
25struct cgroup_taskset;
26struct kernfs_node;
27struct kernfs_ops;
28struct kernfs_open_file;
Arnd Bergmannc80ef9e2015-05-29 10:52:59 +020029struct seq_file;
Tejun Heob4a04ab2015-05-13 15:38:40 -040030
31#define MAX_CGROUP_TYPE_NAMELEN 32
32#define MAX_CGROUP_ROOT_NAMELEN 64
33#define MAX_CFTYPE_NAME 64
34
35/* define the enumeration of all cgroup subsystems */
36#define SUBSYS(_x) _x ## _cgrp_id,
Aleksa Sarai7e476822015-06-09 21:32:09 +100037#define SUBSYS_TAG(_t) CGROUP_ ## _t, \
38 __unused_tag_ ## _t = CGROUP_ ## _t - 1,
Tejun Heob4a04ab2015-05-13 15:38:40 -040039enum cgroup_subsys_id {
40#include <linux/cgroup_subsys.h>
41 CGROUP_SUBSYS_COUNT,
42};
Aleksa Sarai7e476822015-06-09 21:32:09 +100043#undef SUBSYS_TAG
Tejun Heob4a04ab2015-05-13 15:38:40 -040044#undef SUBSYS
45
Aleksa Sarai7e476822015-06-09 21:32:09 +100046#define CGROUP_CANFORK_COUNT (CGROUP_CANFORK_END - CGROUP_CANFORK_START)
47
Tejun Heob4a04ab2015-05-13 15:38:40 -040048/* bits in struct cgroup_subsys_state flags field */
49enum {
50 CSS_NO_REF = (1 << 0), /* no reference counting for this css */
51 CSS_ONLINE = (1 << 1), /* between ->css_online() and ->css_offline() */
52 CSS_RELEASED = (1 << 2), /* refcnt reached zero, released */
53};
54
55/* bits in struct cgroup flags field */
56enum {
57 /* Control Group requires release notifications to userspace */
58 CGRP_NOTIFY_ON_RELEASE,
59 /*
60 * Clone the parent's configuration when creating a new child
61 * cpuset cgroup. For historical reasons, this option can be
62 * specified at mount time and thus is implemented here.
63 */
64 CGRP_CPUSET_CLONE_CHILDREN,
65};
66
67/* cgroup_root->flags */
68enum {
69 CGRP_ROOT_SANE_BEHAVIOR = (1 << 0), /* __DEVEL__sane_behavior specified */
70 CGRP_ROOT_NOPREFIX = (1 << 1), /* mounted subsystems have no named prefix */
71 CGRP_ROOT_XATTR = (1 << 2), /* supports extended attributes */
72};
73
74/* cftype->flags */
75enum {
76 CFTYPE_ONLY_ON_ROOT = (1 << 0), /* only create on root cgrp */
77 CFTYPE_NOT_ON_ROOT = (1 << 1), /* don't create on root cgrp */
78 CFTYPE_NO_PREFIX = (1 << 3), /* (DON'T USE FOR NEW FILES) no subsys prefix */
Tejun Heo7dbdb192015-09-18 17:54:23 -040079 CFTYPE_WORLD_WRITABLE = (1 << 4), /* (DON'T USE FOR NEW FILES) S_IWUGO */
Tejun Heob4a04ab2015-05-13 15:38:40 -040080
81 /* internal flags, do not use outside cgroup core proper */
82 __CFTYPE_ONLY_ON_DFL = (1 << 16), /* only on default hierarchy */
83 __CFTYPE_NOT_ON_DFL = (1 << 17), /* not on default hierarchy */
84};
85
86/*
87 * Per-subsystem/per-cgroup state maintained by the system. This is the
88 * fundamental structural building block that controllers deal with.
89 *
90 * Fields marked with "PI:" are public and immutable and may be accessed
91 * directly without synchronization.
92 */
93struct cgroup_subsys_state {
94 /* PI: the cgroup that this css is attached to */
95 struct cgroup *cgroup;
96
97 /* PI: the cgroup subsystem that this css is attached to */
98 struct cgroup_subsys *ss;
99
100 /* reference count - access via css_[try]get() and css_put() */
101 struct percpu_ref refcnt;
102
103 /* PI: the parent css */
104 struct cgroup_subsys_state *parent;
105
106 /* siblings list anchored at the parent's ->children */
107 struct list_head sibling;
108 struct list_head children;
109
110 /*
111 * PI: Subsys-unique ID. 0 is unused and root is always 1. The
112 * matching css can be looked up using css_from_id().
113 */
114 int id;
115
116 unsigned int flags;
117
118 /*
119 * Monotonically increasing unique serial number which defines a
120 * uniform order among all csses. It's guaranteed that all
121 * ->children lists are in the ascending order of ->serial_nr and
122 * used to allow interrupting and resuming iterations.
123 */
124 u64 serial_nr;
125
126 /* percpu_ref killing and RCU release */
127 struct rcu_head rcu_head;
128 struct work_struct destroy_work;
129};
130
131/*
132 * A css_set is a structure holding pointers to a set of
133 * cgroup_subsys_state objects. This saves space in the task struct
134 * object and speeds up fork()/exit(), since a single inc/dec and a
135 * list_add()/del() can bump the reference count on the entire cgroup
136 * set for a task.
137 */
138struct css_set {
139 /* Reference count */
140 atomic_t refcount;
141
142 /*
143 * List running through all cgroup groups in the same hash
144 * slot. Protected by css_set_lock
145 */
146 struct hlist_node hlist;
147
148 /*
149 * Lists running through all tasks using this cgroup group.
150 * mg_tasks lists tasks which belong to this cset but are in the
151 * process of being migrated out or in. Protected by
152 * css_set_rwsem, but, during migration, once tasks are moved to
153 * mg_tasks, it can be read safely while holding cgroup_mutex.
154 */
155 struct list_head tasks;
156 struct list_head mg_tasks;
157
158 /*
159 * List of cgrp_cset_links pointing at cgroups referenced from this
160 * css_set. Protected by css_set_lock.
161 */
162 struct list_head cgrp_links;
163
164 /* the default cgroup associated with this css_set */
165 struct cgroup *dfl_cgrp;
166
167 /*
168 * Set of subsystem states, one for each subsystem. This array is
169 * immutable after creation apart from the init_css_set during
170 * subsystem registration (at boot time).
171 */
172 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
173
174 /*
175 * List of csets participating in the on-going migration either as
176 * source or destination. Protected by cgroup_mutex.
177 */
178 struct list_head mg_preload_node;
179 struct list_head mg_node;
180
181 /*
182 * If this cset is acting as the source of migration the following
183 * two fields are set. mg_src_cgrp is the source cgroup of the
184 * on-going migration and mg_dst_cset is the destination cset the
185 * target tasks on this cset should be migrated to. Protected by
186 * cgroup_mutex.
187 */
188 struct cgroup *mg_src_cgrp;
189 struct css_set *mg_dst_cset;
190
191 /*
192 * On the default hierarhcy, ->subsys[ssid] may point to a css
193 * attached to an ancestor instead of the cgroup this css_set is
194 * associated with. The following node is anchored at
195 * ->subsys[ssid]->cgroup->e_csets[ssid] and provides a way to
196 * iterate through all css's attached to a given cgroup.
197 */
198 struct list_head e_cset_node[CGROUP_SUBSYS_COUNT];
199
200 /* For RCU-protected deletion */
201 struct rcu_head rcu_head;
202};
203
204struct cgroup {
205 /* self css with NULL ->ss, points back to this cgroup */
206 struct cgroup_subsys_state self;
207
208 unsigned long flags; /* "unsigned long" so bitops work */
209
210 /*
211 * idr allocated in-hierarchy ID.
212 *
213 * ID 0 is not used, the ID of the root cgroup is always 1, and a
214 * new cgroup will be assigned with a smallest available ID.
215 *
216 * Allocating/Removing ID must be protected by cgroup_mutex.
217 */
218 int id;
219
220 /*
221 * If this cgroup contains any tasks, it contributes one to
222 * populated_cnt. All children with non-zero popuplated_cnt of
223 * their own contribute one. The count is zero iff there's no task
224 * in this cgroup or its subtree.
225 */
226 int populated_cnt;
227
228 struct kernfs_node *kn; /* cgroup kernfs entry */
Tejun Heo187fe842015-06-18 16:54:28 -0400229 struct kernfs_node *procs_kn; /* kn for "cgroup.procs" */
Tejun Heo4a07c222015-09-18 17:54:22 -0400230 struct kernfs_node *events_kn; /* kn for "cgroup.events" */
Tejun Heob4a04ab2015-05-13 15:38:40 -0400231
232 /*
233 * The bitmask of subsystems enabled on the child cgroups.
234 * ->subtree_control is the one configured through
235 * "cgroup.subtree_control" while ->child_subsys_mask is the
236 * effective one which may have more subsystems enabled.
237 * Controller knobs are made available iff it's enabled in
238 * ->subtree_control.
239 */
240 unsigned int subtree_control;
241 unsigned int child_subsys_mask;
242
243 /* Private pointers for each registered subsystem */
244 struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT];
245
246 struct cgroup_root *root;
247
248 /*
249 * List of cgrp_cset_links pointing at css_sets with tasks in this
250 * cgroup. Protected by css_set_lock.
251 */
252 struct list_head cset_links;
253
254 /*
255 * On the default hierarchy, a css_set for a cgroup with some
256 * susbsys disabled will point to css's which are associated with
257 * the closest ancestor which has the subsys enabled. The
258 * following lists all css_sets which point to this cgroup's css
259 * for the given subsystem.
260 */
261 struct list_head e_csets[CGROUP_SUBSYS_COUNT];
262
263 /*
264 * list of pidlists, up to two for each namespace (one for procs, one
265 * for tasks); created on demand.
266 */
267 struct list_head pidlists;
268 struct mutex pidlist_mutex;
269
270 /* used to wait for offlining of csses */
271 wait_queue_head_t offline_waitq;
272
273 /* used to schedule release agent */
274 struct work_struct release_agent_work;
275};
276
277/*
278 * A cgroup_root represents the root of a cgroup hierarchy, and may be
279 * associated with a kernfs_root to form an active hierarchy. This is
280 * internal to cgroup core. Don't access directly from controllers.
281 */
282struct cgroup_root {
283 struct kernfs_root *kf_root;
284
285 /* The bitmask of subsystems attached to this hierarchy */
286 unsigned int subsys_mask;
287
288 /* Unique id for this hierarchy. */
289 int hierarchy_id;
290
291 /* The root cgroup. Root is destroyed on its release. */
292 struct cgroup cgrp;
293
294 /* Number of cgroups in the hierarchy, used only for /proc/cgroups */
295 atomic_t nr_cgrps;
296
297 /* A list running through the active hierarchies */
298 struct list_head root_list;
299
300 /* Hierarchy-specific flags */
301 unsigned int flags;
302
303 /* IDs for cgroups in this hierarchy */
304 struct idr cgroup_idr;
305
306 /* The path to use for release notifications. */
307 char release_agent_path[PATH_MAX];
308
309 /* The name for this hierarchy - may be empty */
310 char name[MAX_CGROUP_ROOT_NAMELEN];
311};
312
313/*
314 * struct cftype: handler definitions for cgroup control files
315 *
316 * When reading/writing to a file:
317 * - the cgroup to use is file->f_path.dentry->d_parent->d_fsdata
318 * - the 'cftype' of the file is file->f_path.dentry->d_fsdata
319 */
320struct cftype {
321 /*
322 * By convention, the name should begin with the name of the
323 * subsystem, followed by a period. Zero length string indicates
324 * end of cftype array.
325 */
326 char name[MAX_CFTYPE_NAME];
Tejun Heo731a9812015-08-11 13:35:42 -0400327 unsigned long private;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400328
329 /*
330 * The maximum length of string, excluding trailing nul, that can
331 * be passed to write. If < PAGE_SIZE-1, PAGE_SIZE-1 is assumed.
332 */
333 size_t max_write_len;
334
335 /* CFTYPE_* flags */
336 unsigned int flags;
337
338 /*
339 * Fields used for internal bookkeeping. Initialized automatically
340 * during registration.
341 */
342 struct cgroup_subsys *ss; /* NULL for cgroup core files */
343 struct list_head node; /* anchored at ss->cfts */
344 struct kernfs_ops *kf_ops;
345
346 /*
347 * read_u64() is a shortcut for the common case of returning a
348 * single integer. Use it in place of read()
349 */
350 u64 (*read_u64)(struct cgroup_subsys_state *css, struct cftype *cft);
351 /*
352 * read_s64() is a signed version of read_u64()
353 */
354 s64 (*read_s64)(struct cgroup_subsys_state *css, struct cftype *cft);
355
356 /* generic seq_file read interface */
357 int (*seq_show)(struct seq_file *sf, void *v);
358
359 /* optional ops, implement all or none */
360 void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
361 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
362 void (*seq_stop)(struct seq_file *sf, void *v);
363
364 /*
365 * write_u64() is a shortcut for the common case of accepting
366 * a single integer (as parsed by simple_strtoull) from
367 * userspace. Use in place of write(); return 0 or error.
368 */
369 int (*write_u64)(struct cgroup_subsys_state *css, struct cftype *cft,
370 u64 val);
371 /*
372 * write_s64() is a signed version of write_u64()
373 */
374 int (*write_s64)(struct cgroup_subsys_state *css, struct cftype *cft,
375 s64 val);
376
377 /*
378 * write() is the generic write callback which maps directly to
379 * kernfs write operation and overrides all other operations.
380 * Maximum write size is determined by ->max_write_len. Use
381 * of_css/cft() to access the associated css and cft.
382 */
383 ssize_t (*write)(struct kernfs_open_file *of,
384 char *buf, size_t nbytes, loff_t off);
385
386#ifdef CONFIG_DEBUG_LOCK_ALLOC
387 struct lock_class_key lockdep_key;
388#endif
389};
390
391/*
392 * Control Group subsystem type.
393 * See Documentation/cgroups/cgroups.txt for details
394 */
395struct cgroup_subsys {
396 struct cgroup_subsys_state *(*css_alloc)(struct cgroup_subsys_state *parent_css);
397 int (*css_online)(struct cgroup_subsys_state *css);
398 void (*css_offline)(struct cgroup_subsys_state *css);
399 void (*css_released)(struct cgroup_subsys_state *css);
400 void (*css_free)(struct cgroup_subsys_state *css);
401 void (*css_reset)(struct cgroup_subsys_state *css);
402 void (*css_e_css_changed)(struct cgroup_subsys_state *css);
403
404 int (*can_attach)(struct cgroup_subsys_state *css,
405 struct cgroup_taskset *tset);
406 void (*cancel_attach)(struct cgroup_subsys_state *css,
407 struct cgroup_taskset *tset);
408 void (*attach)(struct cgroup_subsys_state *css,
409 struct cgroup_taskset *tset);
Aleksa Sarai7e476822015-06-09 21:32:09 +1000410 int (*can_fork)(struct task_struct *task, void **priv_p);
411 void (*cancel_fork)(struct task_struct *task, void *priv);
412 void (*fork)(struct task_struct *task, void *priv);
Tejun Heob4a04ab2015-05-13 15:38:40 -0400413 void (*exit)(struct cgroup_subsys_state *css,
414 struct cgroup_subsys_state *old_css,
415 struct task_struct *task);
416 void (*bind)(struct cgroup_subsys_state *root_css);
417
Tejun Heob4a04ab2015-05-13 15:38:40 -0400418 int early_init;
419
420 /*
421 * If %false, this subsystem is properly hierarchical -
422 * configuration, resource accounting and restriction on a parent
423 * cgroup cover those of its children. If %true, hierarchy support
424 * is broken in some ways - some subsystems ignore hierarchy
425 * completely while others are only implemented half-way.
426 *
427 * It's now disallowed to create nested cgroups if the subsystem is
428 * broken and cgroup core will emit a warning message on such
429 * cases. Eventually, all subsystems will be made properly
430 * hierarchical and this will go away.
431 */
432 bool broken_hierarchy;
433 bool warned_broken_hierarchy;
434
435 /* the following two fields are initialized automtically during boot */
436 int id;
437 const char *name;
438
Tejun Heo3e1d2ee2015-08-18 13:58:16 -0700439 /* optional, initialized automatically during boot if not set */
440 const char *legacy_name;
441
Tejun Heob4a04ab2015-05-13 15:38:40 -0400442 /* link to parent, protected by cgroup_lock() */
443 struct cgroup_root *root;
444
445 /* idr for css->id */
446 struct idr css_idr;
447
448 /*
449 * List of cftypes. Each entry is the first entry of an array
450 * terminated by zero length name.
451 */
452 struct list_head cfts;
453
454 /*
455 * Base cftypes which are automatically registered. The two can
456 * point to the same array.
457 */
458 struct cftype *dfl_cftypes; /* for the default hierarchy */
459 struct cftype *legacy_cftypes; /* for the legacy hierarchies */
460
461 /*
462 * A subsystem may depend on other subsystems. When such subsystem
463 * is enabled on a cgroup, the depended-upon subsystems are enabled
464 * together if available. Subsystems enabled due to dependency are
465 * not visible to userland until explicitly enabled. The following
466 * specifies the mask of subsystems that this one depends on.
467 */
468 unsigned int depends_on;
469};
470
Tejun Heo1ed13282015-09-16 12:53:17 -0400471extern struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
472
473/**
474 * cgroup_threadgroup_change_begin - threadgroup exclusion for cgroups
475 * @tsk: target task
476 *
477 * Called from threadgroup_change_begin() and allows cgroup operations to
478 * synchronize against threadgroup changes using a percpu_rw_semaphore.
479 */
480static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
481{
482 percpu_down_read(&cgroup_threadgroup_rwsem);
483}
484
485/**
486 * cgroup_threadgroup_change_end - threadgroup exclusion for cgroups
487 * @tsk: target task
488 *
489 * Called from threadgroup_change_end(). Counterpart of
490 * cgroup_threadcgroup_change_begin().
491 */
492static inline void cgroup_threadgroup_change_end(struct task_struct *tsk)
493{
494 percpu_up_read(&cgroup_threadgroup_rwsem);
495}
Tejun Heo7d7efec2015-05-13 16:35:16 -0400496
497#else /* CONFIG_CGROUPS */
498
Aleksa Sarai7e476822015-06-09 21:32:09 +1000499#define CGROUP_CANFORK_COUNT 0
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000500#define CGROUP_SUBSYS_COUNT 0
501
Tejun Heo7d7efec2015-05-13 16:35:16 -0400502static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk) {}
503static inline void cgroup_threadgroup_change_end(struct task_struct *tsk) {}
504
Tejun Heob4a04ab2015-05-13 15:38:40 -0400505#endif /* CONFIG_CGROUPS */
Tejun Heo7d7efec2015-05-13 16:35:16 -0400506
Tejun Heob4a04ab2015-05-13 15:38:40 -0400507#endif /* _LINUX_CGROUP_DEFS_H */