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