2549493d518d0dcb07358189fe82fa81039db7c8
[firefly-linux-kernel-4.4.55.git] / include / linux / cgroup.h
1 #ifndef _LINUX_CGROUP_H
2 #define _LINUX_CGROUP_H
3 /*
4  *  cgroup interface
5  *
6  *  Copyright (C) 2003 BULL SA
7  *  Copyright (C) 2004-2006 Silicon Graphics, Inc.
8  *
9  */
10
11 #include <linux/sched.h>
12 #include <linux/cpumask.h>
13 #include <linux/nodemask.h>
14 #include <linux/rcupdate.h>
15 #include <linux/rculist.h>
16 #include <linux/cgroupstats.h>
17 #include <linux/rwsem.h>
18 #include <linux/idr.h>
19 #include <linux/workqueue.h>
20 #include <linux/fs.h>
21 #include <linux/percpu-refcount.h>
22 #include <linux/seq_file.h>
23 #include <linux/kernfs.h>
24 #include <linux/wait.h>
25
26 #ifdef CONFIG_CGROUPS
27
28 struct cgroup_root;
29 struct cgroup_subsys;
30 struct inode;
31 struct cgroup;
32
33 extern int cgroup_init_early(void);
34 extern int cgroup_init(void);
35 extern void cgroup_fork(struct task_struct *p);
36 extern void cgroup_post_fork(struct task_struct *p);
37 extern void cgroup_exit(struct task_struct *p);
38 extern int cgroupstats_build(struct cgroupstats *stats,
39                                 struct dentry *dentry);
40
41 extern int proc_cgroup_show(struct seq_file *, void *);
42
43 /* define the enumeration of all cgroup subsystems */
44 #define SUBSYS(_x) _x ## _cgrp_id,
45 enum cgroup_subsys_id {
46 #include <linux/cgroup_subsys.h>
47         CGROUP_SUBSYS_COUNT,
48 };
49 #undef SUBSYS
50
51 /*
52  * Per-subsystem/per-cgroup state maintained by the system.  This is the
53  * fundamental structural building block that controllers deal with.
54  *
55  * Fields marked with "PI:" are public and immutable and may be accessed
56  * directly without synchronization.
57  */
58 struct cgroup_subsys_state {
59         /* PI: the cgroup that this css is attached to */
60         struct cgroup *cgroup;
61
62         /* PI: the cgroup subsystem that this css is attached to */
63         struct cgroup_subsys *ss;
64
65         /* reference count - access via css_[try]get() and css_put() */
66         struct percpu_ref refcnt;
67
68         /* PI: the parent css */
69         struct cgroup_subsys_state *parent;
70
71         /*
72          * PI: Subsys-unique ID.  0 is unused and root is always 1.  The
73          * matching css can be looked up using css_from_id().
74          */
75         int id;
76
77         unsigned int flags;
78
79         /* percpu_ref killing and RCU release */
80         struct rcu_head rcu_head;
81         struct work_struct destroy_work;
82 };
83
84 /* bits in struct cgroup_subsys_state flags field */
85 enum {
86         CSS_NO_REF      = (1 << 0), /* no reference counting for this css */
87         CSS_ONLINE      = (1 << 1), /* between ->css_online() and ->css_offline() */
88 };
89
90 /**
91  * css_get - obtain a reference on the specified css
92  * @css: target css
93  *
94  * The caller must already have a reference.
95  */
96 static inline void css_get(struct cgroup_subsys_state *css)
97 {
98         if (!(css->flags & CSS_NO_REF))
99                 percpu_ref_get(&css->refcnt);
100 }
101
102 /**
103  * css_tryget_online - try to obtain a reference on the specified css if online
104  * @css: target css
105  *
106  * Obtain a reference on @css if it's online.  The caller naturally needs
107  * to ensure that @css is accessible but doesn't have to be holding a
108  * reference on it - IOW, RCU protected access is good enough for this
109  * function.  Returns %true if a reference count was successfully obtained;
110  * %false otherwise.
111  */
112 static inline bool css_tryget_online(struct cgroup_subsys_state *css)
113 {
114         if (!(css->flags & CSS_NO_REF))
115                 return percpu_ref_tryget_live(&css->refcnt);
116         return true;
117 }
118
119 /**
120  * css_put - put a css reference
121  * @css: target css
122  *
123  * Put a reference obtained via css_get() and css_tryget_online().
124  */
125 static inline void css_put(struct cgroup_subsys_state *css)
126 {
127         if (!(css->flags & CSS_NO_REF))
128                 percpu_ref_put(&css->refcnt);
129 }
130
131 /* bits in struct cgroup flags field */
132 enum {
133         /* Control Group is dead */
134         CGRP_DEAD,
135         /*
136          * Control Group has previously had a child cgroup or a task,
137          * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set)
138          */
139         CGRP_RELEASABLE,
140         /* Control Group requires release notifications to userspace */
141         CGRP_NOTIFY_ON_RELEASE,
142         /*
143          * Clone the parent's configuration when creating a new child
144          * cpuset cgroup.  For historical reasons, this option can be
145          * specified at mount time and thus is implemented here.
146          */
147         CGRP_CPUSET_CLONE_CHILDREN,
148 };
149
150 struct cgroup {
151         /* self css with NULL ->ss, points back to this cgroup */
152         struct cgroup_subsys_state self;
153
154         unsigned long flags;            /* "unsigned long" so bitops work */
155
156         /*
157          * idr allocated in-hierarchy ID.
158          *
159          * ID 0 is not used, the ID of the root cgroup is always 1, and a
160          * new cgroup will be assigned with a smallest available ID.
161          *
162          * Allocating/Removing ID must be protected by cgroup_mutex.
163          */
164         int id;
165
166         /*
167          * If this cgroup contains any tasks, it contributes one to
168          * populated_cnt.  All children with non-zero popuplated_cnt of
169          * their own contribute one.  The count is zero iff there's no task
170          * in this cgroup or its subtree.
171          */
172         int populated_cnt;
173
174         /*
175          * We link our 'sibling' struct into our parent's 'children'.
176          * Our children link their 'sibling' into our 'children'.
177          */
178         struct list_head sibling;       /* my parent's children */
179         struct list_head children;      /* my children */
180
181         struct cgroup *parent;          /* my parent */
182         struct kernfs_node *kn;         /* cgroup kernfs entry */
183         struct kernfs_node *populated_kn; /* kn for "cgroup.subtree_populated" */
184
185         /*
186          * Monotonically increasing unique serial number which defines a
187          * uniform order among all cgroups.  It's guaranteed that all
188          * ->children lists are in the ascending order of ->serial_nr.
189          * It's used to allow interrupting and resuming iterations.
190          */
191         u64 serial_nr;
192
193         /* the bitmask of subsystems enabled on the child cgroups */
194         unsigned int child_subsys_mask;
195
196         /* Private pointers for each registered subsystem */
197         struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT];
198
199         struct cgroup_root *root;
200
201         /*
202          * List of cgrp_cset_links pointing at css_sets with tasks in this
203          * cgroup.  Protected by css_set_lock.
204          */
205         struct list_head cset_links;
206
207         /*
208          * On the default hierarchy, a css_set for a cgroup with some
209          * susbsys disabled will point to css's which are associated with
210          * the closest ancestor which has the subsys enabled.  The
211          * following lists all css_sets which point to this cgroup's css
212          * for the given subsystem.
213          */
214         struct list_head e_csets[CGROUP_SUBSYS_COUNT];
215
216         /*
217          * Linked list running through all cgroups that can
218          * potentially be reaped by the release agent. Protected by
219          * release_list_lock
220          */
221         struct list_head release_list;
222
223         /*
224          * list of pidlists, up to two for each namespace (one for procs, one
225          * for tasks); created on demand.
226          */
227         struct list_head pidlists;
228         struct mutex pidlist_mutex;
229
230         /* used to wait for offlining of csses */
231         wait_queue_head_t offline_waitq;
232 };
233
234 #define MAX_CGROUP_ROOT_NAMELEN 64
235
236 /* cgroup_root->flags */
237 enum {
238         /*
239          * Unfortunately, cgroup core and various controllers are riddled
240          * with idiosyncrasies and pointless options.  The following flag,
241          * when set, will force sane behavior - some options are forced on,
242          * others are disallowed, and some controllers will change their
243          * hierarchical or other behaviors.
244          *
245          * The set of behaviors affected by this flag are still being
246          * determined and developed and the mount option for this flag is
247          * prefixed with __DEVEL__.  The prefix will be dropped once we
248          * reach the point where all behaviors are compatible with the
249          * planned unified hierarchy, which will automatically turn on this
250          * flag.
251          *
252          * The followings are the behaviors currently affected this flag.
253          *
254          * - Mount options "noprefix", "xattr", "clone_children",
255          *   "release_agent" and "name" are disallowed.
256          *
257          * - When mounting an existing superblock, mount options should
258          *   match.
259          *
260          * - Remount is disallowed.
261          *
262          * - rename(2) is disallowed.
263          *
264          * - "tasks" is removed.  Everything should be at process
265          *   granularity.  Use "cgroup.procs" instead.
266          *
267          * - "cgroup.procs" is not sorted.  pids will be unique unless they
268          *   got recycled inbetween reads.
269          *
270          * - "release_agent" and "notify_on_release" are removed.
271          *   Replacement notification mechanism will be implemented.
272          *
273          * - "cgroup.clone_children" is removed.
274          *
275          * - "cgroup.subtree_populated" is available.  Its value is 0 if
276          *   the cgroup and its descendants contain no task; otherwise, 1.
277          *   The file also generates kernfs notification which can be
278          *   monitored through poll and [di]notify when the value of the
279          *   file changes.
280          *
281          * - If mount is requested with sane_behavior but without any
282          *   subsystem, the default unified hierarchy is mounted.
283          *
284          * - cpuset: tasks will be kept in empty cpusets when hotplug happens
285          *   and take masks of ancestors with non-empty cpus/mems, instead of
286          *   being moved to an ancestor.
287          *
288          * - cpuset: a task can be moved into an empty cpuset, and again it
289          *   takes masks of ancestors.
290          *
291          * - memcg: use_hierarchy is on by default and the cgroup file for
292          *   the flag is not created.
293          *
294          * - blkcg: blk-throttle becomes properly hierarchical.
295          */
296         CGRP_ROOT_SANE_BEHAVIOR = (1 << 0),
297
298         CGRP_ROOT_NOPREFIX      = (1 << 1), /* mounted subsystems have no named prefix */
299         CGRP_ROOT_XATTR         = (1 << 2), /* supports extended attributes */
300
301         /* mount options live below bit 16 */
302         CGRP_ROOT_OPTION_MASK   = (1 << 16) - 1,
303 };
304
305 /*
306  * A cgroup_root represents the root of a cgroup hierarchy, and may be
307  * associated with a kernfs_root to form an active hierarchy.  This is
308  * internal to cgroup core.  Don't access directly from controllers.
309  */
310 struct cgroup_root {
311         struct kernfs_root *kf_root;
312
313         /* The bitmask of subsystems attached to this hierarchy */
314         unsigned int subsys_mask;
315
316         /* Unique id for this hierarchy. */
317         int hierarchy_id;
318
319         /* The root cgroup.  Root is destroyed on its release. */
320         struct cgroup cgrp;
321
322         /* Number of cgroups in the hierarchy, used only for /proc/cgroups */
323         atomic_t nr_cgrps;
324
325         /* A list running through the active hierarchies */
326         struct list_head root_list;
327
328         /* Hierarchy-specific flags */
329         unsigned int flags;
330
331         /* IDs for cgroups in this hierarchy */
332         struct idr cgroup_idr;
333
334         /* The path to use for release notifications. */
335         char release_agent_path[PATH_MAX];
336
337         /* The name for this hierarchy - may be empty */
338         char name[MAX_CGROUP_ROOT_NAMELEN];
339 };
340
341 /*
342  * A css_set is a structure holding pointers to a set of
343  * cgroup_subsys_state objects. This saves space in the task struct
344  * object and speeds up fork()/exit(), since a single inc/dec and a
345  * list_add()/del() can bump the reference count on the entire cgroup
346  * set for a task.
347  */
348
349 struct css_set {
350
351         /* Reference count */
352         atomic_t refcount;
353
354         /*
355          * List running through all cgroup groups in the same hash
356          * slot. Protected by css_set_lock
357          */
358         struct hlist_node hlist;
359
360         /*
361          * Lists running through all tasks using this cgroup group.
362          * mg_tasks lists tasks which belong to this cset but are in the
363          * process of being migrated out or in.  Protected by
364          * css_set_rwsem, but, during migration, once tasks are moved to
365          * mg_tasks, it can be read safely while holding cgroup_mutex.
366          */
367         struct list_head tasks;
368         struct list_head mg_tasks;
369
370         /*
371          * List of cgrp_cset_links pointing at cgroups referenced from this
372          * css_set.  Protected by css_set_lock.
373          */
374         struct list_head cgrp_links;
375
376         /* the default cgroup associated with this css_set */
377         struct cgroup *dfl_cgrp;
378
379         /*
380          * Set of subsystem states, one for each subsystem. This array is
381          * immutable after creation apart from the init_css_set during
382          * subsystem registration (at boot time).
383          */
384         struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
385
386         /*
387          * List of csets participating in the on-going migration either as
388          * source or destination.  Protected by cgroup_mutex.
389          */
390         struct list_head mg_preload_node;
391         struct list_head mg_node;
392
393         /*
394          * If this cset is acting as the source of migration the following
395          * two fields are set.  mg_src_cgrp is the source cgroup of the
396          * on-going migration and mg_dst_cset is the destination cset the
397          * target tasks on this cset should be migrated to.  Protected by
398          * cgroup_mutex.
399          */
400         struct cgroup *mg_src_cgrp;
401         struct css_set *mg_dst_cset;
402
403         /*
404          * On the default hierarhcy, ->subsys[ssid] may point to a css
405          * attached to an ancestor instead of the cgroup this css_set is
406          * associated with.  The following node is anchored at
407          * ->subsys[ssid]->cgroup->e_csets[ssid] and provides a way to
408          * iterate through all css's attached to a given cgroup.
409          */
410         struct list_head e_cset_node[CGROUP_SUBSYS_COUNT];
411
412         /* For RCU-protected deletion */
413         struct rcu_head rcu_head;
414 };
415
416 /*
417  * struct cftype: handler definitions for cgroup control files
418  *
419  * When reading/writing to a file:
420  *      - the cgroup to use is file->f_dentry->d_parent->d_fsdata
421  *      - the 'cftype' of the file is file->f_dentry->d_fsdata
422  */
423
424 /* cftype->flags */
425 enum {
426         CFTYPE_ONLY_ON_ROOT     = (1 << 0),     /* only create on root cgrp */
427         CFTYPE_NOT_ON_ROOT      = (1 << 1),     /* don't create on root cgrp */
428         CFTYPE_INSANE           = (1 << 2),     /* don't create if sane_behavior */
429         CFTYPE_NO_PREFIX        = (1 << 3),     /* (DON'T USE FOR NEW FILES) no subsys prefix */
430         CFTYPE_ONLY_ON_DFL      = (1 << 4),     /* only on default hierarchy */
431 };
432
433 #define MAX_CFTYPE_NAME         64
434
435 struct cftype {
436         /*
437          * By convention, the name should begin with the name of the
438          * subsystem, followed by a period.  Zero length string indicates
439          * end of cftype array.
440          */
441         char name[MAX_CFTYPE_NAME];
442         int private;
443         /*
444          * If not 0, file mode is set to this value, otherwise it will
445          * be figured out automatically
446          */
447         umode_t mode;
448
449         /*
450          * The maximum length of string, excluding trailing nul, that can
451          * be passed to write.  If < PAGE_SIZE-1, PAGE_SIZE-1 is assumed.
452          */
453         size_t max_write_len;
454
455         /* CFTYPE_* flags */
456         unsigned int flags;
457
458         /*
459          * Fields used for internal bookkeeping.  Initialized automatically
460          * during registration.
461          */
462         struct cgroup_subsys *ss;       /* NULL for cgroup core files */
463         struct list_head node;          /* anchored at ss->cfts */
464         struct kernfs_ops *kf_ops;
465
466         /*
467          * read_u64() is a shortcut for the common case of returning a
468          * single integer. Use it in place of read()
469          */
470         u64 (*read_u64)(struct cgroup_subsys_state *css, struct cftype *cft);
471         /*
472          * read_s64() is a signed version of read_u64()
473          */
474         s64 (*read_s64)(struct cgroup_subsys_state *css, struct cftype *cft);
475
476         /* generic seq_file read interface */
477         int (*seq_show)(struct seq_file *sf, void *v);
478
479         /* optional ops, implement all or none */
480         void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
481         void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
482         void (*seq_stop)(struct seq_file *sf, void *v);
483
484         /*
485          * write_u64() is a shortcut for the common case of accepting
486          * a single integer (as parsed by simple_strtoull) from
487          * userspace. Use in place of write(); return 0 or error.
488          */
489         int (*write_u64)(struct cgroup_subsys_state *css, struct cftype *cft,
490                          u64 val);
491         /*
492          * write_s64() is a signed version of write_u64()
493          */
494         int (*write_s64)(struct cgroup_subsys_state *css, struct cftype *cft,
495                          s64 val);
496
497         /*
498          * write() is the generic write callback which maps directly to
499          * kernfs write operation and overrides all other operations.
500          * Maximum write size is determined by ->max_write_len.  Use
501          * of_css/cft() to access the associated css and cft.
502          */
503         ssize_t (*write)(struct kernfs_open_file *of,
504                          char *buf, size_t nbytes, loff_t off);
505
506 #ifdef CONFIG_DEBUG_LOCK_ALLOC
507         struct lock_class_key   lockdep_key;
508 #endif
509 };
510
511 extern struct cgroup_root cgrp_dfl_root;
512 extern struct css_set init_css_set;
513
514 static inline bool cgroup_on_dfl(const struct cgroup *cgrp)
515 {
516         return cgrp->root == &cgrp_dfl_root;
517 }
518
519 /*
520  * See the comment above CGRP_ROOT_SANE_BEHAVIOR for details.  This
521  * function can be called as long as @cgrp is accessible.
522  */
523 static inline bool cgroup_sane_behavior(const struct cgroup *cgrp)
524 {
525         return cgrp->root->flags & CGRP_ROOT_SANE_BEHAVIOR;
526 }
527
528 /* no synchronization, the result can only be used as a hint */
529 static inline bool cgroup_has_tasks(struct cgroup *cgrp)
530 {
531         return !list_empty(&cgrp->cset_links);
532 }
533
534 /* returns ino associated with a cgroup, 0 indicates unmounted root */
535 static inline ino_t cgroup_ino(struct cgroup *cgrp)
536 {
537         if (cgrp->kn)
538                 return cgrp->kn->ino;
539         else
540                 return 0;
541 }
542
543 /* cft/css accessors for cftype->write() operation */
544 static inline struct cftype *of_cft(struct kernfs_open_file *of)
545 {
546         return of->kn->priv;
547 }
548
549 struct cgroup_subsys_state *of_css(struct kernfs_open_file *of);
550
551 /* cft/css accessors for cftype->seq_*() operations */
552 static inline struct cftype *seq_cft(struct seq_file *seq)
553 {
554         return of_cft(seq->private);
555 }
556
557 static inline struct cgroup_subsys_state *seq_css(struct seq_file *seq)
558 {
559         return of_css(seq->private);
560 }
561
562 /*
563  * Name / path handling functions.  All are thin wrappers around the kernfs
564  * counterparts and can be called under any context.
565  */
566
567 static inline int cgroup_name(struct cgroup *cgrp, char *buf, size_t buflen)
568 {
569         return kernfs_name(cgrp->kn, buf, buflen);
570 }
571
572 static inline char * __must_check cgroup_path(struct cgroup *cgrp, char *buf,
573                                               size_t buflen)
574 {
575         return kernfs_path(cgrp->kn, buf, buflen);
576 }
577
578 static inline void pr_cont_cgroup_name(struct cgroup *cgrp)
579 {
580         pr_cont_kernfs_name(cgrp->kn);
581 }
582
583 static inline void pr_cont_cgroup_path(struct cgroup *cgrp)
584 {
585         pr_cont_kernfs_path(cgrp->kn);
586 }
587
588 char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen);
589
590 int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts);
591 int cgroup_rm_cftypes(struct cftype *cfts);
592
593 bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor);
594
595 /*
596  * Control Group taskset, used to pass around set of tasks to cgroup_subsys
597  * methods.
598  */
599 struct cgroup_taskset;
600 struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset);
601 struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset);
602
603 /**
604  * cgroup_taskset_for_each - iterate cgroup_taskset
605  * @task: the loop cursor
606  * @tset: taskset to iterate
607  */
608 #define cgroup_taskset_for_each(task, tset)                             \
609         for ((task) = cgroup_taskset_first((tset)); (task);             \
610              (task) = cgroup_taskset_next((tset)))
611
612 /*
613  * Control Group subsystem type.
614  * See Documentation/cgroups/cgroups.txt for details
615  */
616
617 struct cgroup_subsys {
618         struct cgroup_subsys_state *(*css_alloc)(struct cgroup_subsys_state *parent_css);
619         int (*css_online)(struct cgroup_subsys_state *css);
620         void (*css_offline)(struct cgroup_subsys_state *css);
621         void (*css_free)(struct cgroup_subsys_state *css);
622
623         int (*can_attach)(struct cgroup_subsys_state *css,
624                           struct cgroup_taskset *tset);
625         void (*cancel_attach)(struct cgroup_subsys_state *css,
626                               struct cgroup_taskset *tset);
627         void (*attach)(struct cgroup_subsys_state *css,
628                        struct cgroup_taskset *tset);
629         void (*fork)(struct task_struct *task);
630         void (*exit)(struct cgroup_subsys_state *css,
631                      struct cgroup_subsys_state *old_css,
632                      struct task_struct *task);
633         void (*bind)(struct cgroup_subsys_state *root_css);
634
635         int disabled;
636         int early_init;
637
638         /*
639          * If %false, this subsystem is properly hierarchical -
640          * configuration, resource accounting and restriction on a parent
641          * cgroup cover those of its children.  If %true, hierarchy support
642          * is broken in some ways - some subsystems ignore hierarchy
643          * completely while others are only implemented half-way.
644          *
645          * It's now disallowed to create nested cgroups if the subsystem is
646          * broken and cgroup core will emit a warning message on such
647          * cases.  Eventually, all subsystems will be made properly
648          * hierarchical and this will go away.
649          */
650         bool broken_hierarchy;
651         bool warned_broken_hierarchy;
652
653         /* the following two fields are initialized automtically during boot */
654         int id;
655 #define MAX_CGROUP_TYPE_NAMELEN 32
656         const char *name;
657
658         /* link to parent, protected by cgroup_lock() */
659         struct cgroup_root *root;
660
661         /* idr for css->id */
662         struct idr css_idr;
663
664         /*
665          * List of cftypes.  Each entry is the first entry of an array
666          * terminated by zero length name.
667          */
668         struct list_head cfts;
669
670         /* base cftypes, automatically registered with subsys itself */
671         struct cftype *base_cftypes;
672 };
673
674 #define SUBSYS(_x) extern struct cgroup_subsys _x ## _cgrp_subsys;
675 #include <linux/cgroup_subsys.h>
676 #undef SUBSYS
677
678 /**
679  * task_css_set_check - obtain a task's css_set with extra access conditions
680  * @task: the task to obtain css_set for
681  * @__c: extra condition expression to be passed to rcu_dereference_check()
682  *
683  * A task's css_set is RCU protected, initialized and exited while holding
684  * task_lock(), and can only be modified while holding both cgroup_mutex
685  * and task_lock() while the task is alive.  This macro verifies that the
686  * caller is inside proper critical section and returns @task's css_set.
687  *
688  * The caller can also specify additional allowed conditions via @__c, such
689  * as locks used during the cgroup_subsys::attach() methods.
690  */
691 #ifdef CONFIG_PROVE_RCU
692 extern struct mutex cgroup_mutex;
693 extern struct rw_semaphore css_set_rwsem;
694 #define task_css_set_check(task, __c)                                   \
695         rcu_dereference_check((task)->cgroups,                          \
696                 lockdep_is_held(&cgroup_mutex) ||                       \
697                 lockdep_is_held(&css_set_rwsem) ||                      \
698                 ((task)->flags & PF_EXITING) || (__c))
699 #else
700 #define task_css_set_check(task, __c)                                   \
701         rcu_dereference((task)->cgroups)
702 #endif
703
704 /**
705  * task_css_check - obtain css for (task, subsys) w/ extra access conds
706  * @task: the target task
707  * @subsys_id: the target subsystem ID
708  * @__c: extra condition expression to be passed to rcu_dereference_check()
709  *
710  * Return the cgroup_subsys_state for the (@task, @subsys_id) pair.  The
711  * synchronization rules are the same as task_css_set_check().
712  */
713 #define task_css_check(task, subsys_id, __c)                            \
714         task_css_set_check((task), (__c))->subsys[(subsys_id)]
715
716 /**
717  * task_css_set - obtain a task's css_set
718  * @task: the task to obtain css_set for
719  *
720  * See task_css_set_check().
721  */
722 static inline struct css_set *task_css_set(struct task_struct *task)
723 {
724         return task_css_set_check(task, false);
725 }
726
727 /**
728  * task_css - obtain css for (task, subsys)
729  * @task: the target task
730  * @subsys_id: the target subsystem ID
731  *
732  * See task_css_check().
733  */
734 static inline struct cgroup_subsys_state *task_css(struct task_struct *task,
735                                                    int subsys_id)
736 {
737         return task_css_check(task, subsys_id, false);
738 }
739
740 /**
741  * task_css_is_root - test whether a task belongs to the root css
742  * @task: the target task
743  * @subsys_id: the target subsystem ID
744  *
745  * Test whether @task belongs to the root css on the specified subsystem.
746  * May be invoked in any context.
747  */
748 static inline bool task_css_is_root(struct task_struct *task, int subsys_id)
749 {
750         return task_css_check(task, subsys_id, true) ==
751                 init_css_set.subsys[subsys_id];
752 }
753
754 static inline struct cgroup *task_cgroup(struct task_struct *task,
755                                          int subsys_id)
756 {
757         return task_css(task, subsys_id)->cgroup;
758 }
759
760 struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
761                                            struct cgroup_subsys_state *parent);
762
763 struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss);
764
765 /**
766  * css_for_each_child - iterate through children of a css
767  * @pos: the css * to use as the loop cursor
768  * @parent: css whose children to walk
769  *
770  * Walk @parent's children.  Must be called under rcu_read_lock().  A child
771  * css which hasn't finished ->css_online() or already has finished
772  * ->css_offline() may show up during traversal and it's each subsystem's
773  * responsibility to verify that each @pos is alive.
774  *
775  * If a subsystem synchronizes against the parent in its ->css_online() and
776  * before starting iterating, a css which finished ->css_online() is
777  * guaranteed to be visible in the future iterations.
778  *
779  * It is allowed to temporarily drop RCU read lock during iteration.  The
780  * caller is responsible for ensuring that @pos remains accessible until
781  * the start of the next iteration by, for example, bumping the css refcnt.
782  */
783 #define css_for_each_child(pos, parent)                                 \
784         for ((pos) = css_next_child(NULL, (parent)); (pos);             \
785              (pos) = css_next_child((pos), (parent)))
786
787 struct cgroup_subsys_state *
788 css_next_descendant_pre(struct cgroup_subsys_state *pos,
789                         struct cgroup_subsys_state *css);
790
791 struct cgroup_subsys_state *
792 css_rightmost_descendant(struct cgroup_subsys_state *pos);
793
794 /**
795  * css_for_each_descendant_pre - pre-order walk of a css's descendants
796  * @pos: the css * to use as the loop cursor
797  * @root: css whose descendants to walk
798  *
799  * Walk @root's descendants.  @root is included in the iteration and the
800  * first node to be visited.  Must be called under rcu_read_lock().  A
801  * descendant css which hasn't finished ->css_online() or already has
802  * finished ->css_offline() may show up during traversal and it's each
803  * subsystem's responsibility to verify that each @pos is alive.
804  *
805  * If a subsystem synchronizes against the parent in its ->css_online() and
806  * before starting iterating, and synchronizes against @pos on each
807  * iteration, any descendant css which finished ->css_online() is
808  * guaranteed to be visible in the future iterations.
809  *
810  * In other words, the following guarantees that a descendant can't escape
811  * state updates of its ancestors.
812  *
813  * my_online(@css)
814  * {
815  *      Lock @css's parent and @css;
816  *      Inherit state from the parent;
817  *      Unlock both.
818  * }
819  *
820  * my_update_state(@css)
821  * {
822  *      css_for_each_descendant_pre(@pos, @css) {
823  *              Lock @pos;
824  *              if (@pos == @css)
825  *                      Update @css's state;
826  *              else
827  *                      Verify @pos is alive and inherit state from its parent;
828  *              Unlock @pos;
829  *      }
830  * }
831  *
832  * As long as the inheriting step, including checking the parent state, is
833  * enclosed inside @pos locking, double-locking the parent isn't necessary
834  * while inheriting.  The state update to the parent is guaranteed to be
835  * visible by walking order and, as long as inheriting operations to the
836  * same @pos are atomic to each other, multiple updates racing each other
837  * still result in the correct state.  It's guaranateed that at least one
838  * inheritance happens for any css after the latest update to its parent.
839  *
840  * If checking parent's state requires locking the parent, each inheriting
841  * iteration should lock and unlock both @pos->parent and @pos.
842  *
843  * Alternatively, a subsystem may choose to use a single global lock to
844  * synchronize ->css_online() and ->css_offline() against tree-walking
845  * operations.
846  *
847  * It is allowed to temporarily drop RCU read lock during iteration.  The
848  * caller is responsible for ensuring that @pos remains accessible until
849  * the start of the next iteration by, for example, bumping the css refcnt.
850  */
851 #define css_for_each_descendant_pre(pos, css)                           \
852         for ((pos) = css_next_descendant_pre(NULL, (css)); (pos);       \
853              (pos) = css_next_descendant_pre((pos), (css)))
854
855 struct cgroup_subsys_state *
856 css_next_descendant_post(struct cgroup_subsys_state *pos,
857                          struct cgroup_subsys_state *css);
858
859 /**
860  * css_for_each_descendant_post - post-order walk of a css's descendants
861  * @pos: the css * to use as the loop cursor
862  * @css: css whose descendants to walk
863  *
864  * Similar to css_for_each_descendant_pre() but performs post-order
865  * traversal instead.  @root is included in the iteration and the last
866  * node to be visited.  Note that the walk visibility guarantee described
867  * in pre-order walk doesn't apply the same to post-order walks.
868  */
869 #define css_for_each_descendant_post(pos, css)                          \
870         for ((pos) = css_next_descendant_post(NULL, (css)); (pos);      \
871              (pos) = css_next_descendant_post((pos), (css)))
872
873 /* A css_task_iter should be treated as an opaque object */
874 struct css_task_iter {
875         struct cgroup_subsys            *ss;
876
877         struct list_head                *cset_pos;
878         struct list_head                *cset_head;
879
880         struct list_head                *task_pos;
881         struct list_head                *tasks_head;
882         struct list_head                *mg_tasks_head;
883 };
884
885 void css_task_iter_start(struct cgroup_subsys_state *css,
886                          struct css_task_iter *it);
887 struct task_struct *css_task_iter_next(struct css_task_iter *it);
888 void css_task_iter_end(struct css_task_iter *it);
889
890 int cgroup_attach_task_all(struct task_struct *from, struct task_struct *);
891 int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from);
892
893 struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
894                                                        struct cgroup_subsys *ss);
895
896 #else /* !CONFIG_CGROUPS */
897
898 static inline int cgroup_init_early(void) { return 0; }
899 static inline int cgroup_init(void) { return 0; }
900 static inline void cgroup_fork(struct task_struct *p) {}
901 static inline void cgroup_post_fork(struct task_struct *p) {}
902 static inline void cgroup_exit(struct task_struct *p) {}
903
904 static inline int cgroupstats_build(struct cgroupstats *stats,
905                                         struct dentry *dentry)
906 {
907         return -EINVAL;
908 }
909
910 /* No cgroups - nothing to do */
911 static inline int cgroup_attach_task_all(struct task_struct *from,
912                                          struct task_struct *t)
913 {
914         return 0;
915 }
916
917 #endif /* !CONFIG_CGROUPS */
918
919 #endif /* _LINUX_CGROUP_H */