xref: /linux-6.15/include/linux/cgroup-defs.h (revision a0db77bf)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * linux/cgroup-defs.h - basic definitions for cgroup
4  *
5  * This file provides basic type and interface.  Include this file directly
6  * only if necessary to avoid cyclic dependencies.
7  */
8 #ifndef _LINUX_CGROUP_DEFS_H
9 #define _LINUX_CGROUP_DEFS_H
10 
11 #include <linux/limits.h>
12 #include <linux/list.h>
13 #include <linux/idr.h>
14 #include <linux/wait.h>
15 #include <linux/mutex.h>
16 #include <linux/rcupdate.h>
17 #include <linux/refcount.h>
18 #include <linux/percpu-refcount.h>
19 #include <linux/percpu-rwsem.h>
20 #include <linux/u64_stats_sync.h>
21 #include <linux/workqueue.h>
22 #include <linux/bpf-cgroup.h>
23 #include <linux/psi_types.h>
24 
25 #ifdef CONFIG_CGROUPS
26 
27 struct cgroup;
28 struct cgroup_root;
29 struct cgroup_subsys;
30 struct cgroup_taskset;
31 struct kernfs_node;
32 struct kernfs_ops;
33 struct kernfs_open_file;
34 struct seq_file;
35 struct poll_table_struct;
36 
37 #define MAX_CGROUP_TYPE_NAMELEN 32
38 #define MAX_CGROUP_ROOT_NAMELEN 64
39 #define MAX_CFTYPE_NAME		64
40 
41 /* define the enumeration of all cgroup subsystems */
42 #define SUBSYS(_x) _x ## _cgrp_id,
43 enum cgroup_subsys_id {
44 #include <linux/cgroup_subsys.h>
45 	CGROUP_SUBSYS_COUNT,
46 };
47 #undef SUBSYS
48 
49 /* bits in struct cgroup_subsys_state flags field */
50 enum {
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 	CSS_VISIBLE	= (1 << 3), /* css is visible to userland */
55 	CSS_DYING	= (1 << 4), /* css is dying */
56 };
57 
58 /* bits in struct cgroup flags field */
59 enum {
60 	/* Control Group requires release notifications to userspace */
61 	CGRP_NOTIFY_ON_RELEASE,
62 	/*
63 	 * Clone the parent's configuration when creating a new child
64 	 * cpuset cgroup.  For historical reasons, this option can be
65 	 * specified at mount time and thus is implemented here.
66 	 */
67 	CGRP_CPUSET_CLONE_CHILDREN,
68 
69 	/* Control group has to be frozen. */
70 	CGRP_FREEZE,
71 
72 	/* Cgroup is frozen. */
73 	CGRP_FROZEN,
74 };
75 
76 /* cgroup_root->flags */
77 enum {
78 	CGRP_ROOT_NOPREFIX	= (1 << 1), /* mounted subsystems have no named prefix */
79 	CGRP_ROOT_XATTR		= (1 << 2), /* supports extended attributes */
80 
81 	/*
82 	 * Consider namespaces as delegation boundaries.  If this flag is
83 	 * set, controller specific interface files in a namespace root
84 	 * aren't writeable from inside the namespace.
85 	 */
86 	CGRP_ROOT_NS_DELEGATE	= (1 << 3),
87 
88 	/*
89 	 * Enable cpuset controller in v1 cgroup to use v2 behavior.
90 	 */
91 	CGRP_ROOT_CPUSET_V2_MODE = (1 << 4),
92 
93 	/*
94 	 * Enable legacy local memory.events.
95 	 */
96 	CGRP_ROOT_MEMORY_LOCAL_EVENTS = (1 << 5),
97 };
98 
99 /* cftype->flags */
100 enum {
101 	CFTYPE_ONLY_ON_ROOT	= (1 << 0),	/* only create on root cgrp */
102 	CFTYPE_NOT_ON_ROOT	= (1 << 1),	/* don't create on root cgrp */
103 	CFTYPE_NS_DELEGATABLE	= (1 << 2),	/* writeable beyond delegation boundaries */
104 
105 	CFTYPE_NO_PREFIX	= (1 << 3),	/* (DON'T USE FOR NEW FILES) no subsys prefix */
106 	CFTYPE_WORLD_WRITABLE	= (1 << 4),	/* (DON'T USE FOR NEW FILES) S_IWUGO */
107 	CFTYPE_DEBUG		= (1 << 5),	/* create when cgroup_debug */
108 
109 	CFTYPE_SYMLINKED	= (1 << 6),	/* pointed to by symlink too */
110 
111 	/* internal flags, do not use outside cgroup core proper */
112 	__CFTYPE_ONLY_ON_DFL	= (1 << 16),	/* only on default hierarchy */
113 	__CFTYPE_NOT_ON_DFL	= (1 << 17),	/* not on default hierarchy */
114 };
115 
116 /*
117  * cgroup_file is the handle for a file instance created in a cgroup which
118  * is used, for example, to generate file changed notifications.  This can
119  * be obtained by setting cftype->file_offset.
120  */
121 struct cgroup_file {
122 	/* do not access any fields from outside cgroup core */
123 	struct kernfs_node *kn;
124 	unsigned long notified_at;
125 	struct timer_list notify_timer;
126 };
127 
128 /*
129  * Per-subsystem/per-cgroup state maintained by the system.  This is the
130  * fundamental structural building block that controllers deal with.
131  *
132  * Fields marked with "PI:" are public and immutable and may be accessed
133  * directly without synchronization.
134  */
135 struct cgroup_subsys_state {
136 	/* PI: the cgroup that this css is attached to */
137 	struct cgroup *cgroup;
138 
139 	/* PI: the cgroup subsystem that this css is attached to */
140 	struct cgroup_subsys *ss;
141 
142 	/* reference count - access via css_[try]get() and css_put() */
143 	struct percpu_ref refcnt;
144 
145 	/* siblings list anchored at the parent's ->children */
146 	struct list_head sibling;
147 	struct list_head children;
148 
149 	/* flush target list anchored at cgrp->rstat_css_list */
150 	struct list_head rstat_css_node;
151 
152 	/*
153 	 * PI: Subsys-unique ID.  0 is unused and root is always 1.  The
154 	 * matching css can be looked up using css_from_id().
155 	 */
156 	int id;
157 
158 	unsigned int flags;
159 
160 	/*
161 	 * Monotonically increasing unique serial number which defines a
162 	 * uniform order among all csses.  It's guaranteed that all
163 	 * ->children lists are in the ascending order of ->serial_nr and
164 	 * used to allow interrupting and resuming iterations.
165 	 */
166 	u64 serial_nr;
167 
168 	/*
169 	 * Incremented by online self and children.  Used to guarantee that
170 	 * parents are not offlined before their children.
171 	 */
172 	atomic_t online_cnt;
173 
174 	/* percpu_ref killing and RCU release */
175 	struct work_struct destroy_work;
176 	struct rcu_work destroy_rwork;
177 
178 	/*
179 	 * PI: the parent css.	Placed here for cache proximity to following
180 	 * fields of the containing structure.
181 	 */
182 	struct cgroup_subsys_state *parent;
183 };
184 
185 /*
186  * A css_set is a structure holding pointers to a set of
187  * cgroup_subsys_state objects. This saves space in the task struct
188  * object and speeds up fork()/exit(), since a single inc/dec and a
189  * list_add()/del() can bump the reference count on the entire cgroup
190  * set for a task.
191  */
192 struct css_set {
193 	/*
194 	 * Set of subsystem states, one for each subsystem. This array is
195 	 * immutable after creation apart from the init_css_set during
196 	 * subsystem registration (at boot time).
197 	 */
198 	struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
199 
200 	/* reference count */
201 	refcount_t refcount;
202 
203 	/*
204 	 * For a domain cgroup, the following points to self.  If threaded,
205 	 * to the matching cset of the nearest domain ancestor.  The
206 	 * dom_cset provides access to the domain cgroup and its csses to
207 	 * which domain level resource consumptions should be charged.
208 	 */
209 	struct css_set *dom_cset;
210 
211 	/* the default cgroup associated with this css_set */
212 	struct cgroup *dfl_cgrp;
213 
214 	/* internal task count, protected by css_set_lock */
215 	int nr_tasks;
216 
217 	/*
218 	 * Lists running through all tasks using this cgroup group.
219 	 * mg_tasks lists tasks which belong to this cset but are in the
220 	 * process of being migrated out or in.  Protected by
221 	 * css_set_rwsem, but, during migration, once tasks are moved to
222 	 * mg_tasks, it can be read safely while holding cgroup_mutex.
223 	 */
224 	struct list_head tasks;
225 	struct list_head mg_tasks;
226 
227 	/* all css_task_iters currently walking this cset */
228 	struct list_head task_iters;
229 
230 	/*
231 	 * On the default hierarhcy, ->subsys[ssid] may point to a css
232 	 * attached to an ancestor instead of the cgroup this css_set is
233 	 * associated with.  The following node is anchored at
234 	 * ->subsys[ssid]->cgroup->e_csets[ssid] and provides a way to
235 	 * iterate through all css's attached to a given cgroup.
236 	 */
237 	struct list_head e_cset_node[CGROUP_SUBSYS_COUNT];
238 
239 	/* all threaded csets whose ->dom_cset points to this cset */
240 	struct list_head threaded_csets;
241 	struct list_head threaded_csets_node;
242 
243 	/*
244 	 * List running through all cgroup groups in the same hash
245 	 * slot. Protected by css_set_lock
246 	 */
247 	struct hlist_node hlist;
248 
249 	/*
250 	 * List of cgrp_cset_links pointing at cgroups referenced from this
251 	 * css_set.  Protected by css_set_lock.
252 	 */
253 	struct list_head cgrp_links;
254 
255 	/*
256 	 * List of csets participating in the on-going migration either as
257 	 * source or destination.  Protected by cgroup_mutex.
258 	 */
259 	struct list_head mg_preload_node;
260 	struct list_head mg_node;
261 
262 	/*
263 	 * If this cset is acting as the source of migration the following
264 	 * two fields are set.  mg_src_cgrp and mg_dst_cgrp are
265 	 * respectively the source and destination cgroups of the on-going
266 	 * migration.  mg_dst_cset is the destination cset the target tasks
267 	 * on this cset should be migrated to.  Protected by cgroup_mutex.
268 	 */
269 	struct cgroup *mg_src_cgrp;
270 	struct cgroup *mg_dst_cgrp;
271 	struct css_set *mg_dst_cset;
272 
273 	/* dead and being drained, ignore for migration */
274 	bool dead;
275 
276 	/* For RCU-protected deletion */
277 	struct rcu_head rcu_head;
278 };
279 
280 struct cgroup_base_stat {
281 	struct task_cputime cputime;
282 };
283 
284 /*
285  * rstat - cgroup scalable recursive statistics.  Accounting is done
286  * per-cpu in cgroup_rstat_cpu which is then lazily propagated up the
287  * hierarchy on reads.
288  *
289  * When a stat gets updated, the cgroup_rstat_cpu and its ancestors are
290  * linked into the updated tree.  On the following read, propagation only
291  * considers and consumes the updated tree.  This makes reading O(the
292  * number of descendants which have been active since last read) instead of
293  * O(the total number of descendants).
294  *
295  * This is important because there can be a lot of (draining) cgroups which
296  * aren't active and stat may be read frequently.  The combination can
297  * become very expensive.  By propagating selectively, increasing reading
298  * frequency decreases the cost of each read.
299  *
300  * This struct hosts both the fields which implement the above -
301  * updated_children and updated_next - and the fields which track basic
302  * resource statistics on top of it - bsync, bstat and last_bstat.
303  */
304 struct cgroup_rstat_cpu {
305 	/*
306 	 * ->bsync protects ->bstat.  These are the only fields which get
307 	 * updated in the hot path.
308 	 */
309 	struct u64_stats_sync bsync;
310 	struct cgroup_base_stat bstat;
311 
312 	/*
313 	 * Snapshots at the last reading.  These are used to calculate the
314 	 * deltas to propagate to the global counters.
315 	 */
316 	struct cgroup_base_stat last_bstat;
317 
318 	/*
319 	 * Child cgroups with stat updates on this cpu since the last read
320 	 * are linked on the parent's ->updated_children through
321 	 * ->updated_next.
322 	 *
323 	 * In addition to being more compact, singly-linked list pointing
324 	 * to the cgroup makes it unnecessary for each per-cpu struct to
325 	 * point back to the associated cgroup.
326 	 *
327 	 * Protected by per-cpu cgroup_rstat_cpu_lock.
328 	 */
329 	struct cgroup *updated_children;	/* terminated by self cgroup */
330 	struct cgroup *updated_next;		/* NULL iff not on the list */
331 };
332 
333 struct cgroup_freezer_state {
334 	/* Should the cgroup and its descendants be frozen. */
335 	bool freeze;
336 
337 	/* Should the cgroup actually be frozen? */
338 	int e_freeze;
339 
340 	/* Fields below are protected by css_set_lock */
341 
342 	/* Number of frozen descendant cgroups */
343 	int nr_frozen_descendants;
344 
345 	/*
346 	 * Number of tasks, which are counted as frozen:
347 	 * frozen, SIGSTOPped, and PTRACEd.
348 	 */
349 	int nr_frozen_tasks;
350 };
351 
352 struct cgroup {
353 	/* self css with NULL ->ss, points back to this cgroup */
354 	struct cgroup_subsys_state self;
355 
356 	unsigned long flags;		/* "unsigned long" so bitops work */
357 
358 	/*
359 	 * idr allocated in-hierarchy ID.
360 	 *
361 	 * ID 0 is not used, the ID of the root cgroup is always 1, and a
362 	 * new cgroup will be assigned with a smallest available ID.
363 	 *
364 	 * Allocating/Removing ID must be protected by cgroup_mutex.
365 	 */
366 	int id;
367 
368 	/*
369 	 * The depth this cgroup is at.  The root is at depth zero and each
370 	 * step down the hierarchy increments the level.  This along with
371 	 * ancestor_ids[] can determine whether a given cgroup is a
372 	 * descendant of another without traversing the hierarchy.
373 	 */
374 	int level;
375 
376 	/* Maximum allowed descent tree depth */
377 	int max_depth;
378 
379 	/*
380 	 * Keep track of total numbers of visible and dying descent cgroups.
381 	 * Dying cgroups are cgroups which were deleted by a user,
382 	 * but are still existing because someone else is holding a reference.
383 	 * max_descendants is a maximum allowed number of descent cgroups.
384 	 *
385 	 * nr_descendants and nr_dying_descendants are protected
386 	 * by cgroup_mutex and css_set_lock. It's fine to read them holding
387 	 * any of cgroup_mutex and css_set_lock; for writing both locks
388 	 * should be held.
389 	 */
390 	int nr_descendants;
391 	int nr_dying_descendants;
392 	int max_descendants;
393 
394 	/*
395 	 * Each non-empty css_set associated with this cgroup contributes
396 	 * one to nr_populated_csets.  The counter is zero iff this cgroup
397 	 * doesn't have any tasks.
398 	 *
399 	 * All children which have non-zero nr_populated_csets and/or
400 	 * nr_populated_children of their own contribute one to either
401 	 * nr_populated_domain_children or nr_populated_threaded_children
402 	 * depending on their type.  Each counter is zero iff all cgroups
403 	 * of the type in the subtree proper don't have any tasks.
404 	 */
405 	int nr_populated_csets;
406 	int nr_populated_domain_children;
407 	int nr_populated_threaded_children;
408 
409 	int nr_threaded_children;	/* # of live threaded child cgroups */
410 
411 	struct kernfs_node *kn;		/* cgroup kernfs entry */
412 	struct cgroup_file procs_file;	/* handle for "cgroup.procs" */
413 	struct cgroup_file events_file;	/* handle for "cgroup.events" */
414 
415 	/*
416 	 * The bitmask of subsystems enabled on the child cgroups.
417 	 * ->subtree_control is the one configured through
418 	 * "cgroup.subtree_control" while ->child_ss_mask is the effective
419 	 * one which may have more subsystems enabled.  Controller knobs
420 	 * are made available iff it's enabled in ->subtree_control.
421 	 */
422 	u16 subtree_control;
423 	u16 subtree_ss_mask;
424 	u16 old_subtree_control;
425 	u16 old_subtree_ss_mask;
426 
427 	/* Private pointers for each registered subsystem */
428 	struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT];
429 
430 	struct cgroup_root *root;
431 
432 	/*
433 	 * List of cgrp_cset_links pointing at css_sets with tasks in this
434 	 * cgroup.  Protected by css_set_lock.
435 	 */
436 	struct list_head cset_links;
437 
438 	/*
439 	 * On the default hierarchy, a css_set for a cgroup with some
440 	 * susbsys disabled will point to css's which are associated with
441 	 * the closest ancestor which has the subsys enabled.  The
442 	 * following lists all css_sets which point to this cgroup's css
443 	 * for the given subsystem.
444 	 */
445 	struct list_head e_csets[CGROUP_SUBSYS_COUNT];
446 
447 	/*
448 	 * If !threaded, self.  If threaded, it points to the nearest
449 	 * domain ancestor.  Inside a threaded subtree, cgroups are exempt
450 	 * from process granularity and no-internal-task constraint.
451 	 * Domain level resource consumptions which aren't tied to a
452 	 * specific task are charged to the dom_cgrp.
453 	 */
454 	struct cgroup *dom_cgrp;
455 	struct cgroup *old_dom_cgrp;		/* used while enabling threaded */
456 
457 	/* per-cpu recursive resource statistics */
458 	struct cgroup_rstat_cpu __percpu *rstat_cpu;
459 	struct list_head rstat_css_list;
460 
461 	/* cgroup basic resource statistics */
462 	struct cgroup_base_stat pending_bstat;	/* pending from children */
463 	struct cgroup_base_stat bstat;
464 	struct prev_cputime prev_cputime;	/* for printing out cputime */
465 
466 	/*
467 	 * list of pidlists, up to two for each namespace (one for procs, one
468 	 * for tasks); created on demand.
469 	 */
470 	struct list_head pidlists;
471 	struct mutex pidlist_mutex;
472 
473 	/* used to wait for offlining of csses */
474 	wait_queue_head_t offline_waitq;
475 
476 	/* used to schedule release agent */
477 	struct work_struct release_agent_work;
478 
479 	/* used to track pressure stalls */
480 	struct psi_group psi;
481 
482 	/* used to store eBPF programs */
483 	struct cgroup_bpf bpf;
484 
485 	/* If there is block congestion on this cgroup. */
486 	atomic_t congestion_count;
487 
488 	/* Used to store internal freezer state */
489 	struct cgroup_freezer_state freezer;
490 
491 	/* ids of the ancestors at each level including self */
492 	int ancestor_ids[];
493 };
494 
495 /*
496  * A cgroup_root represents the root of a cgroup hierarchy, and may be
497  * associated with a kernfs_root to form an active hierarchy.  This is
498  * internal to cgroup core.  Don't access directly from controllers.
499  */
500 struct cgroup_root {
501 	struct kernfs_root *kf_root;
502 
503 	/* The bitmask of subsystems attached to this hierarchy */
504 	unsigned int subsys_mask;
505 
506 	/* Unique id for this hierarchy. */
507 	int hierarchy_id;
508 
509 	/* The root cgroup.  Root is destroyed on its release. */
510 	struct cgroup cgrp;
511 
512 	/* for cgrp->ancestor_ids[0] */
513 	int cgrp_ancestor_id_storage;
514 
515 	/* Number of cgroups in the hierarchy, used only for /proc/cgroups */
516 	atomic_t nr_cgrps;
517 
518 	/* A list running through the active hierarchies */
519 	struct list_head root_list;
520 
521 	/* Hierarchy-specific flags */
522 	unsigned int flags;
523 
524 	/* IDs for cgroups in this hierarchy */
525 	struct idr cgroup_idr;
526 
527 	/* The path to use for release notifications. */
528 	char release_agent_path[PATH_MAX];
529 
530 	/* The name for this hierarchy - may be empty */
531 	char name[MAX_CGROUP_ROOT_NAMELEN];
532 };
533 
534 /*
535  * struct cftype: handler definitions for cgroup control files
536  *
537  * When reading/writing to a file:
538  *	- the cgroup to use is file->f_path.dentry->d_parent->d_fsdata
539  *	- the 'cftype' of the file is file->f_path.dentry->d_fsdata
540  */
541 struct cftype {
542 	/*
543 	 * By convention, the name should begin with the name of the
544 	 * subsystem, followed by a period.  Zero length string indicates
545 	 * end of cftype array.
546 	 */
547 	char name[MAX_CFTYPE_NAME];
548 	char link_name[MAX_CFTYPE_NAME];
549 	unsigned long private;
550 
551 	/*
552 	 * The maximum length of string, excluding trailing nul, that can
553 	 * be passed to write.  If < PAGE_SIZE-1, PAGE_SIZE-1 is assumed.
554 	 */
555 	size_t max_write_len;
556 
557 	/* CFTYPE_* flags */
558 	unsigned int flags;
559 
560 	/*
561 	 * If non-zero, should contain the offset from the start of css to
562 	 * a struct cgroup_file field.  cgroup will record the handle of
563 	 * the created file into it.  The recorded handle can be used as
564 	 * long as the containing css remains accessible.
565 	 */
566 	unsigned int file_offset;
567 
568 	/*
569 	 * Fields used for internal bookkeeping.  Initialized automatically
570 	 * during registration.
571 	 */
572 	struct cgroup_subsys *ss;	/* NULL for cgroup core files */
573 	struct list_head node;		/* anchored at ss->cfts */
574 	struct kernfs_ops *kf_ops;
575 
576 	int (*open)(struct kernfs_open_file *of);
577 	void (*release)(struct kernfs_open_file *of);
578 
579 	/*
580 	 * read_u64() is a shortcut for the common case of returning a
581 	 * single integer. Use it in place of read()
582 	 */
583 	u64 (*read_u64)(struct cgroup_subsys_state *css, struct cftype *cft);
584 	/*
585 	 * read_s64() is a signed version of read_u64()
586 	 */
587 	s64 (*read_s64)(struct cgroup_subsys_state *css, struct cftype *cft);
588 
589 	/* generic seq_file read interface */
590 	int (*seq_show)(struct seq_file *sf, void *v);
591 
592 	/* optional ops, implement all or none */
593 	void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
594 	void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
595 	void (*seq_stop)(struct seq_file *sf, void *v);
596 
597 	/*
598 	 * write_u64() is a shortcut for the common case of accepting
599 	 * a single integer (as parsed by simple_strtoull) from
600 	 * userspace. Use in place of write(); return 0 or error.
601 	 */
602 	int (*write_u64)(struct cgroup_subsys_state *css, struct cftype *cft,
603 			 u64 val);
604 	/*
605 	 * write_s64() is a signed version of write_u64()
606 	 */
607 	int (*write_s64)(struct cgroup_subsys_state *css, struct cftype *cft,
608 			 s64 val);
609 
610 	/*
611 	 * write() is the generic write callback which maps directly to
612 	 * kernfs write operation and overrides all other operations.
613 	 * Maximum write size is determined by ->max_write_len.  Use
614 	 * of_css/cft() to access the associated css and cft.
615 	 */
616 	ssize_t (*write)(struct kernfs_open_file *of,
617 			 char *buf, size_t nbytes, loff_t off);
618 
619 	__poll_t (*poll)(struct kernfs_open_file *of,
620 			 struct poll_table_struct *pt);
621 
622 #ifdef CONFIG_DEBUG_LOCK_ALLOC
623 	struct lock_class_key	lockdep_key;
624 #endif
625 };
626 
627 /*
628  * Control Group subsystem type.
629  * See Documentation/cgroup-v1/cgroups.txt for details
630  */
631 struct cgroup_subsys {
632 	struct cgroup_subsys_state *(*css_alloc)(struct cgroup_subsys_state *parent_css);
633 	int (*css_online)(struct cgroup_subsys_state *css);
634 	void (*css_offline)(struct cgroup_subsys_state *css);
635 	void (*css_released)(struct cgroup_subsys_state *css);
636 	void (*css_free)(struct cgroup_subsys_state *css);
637 	void (*css_reset)(struct cgroup_subsys_state *css);
638 	void (*css_rstat_flush)(struct cgroup_subsys_state *css, int cpu);
639 	int (*css_extra_stat_show)(struct seq_file *seq,
640 				   struct cgroup_subsys_state *css);
641 
642 	int (*can_attach)(struct cgroup_taskset *tset);
643 	void (*cancel_attach)(struct cgroup_taskset *tset);
644 	void (*attach)(struct cgroup_taskset *tset);
645 	void (*post_attach)(void);
646 	int (*can_fork)(struct task_struct *task);
647 	void (*cancel_fork)(struct task_struct *task);
648 	void (*fork)(struct task_struct *task);
649 	void (*exit)(struct task_struct *task);
650 	void (*release)(struct task_struct *task);
651 	void (*bind)(struct cgroup_subsys_state *root_css);
652 
653 	bool early_init:1;
654 
655 	/*
656 	 * If %true, the controller, on the default hierarchy, doesn't show
657 	 * up in "cgroup.controllers" or "cgroup.subtree_control", is
658 	 * implicitly enabled on all cgroups on the default hierarchy, and
659 	 * bypasses the "no internal process" constraint.  This is for
660 	 * utility type controllers which is transparent to userland.
661 	 *
662 	 * An implicit controller can be stolen from the default hierarchy
663 	 * anytime and thus must be okay with offline csses from previous
664 	 * hierarchies coexisting with csses for the current one.
665 	 */
666 	bool implicit_on_dfl:1;
667 
668 	/*
669 	 * If %true, the controller, supports threaded mode on the default
670 	 * hierarchy.  In a threaded subtree, both process granularity and
671 	 * no-internal-process constraint are ignored and a threaded
672 	 * controllers should be able to handle that.
673 	 *
674 	 * Note that as an implicit controller is automatically enabled on
675 	 * all cgroups on the default hierarchy, it should also be
676 	 * threaded.  implicit && !threaded is not supported.
677 	 */
678 	bool threaded:1;
679 
680 	/*
681 	 * If %false, this subsystem is properly hierarchical -
682 	 * configuration, resource accounting and restriction on a parent
683 	 * cgroup cover those of its children.  If %true, hierarchy support
684 	 * is broken in some ways - some subsystems ignore hierarchy
685 	 * completely while others are only implemented half-way.
686 	 *
687 	 * It's now disallowed to create nested cgroups if the subsystem is
688 	 * broken and cgroup core will emit a warning message on such
689 	 * cases.  Eventually, all subsystems will be made properly
690 	 * hierarchical and this will go away.
691 	 */
692 	bool broken_hierarchy:1;
693 	bool warned_broken_hierarchy:1;
694 
695 	/* the following two fields are initialized automtically during boot */
696 	int id;
697 	const char *name;
698 
699 	/* optional, initialized automatically during boot if not set */
700 	const char *legacy_name;
701 
702 	/* link to parent, protected by cgroup_lock() */
703 	struct cgroup_root *root;
704 
705 	/* idr for css->id */
706 	struct idr css_idr;
707 
708 	/*
709 	 * List of cftypes.  Each entry is the first entry of an array
710 	 * terminated by zero length name.
711 	 */
712 	struct list_head cfts;
713 
714 	/*
715 	 * Base cftypes which are automatically registered.  The two can
716 	 * point to the same array.
717 	 */
718 	struct cftype *dfl_cftypes;	/* for the default hierarchy */
719 	struct cftype *legacy_cftypes;	/* for the legacy hierarchies */
720 
721 	/*
722 	 * A subsystem may depend on other subsystems.  When such subsystem
723 	 * is enabled on a cgroup, the depended-upon subsystems are enabled
724 	 * together if available.  Subsystems enabled due to dependency are
725 	 * not visible to userland until explicitly enabled.  The following
726 	 * specifies the mask of subsystems that this one depends on.
727 	 */
728 	unsigned int depends_on;
729 };
730 
731 extern struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
732 
733 /**
734  * cgroup_threadgroup_change_begin - threadgroup exclusion for cgroups
735  * @tsk: target task
736  *
737  * Allows cgroup operations to synchronize against threadgroup changes
738  * using a percpu_rw_semaphore.
739  */
740 static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
741 {
742 	percpu_down_read(&cgroup_threadgroup_rwsem);
743 }
744 
745 /**
746  * cgroup_threadgroup_change_end - threadgroup exclusion for cgroups
747  * @tsk: target task
748  *
749  * Counterpart of cgroup_threadcgroup_change_begin().
750  */
751 static inline void cgroup_threadgroup_change_end(struct task_struct *tsk)
752 {
753 	percpu_up_read(&cgroup_threadgroup_rwsem);
754 }
755 
756 #else	/* CONFIG_CGROUPS */
757 
758 #define CGROUP_SUBSYS_COUNT 0
759 
760 static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
761 {
762 	might_sleep();
763 }
764 
765 static inline void cgroup_threadgroup_change_end(struct task_struct *tsk) {}
766 
767 #endif	/* CONFIG_CGROUPS */
768 
769 #ifdef CONFIG_SOCK_CGROUP_DATA
770 
771 /*
772  * sock_cgroup_data is embedded at sock->sk_cgrp_data and contains
773  * per-socket cgroup information except for memcg association.
774  *
775  * On legacy hierarchies, net_prio and net_cls controllers directly set
776  * attributes on each sock which can then be tested by the network layer.
777  * On the default hierarchy, each sock is associated with the cgroup it was
778  * created in and the networking layer can match the cgroup directly.
779  *
780  * To avoid carrying all three cgroup related fields separately in sock,
781  * sock_cgroup_data overloads (prioidx, classid) and the cgroup pointer.
782  * On boot, sock_cgroup_data records the cgroup that the sock was created
783  * in so that cgroup2 matches can be made; however, once either net_prio or
784  * net_cls starts being used, the area is overriden to carry prioidx and/or
785  * classid.  The two modes are distinguished by whether the lowest bit is
786  * set.  Clear bit indicates cgroup pointer while set bit prioidx and
787  * classid.
788  *
789  * While userland may start using net_prio or net_cls at any time, once
790  * either is used, cgroup2 matching no longer works.  There is no reason to
791  * mix the two and this is in line with how legacy and v2 compatibility is
792  * handled.  On mode switch, cgroup references which are already being
793  * pointed to by socks may be leaked.  While this can be remedied by adding
794  * synchronization around sock_cgroup_data, given that the number of leaked
795  * cgroups is bound and highly unlikely to be high, this seems to be the
796  * better trade-off.
797  */
798 struct sock_cgroup_data {
799 	union {
800 #ifdef __LITTLE_ENDIAN
801 		struct {
802 			u8	is_data;
803 			u8	padding;
804 			u16	prioidx;
805 			u32	classid;
806 		} __packed;
807 #else
808 		struct {
809 			u32	classid;
810 			u16	prioidx;
811 			u8	padding;
812 			u8	is_data;
813 		} __packed;
814 #endif
815 		u64		val;
816 	};
817 };
818 
819 /*
820  * There's a theoretical window where the following accessors race with
821  * updaters and return part of the previous pointer as the prioidx or
822  * classid.  Such races are short-lived and the result isn't critical.
823  */
824 static inline u16 sock_cgroup_prioidx(const struct sock_cgroup_data *skcd)
825 {
826 	/* fallback to 1 which is always the ID of the root cgroup */
827 	return (skcd->is_data & 1) ? skcd->prioidx : 1;
828 }
829 
830 static inline u32 sock_cgroup_classid(const struct sock_cgroup_data *skcd)
831 {
832 	/* fallback to 0 which is the unconfigured default classid */
833 	return (skcd->is_data & 1) ? skcd->classid : 0;
834 }
835 
836 /*
837  * If invoked concurrently, the updaters may clobber each other.  The
838  * caller is responsible for synchronization.
839  */
840 static inline void sock_cgroup_set_prioidx(struct sock_cgroup_data *skcd,
841 					   u16 prioidx)
842 {
843 	struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
844 
845 	if (sock_cgroup_prioidx(&skcd_buf) == prioidx)
846 		return;
847 
848 	if (!(skcd_buf.is_data & 1)) {
849 		skcd_buf.val = 0;
850 		skcd_buf.is_data = 1;
851 	}
852 
853 	skcd_buf.prioidx = prioidx;
854 	WRITE_ONCE(skcd->val, skcd_buf.val);	/* see sock_cgroup_ptr() */
855 }
856 
857 static inline void sock_cgroup_set_classid(struct sock_cgroup_data *skcd,
858 					   u32 classid)
859 {
860 	struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
861 
862 	if (sock_cgroup_classid(&skcd_buf) == classid)
863 		return;
864 
865 	if (!(skcd_buf.is_data & 1)) {
866 		skcd_buf.val = 0;
867 		skcd_buf.is_data = 1;
868 	}
869 
870 	skcd_buf.classid = classid;
871 	WRITE_ONCE(skcd->val, skcd_buf.val);	/* see sock_cgroup_ptr() */
872 }
873 
874 #else	/* CONFIG_SOCK_CGROUP_DATA */
875 
876 struct sock_cgroup_data {
877 };
878 
879 #endif	/* CONFIG_SOCK_CGROUP_DATA */
880 
881 #endif	/* _LINUX_CGROUP_DEFS_H */
882