blob: 7d57890cec671885d4bae9a15a59d240e9a36867 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Tejun Heob4a04ab2015-05-13 15:38:40 -04002/*
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>
Elena Reshetova4b9502e62017-03-08 10:00:40 +020017#include <linux/refcount.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040018#include <linux/percpu-refcount.h>
Tejun Heo7d7efec2015-05-13 16:35:16 -040019#include <linux/percpu-rwsem.h>
Tejun Heo041cd642017-09-25 08:12:05 -070020#include <linux/u64_stats_sync.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040021#include <linux/workqueue.h>
Daniel Mack30070982016-11-23 16:52:26 +010022#include <linux/bpf-cgroup.h>
Johannes Weiner2ce71352018-10-26 15:06:31 -070023#include <linux/psi_types.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040024
25#ifdef CONFIG_CGROUPS
26
27struct cgroup;
28struct cgroup_root;
29struct cgroup_subsys;
30struct cgroup_taskset;
31struct kernfs_node;
32struct kernfs_ops;
33struct kernfs_open_file;
Arnd Bergmannc80ef9e2015-05-29 10:52:59 +020034struct seq_file;
Johannes Weinerdc505372019-03-05 15:45:48 -080035struct poll_table_struct;
Tejun Heob4a04ab2015-05-13 15:38:40 -040036
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,
43enum 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 */
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 */
Tejun Heo88cb04b2016-03-03 09:57:58 -050054 CSS_VISIBLE = (1 << 3), /* css is visible to userland */
Waiman Long33c35aa2017-05-15 09:34:06 -040055 CSS_DYING = (1 << 4), /* css is dying */
Tejun Heob4a04ab2015-05-13 15:38:40 -040056};
57
58/* bits in struct cgroup flags field */
59enum {
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
70/* cgroup_root->flags */
71enum {
Tejun Heob4a04ab2015-05-13 15:38:40 -040072 CGRP_ROOT_NOPREFIX = (1 << 1), /* mounted subsystems have no named prefix */
73 CGRP_ROOT_XATTR = (1 << 2), /* supports extended attributes */
Tejun Heo5136f632017-06-27 14:30:28 -040074
75 /*
76 * Consider namespaces as delegation boundaries. If this flag is
77 * set, controller specific interface files in a namespace root
78 * aren't writeable from inside the namespace.
79 */
80 CGRP_ROOT_NS_DELEGATE = (1 << 3),
Waiman Longe1cba4b2017-08-17 15:33:09 -040081
82 /*
83 * Enable cpuset controller in v1 cgroup to use v2 behavior.
84 */
85 CGRP_ROOT_CPUSET_V2_MODE = (1 << 4),
Tejun Heob4a04ab2015-05-13 15:38:40 -040086};
87
88/* cftype->flags */
89enum {
90 CFTYPE_ONLY_ON_ROOT = (1 << 0), /* only create on root cgrp */
91 CFTYPE_NOT_ON_ROOT = (1 << 1), /* don't create on root cgrp */
Tejun Heo5136f632017-06-27 14:30:28 -040092 CFTYPE_NS_DELEGATABLE = (1 << 2), /* writeable beyond delegation boundaries */
93
Tejun Heob4a04ab2015-05-13 15:38:40 -040094 CFTYPE_NO_PREFIX = (1 << 3), /* (DON'T USE FOR NEW FILES) no subsys prefix */
Tejun Heo7dbdb192015-09-18 17:54:23 -040095 CFTYPE_WORLD_WRITABLE = (1 << 4), /* (DON'T USE FOR NEW FILES) S_IWUGO */
Waiman Long5cf81142018-11-08 10:08:46 -050096 CFTYPE_DEBUG = (1 << 5), /* create when cgroup_debug */
Tejun Heob4a04ab2015-05-13 15:38:40 -040097
98 /* internal flags, do not use outside cgroup core proper */
99 __CFTYPE_ONLY_ON_DFL = (1 << 16), /* only on default hierarchy */
100 __CFTYPE_NOT_ON_DFL = (1 << 17), /* not on default hierarchy */
101};
102
103/*
Tejun Heo6f60ead2015-09-18 17:54:23 -0400104 * cgroup_file is the handle for a file instance created in a cgroup which
105 * is used, for example, to generate file changed notifications. This can
106 * be obtained by setting cftype->file_offset.
107 */
108struct cgroup_file {
109 /* do not access any fields from outside cgroup core */
Tejun Heo6f60ead2015-09-18 17:54:23 -0400110 struct kernfs_node *kn;
Tejun Heob12e3582018-04-26 14:29:04 -0700111 unsigned long notified_at;
112 struct timer_list notify_timer;
Tejun Heo6f60ead2015-09-18 17:54:23 -0400113};
114
115/*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400116 * Per-subsystem/per-cgroup state maintained by the system. This is the
117 * fundamental structural building block that controllers deal with.
118 *
119 * Fields marked with "PI:" are public and immutable and may be accessed
120 * directly without synchronization.
121 */
122struct cgroup_subsys_state {
123 /* PI: the cgroup that this css is attached to */
124 struct cgroup *cgroup;
125
126 /* PI: the cgroup subsystem that this css is attached to */
127 struct cgroup_subsys *ss;
128
129 /* reference count - access via css_[try]get() and css_put() */
130 struct percpu_ref refcnt;
131
Tejun Heob4a04ab2015-05-13 15:38:40 -0400132 /* siblings list anchored at the parent's ->children */
133 struct list_head sibling;
134 struct list_head children;
135
Tejun Heo8f534702018-04-26 14:29:05 -0700136 /* flush target list anchored at cgrp->rstat_css_list */
137 struct list_head rstat_css_node;
138
Tejun Heob4a04ab2015-05-13 15:38:40 -0400139 /*
140 * PI: Subsys-unique ID. 0 is unused and root is always 1. The
141 * matching css can be looked up using css_from_id().
142 */
143 int id;
144
145 unsigned int flags;
146
147 /*
148 * Monotonically increasing unique serial number which defines a
149 * uniform order among all csses. It's guaranteed that all
150 * ->children lists are in the ascending order of ->serial_nr and
151 * used to allow interrupting and resuming iterations.
152 */
153 u64 serial_nr;
154
Tejun Heoaa226ff2016-01-21 15:31:11 -0500155 /*
156 * Incremented by online self and children. Used to guarantee that
157 * parents are not offlined before their children.
158 */
159 atomic_t online_cnt;
160
Tejun Heob4a04ab2015-05-13 15:38:40 -0400161 /* percpu_ref killing and RCU release */
Tejun Heob4a04ab2015-05-13 15:38:40 -0400162 struct work_struct destroy_work;
Tejun Heo8f36aae2018-03-14 12:45:14 -0700163 struct rcu_work destroy_rwork;
Todd Poynorb8b1a2e2017-04-06 18:47:57 -0700164
165 /*
166 * PI: the parent css. Placed here for cache proximity to following
167 * fields of the containing structure.
168 */
169 struct cgroup_subsys_state *parent;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400170};
171
172/*
173 * A css_set is a structure holding pointers to a set of
174 * cgroup_subsys_state objects. This saves space in the task struct
175 * object and speeds up fork()/exit(), since a single inc/dec and a
176 * list_add()/del() can bump the reference count on the entire cgroup
177 * set for a task.
178 */
179struct css_set {
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500180 /*
181 * Set of subsystem states, one for each subsystem. This array is
182 * immutable after creation apart from the init_css_set during
183 * subsystem registration (at boot time).
184 */
185 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
186
187 /* reference count */
Elena Reshetova4b9502e62017-03-08 10:00:40 +0200188 refcount_t refcount;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400189
Tejun Heo454000a2017-05-15 09:34:02 -0400190 /*
191 * For a domain cgroup, the following points to self. If threaded,
192 * to the matching cset of the nearest domain ancestor. The
193 * dom_cset provides access to the domain cgroup and its csses to
194 * which domain level resource consumptions should be charged.
195 */
196 struct css_set *dom_cset;
197
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500198 /* the default cgroup associated with this css_set */
199 struct cgroup *dfl_cgrp;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400200
Waiman Long73a72422017-06-13 17:18:01 -0400201 /* internal task count, protected by css_set_lock */
202 int nr_tasks;
203
Tejun Heob4a04ab2015-05-13 15:38:40 -0400204 /*
205 * Lists running through all tasks using this cgroup group.
206 * mg_tasks lists tasks which belong to this cset but are in the
207 * process of being migrated out or in. Protected by
208 * css_set_rwsem, but, during migration, once tasks are moved to
209 * mg_tasks, it can be read safely while holding cgroup_mutex.
210 */
211 struct list_head tasks;
212 struct list_head mg_tasks;
213
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500214 /* all css_task_iters currently walking this cset */
215 struct list_head task_iters;
216
217 /*
218 * On the default hierarhcy, ->subsys[ssid] may point to a css
219 * attached to an ancestor instead of the cgroup this css_set is
220 * associated with. The following node is anchored at
221 * ->subsys[ssid]->cgroup->e_csets[ssid] and provides a way to
222 * iterate through all css's attached to a given cgroup.
223 */
224 struct list_head e_cset_node[CGROUP_SUBSYS_COUNT];
225
Tejun Heo454000a2017-05-15 09:34:02 -0400226 /* all threaded csets whose ->dom_cset points to this cset */
227 struct list_head threaded_csets;
228 struct list_head threaded_csets_node;
229
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500230 /*
231 * List running through all cgroup groups in the same hash
232 * slot. Protected by css_set_lock
233 */
234 struct hlist_node hlist;
235
Tejun Heob4a04ab2015-05-13 15:38:40 -0400236 /*
237 * List of cgrp_cset_links pointing at cgroups referenced from this
238 * css_set. Protected by css_set_lock.
239 */
240 struct list_head cgrp_links;
241
Tejun Heob4a04ab2015-05-13 15:38:40 -0400242 /*
243 * List of csets participating in the on-going migration either as
244 * source or destination. Protected by cgroup_mutex.
245 */
246 struct list_head mg_preload_node;
247 struct list_head mg_node;
248
249 /*
250 * If this cset is acting as the source of migration the following
Tejun Heoe4857982016-03-08 11:51:26 -0500251 * two fields are set. mg_src_cgrp and mg_dst_cgrp are
252 * respectively the source and destination cgroups of the on-going
253 * migration. mg_dst_cset is the destination cset the target tasks
254 * on this cset should be migrated to. Protected by cgroup_mutex.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400255 */
256 struct cgroup *mg_src_cgrp;
Tejun Heoe4857982016-03-08 11:51:26 -0500257 struct cgroup *mg_dst_cgrp;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400258 struct css_set *mg_dst_cset;
259
Tejun Heo2b021cb2016-03-15 20:43:04 -0400260 /* dead and being drained, ignore for migration */
261 bool dead;
262
Tejun Heob4a04ab2015-05-13 15:38:40 -0400263 /* For RCU-protected deletion */
264 struct rcu_head rcu_head;
265};
266
Tejun Heod4ff7492018-04-26 14:29:04 -0700267struct cgroup_base_stat {
268 struct task_cputime cputime;
269};
270
Tejun Heo041cd642017-09-25 08:12:05 -0700271/*
Tejun Heoc58632b2018-04-26 14:29:04 -0700272 * rstat - cgroup scalable recursive statistics. Accounting is done
273 * per-cpu in cgroup_rstat_cpu which is then lazily propagated up the
274 * hierarchy on reads.
Tejun Heo041cd642017-09-25 08:12:05 -0700275 *
Tejun Heoc58632b2018-04-26 14:29:04 -0700276 * When a stat gets updated, the cgroup_rstat_cpu and its ancestors are
Tejun Heo041cd642017-09-25 08:12:05 -0700277 * linked into the updated tree. On the following read, propagation only
278 * considers and consumes the updated tree. This makes reading O(the
279 * number of descendants which have been active since last read) instead of
280 * O(the total number of descendants).
281 *
282 * This is important because there can be a lot of (draining) cgroups which
283 * aren't active and stat may be read frequently. The combination can
284 * become very expensive. By propagating selectively, increasing reading
285 * frequency decreases the cost of each read.
Tejun Heod4ff7492018-04-26 14:29:04 -0700286 *
287 * This struct hosts both the fields which implement the above -
288 * updated_children and updated_next - and the fields which track basic
289 * resource statistics on top of it - bsync, bstat and last_bstat.
Tejun Heo041cd642017-09-25 08:12:05 -0700290 */
Tejun Heoc58632b2018-04-26 14:29:04 -0700291struct cgroup_rstat_cpu {
Tejun Heo041cd642017-09-25 08:12:05 -0700292 /*
Tejun Heod4ff7492018-04-26 14:29:04 -0700293 * ->bsync protects ->bstat. These are the only fields which get
294 * updated in the hot path.
Tejun Heo041cd642017-09-25 08:12:05 -0700295 */
Tejun Heod4ff7492018-04-26 14:29:04 -0700296 struct u64_stats_sync bsync;
297 struct cgroup_base_stat bstat;
Tejun Heo041cd642017-09-25 08:12:05 -0700298
299 /*
300 * Snapshots at the last reading. These are used to calculate the
301 * deltas to propagate to the global counters.
302 */
Tejun Heod4ff7492018-04-26 14:29:04 -0700303 struct cgroup_base_stat last_bstat;
Tejun Heo041cd642017-09-25 08:12:05 -0700304
305 /*
306 * Child cgroups with stat updates on this cpu since the last read
307 * are linked on the parent's ->updated_children through
308 * ->updated_next.
309 *
310 * In addition to being more compact, singly-linked list pointing
311 * to the cgroup makes it unnecessary for each per-cpu struct to
312 * point back to the associated cgroup.
313 *
Tejun Heoc58632b2018-04-26 14:29:04 -0700314 * Protected by per-cpu cgroup_rstat_cpu_lock.
Tejun Heo041cd642017-09-25 08:12:05 -0700315 */
316 struct cgroup *updated_children; /* terminated by self cgroup */
317 struct cgroup *updated_next; /* NULL iff not on the list */
318};
319
Tejun Heob4a04ab2015-05-13 15:38:40 -0400320struct cgroup {
321 /* self css with NULL ->ss, points back to this cgroup */
322 struct cgroup_subsys_state self;
323
324 unsigned long flags; /* "unsigned long" so bitops work */
325
326 /*
327 * idr allocated in-hierarchy ID.
328 *
329 * ID 0 is not used, the ID of the root cgroup is always 1, and a
330 * new cgroup will be assigned with a smallest available ID.
331 *
332 * Allocating/Removing ID must be protected by cgroup_mutex.
333 */
334 int id;
335
336 /*
Tejun Heob11cfb52015-11-20 15:55:52 -0500337 * The depth this cgroup is at. The root is at depth zero and each
338 * step down the hierarchy increments the level. This along with
339 * ancestor_ids[] can determine whether a given cgroup is a
340 * descendant of another without traversing the hierarchy.
341 */
342 int level;
343
Roman Gushchin1a926e02017-07-28 18:28:44 +0100344 /* Maximum allowed descent tree depth */
345 int max_depth;
346
Tejun Heob11cfb52015-11-20 15:55:52 -0500347 /*
Roman Gushchin0679dee2017-08-02 17:55:29 +0100348 * Keep track of total numbers of visible and dying descent cgroups.
349 * Dying cgroups are cgroups which were deleted by a user,
350 * but are still existing because someone else is holding a reference.
Roman Gushchin1a926e02017-07-28 18:28:44 +0100351 * max_descendants is a maximum allowed number of descent cgroups.
Roman Gushchin4dcabec2019-04-19 10:03:03 -0700352 *
353 * nr_descendants and nr_dying_descendants are protected
354 * by cgroup_mutex and css_set_lock. It's fine to read them holding
355 * any of cgroup_mutex and css_set_lock; for writing both locks
356 * should be held.
Roman Gushchin0679dee2017-08-02 17:55:29 +0100357 */
358 int nr_descendants;
359 int nr_dying_descendants;
Roman Gushchin1a926e02017-07-28 18:28:44 +0100360 int max_descendants;
Roman Gushchin0679dee2017-08-02 17:55:29 +0100361
362 /*
Tejun Heo0de09422015-10-15 16:41:49 -0400363 * Each non-empty css_set associated with this cgroup contributes
Tejun Heo788b9502017-07-16 21:43:33 -0400364 * one to nr_populated_csets. The counter is zero iff this cgroup
365 * doesn't have any tasks.
366 *
367 * All children which have non-zero nr_populated_csets and/or
Tejun Heo454000a2017-05-15 09:34:02 -0400368 * nr_populated_children of their own contribute one to either
369 * nr_populated_domain_children or nr_populated_threaded_children
370 * depending on their type. Each counter is zero iff all cgroups
371 * of the type in the subtree proper don't have any tasks.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400372 */
Tejun Heo788b9502017-07-16 21:43:33 -0400373 int nr_populated_csets;
Tejun Heo454000a2017-05-15 09:34:02 -0400374 int nr_populated_domain_children;
375 int nr_populated_threaded_children;
376
377 int nr_threaded_children; /* # of live threaded child cgroups */
Tejun Heob4a04ab2015-05-13 15:38:40 -0400378
379 struct kernfs_node *kn; /* cgroup kernfs entry */
Tejun Heo6f60ead2015-09-18 17:54:23 -0400380 struct cgroup_file procs_file; /* handle for "cgroup.procs" */
381 struct cgroup_file events_file; /* handle for "cgroup.events" */
Tejun Heob4a04ab2015-05-13 15:38:40 -0400382
383 /*
384 * The bitmask of subsystems enabled on the child cgroups.
385 * ->subtree_control is the one configured through
Tejun Heo8699b772016-02-22 22:25:46 -0500386 * "cgroup.subtree_control" while ->child_ss_mask is the effective
387 * one which may have more subsystems enabled. Controller knobs
388 * are made available iff it's enabled in ->subtree_control.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400389 */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500390 u16 subtree_control;
391 u16 subtree_ss_mask;
Tejun Heo15a27c32016-03-03 09:57:59 -0500392 u16 old_subtree_control;
393 u16 old_subtree_ss_mask;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400394
395 /* Private pointers for each registered subsystem */
396 struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT];
397
398 struct cgroup_root *root;
399
400 /*
401 * List of cgrp_cset_links pointing at css_sets with tasks in this
402 * cgroup. Protected by css_set_lock.
403 */
404 struct list_head cset_links;
405
406 /*
407 * On the default hierarchy, a css_set for a cgroup with some
408 * susbsys disabled will point to css's which are associated with
409 * the closest ancestor which has the subsys enabled. The
410 * following lists all css_sets which point to this cgroup's css
411 * for the given subsystem.
412 */
413 struct list_head e_csets[CGROUP_SUBSYS_COUNT];
414
415 /*
Tejun Heo454000a2017-05-15 09:34:02 -0400416 * If !threaded, self. If threaded, it points to the nearest
417 * domain ancestor. Inside a threaded subtree, cgroups are exempt
418 * from process granularity and no-internal-task constraint.
419 * Domain level resource consumptions which aren't tied to a
420 * specific task are charged to the dom_cgrp.
421 */
422 struct cgroup *dom_cgrp;
Tejun Heo479adb82018-10-04 13:28:08 -0700423 struct cgroup *old_dom_cgrp; /* used while enabling threaded */
Tejun Heo454000a2017-05-15 09:34:02 -0400424
Tejun Heoc58632b2018-04-26 14:29:04 -0700425 /* per-cpu recursive resource statistics */
426 struct cgroup_rstat_cpu __percpu *rstat_cpu;
Tejun Heo8f534702018-04-26 14:29:05 -0700427 struct list_head rstat_css_list;
Tejun Heoc58632b2018-04-26 14:29:04 -0700428
Tejun Heo041cd642017-09-25 08:12:05 -0700429 /* cgroup basic resource statistics */
Tejun Heod4ff7492018-04-26 14:29:04 -0700430 struct cgroup_base_stat pending_bstat; /* pending from children */
431 struct cgroup_base_stat bstat;
432 struct prev_cputime prev_cputime; /* for printing out cputime */
Tejun Heo041cd642017-09-25 08:12:05 -0700433
Tejun Heo454000a2017-05-15 09:34:02 -0400434 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400435 * list of pidlists, up to two for each namespace (one for procs, one
436 * for tasks); created on demand.
437 */
438 struct list_head pidlists;
439 struct mutex pidlist_mutex;
440
441 /* used to wait for offlining of csses */
442 wait_queue_head_t offline_waitq;
443
444 /* used to schedule release agent */
445 struct work_struct release_agent_work;
Tejun Heob11cfb52015-11-20 15:55:52 -0500446
Johannes Weiner2ce71352018-10-26 15:06:31 -0700447 /* used to track pressure stalls */
448 struct psi_group psi;
449
Daniel Mack30070982016-11-23 16:52:26 +0100450 /* used to store eBPF programs */
451 struct cgroup_bpf bpf;
452
Josef Bacikd09d8df2018-07-03 11:14:55 -0400453 /* If there is block congestion on this cgroup. */
454 atomic_t congestion_count;
455
Tejun Heob11cfb52015-11-20 15:55:52 -0500456 /* ids of the ancestors at each level including self */
457 int ancestor_ids[];
Tejun Heob4a04ab2015-05-13 15:38:40 -0400458};
459
460/*
461 * A cgroup_root represents the root of a cgroup hierarchy, and may be
462 * associated with a kernfs_root to form an active hierarchy. This is
463 * internal to cgroup core. Don't access directly from controllers.
464 */
465struct cgroup_root {
466 struct kernfs_root *kf_root;
467
468 /* The bitmask of subsystems attached to this hierarchy */
469 unsigned int subsys_mask;
470
471 /* Unique id for this hierarchy. */
472 int hierarchy_id;
473
474 /* The root cgroup. Root is destroyed on its release. */
475 struct cgroup cgrp;
476
Tejun Heob11cfb52015-11-20 15:55:52 -0500477 /* for cgrp->ancestor_ids[0] */
478 int cgrp_ancestor_id_storage;
479
Tejun Heob4a04ab2015-05-13 15:38:40 -0400480 /* Number of cgroups in the hierarchy, used only for /proc/cgroups */
481 atomic_t nr_cgrps;
482
483 /* A list running through the active hierarchies */
484 struct list_head root_list;
485
486 /* Hierarchy-specific flags */
487 unsigned int flags;
488
489 /* IDs for cgroups in this hierarchy */
490 struct idr cgroup_idr;
491
492 /* The path to use for release notifications. */
493 char release_agent_path[PATH_MAX];
494
495 /* The name for this hierarchy - may be empty */
496 char name[MAX_CGROUP_ROOT_NAMELEN];
497};
498
499/*
500 * struct cftype: handler definitions for cgroup control files
501 *
502 * When reading/writing to a file:
503 * - the cgroup to use is file->f_path.dentry->d_parent->d_fsdata
504 * - the 'cftype' of the file is file->f_path.dentry->d_fsdata
505 */
506struct cftype {
507 /*
508 * By convention, the name should begin with the name of the
509 * subsystem, followed by a period. Zero length string indicates
510 * end of cftype array.
511 */
512 char name[MAX_CFTYPE_NAME];
Tejun Heo731a9812015-08-11 13:35:42 -0400513 unsigned long private;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400514
515 /*
516 * The maximum length of string, excluding trailing nul, that can
517 * be passed to write. If < PAGE_SIZE-1, PAGE_SIZE-1 is assumed.
518 */
519 size_t max_write_len;
520
521 /* CFTYPE_* flags */
522 unsigned int flags;
523
524 /*
Tejun Heo6f60ead2015-09-18 17:54:23 -0400525 * If non-zero, should contain the offset from the start of css to
526 * a struct cgroup_file field. cgroup will record the handle of
527 * the created file into it. The recorded handle can be used as
528 * long as the containing css remains accessible.
529 */
530 unsigned int file_offset;
531
532 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400533 * Fields used for internal bookkeeping. Initialized automatically
534 * during registration.
535 */
536 struct cgroup_subsys *ss; /* NULL for cgroup core files */
537 struct list_head node; /* anchored at ss->cfts */
538 struct kernfs_ops *kf_ops;
539
Tejun Heoe90cbeb2016-12-27 14:49:03 -0500540 int (*open)(struct kernfs_open_file *of);
541 void (*release)(struct kernfs_open_file *of);
542
Tejun Heob4a04ab2015-05-13 15:38:40 -0400543 /*
544 * read_u64() is a shortcut for the common case of returning a
545 * single integer. Use it in place of read()
546 */
547 u64 (*read_u64)(struct cgroup_subsys_state *css, struct cftype *cft);
548 /*
549 * read_s64() is a signed version of read_u64()
550 */
551 s64 (*read_s64)(struct cgroup_subsys_state *css, struct cftype *cft);
552
553 /* generic seq_file read interface */
554 int (*seq_show)(struct seq_file *sf, void *v);
555
556 /* optional ops, implement all or none */
557 void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
558 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
559 void (*seq_stop)(struct seq_file *sf, void *v);
560
561 /*
562 * write_u64() is a shortcut for the common case of accepting
563 * a single integer (as parsed by simple_strtoull) from
564 * userspace. Use in place of write(); return 0 or error.
565 */
566 int (*write_u64)(struct cgroup_subsys_state *css, struct cftype *cft,
567 u64 val);
568 /*
569 * write_s64() is a signed version of write_u64()
570 */
571 int (*write_s64)(struct cgroup_subsys_state *css, struct cftype *cft,
572 s64 val);
573
574 /*
575 * write() is the generic write callback which maps directly to
576 * kernfs write operation and overrides all other operations.
577 * Maximum write size is determined by ->max_write_len. Use
578 * of_css/cft() to access the associated css and cft.
579 */
580 ssize_t (*write)(struct kernfs_open_file *of,
581 char *buf, size_t nbytes, loff_t off);
582
Johannes Weinerdc505372019-03-05 15:45:48 -0800583 __poll_t (*poll)(struct kernfs_open_file *of,
584 struct poll_table_struct *pt);
585
Tejun Heob4a04ab2015-05-13 15:38:40 -0400586#ifdef CONFIG_DEBUG_LOCK_ALLOC
587 struct lock_class_key lockdep_key;
588#endif
589};
590
591/*
592 * Control Group subsystem type.
Matt Roper392536b2017-12-29 12:02:00 -0800593 * See Documentation/cgroup-v1/cgroups.txt for details
Tejun Heob4a04ab2015-05-13 15:38:40 -0400594 */
595struct cgroup_subsys {
596 struct cgroup_subsys_state *(*css_alloc)(struct cgroup_subsys_state *parent_css);
597 int (*css_online)(struct cgroup_subsys_state *css);
598 void (*css_offline)(struct cgroup_subsys_state *css);
599 void (*css_released)(struct cgroup_subsys_state *css);
600 void (*css_free)(struct cgroup_subsys_state *css);
601 void (*css_reset)(struct cgroup_subsys_state *css);
Tejun Heo8f534702018-04-26 14:29:05 -0700602 void (*css_rstat_flush)(struct cgroup_subsys_state *css, int cpu);
Tejun Heod41bf8c2017-10-23 16:18:27 -0700603 int (*css_extra_stat_show)(struct seq_file *seq,
604 struct cgroup_subsys_state *css);
Tejun Heob4a04ab2015-05-13 15:38:40 -0400605
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500606 int (*can_attach)(struct cgroup_taskset *tset);
607 void (*cancel_attach)(struct cgroup_taskset *tset);
608 void (*attach)(struct cgroup_taskset *tset);
Tejun Heo5cf1cac2016-04-21 19:06:48 -0400609 void (*post_attach)(void);
Oleg Nesterovb53202e2015-12-03 10:24:08 -0500610 int (*can_fork)(struct task_struct *task);
611 void (*cancel_fork)(struct task_struct *task);
612 void (*fork)(struct task_struct *task);
Tejun Heo2e91fa72015-10-15 16:41:53 -0400613 void (*exit)(struct task_struct *task);
Oleg Nesterov51bee5a2019-01-28 17:00:13 +0100614 void (*release)(struct task_struct *task);
Tejun Heob4a04ab2015-05-13 15:38:40 -0400615 void (*bind)(struct cgroup_subsys_state *root_css);
616
Tejun Heob38e42e2016-02-23 10:00:50 -0500617 bool early_init:1;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400618
619 /*
Tejun Heof6d635ad2016-03-08 11:51:26 -0500620 * If %true, the controller, on the default hierarchy, doesn't show
621 * up in "cgroup.controllers" or "cgroup.subtree_control", is
622 * implicitly enabled on all cgroups on the default hierarchy, and
623 * bypasses the "no internal process" constraint. This is for
624 * utility type controllers which is transparent to userland.
625 *
626 * An implicit controller can be stolen from the default hierarchy
627 * anytime and thus must be okay with offline csses from previous
628 * hierarchies coexisting with csses for the current one.
629 */
630 bool implicit_on_dfl:1;
631
632 /*
Tejun Heo8cfd8142017-07-21 11:14:51 -0400633 * If %true, the controller, supports threaded mode on the default
634 * hierarchy. In a threaded subtree, both process granularity and
635 * no-internal-process constraint are ignored and a threaded
636 * controllers should be able to handle that.
637 *
638 * Note that as an implicit controller is automatically enabled on
639 * all cgroups on the default hierarchy, it should also be
640 * threaded. implicit && !threaded is not supported.
641 */
642 bool threaded:1;
643
644 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400645 * If %false, this subsystem is properly hierarchical -
646 * configuration, resource accounting and restriction on a parent
647 * cgroup cover those of its children. If %true, hierarchy support
648 * is broken in some ways - some subsystems ignore hierarchy
649 * completely while others are only implemented half-way.
650 *
651 * It's now disallowed to create nested cgroups if the subsystem is
652 * broken and cgroup core will emit a warning message on such
653 * cases. Eventually, all subsystems will be made properly
654 * hierarchical and this will go away.
655 */
Tejun Heob38e42e2016-02-23 10:00:50 -0500656 bool broken_hierarchy:1;
657 bool warned_broken_hierarchy:1;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400658
659 /* the following two fields are initialized automtically during boot */
660 int id;
661 const char *name;
662
Tejun Heo3e1d2ee2015-08-18 13:58:16 -0700663 /* optional, initialized automatically during boot if not set */
664 const char *legacy_name;
665
Tejun Heob4a04ab2015-05-13 15:38:40 -0400666 /* link to parent, protected by cgroup_lock() */
667 struct cgroup_root *root;
668
669 /* idr for css->id */
670 struct idr css_idr;
671
672 /*
673 * List of cftypes. Each entry is the first entry of an array
674 * terminated by zero length name.
675 */
676 struct list_head cfts;
677
678 /*
679 * Base cftypes which are automatically registered. The two can
680 * point to the same array.
681 */
682 struct cftype *dfl_cftypes; /* for the default hierarchy */
683 struct cftype *legacy_cftypes; /* for the legacy hierarchies */
684
685 /*
686 * A subsystem may depend on other subsystems. When such subsystem
687 * is enabled on a cgroup, the depended-upon subsystems are enabled
688 * together if available. Subsystems enabled due to dependency are
689 * not visible to userland until explicitly enabled. The following
690 * specifies the mask of subsystems that this one depends on.
691 */
692 unsigned int depends_on;
693};
694
Tejun Heo1ed13282015-09-16 12:53:17 -0400695extern struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
696
697/**
698 * cgroup_threadgroup_change_begin - threadgroup exclusion for cgroups
699 * @tsk: target task
700 *
Ingo Molnar780de9d2017-02-02 11:50:56 +0100701 * Allows cgroup operations to synchronize against threadgroup changes
702 * using a percpu_rw_semaphore.
Tejun Heo1ed13282015-09-16 12:53:17 -0400703 */
704static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
705{
706 percpu_down_read(&cgroup_threadgroup_rwsem);
707}
708
709/**
710 * cgroup_threadgroup_change_end - threadgroup exclusion for cgroups
711 * @tsk: target task
712 *
Ingo Molnar780de9d2017-02-02 11:50:56 +0100713 * Counterpart of cgroup_threadcgroup_change_begin().
Tejun Heo1ed13282015-09-16 12:53:17 -0400714 */
715static inline void cgroup_threadgroup_change_end(struct task_struct *tsk)
716{
717 percpu_up_read(&cgroup_threadgroup_rwsem);
718}
Tejun Heo7d7efec2015-05-13 16:35:16 -0400719
720#else /* CONFIG_CGROUPS */
721
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000722#define CGROUP_SUBSYS_COUNT 0
723
Ingo Molnar780de9d2017-02-02 11:50:56 +0100724static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
725{
726 might_sleep();
727}
728
Tejun Heo7d7efec2015-05-13 16:35:16 -0400729static inline void cgroup_threadgroup_change_end(struct task_struct *tsk) {}
730
Tejun Heob4a04ab2015-05-13 15:38:40 -0400731#endif /* CONFIG_CGROUPS */
Tejun Heo7d7efec2015-05-13 16:35:16 -0400732
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500733#ifdef CONFIG_SOCK_CGROUP_DATA
734
Tejun Heobd1060a2015-12-07 17:38:53 -0500735/*
736 * sock_cgroup_data is embedded at sock->sk_cgrp_data and contains
737 * per-socket cgroup information except for memcg association.
738 *
739 * On legacy hierarchies, net_prio and net_cls controllers directly set
740 * attributes on each sock which can then be tested by the network layer.
741 * On the default hierarchy, each sock is associated with the cgroup it was
742 * created in and the networking layer can match the cgroup directly.
743 *
744 * To avoid carrying all three cgroup related fields separately in sock,
745 * sock_cgroup_data overloads (prioidx, classid) and the cgroup pointer.
746 * On boot, sock_cgroup_data records the cgroup that the sock was created
747 * in so that cgroup2 matches can be made; however, once either net_prio or
748 * net_cls starts being used, the area is overriden to carry prioidx and/or
749 * classid. The two modes are distinguished by whether the lowest bit is
750 * set. Clear bit indicates cgroup pointer while set bit prioidx and
751 * classid.
752 *
753 * While userland may start using net_prio or net_cls at any time, once
754 * either is used, cgroup2 matching no longer works. There is no reason to
755 * mix the two and this is in line with how legacy and v2 compatibility is
756 * handled. On mode switch, cgroup references which are already being
757 * pointed to by socks may be leaked. While this can be remedied by adding
758 * synchronization around sock_cgroup_data, given that the number of leaked
759 * cgroups is bound and highly unlikely to be high, this seems to be the
760 * better trade-off.
761 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500762struct sock_cgroup_data {
Tejun Heobd1060a2015-12-07 17:38:53 -0500763 union {
764#ifdef __LITTLE_ENDIAN
765 struct {
766 u8 is_data;
767 u8 padding;
768 u16 prioidx;
769 u32 classid;
770 } __packed;
771#else
772 struct {
773 u32 classid;
774 u16 prioidx;
775 u8 padding;
776 u8 is_data;
777 } __packed;
778#endif
779 u64 val;
780 };
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500781};
782
Tejun Heobd1060a2015-12-07 17:38:53 -0500783/*
784 * There's a theoretical window where the following accessors race with
785 * updaters and return part of the previous pointer as the prioidx or
786 * classid. Such races are short-lived and the result isn't critical.
787 */
Eric Dumazet4dcb31d2018-03-14 09:04:16 -0700788static inline u16 sock_cgroup_prioidx(const struct sock_cgroup_data *skcd)
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500789{
Tejun Heobd1060a2015-12-07 17:38:53 -0500790 /* fallback to 1 which is always the ID of the root cgroup */
791 return (skcd->is_data & 1) ? skcd->prioidx : 1;
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500792}
793
Eric Dumazet4dcb31d2018-03-14 09:04:16 -0700794static inline u32 sock_cgroup_classid(const struct sock_cgroup_data *skcd)
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500795{
Tejun Heobd1060a2015-12-07 17:38:53 -0500796 /* fallback to 0 which is the unconfigured default classid */
797 return (skcd->is_data & 1) ? skcd->classid : 0;
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500798}
799
Tejun Heobd1060a2015-12-07 17:38:53 -0500800/*
801 * If invoked concurrently, the updaters may clobber each other. The
802 * caller is responsible for synchronization.
803 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500804static inline void sock_cgroup_set_prioidx(struct sock_cgroup_data *skcd,
805 u16 prioidx)
806{
Tejun Heoad2c8c72015-12-09 12:30:46 -0500807 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
Tejun Heobd1060a2015-12-07 17:38:53 -0500808
809 if (sock_cgroup_prioidx(&skcd_buf) == prioidx)
810 return;
811
812 if (!(skcd_buf.is_data & 1)) {
813 skcd_buf.val = 0;
814 skcd_buf.is_data = 1;
815 }
816
817 skcd_buf.prioidx = prioidx;
818 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500819}
820
821static inline void sock_cgroup_set_classid(struct sock_cgroup_data *skcd,
822 u32 classid)
823{
Tejun Heoad2c8c72015-12-09 12:30:46 -0500824 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
Tejun Heobd1060a2015-12-07 17:38:53 -0500825
826 if (sock_cgroup_classid(&skcd_buf) == classid)
827 return;
828
829 if (!(skcd_buf.is_data & 1)) {
830 skcd_buf.val = 0;
831 skcd_buf.is_data = 1;
832 }
833
834 skcd_buf.classid = classid;
835 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500836}
837
838#else /* CONFIG_SOCK_CGROUP_DATA */
839
840struct sock_cgroup_data {
841};
842
843#endif /* CONFIG_SOCK_CGROUP_DATA */
844
Tejun Heob4a04ab2015-05-13 15:38:40 -0400845#endif /* _LINUX_CGROUP_DEFS_H */