blob: c5a8afdb1ef37e0a5982645fef4714d56cbd54d1 [file] [log] [blame]
Tejun Heob4a04ab2015-05-13 15:38:40 -04001/*
2 * linux/cgroup-defs.h - basic definitions for cgroup
3 *
4 * This file provides basic type and interface. Include this file directly
5 * only if necessary to avoid cyclic dependencies.
6 */
7#ifndef _LINUX_CGROUP_DEFS_H
8#define _LINUX_CGROUP_DEFS_H
9
10#include <linux/limits.h>
11#include <linux/list.h>
12#include <linux/idr.h>
13#include <linux/wait.h>
14#include <linux/mutex.h>
15#include <linux/rcupdate.h>
16#include <linux/percpu-refcount.h>
Tejun Heo7d7efec2015-05-13 16:35:16 -040017#include <linux/percpu-rwsem.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040018#include <linux/workqueue.h>
Daniel Mackf791c422016-11-23 16:52:26 +010019#include <linux/bpf-cgroup.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040020
21#ifdef CONFIG_CGROUPS
22
23struct cgroup;
24struct cgroup_root;
25struct cgroup_subsys;
26struct cgroup_taskset;
27struct kernfs_node;
28struct kernfs_ops;
29struct kernfs_open_file;
Arnd Bergmannc80ef9e2015-05-29 10:52:59 +020030struct seq_file;
Tejun Heob4a04ab2015-05-13 15:38:40 -040031
32#define MAX_CGROUP_TYPE_NAMELEN 32
33#define MAX_CGROUP_ROOT_NAMELEN 64
34#define MAX_CFTYPE_NAME 64
35
36/* define the enumeration of all cgroup subsystems */
37#define SUBSYS(_x) _x ## _cgrp_id,
38enum cgroup_subsys_id {
39#include <linux/cgroup_subsys.h>
40 CGROUP_SUBSYS_COUNT,
41};
42#undef SUBSYS
43
44/* bits in struct cgroup_subsys_state flags field */
45enum {
46 CSS_NO_REF = (1 << 0), /* no reference counting for this css */
47 CSS_ONLINE = (1 << 1), /* between ->css_online() and ->css_offline() */
48 CSS_RELEASED = (1 << 2), /* refcnt reached zero, released */
Tejun Heo88cb04b2016-03-03 09:57:58 -050049 CSS_VISIBLE = (1 << 3), /* css is visible to userland */
Waiman Longdff4c8b2017-05-15 09:34:06 -040050 CSS_DYING = (1 << 4), /* css is dying */
Tejun Heob4a04ab2015-05-13 15:38:40 -040051};
52
53/* bits in struct cgroup flags field */
54enum {
55 /* Control Group requires release notifications to userspace */
56 CGRP_NOTIFY_ON_RELEASE,
57 /*
58 * Clone the parent's configuration when creating a new child
59 * cpuset cgroup. For historical reasons, this option can be
60 * specified at mount time and thus is implemented here.
61 */
62 CGRP_CPUSET_CLONE_CHILDREN,
63};
64
65/* cgroup_root->flags */
66enum {
Tejun Heob4a04ab2015-05-13 15:38:40 -040067 CGRP_ROOT_NOPREFIX = (1 << 1), /* mounted subsystems have no named prefix */
68 CGRP_ROOT_XATTR = (1 << 2), /* supports extended attributes */
69};
70
71/* cftype->flags */
72enum {
73 CFTYPE_ONLY_ON_ROOT = (1 << 0), /* only create on root cgrp */
74 CFTYPE_NOT_ON_ROOT = (1 << 1), /* don't create on root cgrp */
75 CFTYPE_NO_PREFIX = (1 << 3), /* (DON'T USE FOR NEW FILES) no subsys prefix */
Tejun Heo7dbdb192015-09-18 17:54:23 -040076 CFTYPE_WORLD_WRITABLE = (1 << 4), /* (DON'T USE FOR NEW FILES) S_IWUGO */
Tejun Heob4a04ab2015-05-13 15:38:40 -040077
78 /* internal flags, do not use outside cgroup core proper */
79 __CFTYPE_ONLY_ON_DFL = (1 << 16), /* only on default hierarchy */
80 __CFTYPE_NOT_ON_DFL = (1 << 17), /* not on default hierarchy */
81};
82
83/*
Tejun Heo6f60ead2015-09-18 17:54:23 -040084 * cgroup_file is the handle for a file instance created in a cgroup which
85 * is used, for example, to generate file changed notifications. This can
86 * be obtained by setting cftype->file_offset.
87 */
88struct cgroup_file {
89 /* do not access any fields from outside cgroup core */
Tejun Heo6f60ead2015-09-18 17:54:23 -040090 struct kernfs_node *kn;
91};
92
93/*
Tejun Heob4a04ab2015-05-13 15:38:40 -040094 * Per-subsystem/per-cgroup state maintained by the system. This is the
95 * fundamental structural building block that controllers deal with.
96 *
97 * Fields marked with "PI:" are public and immutable and may be accessed
98 * directly without synchronization.
99 */
100struct cgroup_subsys_state {
101 /* PI: the cgroup that this css is attached to */
102 struct cgroup *cgroup;
103
104 /* PI: the cgroup subsystem that this css is attached to */
105 struct cgroup_subsys *ss;
106
107 /* reference count - access via css_[try]get() and css_put() */
108 struct percpu_ref refcnt;
109
110 /* PI: the parent css */
111 struct cgroup_subsys_state *parent;
112
113 /* siblings list anchored at the parent's ->children */
114 struct list_head sibling;
115 struct list_head children;
116
117 /*
118 * PI: Subsys-unique ID. 0 is unused and root is always 1. The
119 * matching css can be looked up using css_from_id().
120 */
121 int id;
122
123 unsigned int flags;
124
125 /*
126 * Monotonically increasing unique serial number which defines a
127 * uniform order among all csses. It's guaranteed that all
128 * ->children lists are in the ascending order of ->serial_nr and
129 * used to allow interrupting and resuming iterations.
130 */
131 u64 serial_nr;
132
Tejun Heoaa226ff2016-01-21 15:31:11 -0500133 /*
134 * Incremented by online self and children. Used to guarantee that
135 * parents are not offlined before their children.
136 */
137 atomic_t online_cnt;
138
Tejun Heob4a04ab2015-05-13 15:38:40 -0400139 /* percpu_ref killing and RCU release */
140 struct rcu_head rcu_head;
141 struct work_struct destroy_work;
142};
143
144/*
145 * A css_set is a structure holding pointers to a set of
146 * cgroup_subsys_state objects. This saves space in the task struct
147 * object and speeds up fork()/exit(), since a single inc/dec and a
148 * list_add()/del() can bump the reference count on the entire cgroup
149 * set for a task.
150 */
151struct css_set {
152 /* Reference count */
153 atomic_t refcount;
154
155 /*
156 * List running through all cgroup groups in the same hash
157 * slot. Protected by css_set_lock
158 */
159 struct hlist_node hlist;
160
161 /*
162 * Lists running through all tasks using this cgroup group.
163 * mg_tasks lists tasks which belong to this cset but are in the
164 * process of being migrated out or in. Protected by
165 * css_set_rwsem, but, during migration, once tasks are moved to
166 * mg_tasks, it can be read safely while holding cgroup_mutex.
167 */
168 struct list_head tasks;
169 struct list_head mg_tasks;
170
171 /*
172 * List of cgrp_cset_links pointing at cgroups referenced from this
173 * css_set. Protected by css_set_lock.
174 */
175 struct list_head cgrp_links;
176
177 /* the default cgroup associated with this css_set */
178 struct cgroup *dfl_cgrp;
179
180 /*
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 /*
188 * List of csets participating in the on-going migration either as
189 * source or destination. Protected by cgroup_mutex.
190 */
191 struct list_head mg_preload_node;
192 struct list_head mg_node;
193
194 /*
195 * If this cset is acting as the source of migration the following
Tejun Heoe4857982016-03-08 11:51:26 -0500196 * two fields are set. mg_src_cgrp and mg_dst_cgrp are
197 * respectively the source and destination cgroups of the on-going
198 * migration. mg_dst_cset is the destination cset the target tasks
199 * on this cset should be migrated to. Protected by cgroup_mutex.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400200 */
201 struct cgroup *mg_src_cgrp;
Tejun Heoe4857982016-03-08 11:51:26 -0500202 struct cgroup *mg_dst_cgrp;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400203 struct css_set *mg_dst_cset;
204
205 /*
206 * On the default hierarhcy, ->subsys[ssid] may point to a css
207 * attached to an ancestor instead of the cgroup this css_set is
208 * associated with. The following node is anchored at
209 * ->subsys[ssid]->cgroup->e_csets[ssid] and provides a way to
210 * iterate through all css's attached to a given cgroup.
211 */
212 struct list_head e_cset_node[CGROUP_SUBSYS_COUNT];
213
Tejun Heoed27b9f2015-10-15 16:41:52 -0400214 /* all css_task_iters currently walking this cset */
215 struct list_head task_iters;
216
Tejun Heo2b021cb2016-03-15 20:43:04 -0400217 /* dead and being drained, ignore for migration */
218 bool dead;
219
Tejun Heob4a04ab2015-05-13 15:38:40 -0400220 /* For RCU-protected deletion */
221 struct rcu_head rcu_head;
222};
223
224struct cgroup {
225 /* self css with NULL ->ss, points back to this cgroup */
226 struct cgroup_subsys_state self;
227
228 unsigned long flags; /* "unsigned long" so bitops work */
229
230 /*
231 * idr allocated in-hierarchy ID.
232 *
233 * ID 0 is not used, the ID of the root cgroup is always 1, and a
234 * new cgroup will be assigned with a smallest available ID.
235 *
236 * Allocating/Removing ID must be protected by cgroup_mutex.
237 */
238 int id;
239
240 /*
Tejun Heob11cfb52015-11-20 15:55:52 -0500241 * The depth this cgroup is at. The root is at depth zero and each
242 * step down the hierarchy increments the level. This along with
243 * ancestor_ids[] can determine whether a given cgroup is a
244 * descendant of another without traversing the hierarchy.
245 */
246 int level;
247
248 /*
Tejun Heo0de09422015-10-15 16:41:49 -0400249 * Each non-empty css_set associated with this cgroup contributes
250 * one to populated_cnt. All children with non-zero popuplated_cnt
251 * of their own contribute one. The count is zero iff there's no
252 * task in this cgroup or its subtree.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400253 */
254 int populated_cnt;
255
256 struct kernfs_node *kn; /* cgroup kernfs entry */
Tejun Heo6f60ead2015-09-18 17:54:23 -0400257 struct cgroup_file procs_file; /* handle for "cgroup.procs" */
258 struct cgroup_file events_file; /* handle for "cgroup.events" */
Tejun Heob4a04ab2015-05-13 15:38:40 -0400259
260 /*
261 * The bitmask of subsystems enabled on the child cgroups.
262 * ->subtree_control is the one configured through
Tejun Heo8699b772016-02-22 22:25:46 -0500263 * "cgroup.subtree_control" while ->child_ss_mask is the effective
264 * one which may have more subsystems enabled. Controller knobs
265 * are made available iff it's enabled in ->subtree_control.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400266 */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500267 u16 subtree_control;
268 u16 subtree_ss_mask;
Tejun Heo15a27c32016-03-03 09:57:59 -0500269 u16 old_subtree_control;
270 u16 old_subtree_ss_mask;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400271
272 /* Private pointers for each registered subsystem */
273 struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT];
274
275 struct cgroup_root *root;
276
277 /*
278 * List of cgrp_cset_links pointing at css_sets with tasks in this
279 * cgroup. Protected by css_set_lock.
280 */
281 struct list_head cset_links;
282
283 /*
284 * On the default hierarchy, a css_set for a cgroup with some
285 * susbsys disabled will point to css's which are associated with
286 * the closest ancestor which has the subsys enabled. The
287 * following lists all css_sets which point to this cgroup's css
288 * for the given subsystem.
289 */
290 struct list_head e_csets[CGROUP_SUBSYS_COUNT];
291
292 /*
293 * list of pidlists, up to two for each namespace (one for procs, one
294 * for tasks); created on demand.
295 */
296 struct list_head pidlists;
297 struct mutex pidlist_mutex;
298
299 /* used to wait for offlining of csses */
300 wait_queue_head_t offline_waitq;
301
302 /* used to schedule release agent */
303 struct work_struct release_agent_work;
Tejun Heob11cfb52015-11-20 15:55:52 -0500304
Daniel Mackf791c422016-11-23 16:52:26 +0100305 /* used to store eBPF programs */
306 struct cgroup_bpf bpf;
307
Tejun Heob11cfb52015-11-20 15:55:52 -0500308 /* ids of the ancestors at each level including self */
309 int ancestor_ids[];
Tejun Heob4a04ab2015-05-13 15:38:40 -0400310};
311
312/*
313 * A cgroup_root represents the root of a cgroup hierarchy, and may be
314 * associated with a kernfs_root to form an active hierarchy. This is
315 * internal to cgroup core. Don't access directly from controllers.
316 */
317struct cgroup_root {
318 struct kernfs_root *kf_root;
319
320 /* The bitmask of subsystems attached to this hierarchy */
321 unsigned int subsys_mask;
322
323 /* Unique id for this hierarchy. */
324 int hierarchy_id;
325
326 /* The root cgroup. Root is destroyed on its release. */
327 struct cgroup cgrp;
328
Tejun Heob11cfb52015-11-20 15:55:52 -0500329 /* for cgrp->ancestor_ids[0] */
330 int cgrp_ancestor_id_storage;
331
Tejun Heob4a04ab2015-05-13 15:38:40 -0400332 /* Number of cgroups in the hierarchy, used only for /proc/cgroups */
333 atomic_t nr_cgrps;
334
335 /* A list running through the active hierarchies */
336 struct list_head root_list;
337
338 /* Hierarchy-specific flags */
339 unsigned int flags;
340
341 /* IDs for cgroups in this hierarchy */
342 struct idr cgroup_idr;
343
344 /* The path to use for release notifications. */
345 char release_agent_path[PATH_MAX];
346
347 /* The name for this hierarchy - may be empty */
348 char name[MAX_CGROUP_ROOT_NAMELEN];
349};
350
351/*
352 * struct cftype: handler definitions for cgroup control files
353 *
354 * When reading/writing to a file:
355 * - the cgroup to use is file->f_path.dentry->d_parent->d_fsdata
356 * - the 'cftype' of the file is file->f_path.dentry->d_fsdata
357 */
358struct cftype {
359 /*
360 * By convention, the name should begin with the name of the
361 * subsystem, followed by a period. Zero length string indicates
362 * end of cftype array.
363 */
364 char name[MAX_CFTYPE_NAME];
Tejun Heo731a9812015-08-11 13:35:42 -0400365 unsigned long private;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400366
367 /*
368 * The maximum length of string, excluding trailing nul, that can
369 * be passed to write. If < PAGE_SIZE-1, PAGE_SIZE-1 is assumed.
370 */
371 size_t max_write_len;
372
373 /* CFTYPE_* flags */
374 unsigned int flags;
375
376 /*
Tejun Heo6f60ead2015-09-18 17:54:23 -0400377 * If non-zero, should contain the offset from the start of css to
378 * a struct cgroup_file field. cgroup will record the handle of
379 * the created file into it. The recorded handle can be used as
380 * long as the containing css remains accessible.
381 */
382 unsigned int file_offset;
383
384 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400385 * Fields used for internal bookkeeping. Initialized automatically
386 * during registration.
387 */
388 struct cgroup_subsys *ss; /* NULL for cgroup core files */
389 struct list_head node; /* anchored at ss->cfts */
390 struct kernfs_ops *kf_ops;
391
392 /*
393 * read_u64() is a shortcut for the common case of returning a
394 * single integer. Use it in place of read()
395 */
396 u64 (*read_u64)(struct cgroup_subsys_state *css, struct cftype *cft);
397 /*
398 * read_s64() is a signed version of read_u64()
399 */
400 s64 (*read_s64)(struct cgroup_subsys_state *css, struct cftype *cft);
401
402 /* generic seq_file read interface */
403 int (*seq_show)(struct seq_file *sf, void *v);
404
405 /* optional ops, implement all or none */
406 void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
407 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
408 void (*seq_stop)(struct seq_file *sf, void *v);
409
410 /*
411 * write_u64() is a shortcut for the common case of accepting
412 * a single integer (as parsed by simple_strtoull) from
413 * userspace. Use in place of write(); return 0 or error.
414 */
415 int (*write_u64)(struct cgroup_subsys_state *css, struct cftype *cft,
416 u64 val);
417 /*
418 * write_s64() is a signed version of write_u64()
419 */
420 int (*write_s64)(struct cgroup_subsys_state *css, struct cftype *cft,
421 s64 val);
422
423 /*
424 * write() is the generic write callback which maps directly to
425 * kernfs write operation and overrides all other operations.
426 * Maximum write size is determined by ->max_write_len. Use
427 * of_css/cft() to access the associated css and cft.
428 */
429 ssize_t (*write)(struct kernfs_open_file *of,
430 char *buf, size_t nbytes, loff_t off);
431
432#ifdef CONFIG_DEBUG_LOCK_ALLOC
433 struct lock_class_key lockdep_key;
434#endif
435};
436
437/*
438 * Control Group subsystem type.
439 * See Documentation/cgroups/cgroups.txt for details
440 */
441struct cgroup_subsys {
442 struct cgroup_subsys_state *(*css_alloc)(struct cgroup_subsys_state *parent_css);
443 int (*css_online)(struct cgroup_subsys_state *css);
444 void (*css_offline)(struct cgroup_subsys_state *css);
445 void (*css_released)(struct cgroup_subsys_state *css);
446 void (*css_free)(struct cgroup_subsys_state *css);
447 void (*css_reset)(struct cgroup_subsys_state *css);
Tejun Heob4a04ab2015-05-13 15:38:40 -0400448
Amit Pundir192b9482015-12-21 16:01:10 +0530449 int (*allow_attach)(struct cgroup_taskset *tset);
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500450 int (*can_attach)(struct cgroup_taskset *tset);
451 void (*cancel_attach)(struct cgroup_taskset *tset);
452 void (*attach)(struct cgroup_taskset *tset);
Tejun Heo5cf1cac2016-04-21 19:06:48 -0400453 void (*post_attach)(void);
Oleg Nesterovb53202e2015-12-03 10:24:08 -0500454 int (*can_fork)(struct task_struct *task);
455 void (*cancel_fork)(struct task_struct *task);
456 void (*fork)(struct task_struct *task);
Tejun Heo2e91fa72015-10-15 16:41:53 -0400457 void (*exit)(struct task_struct *task);
Tejun Heoafcf6c82015-10-15 16:41:53 -0400458 void (*free)(struct task_struct *task);
Tejun Heob4a04ab2015-05-13 15:38:40 -0400459 void (*bind)(struct cgroup_subsys_state *root_css);
460
Tejun Heob38e42e2016-02-23 10:00:50 -0500461 bool early_init:1;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400462
463 /*
Tejun Heof6d635ad2016-03-08 11:51:26 -0500464 * If %true, the controller, on the default hierarchy, doesn't show
465 * up in "cgroup.controllers" or "cgroup.subtree_control", is
466 * implicitly enabled on all cgroups on the default hierarchy, and
467 * bypasses the "no internal process" constraint. This is for
468 * utility type controllers which is transparent to userland.
469 *
470 * An implicit controller can be stolen from the default hierarchy
471 * anytime and thus must be okay with offline csses from previous
472 * hierarchies coexisting with csses for the current one.
473 */
474 bool implicit_on_dfl:1;
475
476 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400477 * If %false, this subsystem is properly hierarchical -
478 * configuration, resource accounting and restriction on a parent
479 * cgroup cover those of its children. If %true, hierarchy support
480 * is broken in some ways - some subsystems ignore hierarchy
481 * completely while others are only implemented half-way.
482 *
483 * It's now disallowed to create nested cgroups if the subsystem is
484 * broken and cgroup core will emit a warning message on such
485 * cases. Eventually, all subsystems will be made properly
486 * hierarchical and this will go away.
487 */
Tejun Heob38e42e2016-02-23 10:00:50 -0500488 bool broken_hierarchy:1;
489 bool warned_broken_hierarchy:1;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400490
491 /* the following two fields are initialized automtically during boot */
492 int id;
493 const char *name;
494
Tejun Heo3e1d2ee2015-08-18 13:58:16 -0700495 /* optional, initialized automatically during boot if not set */
496 const char *legacy_name;
497
Tejun Heob4a04ab2015-05-13 15:38:40 -0400498 /* link to parent, protected by cgroup_lock() */
499 struct cgroup_root *root;
500
501 /* idr for css->id */
502 struct idr css_idr;
503
504 /*
505 * List of cftypes. Each entry is the first entry of an array
506 * terminated by zero length name.
507 */
508 struct list_head cfts;
509
510 /*
511 * Base cftypes which are automatically registered. The two can
512 * point to the same array.
513 */
514 struct cftype *dfl_cftypes; /* for the default hierarchy */
515 struct cftype *legacy_cftypes; /* for the legacy hierarchies */
516
517 /*
518 * A subsystem may depend on other subsystems. When such subsystem
519 * is enabled on a cgroup, the depended-upon subsystems are enabled
520 * together if available. Subsystems enabled due to dependency are
521 * not visible to userland until explicitly enabled. The following
522 * specifies the mask of subsystems that this one depends on.
523 */
524 unsigned int depends_on;
525};
526
Tejun Heo1ed13282015-09-16 12:53:17 -0400527extern struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
528
529/**
530 * cgroup_threadgroup_change_begin - threadgroup exclusion for cgroups
531 * @tsk: target task
532 *
533 * Called from threadgroup_change_begin() and allows cgroup operations to
534 * synchronize against threadgroup changes using a percpu_rw_semaphore.
535 */
536static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
537{
538 percpu_down_read(&cgroup_threadgroup_rwsem);
539}
540
541/**
542 * cgroup_threadgroup_change_end - threadgroup exclusion for cgroups
543 * @tsk: target task
544 *
545 * Called from threadgroup_change_end(). Counterpart of
546 * cgroup_threadcgroup_change_begin().
547 */
548static inline void cgroup_threadgroup_change_end(struct task_struct *tsk)
549{
550 percpu_up_read(&cgroup_threadgroup_rwsem);
551}
Tejun Heo7d7efec2015-05-13 16:35:16 -0400552
553#else /* CONFIG_CGROUPS */
554
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000555#define CGROUP_SUBSYS_COUNT 0
556
Tejun Heo7d7efec2015-05-13 16:35:16 -0400557static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk) {}
558static inline void cgroup_threadgroup_change_end(struct task_struct *tsk) {}
559
Tejun Heob4a04ab2015-05-13 15:38:40 -0400560#endif /* CONFIG_CGROUPS */
Tejun Heo7d7efec2015-05-13 16:35:16 -0400561
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500562#ifdef CONFIG_SOCK_CGROUP_DATA
563
Tejun Heobd1060a2015-12-07 17:38:53 -0500564/*
565 * sock_cgroup_data is embedded at sock->sk_cgrp_data and contains
566 * per-socket cgroup information except for memcg association.
567 *
568 * On legacy hierarchies, net_prio and net_cls controllers directly set
569 * attributes on each sock which can then be tested by the network layer.
570 * On the default hierarchy, each sock is associated with the cgroup it was
571 * created in and the networking layer can match the cgroup directly.
572 *
573 * To avoid carrying all three cgroup related fields separately in sock,
574 * sock_cgroup_data overloads (prioidx, classid) and the cgroup pointer.
575 * On boot, sock_cgroup_data records the cgroup that the sock was created
576 * in so that cgroup2 matches can be made; however, once either net_prio or
577 * net_cls starts being used, the area is overriden to carry prioidx and/or
578 * classid. The two modes are distinguished by whether the lowest bit is
579 * set. Clear bit indicates cgroup pointer while set bit prioidx and
580 * classid.
581 *
582 * While userland may start using net_prio or net_cls at any time, once
583 * either is used, cgroup2 matching no longer works. There is no reason to
584 * mix the two and this is in line with how legacy and v2 compatibility is
585 * handled. On mode switch, cgroup references which are already being
586 * pointed to by socks may be leaked. While this can be remedied by adding
587 * synchronization around sock_cgroup_data, given that the number of leaked
588 * cgroups is bound and highly unlikely to be high, this seems to be the
589 * better trade-off.
590 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500591struct sock_cgroup_data {
Tejun Heobd1060a2015-12-07 17:38:53 -0500592 union {
593#ifdef __LITTLE_ENDIAN
594 struct {
595 u8 is_data;
596 u8 padding;
597 u16 prioidx;
598 u32 classid;
599 } __packed;
600#else
601 struct {
602 u32 classid;
603 u16 prioidx;
604 u8 padding;
605 u8 is_data;
606 } __packed;
607#endif
608 u64 val;
609 };
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500610};
611
Tejun Heobd1060a2015-12-07 17:38:53 -0500612/*
613 * There's a theoretical window where the following accessors race with
614 * updaters and return part of the previous pointer as the prioidx or
615 * classid. Such races are short-lived and the result isn't critical.
616 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500617static inline u16 sock_cgroup_prioidx(struct sock_cgroup_data *skcd)
618{
Tejun Heobd1060a2015-12-07 17:38:53 -0500619 /* fallback to 1 which is always the ID of the root cgroup */
620 return (skcd->is_data & 1) ? skcd->prioidx : 1;
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500621}
622
623static inline u32 sock_cgroup_classid(struct sock_cgroup_data *skcd)
624{
Tejun Heobd1060a2015-12-07 17:38:53 -0500625 /* fallback to 0 which is the unconfigured default classid */
626 return (skcd->is_data & 1) ? skcd->classid : 0;
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500627}
628
Tejun Heobd1060a2015-12-07 17:38:53 -0500629/*
630 * If invoked concurrently, the updaters may clobber each other. The
631 * caller is responsible for synchronization.
632 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500633static inline void sock_cgroup_set_prioidx(struct sock_cgroup_data *skcd,
634 u16 prioidx)
635{
Tejun Heoad2c8c72015-12-09 12:30:46 -0500636 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
Tejun Heobd1060a2015-12-07 17:38:53 -0500637
638 if (sock_cgroup_prioidx(&skcd_buf) == prioidx)
639 return;
640
641 if (!(skcd_buf.is_data & 1)) {
642 skcd_buf.val = 0;
643 skcd_buf.is_data = 1;
644 }
645
646 skcd_buf.prioidx = prioidx;
647 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500648}
649
650static inline void sock_cgroup_set_classid(struct sock_cgroup_data *skcd,
651 u32 classid)
652{
Tejun Heoad2c8c72015-12-09 12:30:46 -0500653 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
Tejun Heobd1060a2015-12-07 17:38:53 -0500654
655 if (sock_cgroup_classid(&skcd_buf) == classid)
656 return;
657
658 if (!(skcd_buf.is_data & 1)) {
659 skcd_buf.val = 0;
660 skcd_buf.is_data = 1;
661 }
662
663 skcd_buf.classid = classid;
664 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500665}
666
667#else /* CONFIG_SOCK_CGROUP_DATA */
668
669struct sock_cgroup_data {
670};
671
672#endif /* CONFIG_SOCK_CGROUP_DATA */
673
Tejun Heob4a04ab2015-05-13 15:38:40 -0400674#endif /* _LINUX_CGROUP_DEFS_H */