blob: 60d62fe97dc3cd4fea1ce132d701302060a44262 [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>
Tejun Heob4a04ab2015-05-13 15:38:40 -040023
24#ifdef CONFIG_CGROUPS
25
26struct cgroup;
27struct cgroup_root;
28struct cgroup_subsys;
29struct cgroup_taskset;
30struct kernfs_node;
31struct kernfs_ops;
32struct kernfs_open_file;
Arnd Bergmannc80ef9e2015-05-29 10:52:59 +020033struct seq_file;
Tejun Heob4a04ab2015-05-13 15:38:40 -040034
35#define MAX_CGROUP_TYPE_NAMELEN 32
36#define MAX_CGROUP_ROOT_NAMELEN 64
37#define MAX_CFTYPE_NAME 64
38
39/* define the enumeration of all cgroup subsystems */
40#define SUBSYS(_x) _x ## _cgrp_id,
41enum cgroup_subsys_id {
42#include <linux/cgroup_subsys.h>
43 CGROUP_SUBSYS_COUNT,
44};
45#undef SUBSYS
46
47/* bits in struct cgroup_subsys_state flags field */
48enum {
49 CSS_NO_REF = (1 << 0), /* no reference counting for this css */
50 CSS_ONLINE = (1 << 1), /* between ->css_online() and ->css_offline() */
51 CSS_RELEASED = (1 << 2), /* refcnt reached zero, released */
Tejun Heo88cb04b2016-03-03 09:57:58 -050052 CSS_VISIBLE = (1 << 3), /* css is visible to userland */
Waiman Long33c35aa2017-05-15 09:34:06 -040053 CSS_DYING = (1 << 4), /* css is dying */
Tejun Heob4a04ab2015-05-13 15:38:40 -040054};
55
56/* bits in struct cgroup flags field */
57enum {
58 /* Control Group requires release notifications to userspace */
59 CGRP_NOTIFY_ON_RELEASE,
60 /*
61 * Clone the parent's configuration when creating a new child
62 * cpuset cgroup. For historical reasons, this option can be
63 * specified at mount time and thus is implemented here.
64 */
65 CGRP_CPUSET_CLONE_CHILDREN,
66};
67
68/* cgroup_root->flags */
69enum {
Tejun Heob4a04ab2015-05-13 15:38:40 -040070 CGRP_ROOT_NOPREFIX = (1 << 1), /* mounted subsystems have no named prefix */
71 CGRP_ROOT_XATTR = (1 << 2), /* supports extended attributes */
Tejun Heo5136f632017-06-27 14:30:28 -040072
73 /*
74 * Consider namespaces as delegation boundaries. If this flag is
75 * set, controller specific interface files in a namespace root
76 * aren't writeable from inside the namespace.
77 */
78 CGRP_ROOT_NS_DELEGATE = (1 << 3),
Waiman Longe1cba4b2017-08-17 15:33:09 -040079
80 /*
81 * Enable cpuset controller in v1 cgroup to use v2 behavior.
82 */
83 CGRP_ROOT_CPUSET_V2_MODE = (1 << 4),
Tejun Heob4a04ab2015-05-13 15:38:40 -040084};
85
86/* cftype->flags */
87enum {
88 CFTYPE_ONLY_ON_ROOT = (1 << 0), /* only create on root cgrp */
89 CFTYPE_NOT_ON_ROOT = (1 << 1), /* don't create on root cgrp */
Tejun Heo5136f632017-06-27 14:30:28 -040090 CFTYPE_NS_DELEGATABLE = (1 << 2), /* writeable beyond delegation boundaries */
91
Tejun Heob4a04ab2015-05-13 15:38:40 -040092 CFTYPE_NO_PREFIX = (1 << 3), /* (DON'T USE FOR NEW FILES) no subsys prefix */
Tejun Heo7dbdb192015-09-18 17:54:23 -040093 CFTYPE_WORLD_WRITABLE = (1 << 4), /* (DON'T USE FOR NEW FILES) S_IWUGO */
Tejun Heob4a04ab2015-05-13 15:38:40 -040094
95 /* internal flags, do not use outside cgroup core proper */
96 __CFTYPE_ONLY_ON_DFL = (1 << 16), /* only on default hierarchy */
97 __CFTYPE_NOT_ON_DFL = (1 << 17), /* not on default hierarchy */
98};
99
100/*
Tejun Heo6f60ead2015-09-18 17:54:23 -0400101 * cgroup_file is the handle for a file instance created in a cgroup which
102 * is used, for example, to generate file changed notifications. This can
103 * be obtained by setting cftype->file_offset.
104 */
105struct cgroup_file {
106 /* do not access any fields from outside cgroup core */
Tejun Heo6f60ead2015-09-18 17:54:23 -0400107 struct kernfs_node *kn;
Tejun Heob12e3582018-04-26 14:29:04 -0700108 unsigned long notified_at;
109 struct timer_list notify_timer;
Tejun Heo6f60ead2015-09-18 17:54:23 -0400110};
111
112/*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400113 * Per-subsystem/per-cgroup state maintained by the system. This is the
114 * fundamental structural building block that controllers deal with.
115 *
116 * Fields marked with "PI:" are public and immutable and may be accessed
117 * directly without synchronization.
118 */
119struct cgroup_subsys_state {
120 /* PI: the cgroup that this css is attached to */
121 struct cgroup *cgroup;
122
123 /* PI: the cgroup subsystem that this css is attached to */
124 struct cgroup_subsys *ss;
125
126 /* reference count - access via css_[try]get() and css_put() */
127 struct percpu_ref refcnt;
128
Tejun Heob4a04ab2015-05-13 15:38:40 -0400129 /* siblings list anchored at the parent's ->children */
130 struct list_head sibling;
131 struct list_head children;
132
133 /*
134 * PI: Subsys-unique ID. 0 is unused and root is always 1. The
135 * matching css can be looked up using css_from_id().
136 */
137 int id;
138
139 unsigned int flags;
140
141 /*
142 * Monotonically increasing unique serial number which defines a
143 * uniform order among all csses. It's guaranteed that all
144 * ->children lists are in the ascending order of ->serial_nr and
145 * used to allow interrupting and resuming iterations.
146 */
147 u64 serial_nr;
148
Tejun Heoaa226ff2016-01-21 15:31:11 -0500149 /*
150 * Incremented by online self and children. Used to guarantee that
151 * parents are not offlined before their children.
152 */
153 atomic_t online_cnt;
154
Tejun Heob4a04ab2015-05-13 15:38:40 -0400155 /* percpu_ref killing and RCU release */
Tejun Heob4a04ab2015-05-13 15:38:40 -0400156 struct work_struct destroy_work;
Tejun Heo8f36aae2018-03-14 12:45:14 -0700157 struct rcu_work destroy_rwork;
Todd Poynorb8b1a2e2017-04-06 18:47:57 -0700158
159 /*
160 * PI: the parent css. Placed here for cache proximity to following
161 * fields of the containing structure.
162 */
163 struct cgroup_subsys_state *parent;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400164};
165
166/*
167 * A css_set is a structure holding pointers to a set of
168 * cgroup_subsys_state objects. This saves space in the task struct
169 * object and speeds up fork()/exit(), since a single inc/dec and a
170 * list_add()/del() can bump the reference count on the entire cgroup
171 * set for a task.
172 */
173struct css_set {
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500174 /*
175 * Set of subsystem states, one for each subsystem. This array is
176 * immutable after creation apart from the init_css_set during
177 * subsystem registration (at boot time).
178 */
179 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
180
181 /* reference count */
Elena Reshetova4b9502e62017-03-08 10:00:40 +0200182 refcount_t refcount;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400183
Tejun Heo454000a2017-05-15 09:34:02 -0400184 /*
185 * For a domain cgroup, the following points to self. If threaded,
186 * to the matching cset of the nearest domain ancestor. The
187 * dom_cset provides access to the domain cgroup and its csses to
188 * which domain level resource consumptions should be charged.
189 */
190 struct css_set *dom_cset;
191
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500192 /* the default cgroup associated with this css_set */
193 struct cgroup *dfl_cgrp;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400194
Waiman Long73a72422017-06-13 17:18:01 -0400195 /* internal task count, protected by css_set_lock */
196 int nr_tasks;
197
Tejun Heob4a04ab2015-05-13 15:38:40 -0400198 /*
199 * Lists running through all tasks using this cgroup group.
200 * mg_tasks lists tasks which belong to this cset but are in the
201 * process of being migrated out or in. Protected by
202 * css_set_rwsem, but, during migration, once tasks are moved to
203 * mg_tasks, it can be read safely while holding cgroup_mutex.
204 */
205 struct list_head tasks;
206 struct list_head mg_tasks;
207
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500208 /* all css_task_iters currently walking this cset */
209 struct list_head task_iters;
210
211 /*
212 * On the default hierarhcy, ->subsys[ssid] may point to a css
213 * attached to an ancestor instead of the cgroup this css_set is
214 * associated with. The following node is anchored at
215 * ->subsys[ssid]->cgroup->e_csets[ssid] and provides a way to
216 * iterate through all css's attached to a given cgroup.
217 */
218 struct list_head e_cset_node[CGROUP_SUBSYS_COUNT];
219
Tejun Heo454000a2017-05-15 09:34:02 -0400220 /* all threaded csets whose ->dom_cset points to this cset */
221 struct list_head threaded_csets;
222 struct list_head threaded_csets_node;
223
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500224 /*
225 * List running through all cgroup groups in the same hash
226 * slot. Protected by css_set_lock
227 */
228 struct hlist_node hlist;
229
Tejun Heob4a04ab2015-05-13 15:38:40 -0400230 /*
231 * List of cgrp_cset_links pointing at cgroups referenced from this
232 * css_set. Protected by css_set_lock.
233 */
234 struct list_head cgrp_links;
235
Tejun Heob4a04ab2015-05-13 15:38:40 -0400236 /*
237 * List of csets participating in the on-going migration either as
238 * source or destination. Protected by cgroup_mutex.
239 */
240 struct list_head mg_preload_node;
241 struct list_head mg_node;
242
243 /*
244 * If this cset is acting as the source of migration the following
Tejun Heoe4857982016-03-08 11:51:26 -0500245 * two fields are set. mg_src_cgrp and mg_dst_cgrp are
246 * respectively the source and destination cgroups of the on-going
247 * migration. mg_dst_cset is the destination cset the target tasks
248 * on this cset should be migrated to. Protected by cgroup_mutex.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400249 */
250 struct cgroup *mg_src_cgrp;
Tejun Heoe4857982016-03-08 11:51:26 -0500251 struct cgroup *mg_dst_cgrp;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400252 struct css_set *mg_dst_cset;
253
Tejun Heo2b021cb2016-03-15 20:43:04 -0400254 /* dead and being drained, ignore for migration */
255 bool dead;
256
Tejun Heob4a04ab2015-05-13 15:38:40 -0400257 /* For RCU-protected deletion */
258 struct rcu_head rcu_head;
259};
260
Tejun Heod4ff7492018-04-26 14:29:04 -0700261struct cgroup_base_stat {
262 struct task_cputime cputime;
263};
264
Tejun Heo041cd642017-09-25 08:12:05 -0700265/*
Tejun Heoc58632b2018-04-26 14:29:04 -0700266 * rstat - cgroup scalable recursive statistics. Accounting is done
267 * per-cpu in cgroup_rstat_cpu which is then lazily propagated up the
268 * hierarchy on reads.
Tejun Heo041cd642017-09-25 08:12:05 -0700269 *
Tejun Heoc58632b2018-04-26 14:29:04 -0700270 * When a stat gets updated, the cgroup_rstat_cpu and its ancestors are
Tejun Heo041cd642017-09-25 08:12:05 -0700271 * linked into the updated tree. On the following read, propagation only
272 * considers and consumes the updated tree. This makes reading O(the
273 * number of descendants which have been active since last read) instead of
274 * O(the total number of descendants).
275 *
276 * This is important because there can be a lot of (draining) cgroups which
277 * aren't active and stat may be read frequently. The combination can
278 * become very expensive. By propagating selectively, increasing reading
279 * frequency decreases the cost of each read.
Tejun Heod4ff7492018-04-26 14:29:04 -0700280 *
281 * This struct hosts both the fields which implement the above -
282 * updated_children and updated_next - and the fields which track basic
283 * resource statistics on top of it - bsync, bstat and last_bstat.
Tejun Heo041cd642017-09-25 08:12:05 -0700284 */
Tejun Heoc58632b2018-04-26 14:29:04 -0700285struct cgroup_rstat_cpu {
Tejun Heo041cd642017-09-25 08:12:05 -0700286 /*
Tejun Heod4ff7492018-04-26 14:29:04 -0700287 * ->bsync protects ->bstat. These are the only fields which get
288 * updated in the hot path.
Tejun Heo041cd642017-09-25 08:12:05 -0700289 */
Tejun Heod4ff7492018-04-26 14:29:04 -0700290 struct u64_stats_sync bsync;
291 struct cgroup_base_stat bstat;
Tejun Heo041cd642017-09-25 08:12:05 -0700292
293 /*
294 * Snapshots at the last reading. These are used to calculate the
295 * deltas to propagate to the global counters.
296 */
Tejun Heod4ff7492018-04-26 14:29:04 -0700297 struct cgroup_base_stat last_bstat;
Tejun Heo041cd642017-09-25 08:12:05 -0700298
299 /*
300 * Child cgroups with stat updates on this cpu since the last read
301 * are linked on the parent's ->updated_children through
302 * ->updated_next.
303 *
304 * In addition to being more compact, singly-linked list pointing
305 * to the cgroup makes it unnecessary for each per-cpu struct to
306 * point back to the associated cgroup.
307 *
Tejun Heoc58632b2018-04-26 14:29:04 -0700308 * Protected by per-cpu cgroup_rstat_cpu_lock.
Tejun Heo041cd642017-09-25 08:12:05 -0700309 */
310 struct cgroup *updated_children; /* terminated by self cgroup */
311 struct cgroup *updated_next; /* NULL iff not on the list */
312};
313
Tejun Heob4a04ab2015-05-13 15:38:40 -0400314struct cgroup {
315 /* self css with NULL ->ss, points back to this cgroup */
316 struct cgroup_subsys_state self;
317
318 unsigned long flags; /* "unsigned long" so bitops work */
319
320 /*
321 * idr allocated in-hierarchy ID.
322 *
323 * ID 0 is not used, the ID of the root cgroup is always 1, and a
324 * new cgroup will be assigned with a smallest available ID.
325 *
326 * Allocating/Removing ID must be protected by cgroup_mutex.
327 */
328 int id;
329
330 /*
Tejun Heob11cfb52015-11-20 15:55:52 -0500331 * The depth this cgroup is at. The root is at depth zero and each
332 * step down the hierarchy increments the level. This along with
333 * ancestor_ids[] can determine whether a given cgroup is a
334 * descendant of another without traversing the hierarchy.
335 */
336 int level;
337
Roman Gushchin1a926e02017-07-28 18:28:44 +0100338 /* Maximum allowed descent tree depth */
339 int max_depth;
340
Tejun Heob11cfb52015-11-20 15:55:52 -0500341 /*
Roman Gushchin0679dee2017-08-02 17:55:29 +0100342 * Keep track of total numbers of visible and dying descent cgroups.
343 * Dying cgroups are cgroups which were deleted by a user,
344 * but are still existing because someone else is holding a reference.
Roman Gushchin1a926e02017-07-28 18:28:44 +0100345 * max_descendants is a maximum allowed number of descent cgroups.
Roman Gushchin0679dee2017-08-02 17:55:29 +0100346 */
347 int nr_descendants;
348 int nr_dying_descendants;
Roman Gushchin1a926e02017-07-28 18:28:44 +0100349 int max_descendants;
Roman Gushchin0679dee2017-08-02 17:55:29 +0100350
351 /*
Tejun Heo0de09422015-10-15 16:41:49 -0400352 * Each non-empty css_set associated with this cgroup contributes
Tejun Heo788b9502017-07-16 21:43:33 -0400353 * one to nr_populated_csets. The counter is zero iff this cgroup
354 * doesn't have any tasks.
355 *
356 * All children which have non-zero nr_populated_csets and/or
Tejun Heo454000a2017-05-15 09:34:02 -0400357 * nr_populated_children of their own contribute one to either
358 * nr_populated_domain_children or nr_populated_threaded_children
359 * depending on their type. Each counter is zero iff all cgroups
360 * of the type in the subtree proper don't have any tasks.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400361 */
Tejun Heo788b9502017-07-16 21:43:33 -0400362 int nr_populated_csets;
Tejun Heo454000a2017-05-15 09:34:02 -0400363 int nr_populated_domain_children;
364 int nr_populated_threaded_children;
365
366 int nr_threaded_children; /* # of live threaded child cgroups */
Tejun Heob4a04ab2015-05-13 15:38:40 -0400367
368 struct kernfs_node *kn; /* cgroup kernfs entry */
Tejun Heo6f60ead2015-09-18 17:54:23 -0400369 struct cgroup_file procs_file; /* handle for "cgroup.procs" */
370 struct cgroup_file events_file; /* handle for "cgroup.events" */
Tejun Heob4a04ab2015-05-13 15:38:40 -0400371
372 /*
373 * The bitmask of subsystems enabled on the child cgroups.
374 * ->subtree_control is the one configured through
Tejun Heo8699b772016-02-22 22:25:46 -0500375 * "cgroup.subtree_control" while ->child_ss_mask is the effective
376 * one which may have more subsystems enabled. Controller knobs
377 * are made available iff it's enabled in ->subtree_control.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400378 */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500379 u16 subtree_control;
380 u16 subtree_ss_mask;
Tejun Heo15a27c32016-03-03 09:57:59 -0500381 u16 old_subtree_control;
382 u16 old_subtree_ss_mask;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400383
384 /* Private pointers for each registered subsystem */
385 struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT];
386
387 struct cgroup_root *root;
388
389 /*
390 * List of cgrp_cset_links pointing at css_sets with tasks in this
391 * cgroup. Protected by css_set_lock.
392 */
393 struct list_head cset_links;
394
395 /*
396 * On the default hierarchy, a css_set for a cgroup with some
397 * susbsys disabled will point to css's which are associated with
398 * the closest ancestor which has the subsys enabled. The
399 * following lists all css_sets which point to this cgroup's css
400 * for the given subsystem.
401 */
402 struct list_head e_csets[CGROUP_SUBSYS_COUNT];
403
404 /*
Tejun Heo454000a2017-05-15 09:34:02 -0400405 * If !threaded, self. If threaded, it points to the nearest
406 * domain ancestor. Inside a threaded subtree, cgroups are exempt
407 * from process granularity and no-internal-task constraint.
408 * Domain level resource consumptions which aren't tied to a
409 * specific task are charged to the dom_cgrp.
410 */
411 struct cgroup *dom_cgrp;
412
Tejun Heoc58632b2018-04-26 14:29:04 -0700413 /* per-cpu recursive resource statistics */
414 struct cgroup_rstat_cpu __percpu *rstat_cpu;
415
Tejun Heo041cd642017-09-25 08:12:05 -0700416 /* cgroup basic resource statistics */
Tejun Heod4ff7492018-04-26 14:29:04 -0700417 struct cgroup_base_stat pending_bstat; /* pending from children */
418 struct cgroup_base_stat bstat;
419 struct prev_cputime prev_cputime; /* for printing out cputime */
Tejun Heo041cd642017-09-25 08:12:05 -0700420
Tejun Heo454000a2017-05-15 09:34:02 -0400421 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400422 * list of pidlists, up to two for each namespace (one for procs, one
423 * for tasks); created on demand.
424 */
425 struct list_head pidlists;
426 struct mutex pidlist_mutex;
427
428 /* used to wait for offlining of csses */
429 wait_queue_head_t offline_waitq;
430
431 /* used to schedule release agent */
432 struct work_struct release_agent_work;
Tejun Heob11cfb52015-11-20 15:55:52 -0500433
Daniel Mack30070982016-11-23 16:52:26 +0100434 /* used to store eBPF programs */
435 struct cgroup_bpf bpf;
436
Tejun Heob11cfb52015-11-20 15:55:52 -0500437 /* ids of the ancestors at each level including self */
438 int ancestor_ids[];
Tejun Heob4a04ab2015-05-13 15:38:40 -0400439};
440
441/*
442 * A cgroup_root represents the root of a cgroup hierarchy, and may be
443 * associated with a kernfs_root to form an active hierarchy. This is
444 * internal to cgroup core. Don't access directly from controllers.
445 */
446struct cgroup_root {
447 struct kernfs_root *kf_root;
448
449 /* The bitmask of subsystems attached to this hierarchy */
450 unsigned int subsys_mask;
451
452 /* Unique id for this hierarchy. */
453 int hierarchy_id;
454
455 /* The root cgroup. Root is destroyed on its release. */
456 struct cgroup cgrp;
457
Tejun Heob11cfb52015-11-20 15:55:52 -0500458 /* for cgrp->ancestor_ids[0] */
459 int cgrp_ancestor_id_storage;
460
Tejun Heob4a04ab2015-05-13 15:38:40 -0400461 /* Number of cgroups in the hierarchy, used only for /proc/cgroups */
462 atomic_t nr_cgrps;
463
464 /* A list running through the active hierarchies */
465 struct list_head root_list;
466
467 /* Hierarchy-specific flags */
468 unsigned int flags;
469
470 /* IDs for cgroups in this hierarchy */
471 struct idr cgroup_idr;
472
473 /* The path to use for release notifications. */
474 char release_agent_path[PATH_MAX];
475
476 /* The name for this hierarchy - may be empty */
477 char name[MAX_CGROUP_ROOT_NAMELEN];
478};
479
480/*
481 * struct cftype: handler definitions for cgroup control files
482 *
483 * When reading/writing to a file:
484 * - the cgroup to use is file->f_path.dentry->d_parent->d_fsdata
485 * - the 'cftype' of the file is file->f_path.dentry->d_fsdata
486 */
487struct cftype {
488 /*
489 * By convention, the name should begin with the name of the
490 * subsystem, followed by a period. Zero length string indicates
491 * end of cftype array.
492 */
493 char name[MAX_CFTYPE_NAME];
Tejun Heo731a9812015-08-11 13:35:42 -0400494 unsigned long private;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400495
496 /*
497 * The maximum length of string, excluding trailing nul, that can
498 * be passed to write. If < PAGE_SIZE-1, PAGE_SIZE-1 is assumed.
499 */
500 size_t max_write_len;
501
502 /* CFTYPE_* flags */
503 unsigned int flags;
504
505 /*
Tejun Heo6f60ead2015-09-18 17:54:23 -0400506 * If non-zero, should contain the offset from the start of css to
507 * a struct cgroup_file field. cgroup will record the handle of
508 * the created file into it. The recorded handle can be used as
509 * long as the containing css remains accessible.
510 */
511 unsigned int file_offset;
512
513 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400514 * Fields used for internal bookkeeping. Initialized automatically
515 * during registration.
516 */
517 struct cgroup_subsys *ss; /* NULL for cgroup core files */
518 struct list_head node; /* anchored at ss->cfts */
519 struct kernfs_ops *kf_ops;
520
Tejun Heoe90cbeb2016-12-27 14:49:03 -0500521 int (*open)(struct kernfs_open_file *of);
522 void (*release)(struct kernfs_open_file *of);
523
Tejun Heob4a04ab2015-05-13 15:38:40 -0400524 /*
525 * read_u64() is a shortcut for the common case of returning a
526 * single integer. Use it in place of read()
527 */
528 u64 (*read_u64)(struct cgroup_subsys_state *css, struct cftype *cft);
529 /*
530 * read_s64() is a signed version of read_u64()
531 */
532 s64 (*read_s64)(struct cgroup_subsys_state *css, struct cftype *cft);
533
534 /* generic seq_file read interface */
535 int (*seq_show)(struct seq_file *sf, void *v);
536
537 /* optional ops, implement all or none */
538 void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
539 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
540 void (*seq_stop)(struct seq_file *sf, void *v);
541
542 /*
543 * write_u64() is a shortcut for the common case of accepting
544 * a single integer (as parsed by simple_strtoull) from
545 * userspace. Use in place of write(); return 0 or error.
546 */
547 int (*write_u64)(struct cgroup_subsys_state *css, struct cftype *cft,
548 u64 val);
549 /*
550 * write_s64() is a signed version of write_u64()
551 */
552 int (*write_s64)(struct cgroup_subsys_state *css, struct cftype *cft,
553 s64 val);
554
555 /*
556 * write() is the generic write callback which maps directly to
557 * kernfs write operation and overrides all other operations.
558 * Maximum write size is determined by ->max_write_len. Use
559 * of_css/cft() to access the associated css and cft.
560 */
561 ssize_t (*write)(struct kernfs_open_file *of,
562 char *buf, size_t nbytes, loff_t off);
563
564#ifdef CONFIG_DEBUG_LOCK_ALLOC
565 struct lock_class_key lockdep_key;
566#endif
567};
568
569/*
570 * Control Group subsystem type.
Matt Roper392536b2017-12-29 12:02:00 -0800571 * See Documentation/cgroup-v1/cgroups.txt for details
Tejun Heob4a04ab2015-05-13 15:38:40 -0400572 */
573struct cgroup_subsys {
574 struct cgroup_subsys_state *(*css_alloc)(struct cgroup_subsys_state *parent_css);
575 int (*css_online)(struct cgroup_subsys_state *css);
576 void (*css_offline)(struct cgroup_subsys_state *css);
577 void (*css_released)(struct cgroup_subsys_state *css);
578 void (*css_free)(struct cgroup_subsys_state *css);
579 void (*css_reset)(struct cgroup_subsys_state *css);
Tejun Heod41bf8c2017-10-23 16:18:27 -0700580 int (*css_extra_stat_show)(struct seq_file *seq,
581 struct cgroup_subsys_state *css);
Tejun Heob4a04ab2015-05-13 15:38:40 -0400582
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500583 int (*can_attach)(struct cgroup_taskset *tset);
584 void (*cancel_attach)(struct cgroup_taskset *tset);
585 void (*attach)(struct cgroup_taskset *tset);
Tejun Heo5cf1cac2016-04-21 19:06:48 -0400586 void (*post_attach)(void);
Oleg Nesterovb53202e2015-12-03 10:24:08 -0500587 int (*can_fork)(struct task_struct *task);
588 void (*cancel_fork)(struct task_struct *task);
589 void (*fork)(struct task_struct *task);
Tejun Heo2e91fa72015-10-15 16:41:53 -0400590 void (*exit)(struct task_struct *task);
Tejun Heoafcf6c82015-10-15 16:41:53 -0400591 void (*free)(struct task_struct *task);
Tejun Heob4a04ab2015-05-13 15:38:40 -0400592 void (*bind)(struct cgroup_subsys_state *root_css);
593
Tejun Heob38e42e2016-02-23 10:00:50 -0500594 bool early_init:1;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400595
596 /*
Tejun Heof6d635ad2016-03-08 11:51:26 -0500597 * If %true, the controller, on the default hierarchy, doesn't show
598 * up in "cgroup.controllers" or "cgroup.subtree_control", is
599 * implicitly enabled on all cgroups on the default hierarchy, and
600 * bypasses the "no internal process" constraint. This is for
601 * utility type controllers which is transparent to userland.
602 *
603 * An implicit controller can be stolen from the default hierarchy
604 * anytime and thus must be okay with offline csses from previous
605 * hierarchies coexisting with csses for the current one.
606 */
607 bool implicit_on_dfl:1;
608
609 /*
Tejun Heo8cfd8142017-07-21 11:14:51 -0400610 * If %true, the controller, supports threaded mode on the default
611 * hierarchy. In a threaded subtree, both process granularity and
612 * no-internal-process constraint are ignored and a threaded
613 * controllers should be able to handle that.
614 *
615 * Note that as an implicit controller is automatically enabled on
616 * all cgroups on the default hierarchy, it should also be
617 * threaded. implicit && !threaded is not supported.
618 */
619 bool threaded:1;
620
621 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400622 * If %false, this subsystem is properly hierarchical -
623 * configuration, resource accounting and restriction on a parent
624 * cgroup cover those of its children. If %true, hierarchy support
625 * is broken in some ways - some subsystems ignore hierarchy
626 * completely while others are only implemented half-way.
627 *
628 * It's now disallowed to create nested cgroups if the subsystem is
629 * broken and cgroup core will emit a warning message on such
630 * cases. Eventually, all subsystems will be made properly
631 * hierarchical and this will go away.
632 */
Tejun Heob38e42e2016-02-23 10:00:50 -0500633 bool broken_hierarchy:1;
634 bool warned_broken_hierarchy:1;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400635
636 /* the following two fields are initialized automtically during boot */
637 int id;
638 const char *name;
639
Tejun Heo3e1d2ee2015-08-18 13:58:16 -0700640 /* optional, initialized automatically during boot if not set */
641 const char *legacy_name;
642
Tejun Heob4a04ab2015-05-13 15:38:40 -0400643 /* link to parent, protected by cgroup_lock() */
644 struct cgroup_root *root;
645
646 /* idr for css->id */
647 struct idr css_idr;
648
649 /*
650 * List of cftypes. Each entry is the first entry of an array
651 * terminated by zero length name.
652 */
653 struct list_head cfts;
654
655 /*
656 * Base cftypes which are automatically registered. The two can
657 * point to the same array.
658 */
659 struct cftype *dfl_cftypes; /* for the default hierarchy */
660 struct cftype *legacy_cftypes; /* for the legacy hierarchies */
661
662 /*
663 * A subsystem may depend on other subsystems. When such subsystem
664 * is enabled on a cgroup, the depended-upon subsystems are enabled
665 * together if available. Subsystems enabled due to dependency are
666 * not visible to userland until explicitly enabled. The following
667 * specifies the mask of subsystems that this one depends on.
668 */
669 unsigned int depends_on;
670};
671
Tejun Heo1ed13282015-09-16 12:53:17 -0400672extern struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
673
674/**
675 * cgroup_threadgroup_change_begin - threadgroup exclusion for cgroups
676 * @tsk: target task
677 *
Ingo Molnar780de9d2017-02-02 11:50:56 +0100678 * Allows cgroup operations to synchronize against threadgroup changes
679 * using a percpu_rw_semaphore.
Tejun Heo1ed13282015-09-16 12:53:17 -0400680 */
681static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
682{
683 percpu_down_read(&cgroup_threadgroup_rwsem);
684}
685
686/**
687 * cgroup_threadgroup_change_end - threadgroup exclusion for cgroups
688 * @tsk: target task
689 *
Ingo Molnar780de9d2017-02-02 11:50:56 +0100690 * Counterpart of cgroup_threadcgroup_change_begin().
Tejun Heo1ed13282015-09-16 12:53:17 -0400691 */
692static inline void cgroup_threadgroup_change_end(struct task_struct *tsk)
693{
694 percpu_up_read(&cgroup_threadgroup_rwsem);
695}
Tejun Heo7d7efec2015-05-13 16:35:16 -0400696
697#else /* CONFIG_CGROUPS */
698
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000699#define CGROUP_SUBSYS_COUNT 0
700
Ingo Molnar780de9d2017-02-02 11:50:56 +0100701static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
702{
703 might_sleep();
704}
705
Tejun Heo7d7efec2015-05-13 16:35:16 -0400706static inline void cgroup_threadgroup_change_end(struct task_struct *tsk) {}
707
Tejun Heob4a04ab2015-05-13 15:38:40 -0400708#endif /* CONFIG_CGROUPS */
Tejun Heo7d7efec2015-05-13 16:35:16 -0400709
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500710#ifdef CONFIG_SOCK_CGROUP_DATA
711
Tejun Heobd1060a2015-12-07 17:38:53 -0500712/*
713 * sock_cgroup_data is embedded at sock->sk_cgrp_data and contains
714 * per-socket cgroup information except for memcg association.
715 *
716 * On legacy hierarchies, net_prio and net_cls controllers directly set
717 * attributes on each sock which can then be tested by the network layer.
718 * On the default hierarchy, each sock is associated with the cgroup it was
719 * created in and the networking layer can match the cgroup directly.
720 *
721 * To avoid carrying all three cgroup related fields separately in sock,
722 * sock_cgroup_data overloads (prioidx, classid) and the cgroup pointer.
723 * On boot, sock_cgroup_data records the cgroup that the sock was created
724 * in so that cgroup2 matches can be made; however, once either net_prio or
725 * net_cls starts being used, the area is overriden to carry prioidx and/or
726 * classid. The two modes are distinguished by whether the lowest bit is
727 * set. Clear bit indicates cgroup pointer while set bit prioidx and
728 * classid.
729 *
730 * While userland may start using net_prio or net_cls at any time, once
731 * either is used, cgroup2 matching no longer works. There is no reason to
732 * mix the two and this is in line with how legacy and v2 compatibility is
733 * handled. On mode switch, cgroup references which are already being
734 * pointed to by socks may be leaked. While this can be remedied by adding
735 * synchronization around sock_cgroup_data, given that the number of leaked
736 * cgroups is bound and highly unlikely to be high, this seems to be the
737 * better trade-off.
738 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500739struct sock_cgroup_data {
Tejun Heobd1060a2015-12-07 17:38:53 -0500740 union {
741#ifdef __LITTLE_ENDIAN
742 struct {
743 u8 is_data;
744 u8 padding;
745 u16 prioidx;
746 u32 classid;
747 } __packed;
748#else
749 struct {
750 u32 classid;
751 u16 prioidx;
752 u8 padding;
753 u8 is_data;
754 } __packed;
755#endif
756 u64 val;
757 };
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500758};
759
Tejun Heobd1060a2015-12-07 17:38:53 -0500760/*
761 * There's a theoretical window where the following accessors race with
762 * updaters and return part of the previous pointer as the prioidx or
763 * classid. Such races are short-lived and the result isn't critical.
764 */
Eric Dumazet4dcb31d2018-03-14 09:04:16 -0700765static inline u16 sock_cgroup_prioidx(const struct sock_cgroup_data *skcd)
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500766{
Tejun Heobd1060a2015-12-07 17:38:53 -0500767 /* fallback to 1 which is always the ID of the root cgroup */
768 return (skcd->is_data & 1) ? skcd->prioidx : 1;
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500769}
770
Eric Dumazet4dcb31d2018-03-14 09:04:16 -0700771static inline u32 sock_cgroup_classid(const struct sock_cgroup_data *skcd)
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500772{
Tejun Heobd1060a2015-12-07 17:38:53 -0500773 /* fallback to 0 which is the unconfigured default classid */
774 return (skcd->is_data & 1) ? skcd->classid : 0;
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500775}
776
Tejun Heobd1060a2015-12-07 17:38:53 -0500777/*
778 * If invoked concurrently, the updaters may clobber each other. The
779 * caller is responsible for synchronization.
780 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500781static inline void sock_cgroup_set_prioidx(struct sock_cgroup_data *skcd,
782 u16 prioidx)
783{
Tejun Heoad2c8c72015-12-09 12:30:46 -0500784 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
Tejun Heobd1060a2015-12-07 17:38:53 -0500785
786 if (sock_cgroup_prioidx(&skcd_buf) == prioidx)
787 return;
788
789 if (!(skcd_buf.is_data & 1)) {
790 skcd_buf.val = 0;
791 skcd_buf.is_data = 1;
792 }
793
794 skcd_buf.prioidx = prioidx;
795 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500796}
797
798static inline void sock_cgroup_set_classid(struct sock_cgroup_data *skcd,
799 u32 classid)
800{
Tejun Heoad2c8c72015-12-09 12:30:46 -0500801 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
Tejun Heobd1060a2015-12-07 17:38:53 -0500802
803 if (sock_cgroup_classid(&skcd_buf) == classid)
804 return;
805
806 if (!(skcd_buf.is_data & 1)) {
807 skcd_buf.val = 0;
808 skcd_buf.is_data = 1;
809 }
810
811 skcd_buf.classid = classid;
812 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500813}
814
815#else /* CONFIG_SOCK_CGROUP_DATA */
816
817struct sock_cgroup_data {
818};
819
820#endif /* CONFIG_SOCK_CGROUP_DATA */
821
Tejun Heob4a04ab2015-05-13 15:38:40 -0400822#endif /* _LINUX_CGROUP_DEFS_H */