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