blob: 8937d48a5389d1c9eb3d2da2676559760a4ba323 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07002#ifndef _LINUX_CGROUP_H
3#define _LINUX_CGROUP_H
4/*
5 * cgroup interface
6 *
7 * Copyright (C) 2003 BULL SA
8 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
9 *
10 */
11
12#include <linux/sched.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070013#include <linux/cpumask.h>
14#include <linux/nodemask.h>
Tejun Heoeb6fd502012-11-09 09:12:29 -080015#include <linux/rculist.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070016#include <linux/cgroupstats.h>
Tejun Heo25a7e682013-04-14 20:15:25 -070017#include <linux/fs.h>
Tejun Heo7da11272013-12-05 12:28:04 -050018#include <linux/seq_file.h>
Tejun Heo2bd59d42014-02-11 11:52:49 -050019#include <linux/kernfs.h>
Tejun Heo49d1dc42015-09-18 11:56:28 -040020#include <linux/jump_label.h>
Aditya Kalia79a9082016-01-29 02:54:06 -060021#include <linux/types.h>
22#include <linux/ns_common.h>
23#include <linux/nsproxy.h>
24#include <linux/user_namespace.h>
Elena Reshetova387ad962017-02-20 12:19:00 +020025#include <linux/refcount.h>
Tejun Heod2cc5ed2017-09-25 08:12:04 -070026#include <linux/kernel_stat.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040027
28#include <linux/cgroup-defs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070029
30#ifdef CONFIG_CGROUPS
31
Tejun Heo6abc8ca2015-08-04 15:20:55 -040032/*
33 * All weight knobs on the default hierarhcy should use the following min,
34 * default and max values. The default value is the logarithmic center of
35 * MIN and MAX and allows 100x to be expressed in both directions.
36 */
37#define CGROUP_WEIGHT_MIN 1
38#define CGROUP_WEIGHT_DFL 100
39#define CGROUP_WEIGHT_MAX 10000
40
Tejun Heobc2fb7e2017-05-15 09:34:01 -040041/* walk only threadgroup leaders */
42#define CSS_TASK_ITER_PROCS (1U << 0)
Tejun Heo450ee0c2017-05-15 09:34:03 -040043/* walk all threaded css_sets in the domain */
44#define CSS_TASK_ITER_THREADED (1U << 1)
Tejun Heobc2fb7e2017-05-15 09:34:01 -040045
Tejun Heoc326aa22015-05-13 16:24:16 -040046/* a css_task_iter should be treated as an opaque object */
47struct css_task_iter {
48 struct cgroup_subsys *ss;
Tejun Heobc2fb7e2017-05-15 09:34:01 -040049 unsigned int flags;
Paul Menageddbcc7e2007-10-18 23:39:30 -070050
Tejun Heoc326aa22015-05-13 16:24:16 -040051 struct list_head *cset_pos;
52 struct list_head *cset_head;
Paul Menageddbcc7e2007-10-18 23:39:30 -070053
Tejun Heo450ee0c2017-05-15 09:34:03 -040054 struct list_head *tcset_pos;
55 struct list_head *tcset_head;
56
Tejun Heoc326aa22015-05-13 16:24:16 -040057 struct list_head *task_pos;
58 struct list_head *tasks_head;
59 struct list_head *mg_tasks_head;
Tejun Heoed27b9f2015-10-15 16:41:52 -040060
61 struct css_set *cur_cset;
Tejun Heo450ee0c2017-05-15 09:34:03 -040062 struct css_set *cur_dcset;
Tejun Heoed27b9f2015-10-15 16:41:52 -040063 struct task_struct *cur_task;
64 struct list_head iters_node; /* css_set->task_iters */
Paul Menage817929e2007-10-18 23:39:36 -070065};
Tejun Heoc326aa22015-05-13 16:24:16 -040066
67extern struct cgroup_root cgrp_dfl_root;
68extern struct css_set init_css_set;
69
70#define SUBSYS(_x) extern struct cgroup_subsys _x ## _cgrp_subsys;
71#include <linux/cgroup_subsys.h>
Paul Menage817929e2007-10-18 23:39:36 -070072#undef SUBSYS
73
Tejun Heo49d1dc42015-09-18 11:56:28 -040074#define SUBSYS(_x) \
75 extern struct static_key_true _x ## _cgrp_subsys_enabled_key; \
76 extern struct static_key_true _x ## _cgrp_subsys_on_dfl_key;
77#include <linux/cgroup_subsys.h>
78#undef SUBSYS
79
80/**
81 * cgroup_subsys_enabled - fast test on whether a subsys is enabled
82 * @ss: subsystem in question
83 */
84#define cgroup_subsys_enabled(ss) \
85 static_branch_likely(&ss ## _enabled_key)
86
87/**
88 * cgroup_subsys_on_dfl - fast test on whether a subsys is on default hierarchy
89 * @ss: subsystem in question
90 */
91#define cgroup_subsys_on_dfl(ss) \
92 static_branch_likely(&ss ## _on_dfl_key)
93
Tejun Heoc326aa22015-05-13 16:24:16 -040094bool css_has_online_children(struct cgroup_subsys_state *css);
95struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss);
96struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgroup,
97 struct cgroup_subsys *ss);
98struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
99 struct cgroup_subsys *ss);
100
Tejun Heo16af4392015-11-20 15:55:52 -0500101struct cgroup *cgroup_get_from_path(const char *path);
Martin KaFai Lau1f3fe7e2016-06-30 10:28:42 -0700102struct cgroup *cgroup_get_from_fd(int fd);
Tejun Heo16af4392015-11-20 15:55:52 -0500103
Tejun Heoc326aa22015-05-13 16:24:16 -0400104int cgroup_attach_task_all(struct task_struct *from, struct task_struct *);
105int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from);
106
107int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts);
108int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts);
109int cgroup_rm_cftypes(struct cftype *cfts);
Tejun Heo34c06252015-11-05 00:12:24 -0500110void cgroup_file_notify(struct cgroup_file *cfile);
Tejun Heoc326aa22015-05-13 16:24:16 -0400111
Tejun Heo4c737b42016-08-10 11:23:44 -0400112int task_cgroup_path(struct task_struct *task, char *buf, size_t buflen);
Tejun Heoc326aa22015-05-13 16:24:16 -0400113int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry);
114int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
115 struct pid *pid, struct task_struct *tsk);
116
117void cgroup_fork(struct task_struct *p);
Oleg Nesterovb53202e2015-12-03 10:24:08 -0500118extern int cgroup_can_fork(struct task_struct *p);
119extern void cgroup_cancel_fork(struct task_struct *p);
120extern void cgroup_post_fork(struct task_struct *p);
Tejun Heoc326aa22015-05-13 16:24:16 -0400121void cgroup_exit(struct task_struct *p);
Oleg Nesterovd0bc74c2019-01-28 17:00:13 +0100122void cgroup_release(struct task_struct *p);
Tejun Heo2e91fa72015-10-15 16:41:53 -0400123void cgroup_free(struct task_struct *p);
Tejun Heoc326aa22015-05-13 16:24:16 -0400124
125int cgroup_init_early(void);
126int cgroup_init(void);
127
Tejun Heo5c9d5352014-05-16 13:22:48 -0400128/*
Tejun Heoc326aa22015-05-13 16:24:16 -0400129 * Iteration helpers and macros.
Tejun Heo5c9d5352014-05-16 13:22:48 -0400130 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131
Tejun Heoc326aa22015-05-13 16:24:16 -0400132struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
133 struct cgroup_subsys_state *parent);
134struct cgroup_subsys_state *css_next_descendant_pre(struct cgroup_subsys_state *pos,
135 struct cgroup_subsys_state *css);
136struct cgroup_subsys_state *css_rightmost_descendant(struct cgroup_subsys_state *pos);
137struct cgroup_subsys_state *css_next_descendant_post(struct cgroup_subsys_state *pos,
138 struct cgroup_subsys_state *css);
Tejun Heo72c97e52013-08-08 20:11:22 -0400139
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500140struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset,
141 struct cgroup_subsys_state **dst_cssp);
142struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset,
143 struct cgroup_subsys_state **dst_cssp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700144
Tejun Heobc2fb7e2017-05-15 09:34:01 -0400145void css_task_iter_start(struct cgroup_subsys_state *css, unsigned int flags,
Tejun Heoc326aa22015-05-13 16:24:16 -0400146 struct css_task_iter *it);
147struct task_struct *css_task_iter_next(struct css_task_iter *it);
148void css_task_iter_end(struct css_task_iter *it);
Tejun Heo0ae78e02013-08-13 11:01:54 -0400149
Tejun Heoc326aa22015-05-13 16:24:16 -0400150/**
151 * css_for_each_child - iterate through children of a css
152 * @pos: the css * to use as the loop cursor
153 * @parent: css whose children to walk
154 *
155 * Walk @parent's children. Must be called under rcu_read_lock().
156 *
157 * If a subsystem synchronizes ->css_online() and the start of iteration, a
158 * css which finished ->css_online() is guaranteed to be visible in the
159 * future iterations and will stay visible until the last reference is put.
160 * A css which hasn't finished ->css_online() or already finished
161 * ->css_offline() may show up during traversal. It's each subsystem's
162 * responsibility to synchronize against on/offlining.
163 *
164 * It is allowed to temporarily drop RCU read lock during iteration. The
165 * caller is responsible for ensuring that @pos remains accessible until
166 * the start of the next iteration by, for example, bumping the css refcnt.
167 */
168#define css_for_each_child(pos, parent) \
169 for ((pos) = css_next_child(NULL, (parent)); (pos); \
170 (pos) = css_next_child((pos), (parent)))
Tejun Heod5c419b2014-05-16 13:22:48 -0400171
Tejun Heoc326aa22015-05-13 16:24:16 -0400172/**
173 * css_for_each_descendant_pre - pre-order walk of a css's descendants
174 * @pos: the css * to use as the loop cursor
175 * @root: css whose descendants to walk
176 *
177 * Walk @root's descendants. @root is included in the iteration and the
178 * first node to be visited. Must be called under rcu_read_lock().
179 *
180 * If a subsystem synchronizes ->css_online() and the start of iteration, a
181 * css which finished ->css_online() is guaranteed to be visible in the
182 * future iterations and will stay visible until the last reference is put.
183 * A css which hasn't finished ->css_online() or already finished
184 * ->css_offline() may show up during traversal. It's each subsystem's
185 * responsibility to synchronize against on/offlining.
186 *
187 * For example, the following guarantees that a descendant can't escape
188 * state updates of its ancestors.
189 *
190 * my_online(@css)
191 * {
192 * Lock @css's parent and @css;
193 * Inherit state from the parent;
194 * Unlock both.
195 * }
196 *
197 * my_update_state(@css)
198 * {
199 * css_for_each_descendant_pre(@pos, @css) {
200 * Lock @pos;
201 * if (@pos == @css)
202 * Update @css's state;
203 * else
204 * Verify @pos is alive and inherit state from its parent;
205 * Unlock @pos;
206 * }
207 * }
208 *
209 * As long as the inheriting step, including checking the parent state, is
210 * enclosed inside @pos locking, double-locking the parent isn't necessary
211 * while inheriting. The state update to the parent is guaranteed to be
212 * visible by walking order and, as long as inheriting operations to the
213 * same @pos are atomic to each other, multiple updates racing each other
214 * still result in the correct state. It's guaranateed that at least one
215 * inheritance happens for any css after the latest update to its parent.
216 *
217 * If checking parent's state requires locking the parent, each inheriting
218 * iteration should lock and unlock both @pos->parent and @pos.
219 *
220 * Alternatively, a subsystem may choose to use a single global lock to
221 * synchronize ->css_online() and ->css_offline() against tree-walking
222 * operations.
223 *
224 * It is allowed to temporarily drop RCU read lock during iteration. The
225 * caller is responsible for ensuring that @pos remains accessible until
226 * the start of the next iteration by, for example, bumping the css refcnt.
227 */
228#define css_for_each_descendant_pre(pos, css) \
229 for ((pos) = css_next_descendant_pre(NULL, (css)); (pos); \
230 (pos) = css_next_descendant_pre((pos), (css)))
Tejun Heo15a4c832014-05-04 15:09:14 -0400231
Tejun Heoc326aa22015-05-13 16:24:16 -0400232/**
233 * css_for_each_descendant_post - post-order walk of a css's descendants
234 * @pos: the css * to use as the loop cursor
235 * @css: css whose descendants to walk
236 *
237 * Similar to css_for_each_descendant_pre() but performs post-order
238 * traversal instead. @root is included in the iteration and the last
239 * node to be visited.
240 *
241 * If a subsystem synchronizes ->css_online() and the start of iteration, a
242 * css which finished ->css_online() is guaranteed to be visible in the
243 * future iterations and will stay visible until the last reference is put.
244 * A css which hasn't finished ->css_online() or already finished
245 * ->css_offline() may show up during traversal. It's each subsystem's
246 * responsibility to synchronize against on/offlining.
247 *
248 * Note that the walk visibility guarantee example described in pre-order
249 * walk doesn't apply the same to post-order walks.
250 */
251#define css_for_each_descendant_post(pos, css) \
252 for ((pos) = css_next_descendant_post(NULL, (css)); (pos); \
253 (pos) = css_next_descendant_post((pos), (css)))
Tejun Heo48ddbe12012-04-01 12:09:56 -0700254
Tejun Heoc326aa22015-05-13 16:24:16 -0400255/**
256 * cgroup_taskset_for_each - iterate cgroup_taskset
257 * @task: the loop cursor
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500258 * @dst_css: the destination css
Tejun Heoc326aa22015-05-13 16:24:16 -0400259 * @tset: taskset to iterate
Tejun Heo4530edd2015-09-11 15:00:19 -0400260 *
261 * @tset may contain multiple tasks and they may belong to multiple
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500262 * processes.
263 *
264 * On the v2 hierarchy, there may be tasks from multiple processes and they
265 * may not share the source or destination csses.
266 *
267 * On traditional hierarchies, when there are multiple tasks in @tset, if a
268 * task of a process is in @tset, all tasks of the process are in @tset.
269 * Also, all are guaranteed to share the same source and destination csses.
Tejun Heo4530edd2015-09-11 15:00:19 -0400270 *
271 * Iteration is not in any specific order.
Tejun Heoc326aa22015-05-13 16:24:16 -0400272 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500273#define cgroup_taskset_for_each(task, dst_css, tset) \
274 for ((task) = cgroup_taskset_first((tset), &(dst_css)); \
275 (task); \
276 (task) = cgroup_taskset_next((tset), &(dst_css)))
Tejun Heo0cb51d72014-05-16 13:22:49 -0400277
Tejun Heo4530edd2015-09-11 15:00:19 -0400278/**
279 * cgroup_taskset_for_each_leader - iterate group leaders in a cgroup_taskset
280 * @leader: the loop cursor
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500281 * @dst_css: the destination css
Geliang Tang7b4632f2016-12-24 23:28:35 +0800282 * @tset: taskset to iterate
Tejun Heo4530edd2015-09-11 15:00:19 -0400283 *
284 * Iterate threadgroup leaders of @tset. For single-task migrations, @tset
285 * may not contain any.
286 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -0500287#define cgroup_taskset_for_each_leader(leader, dst_css, tset) \
288 for ((leader) = cgroup_taskset_first((tset), &(dst_css)); \
289 (leader); \
290 (leader) = cgroup_taskset_next((tset), &(dst_css))) \
Tejun Heo4530edd2015-09-11 15:00:19 -0400291 if ((leader) != (leader)->group_leader) \
292 ; \
293 else
294
Tejun Heoc326aa22015-05-13 16:24:16 -0400295/*
296 * Inline functions.
297 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700298
Tejun Heo5de01072013-06-12 21:04:52 -0700299/**
300 * css_get - obtain a reference on the specified css
301 * @css: target css
302 *
303 * The caller must already have a reference.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700304 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700305static inline void css_get(struct cgroup_subsys_state *css)
306{
Tejun Heo3b514d22014-05-16 13:22:47 -0400307 if (!(css->flags & CSS_NO_REF))
308 percpu_ref_get(&css->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700309}
Paul Menagee7c5ec92009-01-07 18:08:38 -0800310
Tejun Heo5de01072013-06-12 21:04:52 -0700311/**
Johannes Weinere8ea14c2014-12-10 15:42:42 -0800312 * css_get_many - obtain references on the specified css
313 * @css: target css
314 * @n: number of references to get
315 *
316 * The caller must already have a reference.
317 */
318static inline void css_get_many(struct cgroup_subsys_state *css, unsigned int n)
319{
320 if (!(css->flags & CSS_NO_REF))
321 percpu_ref_get_many(&css->refcnt, n);
322}
323
324/**
Tejun Heo6f4524d2014-05-16 13:22:52 -0400325 * css_tryget - try to obtain a reference on the specified css
326 * @css: target css
327 *
328 * Obtain a reference on @css unless it already has reached zero and is
329 * being released. This function doesn't care whether @css is on or
330 * offline. The caller naturally needs to ensure that @css is accessible
331 * but doesn't have to be holding a reference on it - IOW, RCU protected
332 * access is good enough for this function. Returns %true if a reference
333 * count was successfully obtained; %false otherwise.
334 */
335static inline bool css_tryget(struct cgroup_subsys_state *css)
336{
337 if (!(css->flags & CSS_NO_REF))
338 return percpu_ref_tryget(&css->refcnt);
339 return true;
340}
341
342/**
Tejun Heoec903c02014-05-13 12:11:01 -0400343 * css_tryget_online - try to obtain a reference on the specified css if online
Tejun Heo5de01072013-06-12 21:04:52 -0700344 * @css: target css
345 *
Tejun Heoec903c02014-05-13 12:11:01 -0400346 * Obtain a reference on @css if it's online. The caller naturally needs
347 * to ensure that @css is accessible but doesn't have to be holding a
Tejun Heo5de01072013-06-12 21:04:52 -0700348 * reference on it - IOW, RCU protected access is good enough for this
349 * function. Returns %true if a reference count was successfully obtained;
350 * %false otherwise.
351 */
Tejun Heoec903c02014-05-13 12:11:01 -0400352static inline bool css_tryget_online(struct cgroup_subsys_state *css)
Paul Menagee7c5ec92009-01-07 18:08:38 -0800353{
Tejun Heo3b514d22014-05-16 13:22:47 -0400354 if (!(css->flags & CSS_NO_REF))
355 return percpu_ref_tryget_live(&css->refcnt);
356 return true;
Paul Menagee7c5ec92009-01-07 18:08:38 -0800357}
358
Tejun Heo5de01072013-06-12 21:04:52 -0700359/**
Tejun Heo41c25702017-05-24 12:03:48 -0400360 * css_is_dying - test whether the specified css is dying
361 * @css: target css
362 *
363 * Test whether @css is in the process of offlining or already offline. In
364 * most cases, ->css_online() and ->css_offline() callbacks should be
365 * enough; however, the actual offline operations are RCU delayed and this
366 * test returns %true also when @css is scheduled to be offlined.
367 *
368 * This is useful, for example, when the use case requires synchronous
369 * behavior with respect to cgroup removal. cgroup removal schedules css
370 * offlining but the css can seem alive while the operation is being
371 * delayed. If the delay affects user visible semantics, this test can be
372 * used to resolve the situation.
373 */
374static inline bool css_is_dying(struct cgroup_subsys_state *css)
375{
376 return !(css->flags & CSS_NO_REF) && percpu_ref_is_dying(&css->refcnt);
377}
378
379/**
Tejun Heo5de01072013-06-12 21:04:52 -0700380 * css_put - put a css reference
381 * @css: target css
382 *
Tejun Heoec903c02014-05-13 12:11:01 -0400383 * Put a reference obtained via css_get() and css_tryget_online().
Tejun Heo5de01072013-06-12 21:04:52 -0700384 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700385static inline void css_put(struct cgroup_subsys_state *css)
386{
Tejun Heo3b514d22014-05-16 13:22:47 -0400387 if (!(css->flags & CSS_NO_REF))
388 percpu_ref_put(&css->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700389}
390
Johannes Weinere8ea14c2014-12-10 15:42:42 -0800391/**
392 * css_put_many - put css references
393 * @css: target css
394 * @n: number of references to put
395 *
396 * Put references obtained via css_get() and css_tryget_online().
397 */
398static inline void css_put_many(struct cgroup_subsys_state *css, unsigned int n)
399{
400 if (!(css->flags & CSS_NO_REF))
401 percpu_ref_put_many(&css->refcnt, n);
402}
403
Tejun Heo3e489302017-08-11 05:49:01 -0700404static inline void cgroup_get(struct cgroup *cgrp)
405{
406 css_get(&cgrp->self);
407}
408
409static inline bool cgroup_tryget(struct cgroup *cgrp)
410{
411 return css_tryget(&cgrp->self);
412}
413
Tejun Heo16af4392015-11-20 15:55:52 -0500414static inline void cgroup_put(struct cgroup *cgrp)
415{
416 css_put(&cgrp->self);
417}
418
Tejun Heoc326aa22015-05-13 16:24:16 -0400419/**
420 * task_css_set_check - obtain a task's css_set with extra access conditions
421 * @task: the task to obtain css_set for
422 * @__c: extra condition expression to be passed to rcu_dereference_check()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700423 *
Tejun Heoc326aa22015-05-13 16:24:16 -0400424 * A task's css_set is RCU protected, initialized and exited while holding
425 * task_lock(), and can only be modified while holding both cgroup_mutex
426 * and task_lock() while the task is alive. This macro verifies that the
427 * caller is inside proper critical section and returns @task's css_set.
428 *
429 * The caller can also specify additional allowed conditions via @__c, such
430 * as locks used during the cgroup_subsys::attach() methods.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700431 */
Tejun Heoc326aa22015-05-13 16:24:16 -0400432#ifdef CONFIG_PROVE_RCU
433extern struct mutex cgroup_mutex;
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400434extern spinlock_t css_set_lock;
Tejun Heoc326aa22015-05-13 16:24:16 -0400435#define task_css_set_check(task, __c) \
436 rcu_dereference_check((task)->cgroups, \
437 lockdep_is_held(&cgroup_mutex) || \
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400438 lockdep_is_held(&css_set_lock) || \
Tejun Heoc326aa22015-05-13 16:24:16 -0400439 ((task)->flags & PF_EXITING) || (__c))
440#else
441#define task_css_set_check(task, __c) \
442 rcu_dereference((task)->cgroups)
Tejun Heo2bd59d42014-02-11 11:52:49 -0500443#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -0700444
Tejun Heoc326aa22015-05-13 16:24:16 -0400445/**
446 * task_css_check - obtain css for (task, subsys) w/ extra access conds
447 * @task: the target task
448 * @subsys_id: the target subsystem ID
449 * @__c: extra condition expression to be passed to rcu_dereference_check()
450 *
451 * Return the cgroup_subsys_state for the (@task, @subsys_id) pair. The
452 * synchronization rules are the same as task_css_set_check().
453 */
454#define task_css_check(task, subsys_id, __c) \
455 task_css_set_check((task), (__c))->subsys[(subsys_id)]
456
457/**
458 * task_css_set - obtain a task's css_set
459 * @task: the task to obtain css_set for
460 *
461 * See task_css_set_check().
462 */
463static inline struct css_set *task_css_set(struct task_struct *task)
464{
465 return task_css_set_check(task, false);
466}
467
468/**
469 * task_css - obtain css for (task, subsys)
470 * @task: the target task
471 * @subsys_id: the target subsystem ID
472 *
473 * See task_css_check().
474 */
475static inline struct cgroup_subsys_state *task_css(struct task_struct *task,
476 int subsys_id)
477{
478 return task_css_check(task, subsys_id, false);
479}
480
481/**
Linus Torvaldsbbe179f2015-06-26 19:50:04 -0700482 * task_get_css - find and get the css for (task, subsys)
483 * @task: the target task
484 * @subsys_id: the target subsystem ID
485 *
486 * Find the css for the (@task, @subsys_id) combination, increment a
487 * reference on and return it. This function is guaranteed to return a
Tejun Heoc3b85bd2019-05-29 13:46:25 -0700488 * valid css. The returned css may already have been offlined.
Linus Torvaldsbbe179f2015-06-26 19:50:04 -0700489 */
490static inline struct cgroup_subsys_state *
491task_get_css(struct task_struct *task, int subsys_id)
492{
493 struct cgroup_subsys_state *css;
494
495 rcu_read_lock();
496 while (true) {
497 css = task_css(task, subsys_id);
Tejun Heoc3b85bd2019-05-29 13:46:25 -0700498 /*
499 * Can't use css_tryget_online() here. A task which has
500 * PF_EXITING set may stay associated with an offline css.
501 * If such task calls this function, css_tryget_online()
502 * will keep failing.
503 */
504 if (likely(css_tryget(css)))
Linus Torvaldsbbe179f2015-06-26 19:50:04 -0700505 break;
506 cpu_relax();
507 }
508 rcu_read_unlock();
509 return css;
510}
511
512/**
Tejun Heoc326aa22015-05-13 16:24:16 -0400513 * task_css_is_root - test whether a task belongs to the root css
514 * @task: the target task
515 * @subsys_id: the target subsystem ID
516 *
517 * Test whether @task belongs to the root css on the specified subsystem.
518 * May be invoked in any context.
519 */
520static inline bool task_css_is_root(struct task_struct *task, int subsys_id)
521{
522 return task_css_check(task, subsys_id, true) ==
523 init_css_set.subsys[subsys_id];
524}
525
526static inline struct cgroup *task_cgroup(struct task_struct *task,
527 int subsys_id)
528{
529 return task_css(task, subsys_id)->cgroup;
530}
Tejun Heoa2dd4242014-03-19 10:23:55 -0400531
Tejun Heo3e489302017-08-11 05:49:01 -0700532static inline struct cgroup *task_dfl_cgroup(struct task_struct *task)
533{
534 return task_css_set(task)->dfl_cgrp;
535}
536
537static inline struct cgroup *cgroup_parent(struct cgroup *cgrp)
538{
539 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
540
541 if (parent_css)
542 return container_of(parent_css, struct cgroup, self);
543 return NULL;
544}
545
Tejun Heob11cfb52015-11-20 15:55:52 -0500546/**
547 * cgroup_is_descendant - test ancestry
548 * @cgrp: the cgroup to be tested
549 * @ancestor: possible ancestor of @cgrp
550 *
551 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
552 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
553 * and @ancestor are accessible.
554 */
555static inline bool cgroup_is_descendant(struct cgroup *cgrp,
556 struct cgroup *ancestor)
557{
558 if (cgrp->root != ancestor->root || cgrp->level < ancestor->level)
559 return false;
560 return cgrp->ancestor_ids[ancestor->level] == ancestor->id;
561}
562
Sargun Dhillonaed704b2016-08-12 08:56:40 -0700563/**
Andrey Ignatov77236282018-08-12 10:49:27 -0700564 * cgroup_ancestor - find ancestor of cgroup
565 * @cgrp: cgroup to find ancestor of
566 * @ancestor_level: level of ancestor to find starting from root
567 *
568 * Find ancestor of cgroup at specified level starting from root if it exists
569 * and return pointer to it. Return NULL if @cgrp doesn't have ancestor at
570 * @ancestor_level.
571 *
572 * This function is safe to call as long as @cgrp is accessible.
573 */
574static inline struct cgroup *cgroup_ancestor(struct cgroup *cgrp,
575 int ancestor_level)
576{
577 struct cgroup *ptr;
578
579 if (cgrp->level < ancestor_level)
580 return NULL;
581
582 for (ptr = cgrp;
583 ptr && ptr->level > ancestor_level;
584 ptr = cgroup_parent(ptr))
585 ;
586
587 if (ptr && ptr->level == ancestor_level)
588 return ptr;
589
590 return NULL;
591}
592
593/**
Sargun Dhillonaed704b2016-08-12 08:56:40 -0700594 * task_under_cgroup_hierarchy - test task's membership of cgroup ancestry
595 * @task: the task to be tested
596 * @ancestor: possible ancestor of @task's cgroup
597 *
598 * Tests whether @task's default cgroup hierarchy is a descendant of @ancestor.
599 * It follows all the same rules as cgroup_is_descendant, and only applies
600 * to the default hierarchy.
601 */
602static inline bool task_under_cgroup_hierarchy(struct task_struct *task,
603 struct cgroup *ancestor)
604{
605 struct css_set *cset = task_css_set(task);
606
607 return cgroup_is_descendant(cset->dfl_cgrp, ancestor);
608}
609
Tejun Heo07bc3562014-02-13 06:58:39 -0500610/* no synchronization, the result can only be used as a hint */
Tejun Heo27bd4db2015-10-15 16:41:50 -0400611static inline bool cgroup_is_populated(struct cgroup *cgrp)
Tejun Heo07bc3562014-02-13 06:58:39 -0500612{
Tejun Heo454000a2017-05-15 09:34:02 -0400613 return cgrp->nr_populated_csets + cgrp->nr_populated_domain_children +
614 cgrp->nr_populated_threaded_children;
Tejun Heo07bc3562014-02-13 06:58:39 -0500615}
616
Zefan Lif29374b2014-09-19 16:29:31 +0800617/* returns ino associated with a cgroup */
Tejun Heob1664922014-02-11 11:52:49 -0500618static inline ino_t cgroup_ino(struct cgroup *cgrp)
619{
Shaohua Lic53cd492017-07-12 11:49:50 -0700620 return cgrp->kn->id.ino;
Tejun Heob1664922014-02-11 11:52:49 -0500621}
622
Tejun Heob4168642014-05-13 12:16:21 -0400623/* cft/css accessors for cftype->write() operation */
624static inline struct cftype *of_cft(struct kernfs_open_file *of)
Tejun Heo7da11272013-12-05 12:28:04 -0500625{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500626 return of->kn->priv;
Tejun Heo7da11272013-12-05 12:28:04 -0500627}
628
Tejun Heob4168642014-05-13 12:16:21 -0400629struct cgroup_subsys_state *of_css(struct kernfs_open_file *of);
630
631/* cft/css accessors for cftype->seq_*() operations */
632static inline struct cftype *seq_cft(struct seq_file *seq)
633{
634 return of_cft(seq->private);
635}
636
637static inline struct cgroup_subsys_state *seq_css(struct seq_file *seq)
638{
639 return of_css(seq->private);
640}
Tejun Heo59f52962014-02-11 11:52:49 -0500641
Tejun Heoe61734c2014-02-12 09:29:50 -0500642/*
643 * Name / path handling functions. All are thin wrappers around the kernfs
644 * counterparts and can be called under any context.
645 */
646
647static inline int cgroup_name(struct cgroup *cgrp, char *buf, size_t buflen)
648{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400649 return kernfs_name(cgrp->kn, buf, buflen);
Tejun Heoe61734c2014-02-12 09:29:50 -0500650}
651
Tejun Heo4c737b42016-08-10 11:23:44 -0400652static inline int cgroup_path(struct cgroup *cgrp, char *buf, size_t buflen)
Tejun Heoe61734c2014-02-12 09:29:50 -0500653{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400654 return kernfs_path(cgrp->kn, buf, buflen);
Tejun Heoe61734c2014-02-12 09:29:50 -0500655}
656
657static inline void pr_cont_cgroup_name(struct cgroup *cgrp)
658{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400659 pr_cont_kernfs_name(cgrp->kn);
Tejun Heoe61734c2014-02-12 09:29:50 -0500660}
661
662static inline void pr_cont_cgroup_path(struct cgroup *cgrp)
663{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400664 pr_cont_kernfs_path(cgrp->kn);
Tejun Heoe61734c2014-02-12 09:29:50 -0500665}
666
Tejun Heo77f88792017-03-16 16:54:24 -0400667static inline void cgroup_init_kthreadd(void)
668{
669 /*
670 * kthreadd is inherited by all kthreads, keep it in the root so
671 * that the new kthreads are guaranteed to stay in the root until
672 * initialization is finished.
673 */
674 current->no_cgroup_migration = 1;
675}
676
677static inline void cgroup_kthread_ready(void)
678{
679 /*
680 * This kthread finished initialization. The creator should have
681 * set PF_NO_SETAFFINITY if this kthread should stay in the root.
682 */
683 current->no_cgroup_migration = 0;
684}
685
Shaohua Li121508d2017-07-12 11:49:52 -0700686static inline union kernfs_node_id *cgroup_get_kernfs_id(struct cgroup *cgrp)
687{
688 return &cgrp->kn->id;
689}
Shaohua Li69fd5c32017-07-12 11:49:55 -0700690
691void cgroup_path_from_kernfs_id(const union kernfs_node_id *id,
692 char *buf, size_t buflen);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700693#else /* !CONFIG_CGROUPS */
694
Tejun Heof3ba5382015-01-06 12:02:46 -0500695struct cgroup_subsys_state;
Sargun Dhillonaed704b2016-08-12 08:56:40 -0700696struct cgroup;
Tejun Heof3ba5382015-01-06 12:02:46 -0500697
Tejun Heoc326aa22015-05-13 16:24:16 -0400698static inline void css_put(struct cgroup_subsys_state *css) {}
699static inline int cgroup_attach_task_all(struct task_struct *from,
700 struct task_struct *t) { return 0; }
701static inline int cgroupstats_build(struct cgroupstats *stats,
702 struct dentry *dentry) { return -EINVAL; }
703
Paul Menageb4f48b62007-10-18 23:39:33 -0700704static inline void cgroup_fork(struct task_struct *p) {}
Oleg Nesterovb53202e2015-12-03 10:24:08 -0500705static inline int cgroup_can_fork(struct task_struct *p) { return 0; }
706static inline void cgroup_cancel_fork(struct task_struct *p) {}
707static inline void cgroup_post_fork(struct task_struct *p) {}
Li Zefan1ec41832014-03-28 15:22:19 +0800708static inline void cgroup_exit(struct task_struct *p) {}
Oleg Nesterovd0bc74c2019-01-28 17:00:13 +0100709static inline void cgroup_release(struct task_struct *p) {}
Tejun Heo2e91fa72015-10-15 16:41:53 -0400710static inline void cgroup_free(struct task_struct *p) {}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700711
Tejun Heoc326aa22015-05-13 16:24:16 -0400712static inline int cgroup_init_early(void) { return 0; }
713static inline int cgroup_init(void) { return 0; }
Tejun Heo77f88792017-03-16 16:54:24 -0400714static inline void cgroup_init_kthreadd(void) {}
715static inline void cgroup_kthread_ready(void) {}
Shaohua Li121508d2017-07-12 11:49:52 -0700716static inline union kernfs_node_id *cgroup_get_kernfs_id(struct cgroup *cgrp)
717{
718 return NULL;
719}
Sridhar Samudralad7926ee2010-05-30 22:24:39 +0200720
Sargun Dhillonaed704b2016-08-12 08:56:40 -0700721static inline bool task_under_cgroup_hierarchy(struct task_struct *task,
722 struct cgroup *ancestor)
723{
724 return true;
725}
Shaohua Li69fd5c32017-07-12 11:49:55 -0700726
727static inline void cgroup_path_from_kernfs_id(const union kernfs_node_id *id,
728 char *buf, size_t buflen) {}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700729#endif /* !CONFIG_CGROUPS */
730
Tejun Heo6162cef2018-04-26 14:29:05 -0700731#ifdef CONFIG_CGROUPS
732/*
733 * cgroup scalable recursive statistics.
734 */
735void cgroup_rstat_updated(struct cgroup *cgrp, int cpu);
736void cgroup_rstat_flush(struct cgroup *cgrp);
Tejun Heo0fa294f2018-04-26 14:29:05 -0700737void cgroup_rstat_flush_irqsafe(struct cgroup *cgrp);
Tejun Heo6162cef2018-04-26 14:29:05 -0700738void cgroup_rstat_flush_hold(struct cgroup *cgrp);
739void cgroup_rstat_flush_release(void);
740
Tejun Heobd1060a2015-12-07 17:38:53 -0500741/*
Tejun Heod2cc5ed2017-09-25 08:12:04 -0700742 * Basic resource stats.
743 */
Tejun Heod2cc5ed2017-09-25 08:12:04 -0700744#ifdef CONFIG_CGROUP_CPUACCT
745void cpuacct_charge(struct task_struct *tsk, u64 cputime);
746void cpuacct_account_field(struct task_struct *tsk, int index, u64 val);
747#else
748static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
749static inline void cpuacct_account_field(struct task_struct *tsk, int index,
750 u64 val) {}
751#endif
752
Tejun Heo041cd642017-09-25 08:12:05 -0700753void __cgroup_account_cputime(struct cgroup *cgrp, u64 delta_exec);
754void __cgroup_account_cputime_field(struct cgroup *cgrp,
755 enum cpu_usage_stat index, u64 delta_exec);
756
Tejun Heod2cc5ed2017-09-25 08:12:04 -0700757static inline void cgroup_account_cputime(struct task_struct *task,
758 u64 delta_exec)
759{
Tejun Heo041cd642017-09-25 08:12:05 -0700760 struct cgroup *cgrp;
761
Tejun Heod2cc5ed2017-09-25 08:12:04 -0700762 cpuacct_charge(task, delta_exec);
Tejun Heo041cd642017-09-25 08:12:05 -0700763
764 rcu_read_lock();
765 cgrp = task_dfl_cgroup(task);
766 if (cgroup_parent(cgrp))
767 __cgroup_account_cputime(cgrp, delta_exec);
768 rcu_read_unlock();
Tejun Heod2cc5ed2017-09-25 08:12:04 -0700769}
770
771static inline void cgroup_account_cputime_field(struct task_struct *task,
772 enum cpu_usage_stat index,
773 u64 delta_exec)
774{
Tejun Heo041cd642017-09-25 08:12:05 -0700775 struct cgroup *cgrp;
776
Tejun Heod2cc5ed2017-09-25 08:12:04 -0700777 cpuacct_account_field(task, index, delta_exec);
Tejun Heo041cd642017-09-25 08:12:05 -0700778
779 rcu_read_lock();
780 cgrp = task_dfl_cgroup(task);
781 if (cgroup_parent(cgrp))
782 __cgroup_account_cputime_field(cgrp, index, delta_exec);
783 rcu_read_unlock();
Tejun Heod2cc5ed2017-09-25 08:12:04 -0700784}
785
786#else /* CONFIG_CGROUPS */
787
788static inline void cgroup_account_cputime(struct task_struct *task,
789 u64 delta_exec) {}
790static inline void cgroup_account_cputime_field(struct task_struct *task,
791 enum cpu_usage_stat index,
792 u64 delta_exec) {}
793
794#endif /* CONFIG_CGROUPS */
795
796/*
Tejun Heobd1060a2015-12-07 17:38:53 -0500797 * sock->sk_cgrp_data handling. For more info, see sock_cgroup_data
798 * definition in cgroup-defs.h.
799 */
800#ifdef CONFIG_SOCK_CGROUP_DATA
801
802#if defined(CONFIG_CGROUP_NET_PRIO) || defined(CONFIG_CGROUP_NET_CLASSID)
803extern spinlock_t cgroup_sk_update_lock;
804#endif
805
806void cgroup_sk_alloc_disable(void);
807void cgroup_sk_alloc(struct sock_cgroup_data *skcd);
808void cgroup_sk_free(struct sock_cgroup_data *skcd);
809
810static inline struct cgroup *sock_cgroup_ptr(struct sock_cgroup_data *skcd)
811{
812#if defined(CONFIG_CGROUP_NET_PRIO) || defined(CONFIG_CGROUP_NET_CLASSID)
813 unsigned long v;
814
815 /*
816 * @skcd->val is 64bit but the following is safe on 32bit too as we
817 * just need the lower ulong to be written and read atomically.
818 */
819 v = READ_ONCE(skcd->val);
820
821 if (v & 1)
822 return &cgrp_dfl_root.cgrp;
823
824 return (struct cgroup *)(unsigned long)v ?: &cgrp_dfl_root.cgrp;
825#else
826 return (struct cgroup *)(unsigned long)skcd->val;
827#endif
828}
829
830#else /* CONFIG_CGROUP_DATA */
831
832static inline void cgroup_sk_alloc(struct sock_cgroup_data *skcd) {}
833static inline void cgroup_sk_free(struct sock_cgroup_data *skcd) {}
834
835#endif /* CONFIG_CGROUP_DATA */
836
Aditya Kalia79a9082016-01-29 02:54:06 -0600837struct cgroup_namespace {
Elena Reshetova387ad962017-02-20 12:19:00 +0200838 refcount_t count;
Aditya Kalia79a9082016-01-29 02:54:06 -0600839 struct ns_common ns;
840 struct user_namespace *user_ns;
Eric W. Biedermand08311d2016-08-08 14:25:30 -0500841 struct ucounts *ucounts;
Aditya Kalia79a9082016-01-29 02:54:06 -0600842 struct css_set *root_cset;
843};
844
845extern struct cgroup_namespace init_cgroup_ns;
846
847#ifdef CONFIG_CGROUPS
848
849void free_cgroup_ns(struct cgroup_namespace *ns);
850
851struct cgroup_namespace *copy_cgroup_ns(unsigned long flags,
852 struct user_namespace *user_ns,
853 struct cgroup_namespace *old_ns);
854
Tejun Heo4c737b42016-08-10 11:23:44 -0400855int cgroup_path_ns(struct cgroup *cgrp, char *buf, size_t buflen,
856 struct cgroup_namespace *ns);
Aditya Kalia79a9082016-01-29 02:54:06 -0600857
858#else /* !CONFIG_CGROUPS */
859
860static inline void free_cgroup_ns(struct cgroup_namespace *ns) { }
861static inline struct cgroup_namespace *
862copy_cgroup_ns(unsigned long flags, struct user_namespace *user_ns,
863 struct cgroup_namespace *old_ns)
864{
865 return old_ns;
866}
867
868#endif /* !CONFIG_CGROUPS */
869
870static inline void get_cgroup_ns(struct cgroup_namespace *ns)
871{
872 if (ns)
Elena Reshetova387ad962017-02-20 12:19:00 +0200873 refcount_inc(&ns->count);
Aditya Kalia79a9082016-01-29 02:54:06 -0600874}
875
876static inline void put_cgroup_ns(struct cgroup_namespace *ns)
877{
Elena Reshetova387ad962017-02-20 12:19:00 +0200878 if (ns && refcount_dec_and_test(&ns->count))
Aditya Kalia79a9082016-01-29 02:54:06 -0600879 free_cgroup_ns(ns);
880}
881
Paul Menageddbcc7e2007-10-18 23:39:30 -0700882#endif /* _LINUX_CGROUP_H */