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