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