blob: 3bc4196bf2172541ae6f86732b765b140edb37d0 [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>
Elena Reshetova4b9502e62017-03-08 10:00:40 +020016#include <linux/refcount.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040017#include <linux/percpu-refcount.h>
Tejun Heo7d7efec2015-05-13 16:35:16 -040018#include <linux/percpu-rwsem.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040019#include <linux/workqueue.h>
Daniel Mack30070982016-11-23 16:52:26 +010020#include <linux/bpf-cgroup.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040021
22#ifdef CONFIG_CGROUPS
23
24struct cgroup;
25struct cgroup_root;
26struct cgroup_subsys;
27struct cgroup_taskset;
28struct kernfs_node;
29struct kernfs_ops;
30struct kernfs_open_file;
Arnd Bergmannc80ef9e2015-05-29 10:52:59 +020031struct seq_file;
Tejun Heob4a04ab2015-05-13 15:38:40 -040032
33#define MAX_CGROUP_TYPE_NAMELEN 32
34#define MAX_CGROUP_ROOT_NAMELEN 64
35#define MAX_CFTYPE_NAME 64
36
37/* define the enumeration of all cgroup subsystems */
38#define SUBSYS(_x) _x ## _cgrp_id,
39enum cgroup_subsys_id {
40#include <linux/cgroup_subsys.h>
41 CGROUP_SUBSYS_COUNT,
42};
43#undef SUBSYS
44
45/* bits in struct cgroup_subsys_state flags field */
46enum {
47 CSS_NO_REF = (1 << 0), /* no reference counting for this css */
48 CSS_ONLINE = (1 << 1), /* between ->css_online() and ->css_offline() */
49 CSS_RELEASED = (1 << 2), /* refcnt reached zero, released */
Tejun Heo88cb04b2016-03-03 09:57:58 -050050 CSS_VISIBLE = (1 << 3), /* css is visible to userland */
Waiman Long33c35aa2017-05-15 09:34:06 -040051 CSS_DYING = (1 << 4), /* css is dying */
Tejun Heob4a04ab2015-05-13 15:38:40 -040052};
53
54/* bits in struct cgroup flags field */
55enum {
56 /* Control Group requires release notifications to userspace */
57 CGRP_NOTIFY_ON_RELEASE,
58 /*
59 * Clone the parent's configuration when creating a new child
60 * cpuset cgroup. For historical reasons, this option can be
61 * specified at mount time and thus is implemented here.
62 */
63 CGRP_CPUSET_CLONE_CHILDREN,
64};
65
66/* cgroup_root->flags */
67enum {
Tejun Heob4a04ab2015-05-13 15:38:40 -040068 CGRP_ROOT_NOPREFIX = (1 << 1), /* mounted subsystems have no named prefix */
69 CGRP_ROOT_XATTR = (1 << 2), /* supports extended attributes */
70};
71
72/* cftype->flags */
73enum {
74 CFTYPE_ONLY_ON_ROOT = (1 << 0), /* only create on root cgrp */
75 CFTYPE_NOT_ON_ROOT = (1 << 1), /* don't create on root cgrp */
76 CFTYPE_NO_PREFIX = (1 << 3), /* (DON'T USE FOR NEW FILES) no subsys prefix */
Tejun Heo7dbdb192015-09-18 17:54:23 -040077 CFTYPE_WORLD_WRITABLE = (1 << 4), /* (DON'T USE FOR NEW FILES) S_IWUGO */
Tejun Heob4a04ab2015-05-13 15:38:40 -040078
79 /* internal flags, do not use outside cgroup core proper */
80 __CFTYPE_ONLY_ON_DFL = (1 << 16), /* only on default hierarchy */
81 __CFTYPE_NOT_ON_DFL = (1 << 17), /* not on default hierarchy */
82};
83
84/*
Tejun Heo6f60ead2015-09-18 17:54:23 -040085 * cgroup_file is the handle for a file instance created in a cgroup which
86 * is used, for example, to generate file changed notifications. This can
87 * be obtained by setting cftype->file_offset.
88 */
89struct cgroup_file {
90 /* do not access any fields from outside cgroup core */
Tejun Heo6f60ead2015-09-18 17:54:23 -040091 struct kernfs_node *kn;
92};
93
94/*
Tejun Heob4a04ab2015-05-13 15:38:40 -040095 * Per-subsystem/per-cgroup state maintained by the system. This is the
96 * fundamental structural building block that controllers deal with.
97 *
98 * Fields marked with "PI:" are public and immutable and may be accessed
99 * directly without synchronization.
100 */
101struct cgroup_subsys_state {
102 /* PI: the cgroup that this css is attached to */
103 struct cgroup *cgroup;
104
105 /* PI: the cgroup subsystem that this css is attached to */
106 struct cgroup_subsys *ss;
107
108 /* reference count - access via css_[try]get() and css_put() */
109 struct percpu_ref refcnt;
110
Tejun Heob4a04ab2015-05-13 15:38:40 -0400111 /* siblings list anchored at the parent's ->children */
112 struct list_head sibling;
113 struct list_head children;
114
115 /*
116 * PI: Subsys-unique ID. 0 is unused and root is always 1. The
117 * matching css can be looked up using css_from_id().
118 */
119 int id;
120
121 unsigned int flags;
122
123 /*
124 * Monotonically increasing unique serial number which defines a
125 * uniform order among all csses. It's guaranteed that all
126 * ->children lists are in the ascending order of ->serial_nr and
127 * used to allow interrupting and resuming iterations.
128 */
129 u64 serial_nr;
130
Tejun Heoaa226ff2016-01-21 15:31:11 -0500131 /*
132 * Incremented by online self and children. Used to guarantee that
133 * parents are not offlined before their children.
134 */
135 atomic_t online_cnt;
136
Tejun Heob4a04ab2015-05-13 15:38:40 -0400137 /* percpu_ref killing and RCU release */
138 struct rcu_head rcu_head;
139 struct work_struct destroy_work;
Todd Poynorb8b1a2e2017-04-06 18:47:57 -0700140
141 /*
142 * PI: the parent css. Placed here for cache proximity to following
143 * fields of the containing structure.
144 */
145 struct cgroup_subsys_state *parent;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400146};
147
148/*
149 * A css_set is a structure holding pointers to a set of
150 * cgroup_subsys_state objects. This saves space in the task struct
151 * object and speeds up fork()/exit(), since a single inc/dec and a
152 * list_add()/del() can bump the reference count on the entire cgroup
153 * set for a task.
154 */
155struct css_set {
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500156 /*
157 * Set of subsystem states, one for each subsystem. This array is
158 * immutable after creation apart from the init_css_set during
159 * subsystem registration (at boot time).
160 */
161 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
162
163 /* reference count */
Elena Reshetova4b9502e62017-03-08 10:00:40 +0200164 refcount_t refcount;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400165
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500166 /* the default cgroup associated with this css_set */
167 struct cgroup *dfl_cgrp;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400168
Waiman Long73a72422017-06-13 17:18:01 -0400169 /* internal task count, protected by css_set_lock */
170 int nr_tasks;
171
Tejun Heob4a04ab2015-05-13 15:38:40 -0400172 /*
173 * Lists running through all tasks using this cgroup group.
174 * mg_tasks lists tasks which belong to this cset but are in the
175 * process of being migrated out or in. Protected by
176 * css_set_rwsem, but, during migration, once tasks are moved to
177 * mg_tasks, it can be read safely while holding cgroup_mutex.
178 */
179 struct list_head tasks;
180 struct list_head mg_tasks;
181
Tejun Heo5f617ebb2016-12-27 14:49:05 -0500182 /* all css_task_iters currently walking this cset */
183 struct list_head task_iters;
184
185 /*
186 * On the default hierarhcy, ->subsys[ssid] may point to a css
187 * attached to an ancestor instead of the cgroup this css_set is
188 * associated with. The following node is anchored at
189 * ->subsys[ssid]->cgroup->e_csets[ssid] and provides a way to
190 * iterate through all css's attached to a given cgroup.
191 */
192 struct list_head e_cset_node[CGROUP_SUBSYS_COUNT];
193
194 /*
195 * List running through all cgroup groups in the same hash
196 * slot. Protected by css_set_lock
197 */
198 struct hlist_node hlist;
199
Tejun Heob4a04ab2015-05-13 15:38:40 -0400200 /*
201 * List of cgrp_cset_links pointing at cgroups referenced from this
202 * css_set. Protected by css_set_lock.
203 */
204 struct list_head cgrp_links;
205
Tejun Heob4a04ab2015-05-13 15:38:40 -0400206 /*
207 * List of csets participating in the on-going migration either as
208 * source or destination. Protected by cgroup_mutex.
209 */
210 struct list_head mg_preload_node;
211 struct list_head mg_node;
212
213 /*
214 * If this cset is acting as the source of migration the following
Tejun Heoe4857982016-03-08 11:51:26 -0500215 * two fields are set. mg_src_cgrp and mg_dst_cgrp are
216 * respectively the source and destination cgroups of the on-going
217 * migration. mg_dst_cset is the destination cset the target tasks
218 * on this cset should be migrated to. Protected by cgroup_mutex.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400219 */
220 struct cgroup *mg_src_cgrp;
Tejun Heoe4857982016-03-08 11:51:26 -0500221 struct cgroup *mg_dst_cgrp;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400222 struct css_set *mg_dst_cset;
223
Tejun Heo2b021cb2016-03-15 20:43:04 -0400224 /* dead and being drained, ignore for migration */
225 bool dead;
226
Tejun Heob4a04ab2015-05-13 15:38:40 -0400227 /* For RCU-protected deletion */
228 struct rcu_head rcu_head;
229};
230
231struct cgroup {
232 /* self css with NULL ->ss, points back to this cgroup */
233 struct cgroup_subsys_state self;
234
235 unsigned long flags; /* "unsigned long" so bitops work */
236
237 /*
238 * idr allocated in-hierarchy ID.
239 *
240 * ID 0 is not used, the ID of the root cgroup is always 1, and a
241 * new cgroup will be assigned with a smallest available ID.
242 *
243 * Allocating/Removing ID must be protected by cgroup_mutex.
244 */
245 int id;
246
247 /*
Tejun Heob11cfb52015-11-20 15:55:52 -0500248 * The depth this cgroup is at. The root is at depth zero and each
249 * step down the hierarchy increments the level. This along with
250 * ancestor_ids[] can determine whether a given cgroup is a
251 * descendant of another without traversing the hierarchy.
252 */
253 int level;
254
255 /*
Tejun Heo0de09422015-10-15 16:41:49 -0400256 * Each non-empty css_set associated with this cgroup contributes
257 * one to populated_cnt. All children with non-zero popuplated_cnt
258 * of their own contribute one. The count is zero iff there's no
259 * task in this cgroup or its subtree.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400260 */
261 int populated_cnt;
262
263 struct kernfs_node *kn; /* cgroup kernfs entry */
Tejun Heo6f60ead2015-09-18 17:54:23 -0400264 struct cgroup_file procs_file; /* handle for "cgroup.procs" */
265 struct cgroup_file events_file; /* handle for "cgroup.events" */
Tejun Heob4a04ab2015-05-13 15:38:40 -0400266
267 /*
268 * The bitmask of subsystems enabled on the child cgroups.
269 * ->subtree_control is the one configured through
Tejun Heo8699b772016-02-22 22:25:46 -0500270 * "cgroup.subtree_control" while ->child_ss_mask is the effective
271 * one which may have more subsystems enabled. Controller knobs
272 * are made available iff it's enabled in ->subtree_control.
Tejun Heob4a04ab2015-05-13 15:38:40 -0400273 */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500274 u16 subtree_control;
275 u16 subtree_ss_mask;
Tejun Heo15a27c32016-03-03 09:57:59 -0500276 u16 old_subtree_control;
277 u16 old_subtree_ss_mask;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400278
279 /* Private pointers for each registered subsystem */
280 struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT];
281
282 struct cgroup_root *root;
283
284 /*
285 * List of cgrp_cset_links pointing at css_sets with tasks in this
286 * cgroup. Protected by css_set_lock.
287 */
288 struct list_head cset_links;
289
290 /*
291 * On the default hierarchy, a css_set for a cgroup with some
292 * susbsys disabled will point to css's which are associated with
293 * the closest ancestor which has the subsys enabled. The
294 * following lists all css_sets which point to this cgroup's css
295 * for the given subsystem.
296 */
297 struct list_head e_csets[CGROUP_SUBSYS_COUNT];
298
299 /*
300 * list of pidlists, up to two for each namespace (one for procs, one
301 * for tasks); created on demand.
302 */
303 struct list_head pidlists;
304 struct mutex pidlist_mutex;
305
306 /* used to wait for offlining of csses */
307 wait_queue_head_t offline_waitq;
308
309 /* used to schedule release agent */
310 struct work_struct release_agent_work;
Tejun Heob11cfb52015-11-20 15:55:52 -0500311
Daniel Mack30070982016-11-23 16:52:26 +0100312 /* used to store eBPF programs */
313 struct cgroup_bpf bpf;
314
Tejun Heob11cfb52015-11-20 15:55:52 -0500315 /* ids of the ancestors at each level including self */
316 int ancestor_ids[];
Tejun Heob4a04ab2015-05-13 15:38:40 -0400317};
318
319/*
320 * A cgroup_root represents the root of a cgroup hierarchy, and may be
321 * associated with a kernfs_root to form an active hierarchy. This is
322 * internal to cgroup core. Don't access directly from controllers.
323 */
324struct cgroup_root {
325 struct kernfs_root *kf_root;
326
327 /* The bitmask of subsystems attached to this hierarchy */
328 unsigned int subsys_mask;
329
330 /* Unique id for this hierarchy. */
331 int hierarchy_id;
332
333 /* The root cgroup. Root is destroyed on its release. */
334 struct cgroup cgrp;
335
Tejun Heob11cfb52015-11-20 15:55:52 -0500336 /* for cgrp->ancestor_ids[0] */
337 int cgrp_ancestor_id_storage;
338
Tejun Heob4a04ab2015-05-13 15:38:40 -0400339 /* Number of cgroups in the hierarchy, used only for /proc/cgroups */
340 atomic_t nr_cgrps;
341
342 /* A list running through the active hierarchies */
343 struct list_head root_list;
344
345 /* Hierarchy-specific flags */
346 unsigned int flags;
347
348 /* IDs for cgroups in this hierarchy */
349 struct idr cgroup_idr;
350
351 /* The path to use for release notifications. */
352 char release_agent_path[PATH_MAX];
353
354 /* The name for this hierarchy - may be empty */
355 char name[MAX_CGROUP_ROOT_NAMELEN];
356};
357
358/*
359 * struct cftype: handler definitions for cgroup control files
360 *
361 * When reading/writing to a file:
362 * - the cgroup to use is file->f_path.dentry->d_parent->d_fsdata
363 * - the 'cftype' of the file is file->f_path.dentry->d_fsdata
364 */
365struct cftype {
366 /*
367 * By convention, the name should begin with the name of the
368 * subsystem, followed by a period. Zero length string indicates
369 * end of cftype array.
370 */
371 char name[MAX_CFTYPE_NAME];
Tejun Heo731a9812015-08-11 13:35:42 -0400372 unsigned long private;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400373
374 /*
375 * The maximum length of string, excluding trailing nul, that can
376 * be passed to write. If < PAGE_SIZE-1, PAGE_SIZE-1 is assumed.
377 */
378 size_t max_write_len;
379
380 /* CFTYPE_* flags */
381 unsigned int flags;
382
383 /*
Tejun Heo6f60ead2015-09-18 17:54:23 -0400384 * If non-zero, should contain the offset from the start of css to
385 * a struct cgroup_file field. cgroup will record the handle of
386 * the created file into it. The recorded handle can be used as
387 * long as the containing css remains accessible.
388 */
389 unsigned int file_offset;
390
391 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400392 * Fields used for internal bookkeeping. Initialized automatically
393 * during registration.
394 */
395 struct cgroup_subsys *ss; /* NULL for cgroup core files */
396 struct list_head node; /* anchored at ss->cfts */
397 struct kernfs_ops *kf_ops;
398
Tejun Heoe90cbeb2016-12-27 14:49:03 -0500399 int (*open)(struct kernfs_open_file *of);
400 void (*release)(struct kernfs_open_file *of);
401
Tejun Heob4a04ab2015-05-13 15:38:40 -0400402 /*
403 * read_u64() is a shortcut for the common case of returning a
404 * single integer. Use it in place of read()
405 */
406 u64 (*read_u64)(struct cgroup_subsys_state *css, struct cftype *cft);
407 /*
408 * read_s64() is a signed version of read_u64()
409 */
410 s64 (*read_s64)(struct cgroup_subsys_state *css, struct cftype *cft);
411
412 /* generic seq_file read interface */
413 int (*seq_show)(struct seq_file *sf, void *v);
414
415 /* optional ops, implement all or none */
416 void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
417 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
418 void (*seq_stop)(struct seq_file *sf, void *v);
419
420 /*
421 * write_u64() is a shortcut for the common case of accepting
422 * a single integer (as parsed by simple_strtoull) from
423 * userspace. Use in place of write(); return 0 or error.
424 */
425 int (*write_u64)(struct cgroup_subsys_state *css, struct cftype *cft,
426 u64 val);
427 /*
428 * write_s64() is a signed version of write_u64()
429 */
430 int (*write_s64)(struct cgroup_subsys_state *css, struct cftype *cft,
431 s64 val);
432
433 /*
434 * write() is the generic write callback which maps directly to
435 * kernfs write operation and overrides all other operations.
436 * Maximum write size is determined by ->max_write_len. Use
437 * of_css/cft() to access the associated css and cft.
438 */
439 ssize_t (*write)(struct kernfs_open_file *of,
440 char *buf, size_t nbytes, loff_t off);
441
442#ifdef CONFIG_DEBUG_LOCK_ALLOC
443 struct lock_class_key lockdep_key;
444#endif
445};
446
447/*
448 * Control Group subsystem type.
449 * See Documentation/cgroups/cgroups.txt for details
450 */
451struct cgroup_subsys {
452 struct cgroup_subsys_state *(*css_alloc)(struct cgroup_subsys_state *parent_css);
453 int (*css_online)(struct cgroup_subsys_state *css);
454 void (*css_offline)(struct cgroup_subsys_state *css);
455 void (*css_released)(struct cgroup_subsys_state *css);
456 void (*css_free)(struct cgroup_subsys_state *css);
457 void (*css_reset)(struct cgroup_subsys_state *css);
Tejun Heob4a04ab2015-05-13 15:38:40 -0400458
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500459 int (*can_attach)(struct cgroup_taskset *tset);
460 void (*cancel_attach)(struct cgroup_taskset *tset);
461 void (*attach)(struct cgroup_taskset *tset);
Tejun Heo5cf1cac2016-04-21 19:06:48 -0400462 void (*post_attach)(void);
Oleg Nesterovb53202e2015-12-03 10:24:08 -0500463 int (*can_fork)(struct task_struct *task);
464 void (*cancel_fork)(struct task_struct *task);
465 void (*fork)(struct task_struct *task);
Tejun Heo2e91fa72015-10-15 16:41:53 -0400466 void (*exit)(struct task_struct *task);
Tejun Heoafcf6c82015-10-15 16:41:53 -0400467 void (*free)(struct task_struct *task);
Tejun Heob4a04ab2015-05-13 15:38:40 -0400468 void (*bind)(struct cgroup_subsys_state *root_css);
469
Tejun Heob38e42e2016-02-23 10:00:50 -0500470 bool early_init:1;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400471
472 /*
Tejun Heof6d635ad2016-03-08 11:51:26 -0500473 * If %true, the controller, on the default hierarchy, doesn't show
474 * up in "cgroup.controllers" or "cgroup.subtree_control", is
475 * implicitly enabled on all cgroups on the default hierarchy, and
476 * bypasses the "no internal process" constraint. This is for
477 * utility type controllers which is transparent to userland.
478 *
479 * An implicit controller can be stolen from the default hierarchy
480 * anytime and thus must be okay with offline csses from previous
481 * hierarchies coexisting with csses for the current one.
482 */
483 bool implicit_on_dfl:1;
484
485 /*
Tejun Heob4a04ab2015-05-13 15:38:40 -0400486 * If %false, this subsystem is properly hierarchical -
487 * configuration, resource accounting and restriction on a parent
488 * cgroup cover those of its children. If %true, hierarchy support
489 * is broken in some ways - some subsystems ignore hierarchy
490 * completely while others are only implemented half-way.
491 *
492 * It's now disallowed to create nested cgroups if the subsystem is
493 * broken and cgroup core will emit a warning message on such
494 * cases. Eventually, all subsystems will be made properly
495 * hierarchical and this will go away.
496 */
Tejun Heob38e42e2016-02-23 10:00:50 -0500497 bool broken_hierarchy:1;
498 bool warned_broken_hierarchy:1;
Tejun Heob4a04ab2015-05-13 15:38:40 -0400499
500 /* the following two fields are initialized automtically during boot */
501 int id;
502 const char *name;
503
Tejun Heo3e1d2ee2015-08-18 13:58:16 -0700504 /* optional, initialized automatically during boot if not set */
505 const char *legacy_name;
506
Tejun Heob4a04ab2015-05-13 15:38:40 -0400507 /* link to parent, protected by cgroup_lock() */
508 struct cgroup_root *root;
509
510 /* idr for css->id */
511 struct idr css_idr;
512
513 /*
514 * List of cftypes. Each entry is the first entry of an array
515 * terminated by zero length name.
516 */
517 struct list_head cfts;
518
519 /*
520 * Base cftypes which are automatically registered. The two can
521 * point to the same array.
522 */
523 struct cftype *dfl_cftypes; /* for the default hierarchy */
524 struct cftype *legacy_cftypes; /* for the legacy hierarchies */
525
526 /*
527 * A subsystem may depend on other subsystems. When such subsystem
528 * is enabled on a cgroup, the depended-upon subsystems are enabled
529 * together if available. Subsystems enabled due to dependency are
530 * not visible to userland until explicitly enabled. The following
531 * specifies the mask of subsystems that this one depends on.
532 */
533 unsigned int depends_on;
534};
535
Tejun Heo1ed13282015-09-16 12:53:17 -0400536extern struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
537
538/**
539 * cgroup_threadgroup_change_begin - threadgroup exclusion for cgroups
540 * @tsk: target task
541 *
Ingo Molnar780de9d2017-02-02 11:50:56 +0100542 * Allows cgroup operations to synchronize against threadgroup changes
543 * using a percpu_rw_semaphore.
Tejun Heo1ed13282015-09-16 12:53:17 -0400544 */
545static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
546{
547 percpu_down_read(&cgroup_threadgroup_rwsem);
548}
549
550/**
551 * cgroup_threadgroup_change_end - threadgroup exclusion for cgroups
552 * @tsk: target task
553 *
Ingo Molnar780de9d2017-02-02 11:50:56 +0100554 * Counterpart of cgroup_threadcgroup_change_begin().
Tejun Heo1ed13282015-09-16 12:53:17 -0400555 */
556static inline void cgroup_threadgroup_change_end(struct task_struct *tsk)
557{
558 percpu_up_read(&cgroup_threadgroup_rwsem);
559}
Tejun Heo7d7efec2015-05-13 16:35:16 -0400560
561#else /* CONFIG_CGROUPS */
562
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000563#define CGROUP_SUBSYS_COUNT 0
564
Ingo Molnar780de9d2017-02-02 11:50:56 +0100565static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk)
566{
567 might_sleep();
568}
569
Tejun Heo7d7efec2015-05-13 16:35:16 -0400570static inline void cgroup_threadgroup_change_end(struct task_struct *tsk) {}
571
Tejun Heob4a04ab2015-05-13 15:38:40 -0400572#endif /* CONFIG_CGROUPS */
Tejun Heo7d7efec2015-05-13 16:35:16 -0400573
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500574#ifdef CONFIG_SOCK_CGROUP_DATA
575
Tejun Heobd1060a2015-12-07 17:38:53 -0500576/*
577 * sock_cgroup_data is embedded at sock->sk_cgrp_data and contains
578 * per-socket cgroup information except for memcg association.
579 *
580 * On legacy hierarchies, net_prio and net_cls controllers directly set
581 * attributes on each sock which can then be tested by the network layer.
582 * On the default hierarchy, each sock is associated with the cgroup it was
583 * created in and the networking layer can match the cgroup directly.
584 *
585 * To avoid carrying all three cgroup related fields separately in sock,
586 * sock_cgroup_data overloads (prioidx, classid) and the cgroup pointer.
587 * On boot, sock_cgroup_data records the cgroup that the sock was created
588 * in so that cgroup2 matches can be made; however, once either net_prio or
589 * net_cls starts being used, the area is overriden to carry prioidx and/or
590 * classid. The two modes are distinguished by whether the lowest bit is
591 * set. Clear bit indicates cgroup pointer while set bit prioidx and
592 * classid.
593 *
594 * While userland may start using net_prio or net_cls at any time, once
595 * either is used, cgroup2 matching no longer works. There is no reason to
596 * mix the two and this is in line with how legacy and v2 compatibility is
597 * handled. On mode switch, cgroup references which are already being
598 * pointed to by socks may be leaked. While this can be remedied by adding
599 * synchronization around sock_cgroup_data, given that the number of leaked
600 * cgroups is bound and highly unlikely to be high, this seems to be the
601 * better trade-off.
602 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500603struct sock_cgroup_data {
Tejun Heobd1060a2015-12-07 17:38:53 -0500604 union {
605#ifdef __LITTLE_ENDIAN
606 struct {
607 u8 is_data;
608 u8 padding;
609 u16 prioidx;
610 u32 classid;
611 } __packed;
612#else
613 struct {
614 u32 classid;
615 u16 prioidx;
616 u8 padding;
617 u8 is_data;
618 } __packed;
619#endif
620 u64 val;
621 };
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500622};
623
Tejun Heobd1060a2015-12-07 17:38:53 -0500624/*
625 * There's a theoretical window where the following accessors race with
626 * updaters and return part of the previous pointer as the prioidx or
627 * classid. Such races are short-lived and the result isn't critical.
628 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500629static inline u16 sock_cgroup_prioidx(struct sock_cgroup_data *skcd)
630{
Tejun Heobd1060a2015-12-07 17:38:53 -0500631 /* fallback to 1 which is always the ID of the root cgroup */
632 return (skcd->is_data & 1) ? skcd->prioidx : 1;
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500633}
634
635static inline u32 sock_cgroup_classid(struct sock_cgroup_data *skcd)
636{
Tejun Heobd1060a2015-12-07 17:38:53 -0500637 /* fallback to 0 which is the unconfigured default classid */
638 return (skcd->is_data & 1) ? skcd->classid : 0;
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500639}
640
Tejun Heobd1060a2015-12-07 17:38:53 -0500641/*
642 * If invoked concurrently, the updaters may clobber each other. The
643 * caller is responsible for synchronization.
644 */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500645static inline void sock_cgroup_set_prioidx(struct sock_cgroup_data *skcd,
646 u16 prioidx)
647{
Tejun Heoad2c8c72015-12-09 12:30:46 -0500648 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
Tejun Heobd1060a2015-12-07 17:38:53 -0500649
650 if (sock_cgroup_prioidx(&skcd_buf) == prioidx)
651 return;
652
653 if (!(skcd_buf.is_data & 1)) {
654 skcd_buf.val = 0;
655 skcd_buf.is_data = 1;
656 }
657
658 skcd_buf.prioidx = prioidx;
659 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500660}
661
662static inline void sock_cgroup_set_classid(struct sock_cgroup_data *skcd,
663 u32 classid)
664{
Tejun Heoad2c8c72015-12-09 12:30:46 -0500665 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }};
Tejun Heobd1060a2015-12-07 17:38:53 -0500666
667 if (sock_cgroup_classid(&skcd_buf) == classid)
668 return;
669
670 if (!(skcd_buf.is_data & 1)) {
671 skcd_buf.val = 0;
672 skcd_buf.is_data = 1;
673 }
674
675 skcd_buf.classid = classid;
676 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */
Tejun Heo2a56a1f2015-12-07 17:38:52 -0500677}
678
679#else /* CONFIG_SOCK_CGROUP_DATA */
680
681struct sock_cgroup_data {
682};
683
684#endif /* CONFIG_SOCK_CGROUP_DATA */
685
Tejun Heob4a04ab2015-05-13 15:38:40 -0400686#endif /* _LINUX_CGROUP_DEFS_H */