• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #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>
13 #include <linux/cpumask.h>
14 #include <linux/nodemask.h>
15 #include <linux/rculist.h>
16 #include <linux/cgroupstats.h>
17 #include <linux/fs.h>
18 #include <linux/seq_file.h>
19 #include <linux/kernfs.h>
20 #include <linux/jump_label.h>
21 #include <linux/types.h>
22 #include <linux/ns_common.h>
23 #include <linux/nsproxy.h>
24 #include <linux/user_namespace.h>
25 #include <linux/refcount.h>
26 
27 #include <linux/cgroup-defs.h>
28 
29 #ifdef CONFIG_CGROUPS
30 
31 /*
32  * All weight knobs on the default hierarhcy should use the following min,
33  * default and max values.  The default value is the logarithmic center of
34  * MIN and MAX and allows 100x to be expressed in both directions.
35  */
36 #define CGROUP_WEIGHT_MIN		1
37 #define CGROUP_WEIGHT_DFL		100
38 #define CGROUP_WEIGHT_MAX		10000
39 
40 /* walk only threadgroup leaders */
41 #define CSS_TASK_ITER_PROCS		(1U << 0)
42 /* walk all threaded css_sets in the domain */
43 #define CSS_TASK_ITER_THREADED		(1U << 1)
44 
45 /* internal flags */
46 #define CSS_TASK_ITER_SKIPPED		(1U << 16)
47 
48 /* a css_task_iter should be treated as an opaque object */
49 struct css_task_iter {
50 	struct cgroup_subsys		*ss;
51 	unsigned int			flags;
52 
53 	struct list_head		*cset_pos;
54 	struct list_head		*cset_head;
55 
56 	struct list_head		*tcset_pos;
57 	struct list_head		*tcset_head;
58 
59 	struct list_head		*task_pos;
60 	struct list_head		*tasks_head;
61 	struct list_head		*mg_tasks_head;
62 	struct list_head		*dying_tasks_head;
63 
64 	struct list_head		*cur_tasks_head;
65 	struct css_set			*cur_cset;
66 	struct css_set			*cur_dcset;
67 	struct task_struct		*cur_task;
68 	struct list_head		iters_node;	/* css_set->task_iters */
69 };
70 
71 extern struct cgroup_root cgrp_dfl_root;
72 extern struct css_set init_css_set;
73 
74 #define SUBSYS(_x) extern struct cgroup_subsys _x ## _cgrp_subsys;
75 #include <linux/cgroup_subsys.h>
76 #undef SUBSYS
77 
78 #define SUBSYS(_x)								\
79 	extern struct static_key_true _x ## _cgrp_subsys_enabled_key;		\
80 	extern struct static_key_true _x ## _cgrp_subsys_on_dfl_key;
81 #include <linux/cgroup_subsys.h>
82 #undef SUBSYS
83 
84 /**
85  * cgroup_subsys_enabled - fast test on whether a subsys is enabled
86  * @ss: subsystem in question
87  */
88 #define cgroup_subsys_enabled(ss)						\
89 	static_branch_likely(&ss ## _enabled_key)
90 
91 /**
92  * cgroup_subsys_on_dfl - fast test on whether a subsys is on default hierarchy
93  * @ss: subsystem in question
94  */
95 #define cgroup_subsys_on_dfl(ss)						\
96 	static_branch_likely(&ss ## _on_dfl_key)
97 
98 bool css_has_online_children(struct cgroup_subsys_state *css);
99 struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss);
100 struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgroup,
101 					     struct cgroup_subsys *ss);
102 struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
103 						       struct cgroup_subsys *ss);
104 
105 struct cgroup *cgroup_get_from_path(const char *path);
106 struct cgroup *cgroup_get_from_fd(int fd);
107 
108 int cgroup_attach_task_all(struct task_struct *from, struct task_struct *);
109 int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from);
110 
111 int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts);
112 int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts);
113 int cgroup_rm_cftypes(struct cftype *cfts);
114 void cgroup_file_notify(struct cgroup_file *cfile);
115 
116 int task_cgroup_path(struct task_struct *task, char *buf, size_t buflen);
117 int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry);
118 int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
119 		     struct pid *pid, struct task_struct *tsk);
120 
121 void cgroup_fork(struct task_struct *p);
122 extern int cgroup_can_fork(struct task_struct *p);
123 extern void cgroup_cancel_fork(struct task_struct *p);
124 extern void cgroup_post_fork(struct task_struct *p);
125 void cgroup_exit(struct task_struct *p);
126 void cgroup_release(struct task_struct *p);
127 void cgroup_free(struct task_struct *p);
128 
129 int cgroup_init_early(void);
130 int cgroup_init(void);
131 
132 /*
133  * Iteration helpers and macros.
134  */
135 
136 struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
137 					   struct cgroup_subsys_state *parent);
138 struct cgroup_subsys_state *css_next_descendant_pre(struct cgroup_subsys_state *pos,
139 						    struct cgroup_subsys_state *css);
140 struct cgroup_subsys_state *css_rightmost_descendant(struct cgroup_subsys_state *pos);
141 struct cgroup_subsys_state *css_next_descendant_post(struct cgroup_subsys_state *pos,
142 						     struct cgroup_subsys_state *css);
143 
144 struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset,
145 					 struct cgroup_subsys_state **dst_cssp);
146 struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset,
147 					struct cgroup_subsys_state **dst_cssp);
148 
149 void css_task_iter_start(struct cgroup_subsys_state *css, unsigned int flags,
150 			 struct css_task_iter *it);
151 struct task_struct *css_task_iter_next(struct css_task_iter *it);
152 void css_task_iter_end(struct css_task_iter *it);
153 
154 /**
155  * css_for_each_child - iterate through children of a css
156  * @pos: the css * to use as the loop cursor
157  * @parent: css whose children to walk
158  *
159  * Walk @parent's children.  Must be called under rcu_read_lock().
160  *
161  * If a subsystem synchronizes ->css_online() and the start of iteration, a
162  * css which finished ->css_online() is guaranteed to be visible in the
163  * future iterations and will stay visible until the last reference is put.
164  * A css which hasn't finished ->css_online() or already finished
165  * ->css_offline() may show up during traversal.  It's each subsystem's
166  * responsibility to synchronize against on/offlining.
167  *
168  * It is allowed to temporarily drop RCU read lock during iteration.  The
169  * caller is responsible for ensuring that @pos remains accessible until
170  * the start of the next iteration by, for example, bumping the css refcnt.
171  */
172 #define css_for_each_child(pos, parent)					\
173 	for ((pos) = css_next_child(NULL, (parent)); (pos);		\
174 	     (pos) = css_next_child((pos), (parent)))
175 
176 /**
177  * css_for_each_descendant_pre - pre-order walk of a css's descendants
178  * @pos: the css * to use as the loop cursor
179  * @root: css whose descendants to walk
180  *
181  * Walk @root's descendants.  @root is included in the iteration and the
182  * first node to be visited.  Must be called under rcu_read_lock().
183  *
184  * If a subsystem synchronizes ->css_online() and the start of iteration, a
185  * css which finished ->css_online() is guaranteed to be visible in the
186  * future iterations and will stay visible until the last reference is put.
187  * A css which hasn't finished ->css_online() or already finished
188  * ->css_offline() may show up during traversal.  It's each subsystem's
189  * responsibility to synchronize against on/offlining.
190  *
191  * For example, the following guarantees that a descendant can't escape
192  * state updates of its ancestors.
193  *
194  * my_online(@css)
195  * {
196  *	Lock @css's parent and @css;
197  *	Inherit state from the parent;
198  *	Unlock both.
199  * }
200  *
201  * my_update_state(@css)
202  * {
203  *	css_for_each_descendant_pre(@pos, @css) {
204  *		Lock @pos;
205  *		if (@pos == @css)
206  *			Update @css's state;
207  *		else
208  *			Verify @pos is alive and inherit state from its parent;
209  *		Unlock @pos;
210  *	}
211  * }
212  *
213  * As long as the inheriting step, including checking the parent state, is
214  * enclosed inside @pos locking, double-locking the parent isn't necessary
215  * while inheriting.  The state update to the parent is guaranteed to be
216  * visible by walking order and, as long as inheriting operations to the
217  * same @pos are atomic to each other, multiple updates racing each other
218  * still result in the correct state.  It's guaranateed that at least one
219  * inheritance happens for any css after the latest update to its parent.
220  *
221  * If checking parent's state requires locking the parent, each inheriting
222  * iteration should lock and unlock both @pos->parent and @pos.
223  *
224  * Alternatively, a subsystem may choose to use a single global lock to
225  * synchronize ->css_online() and ->css_offline() against tree-walking
226  * operations.
227  *
228  * It is allowed to temporarily drop RCU read lock during iteration.  The
229  * caller is responsible for ensuring that @pos remains accessible until
230  * the start of the next iteration by, for example, bumping the css refcnt.
231  */
232 #define css_for_each_descendant_pre(pos, css)				\
233 	for ((pos) = css_next_descendant_pre(NULL, (css)); (pos);	\
234 	     (pos) = css_next_descendant_pre((pos), (css)))
235 
236 /**
237  * css_for_each_descendant_post - post-order walk of a css's descendants
238  * @pos: the css * to use as the loop cursor
239  * @css: css whose descendants to walk
240  *
241  * Similar to css_for_each_descendant_pre() but performs post-order
242  * traversal instead.  @root is included in the iteration and the last
243  * node to be visited.
244  *
245  * If a subsystem synchronizes ->css_online() and the start of iteration, a
246  * css which finished ->css_online() is guaranteed to be visible in the
247  * future iterations and will stay visible until the last reference is put.
248  * A css which hasn't finished ->css_online() or already finished
249  * ->css_offline() may show up during traversal.  It's each subsystem's
250  * responsibility to synchronize against on/offlining.
251  *
252  * Note that the walk visibility guarantee example described in pre-order
253  * walk doesn't apply the same to post-order walks.
254  */
255 #define css_for_each_descendant_post(pos, css)				\
256 	for ((pos) = css_next_descendant_post(NULL, (css)); (pos);	\
257 	     (pos) = css_next_descendant_post((pos), (css)))
258 
259 /**
260  * cgroup_taskset_for_each - iterate cgroup_taskset
261  * @task: the loop cursor
262  * @dst_css: the destination css
263  * @tset: taskset to iterate
264  *
265  * @tset may contain multiple tasks and they may belong to multiple
266  * processes.
267  *
268  * On the v2 hierarchy, there may be tasks from multiple processes and they
269  * may not share the source or destination csses.
270  *
271  * On traditional hierarchies, when there are multiple tasks in @tset, if a
272  * task of a process is in @tset, all tasks of the process are in @tset.
273  * Also, all are guaranteed to share the same source and destination csses.
274  *
275  * Iteration is not in any specific order.
276  */
277 #define cgroup_taskset_for_each(task, dst_css, tset)			\
278 	for ((task) = cgroup_taskset_first((tset), &(dst_css));		\
279 	     (task);							\
280 	     (task) = cgroup_taskset_next((tset), &(dst_css)))
281 
282 /**
283  * cgroup_taskset_for_each_leader - iterate group leaders in a cgroup_taskset
284  * @leader: the loop cursor
285  * @dst_css: the destination css
286  * @tset: taskset to iterate
287  *
288  * Iterate threadgroup leaders of @tset.  For single-task migrations, @tset
289  * may not contain any.
290  */
291 #define cgroup_taskset_for_each_leader(leader, dst_css, tset)		\
292 	for ((leader) = cgroup_taskset_first((tset), &(dst_css));	\
293 	     (leader);							\
294 	     (leader) = cgroup_taskset_next((tset), &(dst_css)))	\
295 		if ((leader) != (leader)->group_leader)			\
296 			;						\
297 		else
298 
299 /*
300  * Inline functions.
301  */
302 
303 /**
304  * css_get - obtain a reference on the specified css
305  * @css: target css
306  *
307  * The caller must already have a reference.
308  */
css_get(struct cgroup_subsys_state * css)309 static inline void css_get(struct cgroup_subsys_state *css)
310 {
311 	if (!(css->flags & CSS_NO_REF))
312 		percpu_ref_get(&css->refcnt);
313 }
314 
315 /**
316  * css_get_many - obtain references on the specified css
317  * @css: target css
318  * @n: number of references to get
319  *
320  * The caller must already have a reference.
321  */
css_get_many(struct cgroup_subsys_state * css,unsigned int n)322 static inline void css_get_many(struct cgroup_subsys_state *css, unsigned int n)
323 {
324 	if (!(css->flags & CSS_NO_REF))
325 		percpu_ref_get_many(&css->refcnt, n);
326 }
327 
328 /**
329  * css_tryget - try to obtain a reference on the specified css
330  * @css: target css
331  *
332  * Obtain a reference on @css unless it already has reached zero and is
333  * being released.  This function doesn't care whether @css is on or
334  * offline.  The caller naturally needs to ensure that @css is accessible
335  * but doesn't have to be holding a reference on it - IOW, RCU protected
336  * access is good enough for this function.  Returns %true if a reference
337  * count was successfully obtained; %false otherwise.
338  */
css_tryget(struct cgroup_subsys_state * css)339 static inline bool css_tryget(struct cgroup_subsys_state *css)
340 {
341 	if (!(css->flags & CSS_NO_REF))
342 		return percpu_ref_tryget(&css->refcnt);
343 	return true;
344 }
345 
346 /**
347  * css_tryget_online - try to obtain a reference on the specified css if online
348  * @css: target css
349  *
350  * Obtain a reference on @css if it's online.  The caller naturally needs
351  * to ensure that @css is accessible but doesn't have to be holding a
352  * reference on it - IOW, RCU protected access is good enough for this
353  * function.  Returns %true if a reference count was successfully obtained;
354  * %false otherwise.
355  */
css_tryget_online(struct cgroup_subsys_state * css)356 static inline bool css_tryget_online(struct cgroup_subsys_state *css)
357 {
358 	if (!(css->flags & CSS_NO_REF))
359 		return percpu_ref_tryget_live(&css->refcnt);
360 	return true;
361 }
362 
363 /**
364  * css_is_dying - test whether the specified css is dying
365  * @css: target css
366  *
367  * Test whether @css is in the process of offlining or already offline.  In
368  * most cases, ->css_online() and ->css_offline() callbacks should be
369  * enough; however, the actual offline operations are RCU delayed and this
370  * test returns %true also when @css is scheduled to be offlined.
371  *
372  * This is useful, for example, when the use case requires synchronous
373  * behavior with respect to cgroup removal.  cgroup removal schedules css
374  * offlining but the css can seem alive while the operation is being
375  * delayed.  If the delay affects user visible semantics, this test can be
376  * used to resolve the situation.
377  */
css_is_dying(struct cgroup_subsys_state * css)378 static inline bool css_is_dying(struct cgroup_subsys_state *css)
379 {
380 	return !(css->flags & CSS_NO_REF) && percpu_ref_is_dying(&css->refcnt);
381 }
382 
383 /**
384  * css_put - put a css reference
385  * @css: target css
386  *
387  * Put a reference obtained via css_get() and css_tryget_online().
388  */
css_put(struct cgroup_subsys_state * css)389 static inline void css_put(struct cgroup_subsys_state *css)
390 {
391 	if (!(css->flags & CSS_NO_REF))
392 		percpu_ref_put(&css->refcnt);
393 }
394 
395 /**
396  * css_put_many - put css references
397  * @css: target css
398  * @n: number of references to put
399  *
400  * Put references obtained via css_get() and css_tryget_online().
401  */
css_put_many(struct cgroup_subsys_state * css,unsigned int n)402 static inline void css_put_many(struct cgroup_subsys_state *css, unsigned int n)
403 {
404 	if (!(css->flags & CSS_NO_REF))
405 		percpu_ref_put_many(&css->refcnt, n);
406 }
407 
cgroup_get(struct cgroup * cgrp)408 static inline void cgroup_get(struct cgroup *cgrp)
409 {
410 	css_get(&cgrp->self);
411 }
412 
cgroup_tryget(struct cgroup * cgrp)413 static inline bool cgroup_tryget(struct cgroup *cgrp)
414 {
415 	return css_tryget(&cgrp->self);
416 }
417 
cgroup_put(struct cgroup * cgrp)418 static inline void cgroup_put(struct cgroup *cgrp)
419 {
420 	css_put(&cgrp->self);
421 }
422 
423 /**
424  * task_css_set_check - obtain a task's css_set with extra access conditions
425  * @task: the task to obtain css_set for
426  * @__c: extra condition expression to be passed to rcu_dereference_check()
427  *
428  * A task's css_set is RCU protected, initialized and exited while holding
429  * task_lock(), and can only be modified while holding both cgroup_mutex
430  * and task_lock() while the task is alive.  This macro verifies that the
431  * caller is inside proper critical section and returns @task's css_set.
432  *
433  * The caller can also specify additional allowed conditions via @__c, such
434  * as locks used during the cgroup_subsys::attach() methods.
435  */
436 #ifdef CONFIG_PROVE_RCU
437 extern struct mutex cgroup_mutex;
438 extern spinlock_t css_set_lock;
439 #define task_css_set_check(task, __c)					\
440 	rcu_dereference_check((task)->cgroups,				\
441 		lockdep_is_held(&cgroup_mutex) ||			\
442 		lockdep_is_held(&css_set_lock) ||			\
443 		((task)->flags & PF_EXITING) || (__c))
444 #else
445 #define task_css_set_check(task, __c)					\
446 	rcu_dereference((task)->cgroups)
447 #endif
448 
449 /**
450  * task_css_check - obtain css for (task, subsys) w/ extra access conds
451  * @task: the target task
452  * @subsys_id: the target subsystem ID
453  * @__c: extra condition expression to be passed to rcu_dereference_check()
454  *
455  * Return the cgroup_subsys_state for the (@task, @subsys_id) pair.  The
456  * synchronization rules are the same as task_css_set_check().
457  */
458 #define task_css_check(task, subsys_id, __c)				\
459 	task_css_set_check((task), (__c))->subsys[(subsys_id)]
460 
461 /**
462  * task_css_set - obtain a task's css_set
463  * @task: the task to obtain css_set for
464  *
465  * See task_css_set_check().
466  */
task_css_set(struct task_struct * task)467 static inline struct css_set *task_css_set(struct task_struct *task)
468 {
469 	return task_css_set_check(task, false);
470 }
471 
472 /**
473  * task_css - obtain css for (task, subsys)
474  * @task: the target task
475  * @subsys_id: the target subsystem ID
476  *
477  * See task_css_check().
478  */
task_css(struct task_struct * task,int subsys_id)479 static inline struct cgroup_subsys_state *task_css(struct task_struct *task,
480 						   int subsys_id)
481 {
482 	return task_css_check(task, subsys_id, false);
483 }
484 
485 /**
486  * task_get_css - find and get the css for (task, subsys)
487  * @task: the target task
488  * @subsys_id: the target subsystem ID
489  *
490  * Find the css for the (@task, @subsys_id) combination, increment a
491  * reference on and return it.  This function is guaranteed to return a
492  * valid css.  The returned css may already have been offlined.
493  */
494 static inline struct cgroup_subsys_state *
task_get_css(struct task_struct * task,int subsys_id)495 task_get_css(struct task_struct *task, int subsys_id)
496 {
497 	struct cgroup_subsys_state *css;
498 
499 	rcu_read_lock();
500 	while (true) {
501 		css = task_css(task, subsys_id);
502 		/*
503 		 * Can't use css_tryget_online() here.  A task which has
504 		 * PF_EXITING set may stay associated with an offline css.
505 		 * If such task calls this function, css_tryget_online()
506 		 * will keep failing.
507 		 */
508 		if (likely(css_tryget(css)))
509 			break;
510 		cpu_relax();
511 	}
512 	rcu_read_unlock();
513 	return css;
514 }
515 
516 /**
517  * task_css_is_root - test whether a task belongs to the root css
518  * @task: the target task
519  * @subsys_id: the target subsystem ID
520  *
521  * Test whether @task belongs to the root css on the specified subsystem.
522  * May be invoked in any context.
523  */
task_css_is_root(struct task_struct * task,int subsys_id)524 static inline bool task_css_is_root(struct task_struct *task, int subsys_id)
525 {
526 	return task_css_check(task, subsys_id, true) ==
527 		init_css_set.subsys[subsys_id];
528 }
529 
task_cgroup(struct task_struct * task,int subsys_id)530 static inline struct cgroup *task_cgroup(struct task_struct *task,
531 					 int subsys_id)
532 {
533 	return task_css(task, subsys_id)->cgroup;
534 }
535 
task_dfl_cgroup(struct task_struct * task)536 static inline struct cgroup *task_dfl_cgroup(struct task_struct *task)
537 {
538 	return task_css_set(task)->dfl_cgrp;
539 }
540 
cgroup_parent(struct cgroup * cgrp)541 static inline struct cgroup *cgroup_parent(struct cgroup *cgrp)
542 {
543 	struct cgroup_subsys_state *parent_css = cgrp->self.parent;
544 
545 	if (parent_css)
546 		return container_of(parent_css, struct cgroup, self);
547 	return NULL;
548 }
549 
550 /**
551  * cgroup_is_descendant - test ancestry
552  * @cgrp: the cgroup to be tested
553  * @ancestor: possible ancestor of @cgrp
554  *
555  * Test whether @cgrp is a descendant of @ancestor.  It also returns %true
556  * if @cgrp == @ancestor.  This function is safe to call as long as @cgrp
557  * and @ancestor are accessible.
558  */
cgroup_is_descendant(struct cgroup * cgrp,struct cgroup * ancestor)559 static inline bool cgroup_is_descendant(struct cgroup *cgrp,
560 					struct cgroup *ancestor)
561 {
562 	if (cgrp->root != ancestor->root || cgrp->level < ancestor->level)
563 		return false;
564 	return cgrp->ancestor_ids[ancestor->level] == ancestor->id;
565 }
566 
567 /**
568  * task_under_cgroup_hierarchy - test task's membership of cgroup ancestry
569  * @task: the task to be tested
570  * @ancestor: possible ancestor of @task's cgroup
571  *
572  * Tests whether @task's default cgroup hierarchy is a descendant of @ancestor.
573  * It follows all the same rules as cgroup_is_descendant, and only applies
574  * to the default hierarchy.
575  */
task_under_cgroup_hierarchy(struct task_struct * task,struct cgroup * ancestor)576 static inline bool task_under_cgroup_hierarchy(struct task_struct *task,
577 					       struct cgroup *ancestor)
578 {
579 	struct css_set *cset = task_css_set(task);
580 
581 	return cgroup_is_descendant(cset->dfl_cgrp, ancestor);
582 }
583 
584 /* no synchronization, the result can only be used as a hint */
cgroup_is_populated(struct cgroup * cgrp)585 static inline bool cgroup_is_populated(struct cgroup *cgrp)
586 {
587 	return cgrp->nr_populated_csets + cgrp->nr_populated_domain_children +
588 		cgrp->nr_populated_threaded_children;
589 }
590 
591 /* returns ino associated with a cgroup */
cgroup_ino(struct cgroup * cgrp)592 static inline ino_t cgroup_ino(struct cgroup *cgrp)
593 {
594 	return cgrp->kn->id.ino;
595 }
596 
597 /* cft/css accessors for cftype->write() operation */
of_cft(struct kernfs_open_file * of)598 static inline struct cftype *of_cft(struct kernfs_open_file *of)
599 {
600 	return of->kn->priv;
601 }
602 
603 struct cgroup_subsys_state *of_css(struct kernfs_open_file *of);
604 
605 /* cft/css accessors for cftype->seq_*() operations */
seq_cft(struct seq_file * seq)606 static inline struct cftype *seq_cft(struct seq_file *seq)
607 {
608 	return of_cft(seq->private);
609 }
610 
seq_css(struct seq_file * seq)611 static inline struct cgroup_subsys_state *seq_css(struct seq_file *seq)
612 {
613 	return of_css(seq->private);
614 }
615 
616 /*
617  * Name / path handling functions.  All are thin wrappers around the kernfs
618  * counterparts and can be called under any context.
619  */
620 
cgroup_name(struct cgroup * cgrp,char * buf,size_t buflen)621 static inline int cgroup_name(struct cgroup *cgrp, char *buf, size_t buflen)
622 {
623 	return kernfs_name(cgrp->kn, buf, buflen);
624 }
625 
cgroup_path(struct cgroup * cgrp,char * buf,size_t buflen)626 static inline int cgroup_path(struct cgroup *cgrp, char *buf, size_t buflen)
627 {
628 	return kernfs_path(cgrp->kn, buf, buflen);
629 }
630 
pr_cont_cgroup_name(struct cgroup * cgrp)631 static inline void pr_cont_cgroup_name(struct cgroup *cgrp)
632 {
633 	pr_cont_kernfs_name(cgrp->kn);
634 }
635 
pr_cont_cgroup_path(struct cgroup * cgrp)636 static inline void pr_cont_cgroup_path(struct cgroup *cgrp)
637 {
638 	pr_cont_kernfs_path(cgrp->kn);
639 }
640 
cgroup_psi(struct cgroup * cgrp)641 static inline struct psi_group *cgroup_psi(struct cgroup *cgrp)
642 {
643 	return &cgrp->psi;
644 }
645 
cgroup_init_kthreadd(void)646 static inline void cgroup_init_kthreadd(void)
647 {
648 	/*
649 	 * kthreadd is inherited by all kthreads, keep it in the root so
650 	 * that the new kthreads are guaranteed to stay in the root until
651 	 * initialization is finished.
652 	 */
653 	current->no_cgroup_migration = 1;
654 }
655 
cgroup_kthread_ready(void)656 static inline void cgroup_kthread_ready(void)
657 {
658 	/*
659 	 * This kthread finished initialization.  The creator should have
660 	 * set PF_NO_SETAFFINITY if this kthread should stay in the root.
661 	 */
662 	current->no_cgroup_migration = 0;
663 }
664 
cgroup_get_kernfs_id(struct cgroup * cgrp)665 static inline union kernfs_node_id *cgroup_get_kernfs_id(struct cgroup *cgrp)
666 {
667 	return &cgrp->kn->id;
668 }
669 
670 void cgroup_path_from_kernfs_id(const union kernfs_node_id *id,
671 					char *buf, size_t buflen);
672 #else /* !CONFIG_CGROUPS */
673 
674 struct cgroup_subsys_state;
675 struct cgroup;
676 
css_put(struct cgroup_subsys_state * css)677 static inline void css_put(struct cgroup_subsys_state *css) {}
cgroup_attach_task_all(struct task_struct * from,struct task_struct * t)678 static inline int cgroup_attach_task_all(struct task_struct *from,
679 					 struct task_struct *t) { return 0; }
cgroupstats_build(struct cgroupstats * stats,struct dentry * dentry)680 static inline int cgroupstats_build(struct cgroupstats *stats,
681 				    struct dentry *dentry) { return -EINVAL; }
682 
cgroup_fork(struct task_struct * p)683 static inline void cgroup_fork(struct task_struct *p) {}
cgroup_can_fork(struct task_struct * p)684 static inline int cgroup_can_fork(struct task_struct *p) { return 0; }
cgroup_cancel_fork(struct task_struct * p)685 static inline void cgroup_cancel_fork(struct task_struct *p) {}
cgroup_post_fork(struct task_struct * p)686 static inline void cgroup_post_fork(struct task_struct *p) {}
cgroup_exit(struct task_struct * p)687 static inline void cgroup_exit(struct task_struct *p) {}
cgroup_release(struct task_struct * p)688 static inline void cgroup_release(struct task_struct *p) {}
cgroup_free(struct task_struct * p)689 static inline void cgroup_free(struct task_struct *p) {}
690 
cgroup_init_early(void)691 static inline int cgroup_init_early(void) { return 0; }
cgroup_init(void)692 static inline int cgroup_init(void) { return 0; }
cgroup_init_kthreadd(void)693 static inline void cgroup_init_kthreadd(void) {}
cgroup_kthread_ready(void)694 static inline void cgroup_kthread_ready(void) {}
cgroup_get_kernfs_id(struct cgroup * cgrp)695 static inline union kernfs_node_id *cgroup_get_kernfs_id(struct cgroup *cgrp)
696 {
697 	return NULL;
698 }
699 
cgroup_parent(struct cgroup * cgrp)700 static inline struct cgroup *cgroup_parent(struct cgroup *cgrp)
701 {
702 	return NULL;
703 }
704 
cgroup_psi(struct cgroup * cgrp)705 static inline struct psi_group *cgroup_psi(struct cgroup *cgrp)
706 {
707 	return NULL;
708 }
709 
task_under_cgroup_hierarchy(struct task_struct * task,struct cgroup * ancestor)710 static inline bool task_under_cgroup_hierarchy(struct task_struct *task,
711 					       struct cgroup *ancestor)
712 {
713 	return true;
714 }
715 
cgroup_path_from_kernfs_id(const union kernfs_node_id * id,char * buf,size_t buflen)716 static inline void cgroup_path_from_kernfs_id(const union kernfs_node_id *id,
717 	char *buf, size_t buflen) {}
718 #endif /* !CONFIG_CGROUPS */
719 
720 /*
721  * sock->sk_cgrp_data handling.  For more info, see sock_cgroup_data
722  * definition in cgroup-defs.h.
723  */
724 #ifdef CONFIG_SOCK_CGROUP_DATA
725 
726 #if defined(CONFIG_CGROUP_NET_PRIO) || defined(CONFIG_CGROUP_NET_CLASSID)
727 extern spinlock_t cgroup_sk_update_lock;
728 #endif
729 
730 void cgroup_sk_alloc_disable(void);
731 void cgroup_sk_alloc(struct sock_cgroup_data *skcd);
732 void cgroup_sk_free(struct sock_cgroup_data *skcd);
733 
sock_cgroup_ptr(struct sock_cgroup_data * skcd)734 static inline struct cgroup *sock_cgroup_ptr(struct sock_cgroup_data *skcd)
735 {
736 #if defined(CONFIG_CGROUP_NET_PRIO) || defined(CONFIG_CGROUP_NET_CLASSID)
737 	unsigned long v;
738 
739 	/*
740 	 * @skcd->val is 64bit but the following is safe on 32bit too as we
741 	 * just need the lower ulong to be written and read atomically.
742 	 */
743 	v = READ_ONCE(skcd->val);
744 
745 	if (v & 1)
746 		return &cgrp_dfl_root.cgrp;
747 
748 	return (struct cgroup *)(unsigned long)v ?: &cgrp_dfl_root.cgrp;
749 #else
750 	return (struct cgroup *)(unsigned long)skcd->val;
751 #endif
752 }
753 
754 #else	/* CONFIG_CGROUP_DATA */
755 
cgroup_sk_alloc(struct sock_cgroup_data * skcd)756 static inline void cgroup_sk_alloc(struct sock_cgroup_data *skcd) {}
cgroup_sk_free(struct sock_cgroup_data * skcd)757 static inline void cgroup_sk_free(struct sock_cgroup_data *skcd) {}
758 
759 #endif	/* CONFIG_CGROUP_DATA */
760 
761 struct cgroup_namespace {
762 	refcount_t		count;
763 	struct ns_common	ns;
764 	struct user_namespace	*user_ns;
765 	struct ucounts		*ucounts;
766 	struct css_set          *root_cset;
767 };
768 
769 extern struct cgroup_namespace init_cgroup_ns;
770 
771 #ifdef CONFIG_CGROUPS
772 
773 void free_cgroup_ns(struct cgroup_namespace *ns);
774 
775 struct cgroup_namespace *copy_cgroup_ns(unsigned long flags,
776 					struct user_namespace *user_ns,
777 					struct cgroup_namespace *old_ns);
778 
779 int cgroup_path_ns(struct cgroup *cgrp, char *buf, size_t buflen,
780 		   struct cgroup_namespace *ns);
781 
782 #else /* !CONFIG_CGROUPS */
783 
free_cgroup_ns(struct cgroup_namespace * ns)784 static inline void free_cgroup_ns(struct cgroup_namespace *ns) { }
785 static inline struct cgroup_namespace *
copy_cgroup_ns(unsigned long flags,struct user_namespace * user_ns,struct cgroup_namespace * old_ns)786 copy_cgroup_ns(unsigned long flags, struct user_namespace *user_ns,
787 	       struct cgroup_namespace *old_ns)
788 {
789 	return old_ns;
790 }
791 
792 #endif /* !CONFIG_CGROUPS */
793 
get_cgroup_ns(struct cgroup_namespace * ns)794 static inline void get_cgroup_ns(struct cgroup_namespace *ns)
795 {
796 	if (ns)
797 		refcount_inc(&ns->count);
798 }
799 
put_cgroup_ns(struct cgroup_namespace * ns)800 static inline void put_cgroup_ns(struct cgroup_namespace *ns)
801 {
802 	if (ns && refcount_dec_and_test(&ns->count))
803 		free_cgroup_ns(ns);
804 }
805 
806 #endif /* _LINUX_CGROUP_H */
807