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