Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1 | /* |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2 | * Generic process-grouping system. |
| 3 | * |
| 4 | * Based originally on the cpuset system, extracted by Paul Menage |
| 5 | * Copyright (C) 2006 Google, Inc |
| 6 | * |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 7 | * Notifications support |
| 8 | * Copyright (C) 2009 Nokia Corporation |
| 9 | * Author: Kirill A. Shutemov |
| 10 | * |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 11 | * Copyright notices from the original cpuset code: |
| 12 | * -------------------------------------------------- |
| 13 | * Copyright (C) 2003 BULL SA. |
| 14 | * Copyright (C) 2004-2006 Silicon Graphics, Inc. |
| 15 | * |
| 16 | * Portions derived from Patrick Mochel's sysfs code. |
| 17 | * sysfs is Copyright (c) 2001-3 Patrick Mochel |
| 18 | * |
| 19 | * 2003-10-10 Written by Simon Derr. |
| 20 | * 2003-10-22 Updates by Stephen Hemminger. |
| 21 | * 2004 May-July Rework by Paul Jackson. |
| 22 | * --------------------------------------------------- |
| 23 | * |
| 24 | * This file is subject to the terms and conditions of the GNU General Public |
| 25 | * License. See the file COPYING in the main directory of the Linux |
| 26 | * distribution for more details. |
| 27 | */ |
| 28 | |
| 29 | #include <linux/cgroup.h> |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 30 | #include <linux/cred.h> |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 31 | #include <linux/ctype.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 32 | #include <linux/errno.h> |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 33 | #include <linux/init_task.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 34 | #include <linux/kernel.h> |
| 35 | #include <linux/list.h> |
| 36 | #include <linux/mm.h> |
| 37 | #include <linux/mutex.h> |
| 38 | #include <linux/mount.h> |
| 39 | #include <linux/pagemap.h> |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 40 | #include <linux/proc_fs.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 41 | #include <linux/rcupdate.h> |
| 42 | #include <linux/sched.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 43 | #include <linux/slab.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 44 | #include <linux/spinlock.h> |
| 45 | #include <linux/string.h> |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 46 | #include <linux/sort.h> |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 47 | #include <linux/kmod.h> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 48 | #include <linux/delayacct.h> |
| 49 | #include <linux/cgroupstats.h> |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 50 | #include <linux/hashtable.h> |
Li Zefan | 096b7fe | 2009-07-29 15:04:04 -0700 | [diff] [blame] | 51 | #include <linux/pid_namespace.h> |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 52 | #include <linux/idr.h> |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 53 | #include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */ |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 54 | #include <linux/flex_array.h> /* used in cgroup_attach_task */ |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 55 | #include <linux/kthread.h> |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 56 | #include <linux/delay.h> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 57 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 58 | #include <linux/atomic.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 59 | |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 60 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 61 | * pidlists linger the following amount before being destroyed. The goal |
| 62 | * is avoiding frequent destruction in the middle of consecutive read calls |
| 63 | * Expiring in the middle is a performance problem not a correctness one. |
| 64 | * 1 sec should be enough. |
| 65 | */ |
| 66 | #define CGROUP_PIDLIST_DESTROY_DELAY HZ |
| 67 | |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 68 | #define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \ |
| 69 | MAX_CFTYPE_NAME + 2) |
| 70 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 71 | /* |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 72 | * cgroup_tree_mutex nests above cgroup_mutex and protects cftypes, file |
| 73 | * creation/removal and hierarchy changing operations including cgroup |
| 74 | * creation, removal, css association and controller rebinding. This outer |
| 75 | * lock is needed mainly to resolve the circular dependency between kernfs |
| 76 | * active ref and cgroup_mutex. cgroup_tree_mutex nests above both. |
| 77 | */ |
| 78 | static DEFINE_MUTEX(cgroup_tree_mutex); |
| 79 | |
| 80 | /* |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 81 | * cgroup_mutex is the master lock. Any modification to cgroup or its |
| 82 | * hierarchy must be performed while holding it. |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 83 | */ |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 84 | #ifdef CONFIG_PROVE_RCU |
| 85 | DEFINE_MUTEX(cgroup_mutex); |
Tejun Heo | 8af01f5 | 2013-08-08 20:11:22 -0400 | [diff] [blame] | 86 | EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for lockdep */ |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 87 | #else |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 88 | static DEFINE_MUTEX(cgroup_mutex); |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 89 | #endif |
| 90 | |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 91 | /* |
| 92 | * Protects cgroup_subsys->release_agent_path. Modifying it also requires |
| 93 | * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock. |
| 94 | */ |
| 95 | static DEFINE_SPINLOCK(release_agent_path_lock); |
| 96 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 97 | #define cgroup_assert_mutexes_or_rcu_locked() \ |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 98 | rcu_lockdep_assert(rcu_read_lock_held() || \ |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 99 | lockdep_is_held(&cgroup_tree_mutex) || \ |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 100 | lockdep_is_held(&cgroup_mutex), \ |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 101 | "cgroup_[tree_]mutex or RCU read lock required"); |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 102 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 103 | /* |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 104 | * cgroup destruction makes heavy use of work items and there can be a lot |
| 105 | * of concurrent destructions. Use a separate workqueue so that cgroup |
| 106 | * destruction work items don't end up filling up max_active of system_wq |
| 107 | * which may lead to deadlock. |
| 108 | */ |
| 109 | static struct workqueue_struct *cgroup_destroy_wq; |
| 110 | |
| 111 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 112 | * pidlist destructions need to be flushed on cgroup destruction. Use a |
| 113 | * separate workqueue as flush domain. |
| 114 | */ |
| 115 | static struct workqueue_struct *cgroup_pidlist_destroy_wq; |
| 116 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 117 | /* generate an array of cgroup subsystem pointers */ |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 118 | #define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys, |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 119 | static struct cgroup_subsys *cgroup_subsys[] = { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 120 | #include <linux/cgroup_subsys.h> |
| 121 | }; |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 122 | #undef SUBSYS |
| 123 | |
| 124 | /* array of cgroup subsystem names */ |
| 125 | #define SUBSYS(_x) [_x ## _cgrp_id] = #_x, |
| 126 | static const char *cgroup_subsys_name[] = { |
| 127 | #include <linux/cgroup_subsys.h> |
| 128 | }; |
| 129 | #undef SUBSYS |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 130 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 131 | /* |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 132 | * The dummy hierarchy, reserved for the subsystems that are otherwise |
| 133 | * unattached - it never has more than a single cgroup, and all tasks are |
| 134 | * part of that cgroup. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 135 | */ |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 136 | static struct cgroupfs_root cgroup_dummy_root; |
| 137 | |
| 138 | /* dummy_top is a shorthand for the dummy hierarchy's top cgroup */ |
| 139 | static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 140 | |
| 141 | /* The list of hierarchy roots */ |
| 142 | |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 143 | static LIST_HEAD(cgroup_roots); |
| 144 | static int cgroup_root_count; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 145 | |
Tejun Heo | 3417ae1 | 2014-02-08 10:37:01 -0500 | [diff] [blame] | 146 | /* hierarchy ID allocation and mapping, protected by cgroup_mutex */ |
Tejun Heo | 1a57423 | 2013-04-14 11:36:58 -0700 | [diff] [blame] | 147 | static DEFINE_IDR(cgroup_hierarchy_idr); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 148 | |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 149 | /* |
| 150 | * Assign a monotonically increasing serial number to cgroups. It |
| 151 | * guarantees cgroups with bigger numbers are newer than those with smaller |
| 152 | * numbers. Also, as cgroups are always appended to the parent's |
| 153 | * ->children list, it guarantees that sibling cgroups are always sorted in |
Tejun Heo | 00356bd | 2013-06-18 11:14:22 -0700 | [diff] [blame] | 154 | * the ascending serial number order on the list. Protected by |
| 155 | * cgroup_mutex. |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 156 | */ |
Tejun Heo | 00356bd | 2013-06-18 11:14:22 -0700 | [diff] [blame] | 157 | static u64 cgroup_serial_nr_next = 1; |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 158 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 159 | /* This flag indicates whether tasks in the fork and exit paths should |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 160 | * check for fork/exit handlers to call. This avoids us having to do |
| 161 | * extra work in the fork/exit path if none of the subsystems need to |
| 162 | * be called. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 163 | */ |
Li Zefan | 8947f9d | 2008-07-25 01:46:56 -0700 | [diff] [blame] | 164 | static int need_forkexit_callback __read_mostly; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 165 | |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 166 | static struct cftype cgroup_base_files[]; |
| 167 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 168 | static void cgroup_put(struct cgroup *cgrp); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 169 | static int rebind_subsystems(struct cgroupfs_root *root, |
| 170 | unsigned long added_mask, unsigned removed_mask); |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 171 | static void cgroup_destroy_css_killed(struct cgroup *cgrp); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 172 | static int cgroup_destroy_locked(struct cgroup *cgrp); |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 173 | static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[], |
| 174 | bool is_add); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 175 | static void cgroup_pidlist_destroy_all(struct cgroup *cgrp); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 176 | |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 177 | /** |
| 178 | * cgroup_css - obtain a cgroup's css for the specified subsystem |
| 179 | * @cgrp: the cgroup of interest |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 180 | * @ss: the subsystem of interest (%NULL returns the dummy_css) |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 181 | * |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 182 | * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This |
| 183 | * function must be called either under cgroup_mutex or rcu_read_lock() and |
| 184 | * the caller is responsible for pinning the returned css if it wants to |
| 185 | * keep accessing it outside the said locks. This function may return |
| 186 | * %NULL if @cgrp doesn't have @subsys_id enabled. |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 187 | */ |
| 188 | static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp, |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 189 | struct cgroup_subsys *ss) |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 190 | { |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 191 | if (ss) |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 192 | return rcu_dereference_check(cgrp->subsys[ss->id], |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 193 | lockdep_is_held(&cgroup_tree_mutex) || |
| 194 | lockdep_is_held(&cgroup_mutex)); |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 195 | else |
| 196 | return &cgrp->dummy_css; |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 197 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 198 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 199 | /* convenient tests for these bits */ |
Tejun Heo | 54766d4 | 2013-06-12 21:04:53 -0700 | [diff] [blame] | 200 | static inline bool cgroup_is_dead(const struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 201 | { |
Tejun Heo | 54766d4 | 2013-06-12 21:04:53 -0700 | [diff] [blame] | 202 | return test_bit(CGRP_DEAD, &cgrp->flags); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 205 | struct cgroup_subsys_state *seq_css(struct seq_file *seq) |
| 206 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 207 | struct kernfs_open_file *of = seq->private; |
| 208 | struct cgroup *cgrp = of->kn->parent->priv; |
| 209 | struct cftype *cft = seq_cft(seq); |
| 210 | |
| 211 | /* |
| 212 | * This is open and unprotected implementation of cgroup_css(). |
| 213 | * seq_css() is only called from a kernfs file operation which has |
| 214 | * an active reference on the file. Because all the subsystem |
| 215 | * files are drained before a css is disassociated with a cgroup, |
| 216 | * the matching css from the cgroup's subsys table is guaranteed to |
| 217 | * be and stay valid until the enclosing operation is complete. |
| 218 | */ |
| 219 | if (cft->ss) |
| 220 | return rcu_dereference_raw(cgrp->subsys[cft->ss->id]); |
| 221 | else |
| 222 | return &cgrp->dummy_css; |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 223 | } |
| 224 | EXPORT_SYMBOL_GPL(seq_css); |
| 225 | |
Li Zefan | 78574cf | 2013-04-08 19:00:38 -0700 | [diff] [blame] | 226 | /** |
| 227 | * cgroup_is_descendant - test ancestry |
| 228 | * @cgrp: the cgroup to be tested |
| 229 | * @ancestor: possible ancestor of @cgrp |
| 230 | * |
| 231 | * Test whether @cgrp is a descendant of @ancestor. It also returns %true |
| 232 | * if @cgrp == @ancestor. This function is safe to call as long as @cgrp |
| 233 | * and @ancestor are accessible. |
| 234 | */ |
| 235 | bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor) |
| 236 | { |
| 237 | while (cgrp) { |
| 238 | if (cgrp == ancestor) |
| 239 | return true; |
| 240 | cgrp = cgrp->parent; |
| 241 | } |
| 242 | return false; |
| 243 | } |
| 244 | EXPORT_SYMBOL_GPL(cgroup_is_descendant); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 245 | |
Adrian Bunk | e9685a0 | 2008-02-07 00:13:46 -0800 | [diff] [blame] | 246 | static int cgroup_is_releasable(const struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 247 | { |
| 248 | const int bits = |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 249 | (1 << CGRP_RELEASABLE) | |
| 250 | (1 << CGRP_NOTIFY_ON_RELEASE); |
| 251 | return (cgrp->flags & bits) == bits; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 252 | } |
| 253 | |
Adrian Bunk | e9685a0 | 2008-02-07 00:13:46 -0800 | [diff] [blame] | 254 | static int notify_on_release(const struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 255 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 256 | return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 259 | /** |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 260 | * for_each_css - iterate all css's of a cgroup |
| 261 | * @css: the iteration cursor |
| 262 | * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end |
| 263 | * @cgrp: the target cgroup to iterate css's of |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 264 | * |
| 265 | * Should be called under cgroup_mutex. |
| 266 | */ |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 267 | #define for_each_css(css, ssid, cgrp) \ |
| 268 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \ |
| 269 | if (!((css) = rcu_dereference_check( \ |
| 270 | (cgrp)->subsys[(ssid)], \ |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 271 | lockdep_is_held(&cgroup_tree_mutex) || \ |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 272 | lockdep_is_held(&cgroup_mutex)))) { } \ |
| 273 | else |
| 274 | |
| 275 | /** |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 276 | * for_each_subsys - iterate all enabled cgroup subsystems |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 277 | * @ss: the iteration cursor |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 278 | * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 279 | */ |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 280 | #define for_each_subsys(ss, ssid) \ |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 281 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \ |
| 282 | (((ss) = cgroup_subsys[ssid]) || true); (ssid)++) |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 283 | |
Tejun Heo | 5549c49 | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 284 | /* iterate across the active hierarchies */ |
| 285 | #define for_each_active_root(root) \ |
| 286 | list_for_each_entry((root), &cgroup_roots, root_list) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 287 | |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 288 | /** |
| 289 | * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive. |
| 290 | * @cgrp: the cgroup to be checked for liveness |
| 291 | * |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 292 | * On success, returns true; the mutex should be later unlocked. On |
| 293 | * failure returns false with no lock held. |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 294 | */ |
Tejun Heo | b9777cf | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 295 | static bool cgroup_lock_live_group(struct cgroup *cgrp) |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 296 | { |
| 297 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 54766d4 | 2013-06-12 21:04:53 -0700 | [diff] [blame] | 298 | if (cgroup_is_dead(cgrp)) { |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 299 | mutex_unlock(&cgroup_mutex); |
| 300 | return false; |
| 301 | } |
| 302 | return true; |
| 303 | } |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 304 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 305 | /* the list of cgroups eligible for automatic release. Protected by |
| 306 | * release_list_lock */ |
| 307 | static LIST_HEAD(release_list); |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 308 | static DEFINE_RAW_SPINLOCK(release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 309 | static void cgroup_release_agent(struct work_struct *work); |
| 310 | static DECLARE_WORK(release_agent_work, cgroup_release_agent); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 311 | static void check_for_release(struct cgroup *cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 312 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 313 | /* |
| 314 | * A cgroup can be associated with multiple css_sets as different tasks may |
| 315 | * belong to different cgroups on different hierarchies. In the other |
| 316 | * direction, a css_set is naturally associated with multiple cgroups. |
| 317 | * This M:N relationship is represented by the following link structure |
| 318 | * which exists for each association and allows traversing the associations |
| 319 | * from both sides. |
| 320 | */ |
| 321 | struct cgrp_cset_link { |
| 322 | /* the cgroup and css_set this link associates */ |
| 323 | struct cgroup *cgrp; |
| 324 | struct css_set *cset; |
| 325 | |
| 326 | /* list of cgrp_cset_links anchored at cgrp->cset_links */ |
| 327 | struct list_head cset_link; |
| 328 | |
| 329 | /* list of cgrp_cset_links anchored at css_set->cgrp_links */ |
| 330 | struct list_head cgrp_link; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 331 | }; |
| 332 | |
| 333 | /* The default css_set - used by init and its children prior to any |
| 334 | * hierarchies being mounted. It contains a pointer to the root state |
| 335 | * for each subsystem. Also used to anchor the list of css_sets. Not |
| 336 | * reference-counted, to improve performance when child cgroups |
| 337 | * haven't been created. |
| 338 | */ |
| 339 | |
| 340 | static struct css_set init_css_set; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 341 | static struct cgrp_cset_link init_cgrp_cset_link; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 342 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 343 | /* |
| 344 | * css_set_lock protects the list of css_set objects, and the chain of |
| 345 | * tasks off each css_set. Nests outside task->alloc_lock due to |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 346 | * css_task_iter_start(). |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 347 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 348 | static DEFINE_RWLOCK(css_set_lock); |
| 349 | static int css_set_count; |
| 350 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 351 | /* |
| 352 | * hash table for cgroup groups. This improves the performance to find |
| 353 | * an existing css_set. This hash doesn't (currently) take into |
| 354 | * account cgroups in empty hierarchies. |
| 355 | */ |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 356 | #define CSS_SET_HASH_BITS 7 |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 357 | static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 358 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 359 | static unsigned long css_set_hash(struct cgroup_subsys_state *css[]) |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 360 | { |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 361 | unsigned long key = 0UL; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 362 | struct cgroup_subsys *ss; |
| 363 | int i; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 364 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 365 | for_each_subsys(ss, i) |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 366 | key += (unsigned long)css[i]; |
| 367 | key = (key >> 16) ^ key; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 368 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 369 | return key; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 370 | } |
| 371 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 372 | static void __put_css_set(struct css_set *cset, int taskexit) |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 373 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 374 | struct cgrp_cset_link *link, *tmp_link; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 375 | |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 376 | /* |
| 377 | * Ensure that the refcount doesn't hit zero while any readers |
| 378 | * can see it. Similar to atomic_dec_and_lock(), but for an |
| 379 | * rwlock |
| 380 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 381 | if (atomic_add_unless(&cset->refcount, -1, 1)) |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 382 | return; |
| 383 | write_lock(&css_set_lock); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 384 | if (!atomic_dec_and_test(&cset->refcount)) { |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 385 | write_unlock(&css_set_lock); |
| 386 | return; |
| 387 | } |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 388 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 389 | /* This css_set is dead. unlink it and release cgroup refcounts */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 390 | hash_del(&cset->hlist); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 391 | css_set_count--; |
| 392 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 393 | list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 394 | struct cgroup *cgrp = link->cgrp; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 395 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 396 | list_del(&link->cset_link); |
| 397 | list_del(&link->cgrp_link); |
Li Zefan | 71b5707 | 2013-01-24 14:43:28 +0800 | [diff] [blame] | 398 | |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 399 | /* @cgrp can't go away while we're holding css_set_lock */ |
Tejun Heo | 6f3d828f0 | 2013-06-12 21:04:55 -0700 | [diff] [blame] | 400 | if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 401 | if (taskexit) |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 402 | set_bit(CGRP_RELEASABLE, &cgrp->flags); |
| 403 | check_for_release(cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 404 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 405 | |
| 406 | kfree(link); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 407 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 408 | |
| 409 | write_unlock(&css_set_lock); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 410 | kfree_rcu(cset, rcu_head); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | /* |
| 414 | * refcounted get/put for css_set objects |
| 415 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 416 | static inline void get_css_set(struct css_set *cset) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 417 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 418 | atomic_inc(&cset->refcount); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 419 | } |
| 420 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 421 | static inline void put_css_set(struct css_set *cset) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 422 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 423 | __put_css_set(cset, 0); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 424 | } |
| 425 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 426 | static inline void put_css_set_taskexit(struct css_set *cset) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 427 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 428 | __put_css_set(cset, 1); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 429 | } |
| 430 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 431 | /** |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 432 | * compare_css_sets - helper function for find_existing_css_set(). |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 433 | * @cset: candidate css_set being tested |
| 434 | * @old_cset: existing css_set for a task |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 435 | * @new_cgrp: cgroup that's being entered by the task |
| 436 | * @template: desired set of css pointers in css_set (pre-calculated) |
| 437 | * |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 438 | * Returns true if "cset" matches "old_cset" except for the hierarchy |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 439 | * which "new_cgrp" belongs to, for which it should match "new_cgrp". |
| 440 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 441 | static bool compare_css_sets(struct css_set *cset, |
| 442 | struct css_set *old_cset, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 443 | struct cgroup *new_cgrp, |
| 444 | struct cgroup_subsys_state *template[]) |
| 445 | { |
| 446 | struct list_head *l1, *l2; |
| 447 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 448 | if (memcmp(template, cset->subsys, sizeof(cset->subsys))) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 449 | /* Not all subsystems matched */ |
| 450 | return false; |
| 451 | } |
| 452 | |
| 453 | /* |
| 454 | * Compare cgroup pointers in order to distinguish between |
| 455 | * different cgroups in heirarchies with no subsystems. We |
| 456 | * could get by with just this check alone (and skip the |
| 457 | * memcmp above) but on most setups the memcmp check will |
| 458 | * avoid the need for this more expensive check on almost all |
| 459 | * candidates. |
| 460 | */ |
| 461 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 462 | l1 = &cset->cgrp_links; |
| 463 | l2 = &old_cset->cgrp_links; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 464 | while (1) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 465 | struct cgrp_cset_link *link1, *link2; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 466 | struct cgroup *cgrp1, *cgrp2; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 467 | |
| 468 | l1 = l1->next; |
| 469 | l2 = l2->next; |
| 470 | /* See if we reached the end - both lists are equal length. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 471 | if (l1 == &cset->cgrp_links) { |
| 472 | BUG_ON(l2 != &old_cset->cgrp_links); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 473 | break; |
| 474 | } else { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 475 | BUG_ON(l2 == &old_cset->cgrp_links); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 476 | } |
| 477 | /* Locate the cgroups associated with these links. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 478 | link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link); |
| 479 | link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link); |
| 480 | cgrp1 = link1->cgrp; |
| 481 | cgrp2 = link2->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 482 | /* Hierarchies should be linked in the same order. */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 483 | BUG_ON(cgrp1->root != cgrp2->root); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 484 | |
| 485 | /* |
| 486 | * If this hierarchy is the hierarchy of the cgroup |
| 487 | * that's changing, then we need to check that this |
| 488 | * css_set points to the new cgroup; if it's any other |
| 489 | * hierarchy, then this css_set should point to the |
| 490 | * same cgroup as the old css_set. |
| 491 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 492 | if (cgrp1->root == new_cgrp->root) { |
| 493 | if (cgrp1 != new_cgrp) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 494 | return false; |
| 495 | } else { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 496 | if (cgrp1 != cgrp2) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 497 | return false; |
| 498 | } |
| 499 | } |
| 500 | return true; |
| 501 | } |
| 502 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 503 | /** |
| 504 | * find_existing_css_set - init css array and find the matching css_set |
| 505 | * @old_cset: the css_set that we're using before the cgroup transition |
| 506 | * @cgrp: the cgroup that we're moving into |
| 507 | * @template: out param for the new set of csses, should be clear on entry |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 508 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 509 | static struct css_set *find_existing_css_set(struct css_set *old_cset, |
| 510 | struct cgroup *cgrp, |
| 511 | struct cgroup_subsys_state *template[]) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 512 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 513 | struct cgroupfs_root *root = cgrp->root; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 514 | struct cgroup_subsys *ss; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 515 | struct css_set *cset; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 516 | unsigned long key; |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 517 | int i; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 518 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 519 | /* |
| 520 | * Build the set of subsystem state objects that we want to see in the |
| 521 | * new css_set. while subsystems can change globally, the entries here |
| 522 | * won't change, so no need for locking. |
| 523 | */ |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 524 | for_each_subsys(ss, i) { |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 525 | if (root->subsys_mask & (1UL << i)) { |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 526 | /* Subsystem is in this hierarchy. So we want |
| 527 | * the subsystem state from the new |
| 528 | * cgroup */ |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 529 | template[i] = cgroup_css(cgrp, ss); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 530 | } else { |
| 531 | /* Subsystem is not in this hierarchy, so we |
| 532 | * don't want to change the subsystem state */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 533 | template[i] = old_cset->subsys[i]; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 534 | } |
| 535 | } |
| 536 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 537 | key = css_set_hash(template); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 538 | hash_for_each_possible(css_set_table, cset, hlist, key) { |
| 539 | if (!compare_css_sets(cset, old_cset, cgrp, template)) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 540 | continue; |
| 541 | |
| 542 | /* This css_set matches what we need */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 543 | return cset; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 544 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 545 | |
| 546 | /* No existing cgroup group matched */ |
| 547 | return NULL; |
| 548 | } |
| 549 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 550 | static void free_cgrp_cset_links(struct list_head *links_to_free) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 551 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 552 | struct cgrp_cset_link *link, *tmp_link; |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 553 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 554 | list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) { |
| 555 | list_del(&link->cset_link); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 556 | kfree(link); |
| 557 | } |
| 558 | } |
| 559 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 560 | /** |
| 561 | * allocate_cgrp_cset_links - allocate cgrp_cset_links |
| 562 | * @count: the number of links to allocate |
| 563 | * @tmp_links: list_head the allocated links are put on |
| 564 | * |
| 565 | * Allocate @count cgrp_cset_link structures and chain them on @tmp_links |
| 566 | * through ->cset_link. Returns 0 on success or -errno. |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 567 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 568 | static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links) |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 569 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 570 | struct cgrp_cset_link *link; |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 571 | int i; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 572 | |
| 573 | INIT_LIST_HEAD(tmp_links); |
| 574 | |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 575 | for (i = 0; i < count; i++) { |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 576 | link = kzalloc(sizeof(*link), GFP_KERNEL); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 577 | if (!link) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 578 | free_cgrp_cset_links(tmp_links); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 579 | return -ENOMEM; |
| 580 | } |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 581 | list_add(&link->cset_link, tmp_links); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 582 | } |
| 583 | return 0; |
| 584 | } |
| 585 | |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 586 | /** |
| 587 | * link_css_set - a helper function to link a css_set to a cgroup |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 588 | * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links() |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 589 | * @cset: the css_set to be linked |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 590 | * @cgrp: the destination cgroup |
| 591 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 592 | static void link_css_set(struct list_head *tmp_links, struct css_set *cset, |
| 593 | struct cgroup *cgrp) |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 594 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 595 | struct cgrp_cset_link *link; |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 596 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 597 | BUG_ON(list_empty(tmp_links)); |
| 598 | link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link); |
| 599 | link->cset = cset; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 600 | link->cgrp = cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 601 | list_move(&link->cset_link, &cgrp->cset_links); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 602 | /* |
| 603 | * Always add links to the tail of the list so that the list |
| 604 | * is sorted by order of hierarchy creation |
| 605 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 606 | list_add_tail(&link->cgrp_link, &cset->cgrp_links); |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 607 | } |
| 608 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 609 | /** |
| 610 | * find_css_set - return a new css_set with one cgroup updated |
| 611 | * @old_cset: the baseline css_set |
| 612 | * @cgrp: the cgroup to be updated |
| 613 | * |
| 614 | * Return a new css_set that's equivalent to @old_cset, but with @cgrp |
| 615 | * substituted into the appropriate hierarchy. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 616 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 617 | static struct css_set *find_css_set(struct css_set *old_cset, |
| 618 | struct cgroup *cgrp) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 619 | { |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 620 | struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { }; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 621 | struct css_set *cset; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 622 | struct list_head tmp_links; |
| 623 | struct cgrp_cset_link *link; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 624 | unsigned long key; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 625 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 626 | lockdep_assert_held(&cgroup_mutex); |
| 627 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 628 | /* First see if we already have a cgroup group that matches |
| 629 | * the desired set */ |
Li Zefan | 7e9abd8 | 2008-07-25 01:46:54 -0700 | [diff] [blame] | 630 | read_lock(&css_set_lock); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 631 | cset = find_existing_css_set(old_cset, cgrp, template); |
| 632 | if (cset) |
| 633 | get_css_set(cset); |
Li Zefan | 7e9abd8 | 2008-07-25 01:46:54 -0700 | [diff] [blame] | 634 | read_unlock(&css_set_lock); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 635 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 636 | if (cset) |
| 637 | return cset; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 638 | |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 639 | cset = kzalloc(sizeof(*cset), GFP_KERNEL); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 640 | if (!cset) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 641 | return NULL; |
| 642 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 643 | /* Allocate all the cgrp_cset_link objects that we'll need */ |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 644 | if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 645 | kfree(cset); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 646 | return NULL; |
| 647 | } |
| 648 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 649 | atomic_set(&cset->refcount, 1); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 650 | INIT_LIST_HEAD(&cset->cgrp_links); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 651 | INIT_LIST_HEAD(&cset->tasks); |
| 652 | INIT_HLIST_NODE(&cset->hlist); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 653 | |
| 654 | /* Copy the set of subsystem state objects generated in |
| 655 | * find_existing_css_set() */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 656 | memcpy(cset->subsys, template, sizeof(cset->subsys)); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 657 | |
| 658 | write_lock(&css_set_lock); |
| 659 | /* Add reference counts and links from the new css_set. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 660 | list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 661 | struct cgroup *c = link->cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 662 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 663 | if (c->root == cgrp->root) |
| 664 | c = cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 665 | link_css_set(&tmp_links, cset, c); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 666 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 667 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 668 | BUG_ON(!list_empty(&tmp_links)); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 669 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 670 | css_set_count++; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 671 | |
| 672 | /* Add this cgroup group to the hash table */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 673 | key = css_set_hash(cset->subsys); |
| 674 | hash_add(css_set_table, &cset->hlist, key); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 675 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 676 | write_unlock(&css_set_lock); |
| 677 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 678 | return cset; |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 679 | } |
| 680 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 681 | static struct cgroupfs_root *cgroup_root_from_kf(struct kernfs_root *kf_root) |
| 682 | { |
| 683 | struct cgroup *top_cgrp = kf_root->kn->priv; |
| 684 | |
| 685 | return top_cgrp->root; |
| 686 | } |
| 687 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 688 | static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end) |
| 689 | { |
| 690 | int id; |
| 691 | |
| 692 | lockdep_assert_held(&cgroup_mutex); |
| 693 | |
| 694 | id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end, |
| 695 | GFP_KERNEL); |
| 696 | if (id < 0) |
| 697 | return id; |
| 698 | |
| 699 | root->hierarchy_id = id; |
| 700 | return 0; |
| 701 | } |
| 702 | |
| 703 | static void cgroup_exit_root_id(struct cgroupfs_root *root) |
| 704 | { |
| 705 | lockdep_assert_held(&cgroup_mutex); |
| 706 | |
| 707 | if (root->hierarchy_id) { |
| 708 | idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id); |
| 709 | root->hierarchy_id = 0; |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | static void cgroup_free_root(struct cgroupfs_root *root) |
| 714 | { |
| 715 | if (root) { |
| 716 | /* hierarhcy ID shoulid already have been released */ |
| 717 | WARN_ON_ONCE(root->hierarchy_id); |
| 718 | |
| 719 | idr_destroy(&root->cgroup_idr); |
| 720 | kfree(root); |
| 721 | } |
| 722 | } |
| 723 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 724 | static void cgroup_destroy_root(struct cgroupfs_root *root) |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 725 | { |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 726 | struct cgroup *cgrp = &root->top_cgroup; |
| 727 | struct cgrp_cset_link *link, *tmp_link; |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 728 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 729 | mutex_lock(&cgroup_tree_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 730 | mutex_lock(&cgroup_mutex); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 731 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 732 | BUG_ON(atomic_read(&root->nr_cgrps)); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 733 | BUG_ON(!list_empty(&cgrp->children)); |
| 734 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 735 | /* Rebind all subsystems back to the default hierarchy */ |
Tejun Heo | 3558557 | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 736 | WARN_ON(rebind_subsystems(root, 0, root->subsys_mask)); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 737 | |
| 738 | /* |
| 739 | * Release all the links from cset_links to this hierarchy's |
| 740 | * root cgroup |
| 741 | */ |
| 742 | write_lock(&css_set_lock); |
| 743 | |
| 744 | list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) { |
| 745 | list_del(&link->cset_link); |
| 746 | list_del(&link->cgrp_link); |
| 747 | kfree(link); |
| 748 | } |
| 749 | write_unlock(&css_set_lock); |
| 750 | |
| 751 | if (!list_empty(&root->root_list)) { |
| 752 | list_del(&root->root_list); |
| 753 | cgroup_root_count--; |
| 754 | } |
| 755 | |
| 756 | cgroup_exit_root_id(root); |
| 757 | |
| 758 | mutex_unlock(&cgroup_mutex); |
| 759 | mutex_unlock(&cgroup_tree_mutex); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 760 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 761 | kernfs_destroy_root(root->kf_root); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 762 | cgroup_free_root(root); |
| 763 | } |
| 764 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 765 | /* |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 766 | * Return the cgroup for "task" from the given hierarchy. Must be |
| 767 | * called with cgroup_mutex held. |
| 768 | */ |
| 769 | static struct cgroup *task_cgroup_from_root(struct task_struct *task, |
| 770 | struct cgroupfs_root *root) |
| 771 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 772 | struct css_set *cset; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 773 | struct cgroup *res = NULL; |
| 774 | |
| 775 | BUG_ON(!mutex_is_locked(&cgroup_mutex)); |
| 776 | read_lock(&css_set_lock); |
| 777 | /* |
| 778 | * No need to lock the task - since we hold cgroup_mutex the |
| 779 | * task can't change groups, so the only thing that can happen |
| 780 | * is that it exits and its css is set back to init_css_set. |
| 781 | */ |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 782 | cset = task_css_set(task); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 783 | if (cset == &init_css_set) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 784 | res = &root->top_cgroup; |
| 785 | } else { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 786 | struct cgrp_cset_link *link; |
| 787 | |
| 788 | list_for_each_entry(link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 789 | struct cgroup *c = link->cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 790 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 791 | if (c->root == root) { |
| 792 | res = c; |
| 793 | break; |
| 794 | } |
| 795 | } |
| 796 | } |
| 797 | read_unlock(&css_set_lock); |
| 798 | BUG_ON(!res); |
| 799 | return res; |
| 800 | } |
| 801 | |
| 802 | /* |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 803 | * There is one global cgroup mutex. We also require taking |
| 804 | * task_lock() when dereferencing a task's cgroup subsys pointers. |
| 805 | * See "The task_lock() exception", at the end of this comment. |
| 806 | * |
| 807 | * A task must hold cgroup_mutex to modify cgroups. |
| 808 | * |
| 809 | * Any task can increment and decrement the count field without lock. |
| 810 | * So in general, code holding cgroup_mutex can't rely on the count |
| 811 | * field not changing. However, if the count goes to zero, then only |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 812 | * cgroup_attach_task() can increment it again. Because a count of zero |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 813 | * means that no tasks are currently attached, therefore there is no |
| 814 | * way a task attached to that cgroup can fork (the other way to |
| 815 | * increment the count). So code holding cgroup_mutex can safely |
| 816 | * assume that if the count is zero, it will stay zero. Similarly, if |
| 817 | * a task holds cgroup_mutex on a cgroup with zero count, it |
| 818 | * knows that the cgroup won't be removed, as cgroup_rmdir() |
| 819 | * needs that mutex. |
| 820 | * |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 821 | * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't |
| 822 | * (usually) take cgroup_mutex. These are the two most performance |
| 823 | * critical pieces of code here. The exception occurs on cgroup_exit(), |
| 824 | * when a task in a notify_on_release cgroup exits. Then cgroup_mutex |
| 825 | * is taken, and if the cgroup count is zero, a usermode call made |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 826 | * to the release agent with the name of the cgroup (path relative to |
| 827 | * the root of cgroup file system) as the argument. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 828 | * |
| 829 | * A cgroup can only be deleted if both its 'count' of using tasks |
| 830 | * is zero, and its list of 'children' cgroups is empty. Since all |
| 831 | * tasks in the system use _some_ cgroup, and since there is always at |
| 832 | * least one task in the system (init, pid == 1), therefore, top_cgroup |
| 833 | * always has either children cgroups and/or using tasks. So we don't |
| 834 | * need a special hack to ensure that top_cgroup cannot be deleted. |
| 835 | * |
| 836 | * The task_lock() exception |
| 837 | * |
| 838 | * The need for this exception arises from the action of |
Tao Ma | d0b2fdd | 2012-11-20 22:06:18 +0800 | [diff] [blame] | 839 | * cgroup_attach_task(), which overwrites one task's cgroup pointer with |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 840 | * another. It does so using cgroup_mutex, however there are |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 841 | * several performance critical places that need to reference |
| 842 | * task->cgroup without the expense of grabbing a system global |
| 843 | * mutex. Therefore except as noted below, when dereferencing or, as |
Tao Ma | d0b2fdd | 2012-11-20 22:06:18 +0800 | [diff] [blame] | 844 | * in cgroup_attach_task(), modifying a task's cgroup pointer we use |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 845 | * task_lock(), which acts on a spinlock (task->alloc_lock) already in |
| 846 | * the task_struct routinely used for such matters. |
| 847 | * |
| 848 | * P.S. One more locking exception. RCU is used to guard the |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 849 | * update of a tasks cgroup pointer by cgroup_attach_task() |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 850 | */ |
| 851 | |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 852 | static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 853 | static struct kernfs_syscall_ops cgroup_kf_syscall_ops; |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 854 | static const struct file_operations proc_cgroupstats_operations; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 855 | |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 856 | static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft, |
| 857 | char *buf) |
| 858 | { |
| 859 | if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) && |
| 860 | !(cgrp->root->flags & CGRP_ROOT_NOPREFIX)) |
| 861 | snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s", |
| 862 | cft->ss->name, cft->name); |
| 863 | else |
| 864 | strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX); |
| 865 | return buf; |
| 866 | } |
| 867 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 868 | /** |
| 869 | * cgroup_file_mode - deduce file mode of a control file |
| 870 | * @cft: the control file in question |
| 871 | * |
| 872 | * returns cft->mode if ->mode is not 0 |
| 873 | * returns S_IRUGO|S_IWUSR if it has both a read and a write handler |
| 874 | * returns S_IRUGO if it has only a read handler |
| 875 | * returns S_IWUSR if it has only a write hander |
| 876 | */ |
| 877 | static umode_t cgroup_file_mode(const struct cftype *cft) |
| 878 | { |
| 879 | umode_t mode = 0; |
| 880 | |
| 881 | if (cft->mode) |
| 882 | return cft->mode; |
| 883 | |
| 884 | if (cft->read_u64 || cft->read_s64 || cft->seq_show) |
| 885 | mode |= S_IRUGO; |
| 886 | |
| 887 | if (cft->write_u64 || cft->write_s64 || cft->write_string || |
| 888 | cft->trigger) |
| 889 | mode |= S_IWUSR; |
| 890 | |
| 891 | return mode; |
| 892 | } |
| 893 | |
Li Zefan | be44562 | 2013-01-24 14:31:42 +0800 | [diff] [blame] | 894 | static void cgroup_free_fn(struct work_struct *work) |
| 895 | { |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 896 | struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work); |
Li Zefan | be44562 | 2013-01-24 14:31:42 +0800 | [diff] [blame] | 897 | |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 898 | atomic_dec(&cgrp->root->nr_cgrps); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 899 | cgroup_pidlist_destroy_all(cgrp); |
Li Zefan | be44562 | 2013-01-24 14:31:42 +0800 | [diff] [blame] | 900 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 901 | if (cgrp->parent) { |
| 902 | /* |
| 903 | * We get a ref to the parent, and put the ref when this |
| 904 | * cgroup is being freed, so it's guaranteed that the |
| 905 | * parent won't be destroyed before its children. |
| 906 | */ |
| 907 | cgroup_put(cgrp->parent); |
| 908 | kernfs_put(cgrp->kn); |
| 909 | kfree(cgrp); |
| 910 | } else { |
| 911 | /* |
| 912 | * This is top cgroup's refcnt reaching zero, which |
| 913 | * indicates that the root should be released. |
| 914 | */ |
| 915 | cgroup_destroy_root(cgrp->root); |
| 916 | } |
Li Zefan | be44562 | 2013-01-24 14:31:42 +0800 | [diff] [blame] | 917 | } |
| 918 | |
| 919 | static void cgroup_free_rcu(struct rcu_head *head) |
| 920 | { |
| 921 | struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head); |
| 922 | |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 923 | INIT_WORK(&cgrp->destroy_work, cgroup_free_fn); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 924 | queue_work(cgroup_destroy_wq, &cgrp->destroy_work); |
Li Zefan | be44562 | 2013-01-24 14:31:42 +0800 | [diff] [blame] | 925 | } |
| 926 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 927 | static void cgroup_get(struct cgroup *cgrp) |
| 928 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 929 | WARN_ON_ONCE(cgroup_is_dead(cgrp)); |
| 930 | WARN_ON_ONCE(atomic_read(&cgrp->refcnt) <= 0); |
| 931 | atomic_inc(&cgrp->refcnt); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 932 | } |
| 933 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 934 | static void cgroup_put(struct cgroup *cgrp) |
| 935 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 936 | if (!atomic_dec_and_test(&cgrp->refcnt)) |
| 937 | return; |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 938 | if (WARN_ON_ONCE(cgrp->parent && !cgroup_is_dead(cgrp))) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 939 | return; |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 940 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 941 | /* |
| 942 | * XXX: cgrp->id is only used to look up css's. As cgroup and |
| 943 | * css's lifetimes will be decoupled, it should be made |
| 944 | * per-subsystem and moved to css->id so that lookups are |
| 945 | * successful until the target css is released. |
| 946 | */ |
| 947 | mutex_lock(&cgroup_mutex); |
| 948 | idr_remove(&cgrp->root->cgroup_idr, cgrp->id); |
| 949 | mutex_unlock(&cgroup_mutex); |
| 950 | cgrp->id = -1; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 951 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 952 | call_rcu(&cgrp->rcu_head, cgroup_free_rcu); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 953 | } |
| 954 | |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 955 | static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 956 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 957 | char name[CGROUP_FILE_NAME_MAX]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 958 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 959 | lockdep_assert_held(&cgroup_tree_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 960 | kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name)); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 961 | } |
| 962 | |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 963 | /** |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 964 | * cgroup_clear_dir - remove subsys files in a cgroup directory |
Tejun Heo | 8f89140 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 965 | * @cgrp: target cgroup |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 966 | * @subsys_mask: mask of the subsystem ids whose files should be removed |
| 967 | */ |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 968 | static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask) |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 969 | { |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 970 | struct cgroup_subsys *ss; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 971 | int i; |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 972 | |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 973 | for_each_subsys(ss, i) { |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 974 | struct cftype *cfts; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 975 | |
| 976 | if (!test_bit(i, &subsys_mask)) |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 977 | continue; |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 978 | list_for_each_entry(cfts, &ss->cfts, node) |
| 979 | cgroup_addrm_files(cgrp, cfts, false); |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 980 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 981 | } |
| 982 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 983 | static int rebind_subsystems(struct cgroupfs_root *root, |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 984 | unsigned long added_mask, unsigned removed_mask) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 985 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 986 | struct cgroup *cgrp = &root->top_cgroup; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 987 | struct cgroup_subsys *ss; |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 988 | int i, ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 989 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 990 | lockdep_assert_held(&cgroup_tree_mutex); |
| 991 | lockdep_assert_held(&cgroup_mutex); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 992 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 993 | /* Check that any added subsystems are currently free */ |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 994 | for_each_subsys(ss, i) |
| 995 | if ((added_mask & (1 << i)) && ss->root != &cgroup_dummy_root) |
| 996 | return -EBUSY; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 997 | |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 998 | ret = cgroup_populate_dir(cgrp, added_mask); |
| 999 | if (ret) |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1000 | return ret; |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1001 | |
| 1002 | /* |
| 1003 | * Nothing can fail from this point on. Remove files for the |
| 1004 | * removed subsystems and rebind each subsystem. |
| 1005 | */ |
Tejun Heo | 4ac0601 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 1006 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1007 | cgroup_clear_dir(cgrp, removed_mask); |
Tejun Heo | 4ac0601 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 1008 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1009 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1010 | for_each_subsys(ss, i) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1011 | unsigned long bit = 1UL << i; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1012 | |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1013 | if (bit & added_mask) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1014 | /* We're binding this subsystem to this hierarchy */ |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 1015 | BUG_ON(cgroup_css(cgrp, ss)); |
| 1016 | BUG_ON(!cgroup_css(cgroup_dummy_top, ss)); |
| 1017 | BUG_ON(cgroup_css(cgroup_dummy_top, ss)->cgroup != cgroup_dummy_top); |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1018 | |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1019 | rcu_assign_pointer(cgrp->subsys[i], |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 1020 | cgroup_css(cgroup_dummy_top, ss)); |
| 1021 | cgroup_css(cgrp, ss)->cgroup = cgrp; |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1022 | |
Lai Jiangshan | b2aa30f | 2009-01-07 18:07:37 -0800 | [diff] [blame] | 1023 | ss->root = root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1024 | if (ss->bind) |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 1025 | ss->bind(cgroup_css(cgrp, ss)); |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1026 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1027 | /* refcount was already taken, and we're keeping it */ |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1028 | root->subsys_mask |= bit; |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1029 | } else if (bit & removed_mask) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1030 | /* We're removing this subsystem */ |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 1031 | BUG_ON(cgroup_css(cgrp, ss) != cgroup_css(cgroup_dummy_top, ss)); |
| 1032 | BUG_ON(cgroup_css(cgrp, ss)->cgroup != cgrp); |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1033 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1034 | if (ss->bind) |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 1035 | ss->bind(cgroup_css(cgroup_dummy_top, ss)); |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1036 | |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 1037 | cgroup_css(cgroup_dummy_top, ss)->cgroup = cgroup_dummy_top; |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1038 | RCU_INIT_POINTER(cgrp->subsys[i], NULL); |
| 1039 | |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1040 | cgroup_subsys[i]->root = &cgroup_dummy_root; |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1041 | root->subsys_mask &= ~bit; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1042 | } |
| 1043 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1044 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1045 | kernfs_activate(cgrp->kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1046 | return 0; |
| 1047 | } |
| 1048 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1049 | static int cgroup_show_options(struct seq_file *seq, |
| 1050 | struct kernfs_root *kf_root) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1051 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1052 | struct cgroupfs_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1053 | struct cgroup_subsys *ss; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1054 | int ssid; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1055 | |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1056 | for_each_subsys(ss, ssid) |
| 1057 | if (root->subsys_mask & (1 << ssid)) |
| 1058 | seq_printf(seq, ",%s", ss->name); |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1059 | if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) |
| 1060 | seq_puts(seq, ",sane_behavior"); |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1061 | if (root->flags & CGRP_ROOT_NOPREFIX) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1062 | seq_puts(seq, ",noprefix"); |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1063 | if (root->flags & CGRP_ROOT_XATTR) |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1064 | seq_puts(seq, ",xattr"); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1065 | |
| 1066 | spin_lock(&release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1067 | if (strlen(root->release_agent_path)) |
| 1068 | seq_printf(seq, ",release_agent=%s", root->release_agent_path); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1069 | spin_unlock(&release_agent_path_lock); |
| 1070 | |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1071 | if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags)) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 1072 | seq_puts(seq, ",clone_children"); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1073 | if (strlen(root->name)) |
| 1074 | seq_printf(seq, ",name=%s", root->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1075 | return 0; |
| 1076 | } |
| 1077 | |
| 1078 | struct cgroup_sb_opts { |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1079 | unsigned long subsys_mask; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1080 | unsigned long flags; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1081 | char *release_agent; |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1082 | bool cpuset_clone_children; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1083 | char *name; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1084 | /* User explicitly requested empty subsystem */ |
| 1085 | bool none; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1086 | }; |
| 1087 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1088 | /* |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1089 | * Convert a hierarchy specifier into a bitmask of subsystems and |
| 1090 | * flags. Call with cgroup_mutex held to protect the cgroup_subsys[] |
| 1091 | * array. This function takes refcounts on subsystems to be used, unless it |
| 1092 | * returns error, in which case no refcounts are taken. |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1093 | */ |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1094 | static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1095 | { |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1096 | char *token, *o = data; |
| 1097 | bool all_ss = false, one_ss = false; |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1098 | unsigned long mask = (unsigned long)-1; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1099 | struct cgroup_subsys *ss; |
| 1100 | int i; |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1101 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1102 | BUG_ON(!mutex_is_locked(&cgroup_mutex)); |
| 1103 | |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1104 | #ifdef CONFIG_CPUSETS |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1105 | mask = ~(1UL << cpuset_cgrp_id); |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1106 | #endif |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1107 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1108 | memset(opts, 0, sizeof(*opts)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1109 | |
| 1110 | while ((token = strsep(&o, ",")) != NULL) { |
| 1111 | if (!*token) |
| 1112 | return -EINVAL; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1113 | if (!strcmp(token, "none")) { |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1114 | /* Explicitly have no subsystems */ |
| 1115 | opts->none = true; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1116 | continue; |
| 1117 | } |
| 1118 | if (!strcmp(token, "all")) { |
| 1119 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1120 | if (one_ss) |
| 1121 | return -EINVAL; |
| 1122 | all_ss = true; |
| 1123 | continue; |
| 1124 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1125 | if (!strcmp(token, "__DEVEL__sane_behavior")) { |
| 1126 | opts->flags |= CGRP_ROOT_SANE_BEHAVIOR; |
| 1127 | continue; |
| 1128 | } |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1129 | if (!strcmp(token, "noprefix")) { |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1130 | opts->flags |= CGRP_ROOT_NOPREFIX; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1131 | continue; |
| 1132 | } |
| 1133 | if (!strcmp(token, "clone_children")) { |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1134 | opts->cpuset_clone_children = true; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1135 | continue; |
| 1136 | } |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1137 | if (!strcmp(token, "xattr")) { |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1138 | opts->flags |= CGRP_ROOT_XATTR; |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1139 | continue; |
| 1140 | } |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1141 | if (!strncmp(token, "release_agent=", 14)) { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1142 | /* Specifying two release agents is forbidden */ |
| 1143 | if (opts->release_agent) |
| 1144 | return -EINVAL; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1145 | opts->release_agent = |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1146 | kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1147 | if (!opts->release_agent) |
| 1148 | return -ENOMEM; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1149 | continue; |
| 1150 | } |
| 1151 | if (!strncmp(token, "name=", 5)) { |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1152 | const char *name = token + 5; |
| 1153 | /* Can't specify an empty name */ |
| 1154 | if (!strlen(name)) |
| 1155 | return -EINVAL; |
| 1156 | /* Must match [\w.-]+ */ |
| 1157 | for (i = 0; i < strlen(name); i++) { |
| 1158 | char c = name[i]; |
| 1159 | if (isalnum(c)) |
| 1160 | continue; |
| 1161 | if ((c == '.') || (c == '-') || (c == '_')) |
| 1162 | continue; |
| 1163 | return -EINVAL; |
| 1164 | } |
| 1165 | /* Specifying two names is forbidden */ |
| 1166 | if (opts->name) |
| 1167 | return -EINVAL; |
| 1168 | opts->name = kstrndup(name, |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1169 | MAX_CGROUP_ROOT_NAMELEN - 1, |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1170 | GFP_KERNEL); |
| 1171 | if (!opts->name) |
| 1172 | return -ENOMEM; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1173 | |
| 1174 | continue; |
| 1175 | } |
| 1176 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1177 | for_each_subsys(ss, i) { |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1178 | if (strcmp(token, ss->name)) |
| 1179 | continue; |
| 1180 | if (ss->disabled) |
| 1181 | continue; |
| 1182 | |
| 1183 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1184 | if (all_ss) |
| 1185 | return -EINVAL; |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1186 | set_bit(i, &opts->subsys_mask); |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1187 | one_ss = true; |
| 1188 | |
| 1189 | break; |
| 1190 | } |
| 1191 | if (i == CGROUP_SUBSYS_COUNT) |
| 1192 | return -ENOENT; |
| 1193 | } |
| 1194 | |
| 1195 | /* |
| 1196 | * If the 'all' option was specified select all the subsystems, |
Li Zefan | 0d19ea8 | 2011-12-27 14:25:55 +0800 | [diff] [blame] | 1197 | * otherwise if 'none', 'name=' and a subsystem name options |
| 1198 | * were not specified, let's default to 'all' |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1199 | */ |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1200 | if (all_ss || (!one_ss && !opts->none && !opts->name)) |
| 1201 | for_each_subsys(ss, i) |
| 1202 | if (!ss->disabled) |
| 1203 | set_bit(i, &opts->subsys_mask); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1204 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1205 | /* Consistency checks */ |
| 1206 | |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1207 | if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) { |
| 1208 | pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n"); |
| 1209 | |
Tejun Heo | d3ba07c | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1210 | if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) || |
| 1211 | opts->cpuset_clone_children || opts->release_agent || |
| 1212 | opts->name) { |
| 1213 | pr_err("cgroup: sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n"); |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1214 | return -EINVAL; |
| 1215 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1216 | } |
| 1217 | |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1218 | /* |
| 1219 | * Option noprefix was introduced just for backward compatibility |
| 1220 | * with the old cpuset, so we allow noprefix only if mounting just |
| 1221 | * the cpuset subsystem. |
| 1222 | */ |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1223 | if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask)) |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1224 | return -EINVAL; |
| 1225 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1226 | |
| 1227 | /* Can't specify "none" and some subsystems */ |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1228 | if (opts->subsys_mask && opts->none) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1229 | return -EINVAL; |
| 1230 | |
| 1231 | /* |
| 1232 | * We either have to specify by name or by subsystems. (So all |
| 1233 | * empty hierarchies must have a name). |
| 1234 | */ |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1235 | if (!opts->subsys_mask && !opts->name) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1236 | return -EINVAL; |
| 1237 | |
| 1238 | return 0; |
| 1239 | } |
| 1240 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1241 | static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1242 | { |
| 1243 | int ret = 0; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1244 | struct cgroupfs_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1245 | struct cgroup_sb_opts opts; |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1246 | unsigned long added_mask, removed_mask; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1247 | |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1248 | if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) { |
| 1249 | pr_err("cgroup: sane_behavior: remount is not allowed\n"); |
| 1250 | return -EINVAL; |
| 1251 | } |
| 1252 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 1253 | mutex_lock(&cgroup_tree_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1254 | mutex_lock(&cgroup_mutex); |
| 1255 | |
| 1256 | /* See what subsystems are wanted */ |
| 1257 | ret = parse_cgroupfs_options(data, &opts); |
| 1258 | if (ret) |
| 1259 | goto out_unlock; |
| 1260 | |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1261 | if (opts.subsys_mask != root->subsys_mask || opts.release_agent) |
Tejun Heo | 8b5a5a9 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1262 | pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n", |
| 1263 | task_tgid_nr(current), current->comm); |
| 1264 | |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1265 | added_mask = opts.subsys_mask & ~root->subsys_mask; |
| 1266 | removed_mask = root->subsys_mask & ~opts.subsys_mask; |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1267 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1268 | /* Don't allow flags or name to change at remount */ |
Tejun Heo | 0ce6cba | 2013-06-27 19:37:26 -0700 | [diff] [blame] | 1269 | if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) || |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1270 | (opts.name && strcmp(opts.name, root->name))) { |
Tejun Heo | 0ce6cba | 2013-06-27 19:37:26 -0700 | [diff] [blame] | 1271 | pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n", |
| 1272 | opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "", |
| 1273 | root->flags & CGRP_ROOT_OPTION_MASK, root->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1274 | ret = -EINVAL; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1275 | goto out_unlock; |
| 1276 | } |
| 1277 | |
Tejun Heo | f172e67 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1278 | /* remounting is not allowed for populated hierarchies */ |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1279 | if (!list_empty(&root->top_cgroup.children)) { |
Tejun Heo | f172e67 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1280 | ret = -EBUSY; |
Li Zefan | 0670e08 | 2009-04-02 16:57:30 -0700 | [diff] [blame] | 1281 | goto out_unlock; |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1282 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1283 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1284 | ret = rebind_subsystems(root, added_mask, removed_mask); |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1285 | if (ret) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1286 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1287 | |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1288 | if (opts.release_agent) { |
| 1289 | spin_lock(&release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1290 | strcpy(root->release_agent_path, opts.release_agent); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1291 | spin_unlock(&release_agent_path_lock); |
| 1292 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1293 | out_unlock: |
Jesper Juhl | 66bdc9c | 2009-04-02 16:57:27 -0700 | [diff] [blame] | 1294 | kfree(opts.release_agent); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1295 | kfree(opts.name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1296 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 1297 | mutex_unlock(&cgroup_tree_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1298 | return ret; |
| 1299 | } |
| 1300 | |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1301 | /* |
| 1302 | * To reduce the fork() overhead for systems that are not actually using |
| 1303 | * their cgroups capability, we don't maintain the lists running through |
| 1304 | * each css_set to its tasks until we see the list actually used - in other |
| 1305 | * words after the first mount. |
| 1306 | */ |
| 1307 | static bool use_task_css_set_links __read_mostly; |
| 1308 | |
| 1309 | static void cgroup_enable_task_cg_lists(void) |
| 1310 | { |
| 1311 | struct task_struct *p, *g; |
| 1312 | |
| 1313 | write_lock(&css_set_lock); |
| 1314 | |
| 1315 | if (use_task_css_set_links) |
| 1316 | goto out_unlock; |
| 1317 | |
| 1318 | use_task_css_set_links = true; |
| 1319 | |
| 1320 | /* |
| 1321 | * We need tasklist_lock because RCU is not safe against |
| 1322 | * while_each_thread(). Besides, a forking task that has passed |
| 1323 | * cgroup_post_fork() without seeing use_task_css_set_links = 1 |
| 1324 | * is not guaranteed to have its child immediately visible in the |
| 1325 | * tasklist if we walk through it with RCU. |
| 1326 | */ |
| 1327 | read_lock(&tasklist_lock); |
| 1328 | do_each_thread(g, p) { |
| 1329 | task_lock(p); |
| 1330 | |
| 1331 | WARN_ON_ONCE(!list_empty(&p->cg_list) || |
| 1332 | task_css_set(p) != &init_css_set); |
| 1333 | |
| 1334 | /* |
| 1335 | * We should check if the process is exiting, otherwise |
| 1336 | * it will race with cgroup_exit() in that the list |
| 1337 | * entry won't be deleted though the process has exited. |
| 1338 | */ |
| 1339 | if (!(p->flags & PF_EXITING)) |
| 1340 | list_add(&p->cg_list, &task_css_set(p)->tasks); |
| 1341 | |
| 1342 | task_unlock(p); |
| 1343 | } while_each_thread(g, p); |
| 1344 | read_unlock(&tasklist_lock); |
| 1345 | out_unlock: |
| 1346 | write_unlock(&css_set_lock); |
| 1347 | } |
| 1348 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1349 | static void init_cgroup_housekeeping(struct cgroup *cgrp) |
| 1350 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1351 | atomic_set(&cgrp->refcnt, 1); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1352 | INIT_LIST_HEAD(&cgrp->sibling); |
| 1353 | INIT_LIST_HEAD(&cgrp->children); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 1354 | INIT_LIST_HEAD(&cgrp->cset_links); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1355 | INIT_LIST_HEAD(&cgrp->release_list); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 1356 | INIT_LIST_HEAD(&cgrp->pidlists); |
| 1357 | mutex_init(&cgrp->pidlist_mutex); |
Tejun Heo | 67f4c36 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 1358 | cgrp->dummy_css.cgroup = cgrp; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1359 | } |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1360 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1361 | static void init_cgroup_root(struct cgroupfs_root *root) |
| 1362 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1363 | struct cgroup *cgrp = &root->top_cgroup; |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1364 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1365 | INIT_LIST_HEAD(&root->root_list); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1366 | atomic_set(&root->nr_cgrps, 1); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1367 | cgrp->root = root; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1368 | init_cgroup_housekeeping(cgrp); |
Li Zefan | 4e96ee8 | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 1369 | idr_init(&root->cgroup_idr); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1370 | } |
| 1371 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1372 | static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts) |
| 1373 | { |
| 1374 | struct cgroupfs_root *root; |
| 1375 | |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1376 | if (!opts->subsys_mask && !opts->none) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1377 | return ERR_PTR(-EINVAL); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1378 | |
| 1379 | root = kzalloc(sizeof(*root), GFP_KERNEL); |
| 1380 | if (!root) |
| 1381 | return ERR_PTR(-ENOMEM); |
| 1382 | |
| 1383 | init_cgroup_root(root); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1384 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1385 | root->flags = opts->flags; |
| 1386 | if (opts->release_agent) |
| 1387 | strcpy(root->release_agent_path, opts->release_agent); |
| 1388 | if (opts->name) |
| 1389 | strcpy(root->name, opts->name); |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1390 | if (opts->cpuset_clone_children) |
| 1391 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1392 | return root; |
| 1393 | } |
| 1394 | |
Tejun Heo | 3558557 | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1395 | static int cgroup_setup_root(struct cgroupfs_root *root, unsigned long ss_mask) |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1396 | { |
| 1397 | LIST_HEAD(tmp_links); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1398 | struct cgroup *root_cgrp = &root->top_cgroup; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1399 | struct css_set *cset; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1400 | int i, ret; |
| 1401 | |
| 1402 | lockdep_assert_held(&cgroup_tree_mutex); |
| 1403 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1404 | |
| 1405 | ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL); |
| 1406 | if (ret < 0) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1407 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1408 | root_cgrp->id = ret; |
| 1409 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1410 | /* |
| 1411 | * We're accessing css_set_count without locking css_set_lock here, |
| 1412 | * but that's OK - it can only be increased by someone holding |
| 1413 | * cgroup_lock, and that's us. The worst that can happen is that we |
| 1414 | * have some link structures left over |
| 1415 | */ |
| 1416 | ret = allocate_cgrp_cset_links(css_set_count, &tmp_links); |
| 1417 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1418 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1419 | |
| 1420 | /* ID 0 is reserved for dummy root, 1 for unified hierarchy */ |
| 1421 | ret = cgroup_init_root_id(root, 2, 0); |
| 1422 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1423 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1424 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1425 | root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops, |
| 1426 | KERNFS_ROOT_CREATE_DEACTIVATED, |
| 1427 | root_cgrp); |
| 1428 | if (IS_ERR(root->kf_root)) { |
| 1429 | ret = PTR_ERR(root->kf_root); |
| 1430 | goto exit_root_id; |
| 1431 | } |
| 1432 | root_cgrp->kn = root->kf_root->kn; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1433 | |
| 1434 | ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true); |
| 1435 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1436 | goto destroy_root; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1437 | |
Tejun Heo | 3558557 | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1438 | ret = rebind_subsystems(root, ss_mask, 0); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1439 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1440 | goto destroy_root; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1441 | |
| 1442 | /* |
| 1443 | * There must be no failure case after here, since rebinding takes |
| 1444 | * care of subsystems' refcounts, which are explicitly dropped in |
| 1445 | * the failure exit path. |
| 1446 | */ |
| 1447 | list_add(&root->root_list, &cgroup_roots); |
| 1448 | cgroup_root_count++; |
| 1449 | |
| 1450 | /* |
| 1451 | * Link the top cgroup in this hierarchy into all the css_set |
| 1452 | * objects. |
| 1453 | */ |
| 1454 | write_lock(&css_set_lock); |
| 1455 | hash_for_each(css_set_table, i, cset, hlist) |
| 1456 | link_css_set(&tmp_links, cset, root_cgrp); |
| 1457 | write_unlock(&css_set_lock); |
| 1458 | |
| 1459 | BUG_ON(!list_empty(&root_cgrp->children)); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1460 | BUG_ON(atomic_read(&root->nr_cgrps) != 1); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1461 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1462 | kernfs_activate(root_cgrp->kn); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1463 | ret = 0; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1464 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1465 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1466 | destroy_root: |
| 1467 | kernfs_destroy_root(root->kf_root); |
| 1468 | root->kf_root = NULL; |
| 1469 | exit_root_id: |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1470 | cgroup_exit_root_id(root); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1471 | out: |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1472 | free_cgrp_cset_links(&tmp_links); |
| 1473 | return ret; |
| 1474 | } |
| 1475 | |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1476 | static struct dentry *cgroup_mount(struct file_system_type *fs_type, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1477 | int flags, const char *unused_dev_name, |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1478 | void *data) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1479 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1480 | struct cgroupfs_root *root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1481 | struct cgroup_sb_opts opts; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1482 | struct dentry *dentry; |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1483 | int ret; |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1484 | |
| 1485 | /* |
| 1486 | * The first time anyone tries to mount a cgroup, enable the list |
| 1487 | * linking each css_set to its tasks and fix up all existing tasks. |
| 1488 | */ |
| 1489 | if (!use_task_css_set_links) |
| 1490 | cgroup_enable_task_cg_lists(); |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1491 | retry: |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1492 | mutex_lock(&cgroup_tree_mutex); |
| 1493 | mutex_lock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1494 | |
| 1495 | /* First find the desired set of subsystems */ |
| 1496 | ret = parse_cgroupfs_options(data, &opts); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1497 | if (ret) |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1498 | goto out_unlock; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1499 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1500 | /* look for a matching existing root */ |
| 1501 | for_each_active_root(root) { |
| 1502 | bool name_match = false; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1503 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1504 | /* |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1505 | * If we asked for a name then it must match. Also, if |
| 1506 | * name matches but sybsys_mask doesn't, we should fail. |
| 1507 | * Remember whether name matched. |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1508 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1509 | if (opts.name) { |
| 1510 | if (strcmp(opts.name, root->name)) |
| 1511 | continue; |
| 1512 | name_match = true; |
| 1513 | } |
| 1514 | |
| 1515 | /* |
| 1516 | * If we asked for subsystems (or explicitly for no |
| 1517 | * subsystems) then they must match. |
| 1518 | */ |
| 1519 | if ((opts.subsys_mask || opts.none) && |
| 1520 | (opts.subsys_mask != root->subsys_mask)) { |
| 1521 | if (!name_match) |
| 1522 | continue; |
| 1523 | ret = -EBUSY; |
| 1524 | goto out_unlock; |
| 1525 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1526 | |
Tejun Heo | c7ba828 | 2013-06-29 14:06:10 -0700 | [diff] [blame] | 1527 | if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) { |
Jeff Liu | 2a0ff3f | 2013-05-26 21:33:09 +0800 | [diff] [blame] | 1528 | if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) { |
| 1529 | pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n"); |
| 1530 | ret = -EINVAL; |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1531 | goto out_unlock; |
Jeff Liu | 2a0ff3f | 2013-05-26 21:33:09 +0800 | [diff] [blame] | 1532 | } else { |
| 1533 | pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n"); |
| 1534 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1535 | } |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1536 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1537 | /* |
| 1538 | * A root's lifetime is governed by its top cgroup. Zero |
| 1539 | * ref indicate that the root is being destroyed. Wait for |
| 1540 | * destruction to complete so that the subsystems are free. |
| 1541 | * We can use wait_queue for the wait but this path is |
| 1542 | * super cold. Let's just sleep for a bit and retry. |
| 1543 | */ |
| 1544 | if (!atomic_inc_not_zero(&root->top_cgroup.refcnt)) { |
| 1545 | mutex_unlock(&cgroup_mutex); |
| 1546 | mutex_unlock(&cgroup_tree_mutex); |
| 1547 | msleep(10); |
| 1548 | goto retry; |
| 1549 | } |
| 1550 | |
| 1551 | ret = 0; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1552 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1553 | } |
| 1554 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1555 | /* no such thing, create a new one */ |
| 1556 | root = cgroup_root_from_opts(&opts); |
| 1557 | if (IS_ERR(root)) { |
| 1558 | ret = PTR_ERR(root); |
| 1559 | goto out_unlock; |
| 1560 | } |
| 1561 | |
Tejun Heo | 3558557 | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1562 | ret = cgroup_setup_root(root, opts.subsys_mask); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1563 | if (ret) |
| 1564 | cgroup_free_root(root); |
| 1565 | |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1566 | out_unlock: |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1567 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 1568 | mutex_unlock(&cgroup_tree_mutex); |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1569 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1570 | kfree(opts.release_agent); |
| 1571 | kfree(opts.name); |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1572 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1573 | if (ret) |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1574 | return ERR_PTR(ret); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1575 | |
| 1576 | dentry = kernfs_mount(fs_type, flags, root->kf_root); |
| 1577 | if (IS_ERR(dentry)) |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1578 | cgroup_put(&root->top_cgroup); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1579 | return dentry; |
| 1580 | } |
| 1581 | |
| 1582 | static void cgroup_kill_sb(struct super_block *sb) |
| 1583 | { |
| 1584 | struct kernfs_root *kf_root = kernfs_root_from_sb(sb); |
| 1585 | struct cgroupfs_root *root = cgroup_root_from_kf(kf_root); |
| 1586 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1587 | cgroup_put(&root->top_cgroup); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1588 | kernfs_kill_sb(sb); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1589 | } |
| 1590 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1591 | static struct file_system_type cgroup_fs_type = { |
| 1592 | .name = "cgroup", |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1593 | .mount = cgroup_mount, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1594 | .kill_sb = cgroup_kill_sb, |
| 1595 | }; |
| 1596 | |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 1597 | static struct kobject *cgroup_kobj; |
| 1598 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 1599 | /** |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1600 | * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1601 | * @task: target task |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1602 | * @buf: the buffer to write the path into |
| 1603 | * @buflen: the length of the buffer |
| 1604 | * |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1605 | * Determine @task's cgroup on the first (the one with the lowest non-zero |
| 1606 | * hierarchy_id) cgroup hierarchy and copy its path into @buf. This |
| 1607 | * function grabs cgroup_mutex and shouldn't be used inside locks used by |
| 1608 | * cgroup controller callbacks. |
| 1609 | * |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1610 | * Return value is the same as kernfs_path(). |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1611 | */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1612 | char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen) |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1613 | { |
| 1614 | struct cgroupfs_root *root; |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1615 | struct cgroup *cgrp; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1616 | int hierarchy_id = 1; |
| 1617 | char *path = NULL; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1618 | |
| 1619 | mutex_lock(&cgroup_mutex); |
| 1620 | |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1621 | root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id); |
| 1622 | |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1623 | if (root) { |
| 1624 | cgrp = task_cgroup_from_root(task, root); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1625 | path = cgroup_path(cgrp, buf, buflen); |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1626 | } else { |
| 1627 | /* if no hierarchy exists, everyone is in "/" */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1628 | if (strlcpy(buf, "/", buflen) < buflen) |
| 1629 | path = buf; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1630 | } |
| 1631 | |
| 1632 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1633 | return path; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1634 | } |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1635 | EXPORT_SYMBOL_GPL(task_cgroup_path); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1636 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1637 | /* |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1638 | * Control Group taskset |
| 1639 | */ |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1640 | struct task_and_cgroup { |
| 1641 | struct task_struct *task; |
| 1642 | struct cgroup *cgrp; |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 1643 | struct css_set *cset; |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1644 | }; |
| 1645 | |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1646 | struct cgroup_taskset { |
| 1647 | struct task_and_cgroup single; |
| 1648 | struct flex_array *tc_array; |
| 1649 | int tc_array_len; |
| 1650 | int idx; |
| 1651 | struct cgroup *cur_cgrp; |
| 1652 | }; |
| 1653 | |
| 1654 | /** |
| 1655 | * cgroup_taskset_first - reset taskset and return the first task |
| 1656 | * @tset: taskset of interest |
| 1657 | * |
| 1658 | * @tset iteration is initialized and the first task is returned. |
| 1659 | */ |
| 1660 | struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset) |
| 1661 | { |
| 1662 | if (tset->tc_array) { |
| 1663 | tset->idx = 0; |
| 1664 | return cgroup_taskset_next(tset); |
| 1665 | } else { |
| 1666 | tset->cur_cgrp = tset->single.cgrp; |
| 1667 | return tset->single.task; |
| 1668 | } |
| 1669 | } |
| 1670 | EXPORT_SYMBOL_GPL(cgroup_taskset_first); |
| 1671 | |
| 1672 | /** |
| 1673 | * cgroup_taskset_next - iterate to the next task in taskset |
| 1674 | * @tset: taskset of interest |
| 1675 | * |
| 1676 | * Return the next task in @tset. Iteration must have been initialized |
| 1677 | * with cgroup_taskset_first(). |
| 1678 | */ |
| 1679 | struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset) |
| 1680 | { |
| 1681 | struct task_and_cgroup *tc; |
| 1682 | |
| 1683 | if (!tset->tc_array || tset->idx >= tset->tc_array_len) |
| 1684 | return NULL; |
| 1685 | |
| 1686 | tc = flex_array_get(tset->tc_array, tset->idx++); |
| 1687 | tset->cur_cgrp = tc->cgrp; |
| 1688 | return tc->task; |
| 1689 | } |
| 1690 | EXPORT_SYMBOL_GPL(cgroup_taskset_next); |
| 1691 | |
| 1692 | /** |
Tejun Heo | d99c872 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 1693 | * cgroup_taskset_cur_css - return the matching css for the current task |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1694 | * @tset: taskset of interest |
Tejun Heo | d99c872 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 1695 | * @subsys_id: the ID of the target subsystem |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1696 | * |
Tejun Heo | d99c872 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 1697 | * Return the css for the current (last returned) task of @tset for |
| 1698 | * subsystem specified by @subsys_id. This function must be preceded by |
| 1699 | * either cgroup_taskset_first() or cgroup_taskset_next(). |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1700 | */ |
Tejun Heo | d99c872 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 1701 | struct cgroup_subsys_state *cgroup_taskset_cur_css(struct cgroup_taskset *tset, |
| 1702 | int subsys_id) |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1703 | { |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 1704 | return cgroup_css(tset->cur_cgrp, cgroup_subsys[subsys_id]); |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1705 | } |
Tejun Heo | d99c872 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 1706 | EXPORT_SYMBOL_GPL(cgroup_taskset_cur_css); |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1707 | |
| 1708 | /** |
| 1709 | * cgroup_taskset_size - return the number of tasks in taskset |
| 1710 | * @tset: taskset of interest |
| 1711 | */ |
| 1712 | int cgroup_taskset_size(struct cgroup_taskset *tset) |
| 1713 | { |
| 1714 | return tset->tc_array ? tset->tc_array_len : 1; |
| 1715 | } |
| 1716 | EXPORT_SYMBOL_GPL(cgroup_taskset_size); |
| 1717 | |
| 1718 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1719 | /* |
| 1720 | * cgroup_task_migrate - move a task from one cgroup to another. |
| 1721 | * |
Tao Ma | d0b2fdd | 2012-11-20 22:06:18 +0800 | [diff] [blame] | 1722 | * Must be called with cgroup_mutex and threadgroup locked. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1723 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 1724 | static void cgroup_task_migrate(struct cgroup *old_cgrp, |
| 1725 | struct task_struct *tsk, |
| 1726 | struct css_set *new_cset) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1727 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 1728 | struct css_set *old_cset; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1729 | |
| 1730 | /* |
Mandeep Singh Baines | 026085e | 2011-12-21 20:18:35 -0800 | [diff] [blame] | 1731 | * We are synchronized through threadgroup_lock() against PF_EXITING |
| 1732 | * setting such that we can't race against cgroup_exit() changing the |
| 1733 | * css_set to init_css_set and dropping the old one. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1734 | */ |
Frederic Weisbecker | c84cdf7 | 2011-12-21 20:03:18 +0100 | [diff] [blame] | 1735 | WARN_ON_ONCE(tsk->flags & PF_EXITING); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 1736 | old_cset = task_css_set(tsk); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1737 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1738 | task_lock(tsk); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 1739 | rcu_assign_pointer(tsk->cgroups, new_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1740 | task_unlock(tsk); |
| 1741 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1742 | write_lock(&css_set_lock); |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1743 | list_move(&tsk->cg_list, &new_cset->tasks); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1744 | write_unlock(&css_set_lock); |
| 1745 | |
| 1746 | /* |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 1747 | * We just gained a reference on old_cset by taking it from the |
| 1748 | * task. As trading it for new_cset is protected by cgroup_mutex, |
| 1749 | * we're safe to drop it here; it will be freed under RCU. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1750 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 1751 | set_bit(CGRP_RELEASABLE, &old_cgrp->flags); |
| 1752 | put_css_set(old_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1753 | } |
| 1754 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 1755 | /** |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 1756 | * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1757 | * @cgrp: the cgroup to attach to |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 1758 | * @tsk: the task or the leader of the threadgroup to be attached |
| 1759 | * @threadgroup: attach the whole threadgroup? |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1760 | * |
Tejun Heo | 257058a | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1761 | * Call holding cgroup_mutex and the group_rwsem of the leader. Will take |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 1762 | * task_lock of @tsk or each thread in the threadgroup individually in turn. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1763 | */ |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 1764 | static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk, |
| 1765 | bool threadgroup) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1766 | { |
| 1767 | int retval, i, group_size; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1768 | struct cgroupfs_root *root = cgrp->root; |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 1769 | struct cgroup_subsys_state *css, *failed_css = NULL; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1770 | /* threadgroup list cursor and array */ |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 1771 | struct task_struct *leader = tsk; |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1772 | struct task_and_cgroup *tc; |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 1773 | struct flex_array *group; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1774 | struct cgroup_taskset tset = { }; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1775 | |
| 1776 | /* |
| 1777 | * step 0: in order to do expensive, possibly blocking operations for |
| 1778 | * every thread, we cannot iterate the thread group list, since it needs |
| 1779 | * rcu or tasklist locked. instead, build an array of all threads in the |
Tejun Heo | 257058a | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1780 | * group - group_rwsem prevents new threads from appearing, and if |
| 1781 | * threads exit, this will just be an over-estimate. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1782 | */ |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 1783 | if (threadgroup) |
| 1784 | group_size = get_nr_threads(tsk); |
| 1785 | else |
| 1786 | group_size = 1; |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 1787 | /* flex_array supports very large thread-groups better than kmalloc. */ |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1788 | group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1789 | if (!group) |
| 1790 | return -ENOMEM; |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 1791 | /* pre-allocate to guarantee space while iterating in rcu read-side. */ |
Li Zefan | 3ac1707 | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 1792 | retval = flex_array_prealloc(group, 0, group_size, GFP_KERNEL); |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 1793 | if (retval) |
| 1794 | goto out_free_group_list; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1795 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1796 | i = 0; |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 1797 | /* |
| 1798 | * Prevent freeing of tasks while we take a snapshot. Tasks that are |
| 1799 | * already PF_EXITING could be freed from underneath us unless we |
| 1800 | * take an rcu_read_lock. |
| 1801 | */ |
| 1802 | rcu_read_lock(); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1803 | do { |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1804 | struct task_and_cgroup ent; |
| 1805 | |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1806 | /* @tsk either already exited or can't exit until the end */ |
| 1807 | if (tsk->flags & PF_EXITING) |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 1808 | goto next; |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1809 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1810 | /* as per above, nr_threads may decrease, but not increase. */ |
| 1811 | BUG_ON(i >= group_size); |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1812 | ent.task = tsk; |
| 1813 | ent.cgrp = task_cgroup_from_root(tsk, root); |
Mandeep Singh Baines | 892a2b9 | 2011-12-21 20:18:37 -0800 | [diff] [blame] | 1814 | /* nothing to do if this task is already in the cgroup */ |
| 1815 | if (ent.cgrp == cgrp) |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 1816 | goto next; |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1817 | /* |
| 1818 | * saying GFP_ATOMIC has no effect here because we did prealloc |
| 1819 | * earlier, but it's good form to communicate our expectations. |
| 1820 | */ |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1821 | retval = flex_array_put(group, i, &ent, GFP_ATOMIC); |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 1822 | BUG_ON(retval != 0); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1823 | i++; |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 1824 | next: |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 1825 | if (!threadgroup) |
| 1826 | break; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1827 | } while_each_thread(leader, tsk); |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 1828 | rcu_read_unlock(); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1829 | /* remember the number of threads in the array for later. */ |
| 1830 | group_size = i; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1831 | tset.tc_array = group; |
| 1832 | tset.tc_array_len = group_size; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1833 | |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1834 | /* methods shouldn't be called if no task is actually migrating */ |
| 1835 | retval = 0; |
Mandeep Singh Baines | 892a2b9 | 2011-12-21 20:18:37 -0800 | [diff] [blame] | 1836 | if (!group_size) |
Mandeep Singh Baines | b07ef77 | 2011-12-21 20:18:36 -0800 | [diff] [blame] | 1837 | goto out_free_group_list; |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1838 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1839 | /* |
| 1840 | * step 1: check that we can legitimately attach to the cgroup. |
| 1841 | */ |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 1842 | for_each_css(css, i, cgrp) { |
| 1843 | if (css->ss->can_attach) { |
| 1844 | retval = css->ss->can_attach(css, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1845 | if (retval) { |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 1846 | failed_css = css; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1847 | goto out_cancel_attach; |
| 1848 | } |
| 1849 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1850 | } |
| 1851 | |
| 1852 | /* |
| 1853 | * step 2: make sure css_sets exist for all threads to be migrated. |
| 1854 | * we use find_css_set, which allocates a new one if necessary. |
| 1855 | */ |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1856 | for (i = 0; i < group_size; i++) { |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 1857 | struct css_set *old_cset; |
| 1858 | |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1859 | tc = flex_array_get(group, i); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 1860 | old_cset = task_css_set(tc->task); |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 1861 | tc->cset = find_css_set(old_cset, cgrp); |
| 1862 | if (!tc->cset) { |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1863 | retval = -ENOMEM; |
| 1864 | goto out_put_css_set_refs; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1865 | } |
| 1866 | } |
| 1867 | |
| 1868 | /* |
Tejun Heo | 494c167 | 2011-12-12 18:12:22 -0800 | [diff] [blame] | 1869 | * step 3: now that we're guaranteed success wrt the css_sets, |
| 1870 | * proceed to move all tasks to the new cgroup. There are no |
| 1871 | * failure cases after here, so this is the commit point. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1872 | */ |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1873 | for (i = 0; i < group_size; i++) { |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1874 | tc = flex_array_get(group, i); |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 1875 | cgroup_task_migrate(tc->cgrp, tc->task, tc->cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1876 | } |
| 1877 | /* nothing is sensitive to fork() after this point. */ |
| 1878 | |
| 1879 | /* |
Tejun Heo | 494c167 | 2011-12-12 18:12:22 -0800 | [diff] [blame] | 1880 | * step 4: do subsystem attach callbacks. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1881 | */ |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 1882 | for_each_css(css, i, cgrp) |
| 1883 | if (css->ss->attach) |
| 1884 | css->ss->attach(css, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1885 | |
| 1886 | /* |
| 1887 | * step 5: success! and cleanup |
| 1888 | */ |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1889 | retval = 0; |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1890 | out_put_css_set_refs: |
| 1891 | if (retval) { |
| 1892 | for (i = 0; i < group_size; i++) { |
| 1893 | tc = flex_array_get(group, i); |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 1894 | if (!tc->cset) |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1895 | break; |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 1896 | put_css_set(tc->cset); |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1897 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1898 | } |
| 1899 | out_cancel_attach: |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1900 | if (retval) { |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 1901 | for_each_css(css, i, cgrp) { |
| 1902 | if (css == failed_css) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1903 | break; |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 1904 | if (css->ss->cancel_attach) |
| 1905 | css->ss->cancel_attach(css, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1906 | } |
| 1907 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1908 | out_free_group_list: |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 1909 | flex_array_free(group); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1910 | return retval; |
| 1911 | } |
| 1912 | |
| 1913 | /* |
| 1914 | * Find the task_struct of the task to attach by vpid and pass it along to the |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1915 | * function to attach either it or all tasks in its threadgroup. Will lock |
| 1916 | * cgroup_mutex and threadgroup; may take task_lock of task. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1917 | */ |
| 1918 | static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1919 | { |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1920 | struct task_struct *tsk; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1921 | const struct cred *cred = current_cred(), *tcred; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1922 | int ret; |
| 1923 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1924 | if (!cgroup_lock_live_group(cgrp)) |
| 1925 | return -ENODEV; |
| 1926 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 1927 | retry_find_task: |
| 1928 | rcu_read_lock(); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1929 | if (pid) { |
Pavel Emelyanov | 73507f3 | 2008-02-07 00:14:47 -0800 | [diff] [blame] | 1930 | tsk = find_task_by_vpid(pid); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1931 | if (!tsk) { |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1932 | rcu_read_unlock(); |
SeongJae Park | dd4b0a4 | 2014-01-18 16:56:47 +0900 | [diff] [blame] | 1933 | ret = -ESRCH; |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 1934 | goto out_unlock_cgroup; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1935 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1936 | /* |
| 1937 | * even if we're attaching all tasks in the thread group, we |
| 1938 | * only need to check permissions on one of them. |
| 1939 | */ |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1940 | tcred = __task_cred(tsk); |
Eric W. Biederman | 14a590c | 2012-03-12 15:44:39 -0700 | [diff] [blame] | 1941 | if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) && |
| 1942 | !uid_eq(cred->euid, tcred->uid) && |
| 1943 | !uid_eq(cred->euid, tcred->suid)) { |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1944 | rcu_read_unlock(); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 1945 | ret = -EACCES; |
| 1946 | goto out_unlock_cgroup; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1947 | } |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 1948 | } else |
| 1949 | tsk = current; |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1950 | |
| 1951 | if (threadgroup) |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 1952 | tsk = tsk->group_leader; |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 1953 | |
| 1954 | /* |
Tejun Heo | 14a40ff | 2013-03-19 13:45:20 -0700 | [diff] [blame] | 1955 | * Workqueue threads may acquire PF_NO_SETAFFINITY and become |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 1956 | * trapped in a cpuset, or RT worker may be born in a cgroup |
| 1957 | * with no rt_runtime allocated. Just say no. |
| 1958 | */ |
Tejun Heo | 14a40ff | 2013-03-19 13:45:20 -0700 | [diff] [blame] | 1959 | if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) { |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 1960 | ret = -EINVAL; |
| 1961 | rcu_read_unlock(); |
| 1962 | goto out_unlock_cgroup; |
| 1963 | } |
| 1964 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 1965 | get_task_struct(tsk); |
| 1966 | rcu_read_unlock(); |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1967 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 1968 | threadgroup_lock(tsk); |
| 1969 | if (threadgroup) { |
| 1970 | if (!thread_group_leader(tsk)) { |
| 1971 | /* |
| 1972 | * a race with de_thread from another thread's exec() |
| 1973 | * may strip us of our leadership, if this happens, |
| 1974 | * there is no choice but to throw this task away and |
| 1975 | * try again; this is |
| 1976 | * "double-double-toil-and-trouble-check locking". |
| 1977 | */ |
| 1978 | threadgroup_unlock(tsk); |
| 1979 | put_task_struct(tsk); |
| 1980 | goto retry_find_task; |
| 1981 | } |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 1982 | } |
| 1983 | |
| 1984 | ret = cgroup_attach_task(cgrp, tsk, threadgroup); |
| 1985 | |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1986 | threadgroup_unlock(tsk); |
| 1987 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1988 | put_task_struct(tsk); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 1989 | out_unlock_cgroup: |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 1990 | mutex_unlock(&cgroup_mutex); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1991 | return ret; |
| 1992 | } |
| 1993 | |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 1994 | /** |
| 1995 | * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from' |
| 1996 | * @from: attach to all cgroups of a given task |
| 1997 | * @tsk: the task to be attached |
| 1998 | */ |
| 1999 | int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk) |
| 2000 | { |
| 2001 | struct cgroupfs_root *root; |
| 2002 | int retval = 0; |
| 2003 | |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2004 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2005 | for_each_active_root(root) { |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 2006 | struct cgroup *from_cgrp = task_cgroup_from_root(from, root); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2007 | |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 2008 | retval = cgroup_attach_task(from_cgrp, tsk, false); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2009 | if (retval) |
| 2010 | break; |
| 2011 | } |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2012 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2013 | |
| 2014 | return retval; |
| 2015 | } |
| 2016 | EXPORT_SYMBOL_GPL(cgroup_attach_task_all); |
| 2017 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2018 | static int cgroup_tasks_write(struct cgroup_subsys_state *css, |
| 2019 | struct cftype *cft, u64 pid) |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2020 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2021 | return attach_task_by_pid(css->cgroup, pid, false); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2022 | } |
| 2023 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2024 | static int cgroup_procs_write(struct cgroup_subsys_state *css, |
| 2025 | struct cftype *cft, u64 tgid) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2026 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2027 | return attach_task_by_pid(css->cgroup, tgid, true); |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2028 | } |
| 2029 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2030 | static int cgroup_release_agent_write(struct cgroup_subsys_state *css, |
| 2031 | struct cftype *cft, const char *buffer) |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2032 | { |
Tejun Heo | 5f46990 | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2033 | struct cgroupfs_root *root = css->cgroup->root; |
| 2034 | |
| 2035 | BUILD_BUG_ON(sizeof(root->release_agent_path) < PATH_MAX); |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2036 | if (!cgroup_lock_live_group(css->cgroup)) |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2037 | return -ENODEV; |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 2038 | spin_lock(&release_agent_path_lock); |
Tejun Heo | 5f46990 | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2039 | strlcpy(root->release_agent_path, buffer, |
| 2040 | sizeof(root->release_agent_path)); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 2041 | spin_unlock(&release_agent_path_lock); |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2042 | mutex_unlock(&cgroup_mutex); |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2043 | return 0; |
| 2044 | } |
| 2045 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2046 | static int cgroup_release_agent_show(struct seq_file *seq, void *v) |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2047 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2048 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2049 | |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2050 | if (!cgroup_lock_live_group(cgrp)) |
| 2051 | return -ENODEV; |
| 2052 | seq_puts(seq, cgrp->root->release_agent_path); |
| 2053 | seq_putc(seq, '\n'); |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2054 | mutex_unlock(&cgroup_mutex); |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2055 | return 0; |
| 2056 | } |
| 2057 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2058 | static int cgroup_sane_behavior_show(struct seq_file *seq, void *v) |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 2059 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2060 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2061 | |
| 2062 | seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp)); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 2063 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2064 | } |
| 2065 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2066 | static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf, |
| 2067 | size_t nbytes, loff_t off) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2068 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2069 | struct cgroup *cgrp = of->kn->parent->priv; |
| 2070 | struct cftype *cft = of->kn->priv; |
| 2071 | struct cgroup_subsys_state *css; |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2072 | int ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2073 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2074 | /* |
| 2075 | * kernfs guarantees that a file isn't deleted with operations in |
| 2076 | * flight, which means that the matching css is and stays alive and |
| 2077 | * doesn't need to be pinned. The RCU locking is not necessary |
| 2078 | * either. It's just for the convenience of using cgroup_css(). |
| 2079 | */ |
| 2080 | rcu_read_lock(); |
| 2081 | css = cgroup_css(cgrp, cft->ss); |
| 2082 | rcu_read_unlock(); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2083 | |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2084 | if (cft->write_string) { |
| 2085 | ret = cft->write_string(css, cft, strstrip(buf)); |
| 2086 | } else if (cft->write_u64) { |
| 2087 | unsigned long long v; |
| 2088 | ret = kstrtoull(buf, 0, &v); |
| 2089 | if (!ret) |
| 2090 | ret = cft->write_u64(css, cft, v); |
| 2091 | } else if (cft->write_s64) { |
| 2092 | long long v; |
| 2093 | ret = kstrtoll(buf, 0, &v); |
| 2094 | if (!ret) |
| 2095 | ret = cft->write_s64(css, cft, v); |
| 2096 | } else if (cft->trigger) { |
| 2097 | ret = cft->trigger(css, (unsigned int)cft->private); |
| 2098 | } else { |
| 2099 | ret = -EINVAL; |
| 2100 | } |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2101 | |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2102 | return ret ?: nbytes; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2103 | } |
| 2104 | |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2105 | static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos) |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2106 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2107 | return seq_cft(seq)->seq_start(seq, ppos); |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2108 | } |
| 2109 | |
| 2110 | static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos) |
| 2111 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2112 | return seq_cft(seq)->seq_next(seq, v, ppos); |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2113 | } |
| 2114 | |
| 2115 | static void cgroup_seqfile_stop(struct seq_file *seq, void *v) |
| 2116 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2117 | seq_cft(seq)->seq_stop(seq, v); |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2118 | } |
| 2119 | |
| 2120 | static int cgroup_seqfile_show(struct seq_file *m, void *arg) |
| 2121 | { |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2122 | struct cftype *cft = seq_cft(m); |
| 2123 | struct cgroup_subsys_state *css = seq_css(m); |
Li Zefan | e0798ce | 2013-07-31 17:36:25 +0800 | [diff] [blame] | 2124 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2125 | if (cft->seq_show) |
| 2126 | return cft->seq_show(m, arg); |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2127 | |
Tejun Heo | 896f519 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2128 | if (cft->read_u64) |
| 2129 | seq_printf(m, "%llu\n", cft->read_u64(css, cft)); |
| 2130 | else if (cft->read_s64) |
| 2131 | seq_printf(m, "%lld\n", cft->read_s64(css, cft)); |
| 2132 | else |
| 2133 | return -EINVAL; |
| 2134 | return 0; |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2135 | } |
| 2136 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2137 | static struct kernfs_ops cgroup_kf_single_ops = { |
| 2138 | .atomic_write_len = PAGE_SIZE, |
| 2139 | .write = cgroup_file_write, |
| 2140 | .seq_show = cgroup_seqfile_show, |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2141 | }; |
| 2142 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2143 | static struct kernfs_ops cgroup_kf_ops = { |
| 2144 | .atomic_write_len = PAGE_SIZE, |
| 2145 | .write = cgroup_file_write, |
| 2146 | .seq_start = cgroup_seqfile_start, |
| 2147 | .seq_next = cgroup_seqfile_next, |
| 2148 | .seq_stop = cgroup_seqfile_stop, |
| 2149 | .seq_show = cgroup_seqfile_show, |
| 2150 | }; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2151 | |
| 2152 | /* |
| 2153 | * cgroup_rename - Only allow simple rename of directories in place. |
| 2154 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2155 | static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent, |
| 2156 | const char *new_name_str) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2157 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2158 | struct cgroup *cgrp = kn->priv; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2159 | int ret; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2160 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2161 | if (kernfs_type(kn) != KERNFS_DIR) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2162 | return -ENOTDIR; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2163 | if (kn->parent != new_parent) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2164 | return -EIO; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2165 | |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 2166 | /* |
| 2167 | * This isn't a proper migration and its usefulness is very |
| 2168 | * limited. Disallow if sane_behavior. |
| 2169 | */ |
| 2170 | if (cgroup_sane_behavior(cgrp)) |
| 2171 | return -EPERM; |
| 2172 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2173 | mutex_lock(&cgroup_tree_mutex); |
| 2174 | mutex_lock(&cgroup_mutex); |
| 2175 | |
| 2176 | ret = kernfs_rename(kn, new_parent, new_name_str); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2177 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2178 | mutex_unlock(&cgroup_mutex); |
| 2179 | mutex_unlock(&cgroup_tree_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2180 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2181 | } |
| 2182 | |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 2183 | static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2184 | { |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2185 | char name[CGROUP_FILE_NAME_MAX]; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2186 | struct kernfs_node *kn; |
| 2187 | struct lock_class_key *key = NULL; |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2188 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2189 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 2190 | key = &cft->lockdep_key; |
| 2191 | #endif |
| 2192 | kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name), |
| 2193 | cgroup_file_mode(cft), 0, cft->kf_ops, cft, |
| 2194 | NULL, false, key); |
| 2195 | if (IS_ERR(kn)) |
| 2196 | return PTR_ERR(kn); |
| 2197 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2198 | } |
| 2199 | |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 2200 | /** |
| 2201 | * cgroup_addrm_files - add or remove files to a cgroup directory |
| 2202 | * @cgrp: the target cgroup |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 2203 | * @cfts: array of cftypes to be added |
| 2204 | * @is_add: whether to add or remove |
| 2205 | * |
| 2206 | * Depending on @is_add, add or remove files defined by @cfts on @cgrp. |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 2207 | * For removals, this function never fails. If addition fails, this |
| 2208 | * function doesn't remove files already added. The caller is responsible |
| 2209 | * for cleaning up. |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 2210 | */ |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 2211 | static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[], |
| 2212 | bool is_add) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2213 | { |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 2214 | struct cftype *cft; |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 2215 | int ret; |
| 2216 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 2217 | lockdep_assert_held(&cgroup_tree_mutex); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2218 | |
| 2219 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 2220 | /* does cft->flags tell us to skip this file on @cgrp? */ |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 2221 | if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp)) |
| 2222 | continue; |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 2223 | if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent) |
| 2224 | continue; |
| 2225 | if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent) |
| 2226 | continue; |
| 2227 | |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 2228 | if (is_add) { |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 2229 | ret = cgroup_add_file(cgrp, cft); |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 2230 | if (ret) { |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 2231 | pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n", |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 2232 | cft->name, ret); |
| 2233 | return ret; |
| 2234 | } |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 2235 | } else { |
| 2236 | cgroup_rm_file(cgrp, cft); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2237 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2238 | } |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 2239 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2240 | } |
| 2241 | |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2242 | static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add) |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2243 | { |
| 2244 | LIST_HEAD(pending); |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 2245 | struct cgroup_subsys *ss = cfts[0].ss; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2246 | struct cgroup *root = &ss->root->top_cgroup; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2247 | struct cgroup_subsys_state *css; |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 2248 | int ret = 0; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2249 | |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2250 | lockdep_assert_held(&cgroup_tree_mutex); |
Tejun Heo | 4ac0601 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 2251 | |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2252 | /* don't bother if @ss isn't attached */ |
| 2253 | if (ss->root == &cgroup_dummy_root) |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 2254 | return 0; |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 2255 | |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 2256 | /* add/rm files for all cgroups created before */ |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 2257 | css_for_each_descendant_pre(css, cgroup_css(root, ss)) { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2258 | struct cgroup *cgrp = css->cgroup; |
| 2259 | |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 2260 | if (cgroup_is_dead(cgrp)) |
| 2261 | continue; |
| 2262 | |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2263 | ret = cgroup_addrm_files(cgrp, cfts, is_add); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 2264 | if (ret) |
| 2265 | break; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2266 | } |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2267 | |
| 2268 | if (is_add && !ret) |
| 2269 | kernfs_activate(root->kn); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 2270 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2271 | } |
| 2272 | |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2273 | static void cgroup_exit_cftypes(struct cftype *cfts) |
| 2274 | { |
| 2275 | struct cftype *cft; |
| 2276 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2277 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
| 2278 | /* free copy for custom atomic_write_len, see init_cftypes() */ |
| 2279 | if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) |
| 2280 | kfree(cft->kf_ops); |
| 2281 | cft->kf_ops = NULL; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2282 | cft->ss = NULL; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2283 | } |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2284 | } |
| 2285 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2286 | static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2287 | { |
| 2288 | struct cftype *cft; |
| 2289 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2290 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
| 2291 | struct kernfs_ops *kf_ops; |
| 2292 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 2293 | WARN_ON(cft->ss || cft->kf_ops); |
| 2294 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2295 | if (cft->seq_start) |
| 2296 | kf_ops = &cgroup_kf_ops; |
| 2297 | else |
| 2298 | kf_ops = &cgroup_kf_single_ops; |
| 2299 | |
| 2300 | /* |
| 2301 | * Ugh... if @cft wants a custom max_write_len, we need to |
| 2302 | * make a copy of kf_ops to set its atomic_write_len. |
| 2303 | */ |
| 2304 | if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) { |
| 2305 | kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL); |
| 2306 | if (!kf_ops) { |
| 2307 | cgroup_exit_cftypes(cfts); |
| 2308 | return -ENOMEM; |
| 2309 | } |
| 2310 | kf_ops->atomic_write_len = cft->max_write_len; |
| 2311 | } |
| 2312 | |
| 2313 | cft->kf_ops = kf_ops; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2314 | cft->ss = ss; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2315 | } |
| 2316 | |
| 2317 | return 0; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2318 | } |
| 2319 | |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2320 | static int cgroup_rm_cftypes_locked(struct cftype *cfts) |
| 2321 | { |
| 2322 | lockdep_assert_held(&cgroup_tree_mutex); |
| 2323 | |
| 2324 | if (!cfts || !cfts[0].ss) |
| 2325 | return -ENOENT; |
| 2326 | |
| 2327 | list_del(&cfts->node); |
| 2328 | cgroup_apply_cftypes(cfts, false); |
| 2329 | cgroup_exit_cftypes(cfts); |
| 2330 | return 0; |
| 2331 | } |
| 2332 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2333 | /** |
Tejun Heo | 80b1358 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 2334 | * cgroup_rm_cftypes - remove an array of cftypes from a subsystem |
| 2335 | * @cfts: zero-length name terminated array of cftypes |
| 2336 | * |
| 2337 | * Unregister @cfts. Files described by @cfts are removed from all |
| 2338 | * existing cgroups and all future cgroups won't have them either. This |
| 2339 | * function can be called anytime whether @cfts' subsys is attached or not. |
| 2340 | * |
| 2341 | * Returns 0 on successful unregistration, -ENOENT if @cfts is not |
| 2342 | * registered. |
| 2343 | */ |
| 2344 | int cgroup_rm_cftypes(struct cftype *cfts) |
| 2345 | { |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2346 | int ret; |
Tejun Heo | 80b1358 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 2347 | |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2348 | mutex_lock(&cgroup_tree_mutex); |
| 2349 | ret = cgroup_rm_cftypes_locked(cfts); |
| 2350 | mutex_unlock(&cgroup_tree_mutex); |
| 2351 | return ret; |
Tejun Heo | 80b1358 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 2352 | } |
| 2353 | |
| 2354 | /** |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2355 | * cgroup_add_cftypes - add an array of cftypes to a subsystem |
| 2356 | * @ss: target cgroup subsystem |
| 2357 | * @cfts: zero-length name terminated array of cftypes |
| 2358 | * |
| 2359 | * Register @cfts to @ss. Files described by @cfts are created for all |
| 2360 | * existing cgroups to which @ss is attached and all future cgroups will |
| 2361 | * have them too. This function can be called anytime whether @ss is |
| 2362 | * attached or not. |
| 2363 | * |
| 2364 | * Returns 0 on successful registration, -errno on failure. Note that this |
| 2365 | * function currently returns 0 as long as @cfts registration is successful |
| 2366 | * even if some file creation attempts on existing cgroups fail. |
| 2367 | */ |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 2368 | int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2369 | { |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 2370 | int ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2371 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2372 | ret = cgroup_init_cftypes(ss, cfts); |
| 2373 | if (ret) |
| 2374 | return ret; |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 2375 | |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2376 | mutex_lock(&cgroup_tree_mutex); |
| 2377 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 2378 | list_add_tail(&cfts->node, &ss->cfts); |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2379 | ret = cgroup_apply_cftypes(cfts, true); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 2380 | if (ret) |
Tejun Heo | 21a2d343 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 2381 | cgroup_rm_cftypes_locked(cfts); |
| 2382 | |
| 2383 | mutex_unlock(&cgroup_tree_mutex); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 2384 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2385 | } |
| 2386 | EXPORT_SYMBOL_GPL(cgroup_add_cftypes); |
| 2387 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 2388 | /** |
| 2389 | * cgroup_task_count - count the number of tasks in a cgroup. |
| 2390 | * @cgrp: the cgroup in question |
| 2391 | * |
| 2392 | * Return the number of tasks in the cgroup. |
| 2393 | */ |
Tejun Heo | 07bc356 | 2014-02-13 06:58:39 -0500 | [diff] [blame^] | 2394 | static int cgroup_task_count(const struct cgroup *cgrp) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2395 | { |
| 2396 | int count = 0; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 2397 | struct cgrp_cset_link *link; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2398 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2399 | read_lock(&css_set_lock); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 2400 | list_for_each_entry(link, &cgrp->cset_links, cset_link) |
| 2401 | count += atomic_read(&link->cset->refcount); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2402 | read_unlock(&css_set_lock); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2403 | return count; |
| 2404 | } |
| 2405 | |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2406 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2407 | * css_next_child - find the next child of a given css |
| 2408 | * @pos_css: the current position (%NULL to initiate traversal) |
| 2409 | * @parent_css: css whose children to walk |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2410 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2411 | * This function returns the next child of @parent_css and should be called |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 2412 | * under either cgroup_mutex or RCU read lock. The only requirement is |
| 2413 | * that @parent_css and @pos_css are accessible. The next sibling is |
| 2414 | * guaranteed to be returned regardless of their states. |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2415 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2416 | struct cgroup_subsys_state * |
| 2417 | css_next_child(struct cgroup_subsys_state *pos_css, |
| 2418 | struct cgroup_subsys_state *parent_css) |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2419 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2420 | struct cgroup *pos = pos_css ? pos_css->cgroup : NULL; |
| 2421 | struct cgroup *cgrp = parent_css->cgroup; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2422 | struct cgroup *next; |
| 2423 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 2424 | cgroup_assert_mutexes_or_rcu_locked(); |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2425 | |
| 2426 | /* |
| 2427 | * @pos could already have been removed. Once a cgroup is removed, |
| 2428 | * its ->sibling.next is no longer updated when its next sibling |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 2429 | * changes. As CGRP_DEAD assertion is serialized and happens |
| 2430 | * before the cgroup is taken off the ->sibling list, if we see it |
| 2431 | * unasserted, it's guaranteed that the next sibling hasn't |
| 2432 | * finished its grace period even if it's already removed, and thus |
| 2433 | * safe to dereference from this RCU critical section. If |
| 2434 | * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed |
| 2435 | * to be visible as %true here. |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2436 | * |
| 2437 | * If @pos is dead, its next pointer can't be dereferenced; |
| 2438 | * however, as each cgroup is given a monotonically increasing |
| 2439 | * unique serial number and always appended to the sibling list, |
| 2440 | * the next one can be found by walking the parent's children until |
| 2441 | * we see a cgroup with higher serial number than @pos's. While |
| 2442 | * this path can be slower, it's taken only when either the current |
| 2443 | * cgroup is removed or iteration and removal race. |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2444 | */ |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2445 | if (!pos) { |
| 2446 | next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling); |
| 2447 | } else if (likely(!cgroup_is_dead(pos))) { |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2448 | next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling); |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2449 | } else { |
| 2450 | list_for_each_entry_rcu(next, &cgrp->children, sibling) |
| 2451 | if (next->serial_nr > pos->serial_nr) |
| 2452 | break; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2453 | } |
| 2454 | |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2455 | if (&next->sibling == &cgrp->children) |
| 2456 | return NULL; |
| 2457 | |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 2458 | return cgroup_css(next, parent_css->ss); |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2459 | } |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2460 | EXPORT_SYMBOL_GPL(css_next_child); |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2461 | |
| 2462 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2463 | * css_next_descendant_pre - find the next descendant for pre-order walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2464 | * @pos: the current position (%NULL to initiate traversal) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2465 | * @root: css whose descendants to walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2466 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2467 | * To be used by css_for_each_descendant_pre(). Find the next descendant |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 2468 | * to visit for pre-order traversal of @root's descendants. @root is |
| 2469 | * included in the iteration and the first node to be visited. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2470 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 2471 | * While this function requires cgroup_mutex or RCU read locking, it |
| 2472 | * doesn't require the whole traversal to be contained in a single critical |
| 2473 | * section. This function will return the correct next descendant as long |
| 2474 | * as both @pos and @root are accessible and @pos is a descendant of @root. |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2475 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2476 | struct cgroup_subsys_state * |
| 2477 | css_next_descendant_pre(struct cgroup_subsys_state *pos, |
| 2478 | struct cgroup_subsys_state *root) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2479 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2480 | struct cgroup_subsys_state *next; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2481 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 2482 | cgroup_assert_mutexes_or_rcu_locked(); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2483 | |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 2484 | /* if first iteration, visit @root */ |
Tejun Heo | 7805d00 | 2013-05-24 10:50:24 +0900 | [diff] [blame] | 2485 | if (!pos) |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 2486 | return root; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2487 | |
| 2488 | /* visit the first child if exists */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2489 | next = css_next_child(NULL, pos); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2490 | if (next) |
| 2491 | return next; |
| 2492 | |
| 2493 | /* no child, visit my or the closest ancestor's next sibling */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2494 | while (pos != root) { |
| 2495 | next = css_next_child(pos, css_parent(pos)); |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2496 | if (next) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2497 | return next; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2498 | pos = css_parent(pos); |
Tejun Heo | 7805d00 | 2013-05-24 10:50:24 +0900 | [diff] [blame] | 2499 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2500 | |
| 2501 | return NULL; |
| 2502 | } |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2503 | EXPORT_SYMBOL_GPL(css_next_descendant_pre); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2504 | |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 2505 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2506 | * css_rightmost_descendant - return the rightmost descendant of a css |
| 2507 | * @pos: css of interest |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 2508 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2509 | * Return the rightmost descendant of @pos. If there's no descendant, @pos |
| 2510 | * is returned. This can be used during pre-order traversal to skip |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 2511 | * subtree of @pos. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2512 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 2513 | * While this function requires cgroup_mutex or RCU read locking, it |
| 2514 | * doesn't require the whole traversal to be contained in a single critical |
| 2515 | * section. This function will return the correct rightmost descendant as |
| 2516 | * long as @pos is accessible. |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 2517 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2518 | struct cgroup_subsys_state * |
| 2519 | css_rightmost_descendant(struct cgroup_subsys_state *pos) |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 2520 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2521 | struct cgroup_subsys_state *last, *tmp; |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 2522 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 2523 | cgroup_assert_mutexes_or_rcu_locked(); |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 2524 | |
| 2525 | do { |
| 2526 | last = pos; |
| 2527 | /* ->prev isn't RCU safe, walk ->next till the end */ |
| 2528 | pos = NULL; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2529 | css_for_each_child(tmp, last) |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 2530 | pos = tmp; |
| 2531 | } while (pos); |
| 2532 | |
| 2533 | return last; |
| 2534 | } |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2535 | EXPORT_SYMBOL_GPL(css_rightmost_descendant); |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 2536 | |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2537 | static struct cgroup_subsys_state * |
| 2538 | css_leftmost_descendant(struct cgroup_subsys_state *pos) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2539 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2540 | struct cgroup_subsys_state *last; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2541 | |
| 2542 | do { |
| 2543 | last = pos; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2544 | pos = css_next_child(NULL, pos); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2545 | } while (pos); |
| 2546 | |
| 2547 | return last; |
| 2548 | } |
| 2549 | |
| 2550 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2551 | * css_next_descendant_post - find the next descendant for post-order walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2552 | * @pos: the current position (%NULL to initiate traversal) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2553 | * @root: css whose descendants to walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2554 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2555 | * To be used by css_for_each_descendant_post(). Find the next descendant |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 2556 | * to visit for post-order traversal of @root's descendants. @root is |
| 2557 | * included in the iteration and the last node to be visited. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2558 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 2559 | * While this function requires cgroup_mutex or RCU read locking, it |
| 2560 | * doesn't require the whole traversal to be contained in a single critical |
| 2561 | * section. This function will return the correct next descendant as long |
| 2562 | * as both @pos and @cgroup are accessible and @pos is a descendant of |
| 2563 | * @cgroup. |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2564 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2565 | struct cgroup_subsys_state * |
| 2566 | css_next_descendant_post(struct cgroup_subsys_state *pos, |
| 2567 | struct cgroup_subsys_state *root) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2568 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2569 | struct cgroup_subsys_state *next; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2570 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 2571 | cgroup_assert_mutexes_or_rcu_locked(); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2572 | |
Tejun Heo | 58b79a9 | 2013-09-06 15:31:08 -0400 | [diff] [blame] | 2573 | /* if first iteration, visit leftmost descendant which may be @root */ |
| 2574 | if (!pos) |
| 2575 | return css_leftmost_descendant(root); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2576 | |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 2577 | /* if we visited @root, we're done */ |
| 2578 | if (pos == root) |
| 2579 | return NULL; |
| 2580 | |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2581 | /* if there's an unvisited sibling, visit its leftmost descendant */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2582 | next = css_next_child(pos, css_parent(pos)); |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 2583 | if (next) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2584 | return css_leftmost_descendant(next); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2585 | |
| 2586 | /* no sibling left, visit parent */ |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 2587 | return css_parent(pos); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2588 | } |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2589 | EXPORT_SYMBOL_GPL(css_next_descendant_post); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 2590 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2591 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2592 | * css_advance_task_iter - advance a task itererator to the next css_set |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2593 | * @it: the iterator to advance |
| 2594 | * |
| 2595 | * Advance @it to the next css_set to walk. |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2596 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2597 | static void css_advance_task_iter(struct css_task_iter *it) |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2598 | { |
| 2599 | struct list_head *l = it->cset_link; |
| 2600 | struct cgrp_cset_link *link; |
| 2601 | struct css_set *cset; |
| 2602 | |
| 2603 | /* Advance to the next non-empty css_set */ |
| 2604 | do { |
| 2605 | l = l->next; |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2606 | if (l == &it->origin_css->cgroup->cset_links) { |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2607 | it->cset_link = NULL; |
| 2608 | return; |
| 2609 | } |
| 2610 | link = list_entry(l, struct cgrp_cset_link, cset_link); |
| 2611 | cset = link->cset; |
| 2612 | } while (list_empty(&cset->tasks)); |
| 2613 | it->cset_link = l; |
| 2614 | it->task = cset->tasks.next; |
| 2615 | } |
| 2616 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2617 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2618 | * css_task_iter_start - initiate task iteration |
| 2619 | * @css: the css to walk tasks of |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2620 | * @it: the task iterator to use |
| 2621 | * |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2622 | * Initiate iteration through the tasks of @css. The caller can call |
| 2623 | * css_task_iter_next() to walk through the tasks until the function |
| 2624 | * returns NULL. On completion of iteration, css_task_iter_end() must be |
| 2625 | * called. |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2626 | * |
| 2627 | * Note that this function acquires a lock which is released when the |
| 2628 | * iteration finishes. The caller can't sleep while iteration is in |
| 2629 | * progress. |
| 2630 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2631 | void css_task_iter_start(struct cgroup_subsys_state *css, |
| 2632 | struct css_task_iter *it) |
Kirill A. Shutemov | c6ca575 | 2011-12-27 07:46:26 +0200 | [diff] [blame] | 2633 | __acquires(css_set_lock) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2634 | { |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 2635 | /* no one should try to iterate before mounting cgroups */ |
| 2636 | WARN_ON_ONCE(!use_task_css_set_links); |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2637 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2638 | read_lock(&css_set_lock); |
Tejun Heo | c59cd3d | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2639 | |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2640 | it->origin_css = css; |
| 2641 | it->cset_link = &css->cgroup->cset_links; |
Tejun Heo | c59cd3d | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2642 | |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2643 | css_advance_task_iter(it); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2644 | } |
| 2645 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2646 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2647 | * css_task_iter_next - return the next task for the iterator |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2648 | * @it: the task iterator being iterated |
| 2649 | * |
| 2650 | * The "next" function for task iteration. @it should have been |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2651 | * initialized via css_task_iter_start(). Returns NULL when the iteration |
| 2652 | * reaches the end. |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2653 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2654 | struct task_struct *css_task_iter_next(struct css_task_iter *it) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2655 | { |
| 2656 | struct task_struct *res; |
| 2657 | struct list_head *l = it->task; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 2658 | struct cgrp_cset_link *link; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2659 | |
| 2660 | /* If the iterator cg is NULL, we have no tasks */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 2661 | if (!it->cset_link) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2662 | return NULL; |
| 2663 | res = list_entry(l, struct task_struct, cg_list); |
| 2664 | /* Advance iterator to find next entry */ |
| 2665 | l = l->next; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 2666 | link = list_entry(it->cset_link, struct cgrp_cset_link, cset_link); |
| 2667 | if (l == &link->cset->tasks) { |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2668 | /* |
| 2669 | * We reached the end of this task list - move on to the |
| 2670 | * next cgrp_cset_link. |
| 2671 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2672 | css_advance_task_iter(it); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2673 | } else { |
| 2674 | it->task = l; |
| 2675 | } |
| 2676 | return res; |
| 2677 | } |
| 2678 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2679 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2680 | * css_task_iter_end - finish task iteration |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2681 | * @it: the task iterator to finish |
| 2682 | * |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2683 | * Finish task iteration started by css_task_iter_start(). |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2684 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2685 | void css_task_iter_end(struct css_task_iter *it) |
Kirill A. Shutemov | c6ca575 | 2011-12-27 07:46:26 +0200 | [diff] [blame] | 2686 | __releases(css_set_lock) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2687 | { |
| 2688 | read_unlock(&css_set_lock); |
| 2689 | } |
| 2690 | |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2691 | static inline int started_after_time(struct task_struct *t1, |
| 2692 | struct timespec *time, |
| 2693 | struct task_struct *t2) |
| 2694 | { |
| 2695 | int start_diff = timespec_compare(&t1->start_time, time); |
| 2696 | if (start_diff > 0) { |
| 2697 | return 1; |
| 2698 | } else if (start_diff < 0) { |
| 2699 | return 0; |
| 2700 | } else { |
| 2701 | /* |
| 2702 | * Arbitrarily, if two processes started at the same |
| 2703 | * time, we'll say that the lower pointer value |
| 2704 | * started first. Note that t2 may have exited by now |
| 2705 | * so this may not be a valid pointer any longer, but |
| 2706 | * that's fine - it still serves to distinguish |
| 2707 | * between two tasks started (effectively) simultaneously. |
| 2708 | */ |
| 2709 | return t1 > t2; |
| 2710 | } |
| 2711 | } |
| 2712 | |
| 2713 | /* |
| 2714 | * This function is a callback from heap_insert() and is used to order |
| 2715 | * the heap. |
| 2716 | * In this case we order the heap in descending task start time. |
| 2717 | */ |
| 2718 | static inline int started_after(void *p1, void *p2) |
| 2719 | { |
| 2720 | struct task_struct *t1 = p1; |
| 2721 | struct task_struct *t2 = p2; |
| 2722 | return started_after_time(t1, &t2->start_time, t2); |
| 2723 | } |
| 2724 | |
| 2725 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2726 | * css_scan_tasks - iterate though all the tasks in a css |
| 2727 | * @css: the css to iterate tasks of |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2728 | * @test: optional test callback |
| 2729 | * @process: process callback |
| 2730 | * @data: data passed to @test and @process |
| 2731 | * @heap: optional pre-allocated heap used for task iteration |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2732 | * |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2733 | * Iterate through all the tasks in @css, calling @test for each, and if it |
| 2734 | * returns %true, call @process for it also. |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2735 | * |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2736 | * @test may be NULL, meaning always true (select all tasks), which |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2737 | * effectively duplicates css_task_iter_{start,next,end}() but does not |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2738 | * lock css_set_lock for the call to @process. |
| 2739 | * |
| 2740 | * It is guaranteed that @process will act on every task that is a member |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2741 | * of @css for the duration of this call. This function may or may not |
| 2742 | * call @process for tasks that exit or move to a different css during the |
| 2743 | * call, or are forked or move into the css during the call. |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2744 | * |
| 2745 | * Note that @test may be called with locks held, and may in some |
| 2746 | * situations be called multiple times for the same task, so it should be |
| 2747 | * cheap. |
| 2748 | * |
| 2749 | * If @heap is non-NULL, a heap has been pre-allocated and will be used for |
| 2750 | * heap operations (and its "gt" member will be overwritten), else a |
| 2751 | * temporary heap will be used (allocation of which may cause this function |
| 2752 | * to fail). |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2753 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2754 | int css_scan_tasks(struct cgroup_subsys_state *css, |
| 2755 | bool (*test)(struct task_struct *, void *), |
| 2756 | void (*process)(struct task_struct *, void *), |
| 2757 | void *data, struct ptr_heap *heap) |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2758 | { |
| 2759 | int retval, i; |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2760 | struct css_task_iter it; |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2761 | struct task_struct *p, *dropped; |
| 2762 | /* Never dereference latest_task, since it's not refcounted */ |
| 2763 | struct task_struct *latest_task = NULL; |
| 2764 | struct ptr_heap tmp_heap; |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2765 | struct timespec latest_time = { 0, 0 }; |
| 2766 | |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2767 | if (heap) { |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2768 | /* The caller supplied our heap and pre-allocated its memory */ |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2769 | heap->gt = &started_after; |
| 2770 | } else { |
| 2771 | /* We need to allocate our own heap memory */ |
| 2772 | heap = &tmp_heap; |
| 2773 | retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after); |
| 2774 | if (retval) |
| 2775 | /* cannot allocate the heap */ |
| 2776 | return retval; |
| 2777 | } |
| 2778 | |
| 2779 | again: |
| 2780 | /* |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2781 | * Scan tasks in the css, using the @test callback to determine |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2782 | * which are of interest, and invoking @process callback on the |
| 2783 | * ones which need an update. Since we don't want to hold any |
| 2784 | * locks during the task updates, gather tasks to be processed in a |
| 2785 | * heap structure. The heap is sorted by descending task start |
| 2786 | * time. If the statically-sized heap fills up, we overflow tasks |
| 2787 | * that started later, and in future iterations only consider tasks |
| 2788 | * that started after the latest task in the previous pass. This |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2789 | * guarantees forward progress and that we don't miss any tasks. |
| 2790 | */ |
| 2791 | heap->size = 0; |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2792 | css_task_iter_start(css, &it); |
| 2793 | while ((p = css_task_iter_next(&it))) { |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2794 | /* |
| 2795 | * Only affect tasks that qualify per the caller's callback, |
| 2796 | * if he provided one |
| 2797 | */ |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2798 | if (test && !test(p, data)) |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2799 | continue; |
| 2800 | /* |
| 2801 | * Only process tasks that started after the last task |
| 2802 | * we processed |
| 2803 | */ |
| 2804 | if (!started_after_time(p, &latest_time, latest_task)) |
| 2805 | continue; |
| 2806 | dropped = heap_insert(heap, p); |
| 2807 | if (dropped == NULL) { |
| 2808 | /* |
| 2809 | * The new task was inserted; the heap wasn't |
| 2810 | * previously full |
| 2811 | */ |
| 2812 | get_task_struct(p); |
| 2813 | } else if (dropped != p) { |
| 2814 | /* |
| 2815 | * The new task was inserted, and pushed out a |
| 2816 | * different task |
| 2817 | */ |
| 2818 | get_task_struct(p); |
| 2819 | put_task_struct(dropped); |
| 2820 | } |
| 2821 | /* |
| 2822 | * Else the new task was newer than anything already in |
| 2823 | * the heap and wasn't inserted |
| 2824 | */ |
| 2825 | } |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2826 | css_task_iter_end(&it); |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2827 | |
| 2828 | if (heap->size) { |
| 2829 | for (i = 0; i < heap->size; i++) { |
Paul Jackson | 4fe91d5 | 2008-04-29 00:59:55 -0700 | [diff] [blame] | 2830 | struct task_struct *q = heap->ptrs[i]; |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2831 | if (i == 0) { |
Paul Jackson | 4fe91d5 | 2008-04-29 00:59:55 -0700 | [diff] [blame] | 2832 | latest_time = q->start_time; |
| 2833 | latest_task = q; |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2834 | } |
| 2835 | /* Process the task per the caller's callback */ |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2836 | process(q, data); |
Paul Jackson | 4fe91d5 | 2008-04-29 00:59:55 -0700 | [diff] [blame] | 2837 | put_task_struct(q); |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2838 | } |
| 2839 | /* |
| 2840 | * If we had to process any tasks at all, scan again |
| 2841 | * in case some of them were in the middle of forking |
| 2842 | * children that didn't get processed. |
| 2843 | * Not the most efficient way to do it, but it avoids |
| 2844 | * having to take callback_mutex in the fork path |
| 2845 | */ |
| 2846 | goto again; |
| 2847 | } |
| 2848 | if (heap == &tmp_heap) |
| 2849 | heap_free(&tmp_heap); |
| 2850 | return 0; |
| 2851 | } |
| 2852 | |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2853 | static void cgroup_transfer_one_task(struct task_struct *task, void *data) |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 2854 | { |
Tejun Heo | e535837 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2855 | struct cgroup *new_cgroup = data; |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 2856 | |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2857 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 2858 | cgroup_attach_task(new_cgroup, task, false); |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2859 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 2860 | } |
| 2861 | |
| 2862 | /** |
| 2863 | * cgroup_trasnsfer_tasks - move tasks from one cgroup to another |
| 2864 | * @to: cgroup to which the tasks will be moved |
| 2865 | * @from: cgroup in which the tasks currently reside |
| 2866 | */ |
| 2867 | int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from) |
| 2868 | { |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 2869 | return css_scan_tasks(&from->dummy_css, NULL, cgroup_transfer_one_task, |
| 2870 | to, NULL); |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 2871 | } |
| 2872 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2873 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 2874 | * Stuff for reading the 'tasks'/'procs' files. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2875 | * |
| 2876 | * Reading this file can return large amounts of data if a cgroup has |
| 2877 | * *lots* of attached tasks. So it may need several calls to read(), |
| 2878 | * but we cannot guarantee that the information we produce is correct |
| 2879 | * unless we produce it entirely atomically. |
| 2880 | * |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2881 | */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2882 | |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 2883 | /* which pidlist file are we talking about? */ |
| 2884 | enum cgroup_filetype { |
| 2885 | CGROUP_FILE_PROCS, |
| 2886 | CGROUP_FILE_TASKS, |
| 2887 | }; |
| 2888 | |
| 2889 | /* |
| 2890 | * A pidlist is a list of pids that virtually represents the contents of one |
| 2891 | * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists, |
| 2892 | * a pair (one each for procs, tasks) for each pid namespace that's relevant |
| 2893 | * to the cgroup. |
| 2894 | */ |
| 2895 | struct cgroup_pidlist { |
| 2896 | /* |
| 2897 | * used to find which pidlist is wanted. doesn't change as long as |
| 2898 | * this particular list stays in the list. |
| 2899 | */ |
| 2900 | struct { enum cgroup_filetype type; struct pid_namespace *ns; } key; |
| 2901 | /* array of xids */ |
| 2902 | pid_t *list; |
| 2903 | /* how many elements the above list has */ |
| 2904 | int length; |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 2905 | /* each of these stored in a list by its cgroup */ |
| 2906 | struct list_head links; |
| 2907 | /* pointer to the cgroup we belong to, for list removal purposes */ |
| 2908 | struct cgroup *owner; |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 2909 | /* for delayed destruction */ |
| 2910 | struct delayed_work destroy_dwork; |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 2911 | }; |
| 2912 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2913 | /* |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 2914 | * The following two functions "fix" the issue where there are more pids |
| 2915 | * than kmalloc will give memory for; in such cases, we use vmalloc/vfree. |
| 2916 | * TODO: replace with a kernel-wide solution to this problem |
| 2917 | */ |
| 2918 | #define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2)) |
| 2919 | static void *pidlist_allocate(int count) |
| 2920 | { |
| 2921 | if (PIDLIST_TOO_LARGE(count)) |
| 2922 | return vmalloc(count * sizeof(pid_t)); |
| 2923 | else |
| 2924 | return kmalloc(count * sizeof(pid_t), GFP_KERNEL); |
| 2925 | } |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 2926 | |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 2927 | static void pidlist_free(void *p) |
| 2928 | { |
| 2929 | if (is_vmalloc_addr(p)) |
| 2930 | vfree(p); |
| 2931 | else |
| 2932 | kfree(p); |
| 2933 | } |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 2934 | |
| 2935 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 2936 | * Used to destroy all pidlists lingering waiting for destroy timer. None |
| 2937 | * should be left afterwards. |
| 2938 | */ |
| 2939 | static void cgroup_pidlist_destroy_all(struct cgroup *cgrp) |
| 2940 | { |
| 2941 | struct cgroup_pidlist *l, *tmp_l; |
| 2942 | |
| 2943 | mutex_lock(&cgrp->pidlist_mutex); |
| 2944 | list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links) |
| 2945 | mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0); |
| 2946 | mutex_unlock(&cgrp->pidlist_mutex); |
| 2947 | |
| 2948 | flush_workqueue(cgroup_pidlist_destroy_wq); |
| 2949 | BUG_ON(!list_empty(&cgrp->pidlists)); |
| 2950 | } |
| 2951 | |
| 2952 | static void cgroup_pidlist_destroy_work_fn(struct work_struct *work) |
| 2953 | { |
| 2954 | struct delayed_work *dwork = to_delayed_work(work); |
| 2955 | struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist, |
| 2956 | destroy_dwork); |
| 2957 | struct cgroup_pidlist *tofree = NULL; |
| 2958 | |
| 2959 | mutex_lock(&l->owner->pidlist_mutex); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 2960 | |
| 2961 | /* |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 2962 | * Destroy iff we didn't get queued again. The state won't change |
| 2963 | * as destroy_dwork can only be queued while locked. |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 2964 | */ |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 2965 | if (!delayed_work_pending(dwork)) { |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 2966 | list_del(&l->links); |
| 2967 | pidlist_free(l->list); |
| 2968 | put_pid_ns(l->key.ns); |
| 2969 | tofree = l; |
| 2970 | } |
| 2971 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 2972 | mutex_unlock(&l->owner->pidlist_mutex); |
| 2973 | kfree(tofree); |
| 2974 | } |
| 2975 | |
| 2976 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 2977 | * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 2978 | * Returns the number of unique elements. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2979 | */ |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 2980 | static int pidlist_uniq(pid_t *list, int length) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2981 | { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 2982 | int src, dest = 1; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 2983 | |
| 2984 | /* |
| 2985 | * we presume the 0th element is unique, so i starts at 1. trivial |
| 2986 | * edge cases first; no work needs to be done for either |
| 2987 | */ |
| 2988 | if (length == 0 || length == 1) |
| 2989 | return length; |
| 2990 | /* src and dest walk down the list; dest counts unique elements */ |
| 2991 | for (src = 1; src < length; src++) { |
| 2992 | /* find next unique element */ |
| 2993 | while (list[src] == list[src-1]) { |
| 2994 | src++; |
| 2995 | if (src == length) |
| 2996 | goto after; |
| 2997 | } |
| 2998 | /* dest always points to where the next unique element goes */ |
| 2999 | list[dest] = list[src]; |
| 3000 | dest++; |
| 3001 | } |
| 3002 | after: |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3003 | return dest; |
| 3004 | } |
| 3005 | |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3006 | /* |
| 3007 | * The two pid files - task and cgroup.procs - guaranteed that the result |
| 3008 | * is sorted, which forced this whole pidlist fiasco. As pid order is |
| 3009 | * different per namespace, each namespace needs differently sorted list, |
| 3010 | * making it impossible to use, for example, single rbtree of member tasks |
| 3011 | * sorted by task pointer. As pidlists can be fairly large, allocating one |
| 3012 | * per open file is dangerous, so cgroup had to implement shared pool of |
| 3013 | * pidlists keyed by cgroup and namespace. |
| 3014 | * |
| 3015 | * All this extra complexity was caused by the original implementation |
| 3016 | * committing to an entirely unnecessary property. In the long term, we |
| 3017 | * want to do away with it. Explicitly scramble sort order if |
| 3018 | * sane_behavior so that no such expectation exists in the new interface. |
| 3019 | * |
| 3020 | * Scrambling is done by swapping every two consecutive bits, which is |
| 3021 | * non-identity one-to-one mapping which disturbs sort order sufficiently. |
| 3022 | */ |
| 3023 | static pid_t pid_fry(pid_t pid) |
| 3024 | { |
| 3025 | unsigned a = pid & 0x55555555; |
| 3026 | unsigned b = pid & 0xAAAAAAAA; |
| 3027 | |
| 3028 | return (a << 1) | (b >> 1); |
| 3029 | } |
| 3030 | |
| 3031 | static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid) |
| 3032 | { |
| 3033 | if (cgroup_sane_behavior(cgrp)) |
| 3034 | return pid_fry(pid); |
| 3035 | else |
| 3036 | return pid; |
| 3037 | } |
| 3038 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3039 | static int cmppid(const void *a, const void *b) |
| 3040 | { |
| 3041 | return *(pid_t *)a - *(pid_t *)b; |
| 3042 | } |
| 3043 | |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3044 | static int fried_cmppid(const void *a, const void *b) |
| 3045 | { |
| 3046 | return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b); |
| 3047 | } |
| 3048 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3049 | static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp, |
| 3050 | enum cgroup_filetype type) |
| 3051 | { |
| 3052 | struct cgroup_pidlist *l; |
| 3053 | /* don't need task_nsproxy() if we're looking at ourself */ |
Eric W. Biederman | 17cf22c | 2010-03-02 14:51:53 -0800 | [diff] [blame] | 3054 | struct pid_namespace *ns = task_active_pid_ns(current); |
Li Zefan | b70cc5f | 2010-03-10 15:22:12 -0800 | [diff] [blame] | 3055 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3056 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3057 | |
| 3058 | list_for_each_entry(l, &cgrp->pidlists, links) |
| 3059 | if (l->key.type == type && l->key.ns == ns) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3060 | return l; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3061 | return NULL; |
| 3062 | } |
| 3063 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3064 | /* |
| 3065 | * find the appropriate pidlist for our purpose (given procs vs tasks) |
| 3066 | * returns with the lock on that pidlist already held, and takes care |
| 3067 | * of the use count, or returns NULL with no locks held if we're out of |
| 3068 | * memory. |
| 3069 | */ |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3070 | static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp, |
| 3071 | enum cgroup_filetype type) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3072 | { |
| 3073 | struct cgroup_pidlist *l; |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3074 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3075 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3076 | |
| 3077 | l = cgroup_pidlist_find(cgrp, type); |
| 3078 | if (l) |
| 3079 | return l; |
| 3080 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3081 | /* entry not found; create a new one */ |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 3082 | l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL); |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3083 | if (!l) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3084 | return l; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3085 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3086 | INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3087 | l->key.type = type; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3088 | /* don't need task_nsproxy() if we're looking at ourself */ |
| 3089 | l->key.ns = get_pid_ns(task_active_pid_ns(current)); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3090 | l->owner = cgrp; |
| 3091 | list_add(&l->links, &cgrp->pidlists); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3092 | return l; |
| 3093 | } |
| 3094 | |
| 3095 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3096 | * Load a cgroup's pidarray with either procs' tgids or tasks' pids |
| 3097 | */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3098 | static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type, |
| 3099 | struct cgroup_pidlist **lp) |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3100 | { |
| 3101 | pid_t *array; |
| 3102 | int length; |
| 3103 | int pid, n = 0; /* used for populating the array */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3104 | struct css_task_iter it; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3105 | struct task_struct *tsk; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3106 | struct cgroup_pidlist *l; |
| 3107 | |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3108 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3109 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3110 | /* |
| 3111 | * If cgroup gets more users after we read count, we won't have |
| 3112 | * enough space - tough. This race is indistinguishable to the |
| 3113 | * caller from the case that the additional cgroup users didn't |
| 3114 | * show up until sometime later on. |
| 3115 | */ |
| 3116 | length = cgroup_task_count(cgrp); |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3117 | array = pidlist_allocate(length); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3118 | if (!array) |
| 3119 | return -ENOMEM; |
| 3120 | /* now, populate the array */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3121 | css_task_iter_start(&cgrp->dummy_css, &it); |
| 3122 | while ((tsk = css_task_iter_next(&it))) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3123 | if (unlikely(n == length)) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3124 | break; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3125 | /* get tgid or pid for procs or tasks file respectively */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3126 | if (type == CGROUP_FILE_PROCS) |
| 3127 | pid = task_tgid_vnr(tsk); |
| 3128 | else |
| 3129 | pid = task_pid_vnr(tsk); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3130 | if (pid > 0) /* make sure to only use valid results */ |
| 3131 | array[n++] = pid; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3132 | } |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3133 | css_task_iter_end(&it); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3134 | length = n; |
| 3135 | /* now sort & (if procs) strip out duplicates */ |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3136 | if (cgroup_sane_behavior(cgrp)) |
| 3137 | sort(array, length, sizeof(pid_t), fried_cmppid, NULL); |
| 3138 | else |
| 3139 | sort(array, length, sizeof(pid_t), cmppid, NULL); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3140 | if (type == CGROUP_FILE_PROCS) |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 3141 | length = pidlist_uniq(array, length); |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3142 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3143 | l = cgroup_pidlist_find_create(cgrp, type); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3144 | if (!l) { |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3145 | mutex_unlock(&cgrp->pidlist_mutex); |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3146 | pidlist_free(array); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3147 | return -ENOMEM; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3148 | } |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3149 | |
| 3150 | /* store array, freeing old if necessary */ |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3151 | pidlist_free(l->list); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3152 | l->list = array; |
| 3153 | l->length = length; |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3154 | *lp = l; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3155 | return 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3156 | } |
| 3157 | |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3158 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3159 | * cgroupstats_build - build and fill cgroupstats |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3160 | * @stats: cgroupstats to fill information into |
| 3161 | * @dentry: A dentry entry belonging to the cgroup for which stats have |
| 3162 | * been requested. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3163 | * |
| 3164 | * Build and fill cgroupstats so that taskstats can export it to user |
| 3165 | * space. |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3166 | */ |
| 3167 | int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry) |
| 3168 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3169 | struct kernfs_node *kn = kernfs_node_from_dentry(dentry); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3170 | struct cgroup *cgrp; |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3171 | struct css_task_iter it; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3172 | struct task_struct *tsk; |
Li Zefan | 33d283b | 2008-11-19 15:36:48 -0800 | [diff] [blame] | 3173 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3174 | /* it should be kernfs_node belonging to cgroupfs and is a directory */ |
| 3175 | if (dentry->d_sb->s_type != &cgroup_fs_type || !kn || |
| 3176 | kernfs_type(kn) != KERNFS_DIR) |
| 3177 | return -EINVAL; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3178 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3179 | /* |
| 3180 | * We aren't being called from kernfs and there's no guarantee on |
| 3181 | * @kn->priv's validity. For this and css_tryget_from_dir(), |
| 3182 | * @kn->priv is RCU safe. Let's do the RCU dancing. |
| 3183 | */ |
| 3184 | rcu_read_lock(); |
| 3185 | cgrp = rcu_dereference(kn->priv); |
| 3186 | if (!cgrp) { |
| 3187 | rcu_read_unlock(); |
| 3188 | return -ENOENT; |
| 3189 | } |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3190 | |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3191 | css_task_iter_start(&cgrp->dummy_css, &it); |
| 3192 | while ((tsk = css_task_iter_next(&it))) { |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3193 | switch (tsk->state) { |
| 3194 | case TASK_RUNNING: |
| 3195 | stats->nr_running++; |
| 3196 | break; |
| 3197 | case TASK_INTERRUPTIBLE: |
| 3198 | stats->nr_sleeping++; |
| 3199 | break; |
| 3200 | case TASK_UNINTERRUPTIBLE: |
| 3201 | stats->nr_uninterruptible++; |
| 3202 | break; |
| 3203 | case TASK_STOPPED: |
| 3204 | stats->nr_stopped++; |
| 3205 | break; |
| 3206 | default: |
| 3207 | if (delayacct_is_task_waiting_on_io(tsk)) |
| 3208 | stats->nr_io_wait++; |
| 3209 | break; |
| 3210 | } |
| 3211 | } |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3212 | css_task_iter_end(&it); |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3213 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3214 | rcu_read_unlock(); |
| 3215 | return 0; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3216 | } |
| 3217 | |
Paul Menage | 8f3ff20 | 2009-09-23 15:56:25 -0700 | [diff] [blame] | 3218 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3219 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3220 | * seq_file methods for the tasks/procs files. The seq_file position is the |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3221 | * next pid to display; the seq_file iterator is a pointer to the pid |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3222 | * in the cgroup->l->list array. |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3223 | */ |
| 3224 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3225 | static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3226 | { |
| 3227 | /* |
| 3228 | * Initially we receive a position value that corresponds to |
| 3229 | * one more than the last pid shown (or 0 on the first call or |
| 3230 | * after a seek to the start). Use a binary-search to find the |
| 3231 | * next pid to display, if any |
| 3232 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3233 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3234 | struct cgroup *cgrp = seq_css(s)->cgroup; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3235 | struct cgroup_pidlist *l; |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3236 | enum cgroup_filetype type = seq_cft(s)->private; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3237 | int index = 0, pid = *pos; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3238 | int *iter, ret; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3239 | |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3240 | mutex_lock(&cgrp->pidlist_mutex); |
| 3241 | |
| 3242 | /* |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3243 | * !NULL @of->priv indicates that this isn't the first start() |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3244 | * after open. If the matching pidlist is around, we can use that. |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3245 | * Look for it. Note that @of->priv can't be used directly. It |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3246 | * could already have been destroyed. |
| 3247 | */ |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3248 | if (of->priv) |
| 3249 | of->priv = cgroup_pidlist_find(cgrp, type); |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3250 | |
| 3251 | /* |
| 3252 | * Either this is the first start() after open or the matching |
| 3253 | * pidlist has been destroyed inbetween. Create a new one. |
| 3254 | */ |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3255 | if (!of->priv) { |
| 3256 | ret = pidlist_array_load(cgrp, type, |
| 3257 | (struct cgroup_pidlist **)&of->priv); |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3258 | if (ret) |
| 3259 | return ERR_PTR(ret); |
| 3260 | } |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3261 | l = of->priv; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3262 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3263 | if (pid) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3264 | int end = l->length; |
Stephen Rothwell | 2077776 | 2008-10-21 16:11:20 +1100 | [diff] [blame] | 3265 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3266 | while (index < end) { |
| 3267 | int mid = (index + end) / 2; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3268 | if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) { |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3269 | index = mid; |
| 3270 | break; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3271 | } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3272 | index = mid + 1; |
| 3273 | else |
| 3274 | end = mid; |
| 3275 | } |
| 3276 | } |
| 3277 | /* If we're off the end of the array, we're done */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3278 | if (index >= l->length) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3279 | return NULL; |
| 3280 | /* Update the abstract position to be the actual pid that we found */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3281 | iter = l->list + index; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3282 | *pos = cgroup_pid_fry(cgrp, *iter); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3283 | return iter; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3284 | } |
| 3285 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3286 | static void cgroup_pidlist_stop(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3287 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3288 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3289 | struct cgroup_pidlist *l = of->priv; |
Tejun Heo | 6223685 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3290 | |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3291 | if (l) |
| 3292 | mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3293 | CGROUP_PIDLIST_DESTROY_DELAY); |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3294 | mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3295 | } |
| 3296 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3297 | static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3298 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3299 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3300 | struct cgroup_pidlist *l = of->priv; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3301 | pid_t *p = v; |
| 3302 | pid_t *end = l->list + l->length; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3303 | /* |
| 3304 | * Advance to the next pid in the array. If this goes off the |
| 3305 | * end, we're done |
| 3306 | */ |
| 3307 | p++; |
| 3308 | if (p >= end) { |
| 3309 | return NULL; |
| 3310 | } else { |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3311 | *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3312 | return p; |
| 3313 | } |
| 3314 | } |
| 3315 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3316 | static int cgroup_pidlist_show(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3317 | { |
| 3318 | return seq_printf(s, "%d\n", *(int *)v); |
| 3319 | } |
| 3320 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3321 | /* |
| 3322 | * seq_operations functions for iterating on pidlists through seq_file - |
| 3323 | * independent of whether it's tasks or procs |
| 3324 | */ |
| 3325 | static const struct seq_operations cgroup_pidlist_seq_operations = { |
| 3326 | .start = cgroup_pidlist_start, |
| 3327 | .stop = cgroup_pidlist_stop, |
| 3328 | .next = cgroup_pidlist_next, |
| 3329 | .show = cgroup_pidlist_show, |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3330 | }; |
| 3331 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3332 | static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css, |
| 3333 | struct cftype *cft) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3334 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3335 | return notify_on_release(css->cgroup); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3336 | } |
| 3337 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3338 | static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css, |
| 3339 | struct cftype *cft, u64 val) |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 3340 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3341 | clear_bit(CGRP_RELEASABLE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 3342 | if (val) |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3343 | set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 3344 | else |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3345 | clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 3346 | return 0; |
| 3347 | } |
| 3348 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3349 | static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css, |
| 3350 | struct cftype *cft) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3351 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3352 | return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3353 | } |
| 3354 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3355 | static int cgroup_clone_children_write(struct cgroup_subsys_state *css, |
| 3356 | struct cftype *cft, u64 val) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3357 | { |
| 3358 | if (val) |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3359 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3360 | else |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3361 | clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3362 | return 0; |
| 3363 | } |
| 3364 | |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 3365 | static struct cftype cgroup_base_files[] = { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3366 | { |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 3367 | .name = "cgroup.procs", |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3368 | .seq_start = cgroup_pidlist_start, |
| 3369 | .seq_next = cgroup_pidlist_next, |
| 3370 | .seq_stop = cgroup_pidlist_stop, |
| 3371 | .seq_show = cgroup_pidlist_show, |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3372 | .private = CGROUP_FILE_PROCS, |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 3373 | .write_u64 = cgroup_procs_write, |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 3374 | .mode = S_IRUGO | S_IWUSR, |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3375 | }, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3376 | { |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3377 | .name = "cgroup.clone_children", |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 3378 | .flags = CFTYPE_INSANE, |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3379 | .read_u64 = cgroup_clone_children_read, |
| 3380 | .write_u64 = cgroup_clone_children_write, |
| 3381 | }, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3382 | { |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 3383 | .name = "cgroup.sane_behavior", |
| 3384 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3385 | .seq_show = cgroup_sane_behavior_show, |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 3386 | }, |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 3387 | |
| 3388 | /* |
| 3389 | * Historical crazy stuff. These don't have "cgroup." prefix and |
| 3390 | * don't exist if sane_behavior. If you're depending on these, be |
| 3391 | * prepared to be burned. |
| 3392 | */ |
| 3393 | { |
| 3394 | .name = "tasks", |
| 3395 | .flags = CFTYPE_INSANE, /* use "procs" instead */ |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3396 | .seq_start = cgroup_pidlist_start, |
| 3397 | .seq_next = cgroup_pidlist_next, |
| 3398 | .seq_stop = cgroup_pidlist_stop, |
| 3399 | .seq_show = cgroup_pidlist_show, |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3400 | .private = CGROUP_FILE_TASKS, |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 3401 | .write_u64 = cgroup_tasks_write, |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 3402 | .mode = S_IRUGO | S_IWUSR, |
| 3403 | }, |
| 3404 | { |
| 3405 | .name = "notify_on_release", |
| 3406 | .flags = CFTYPE_INSANE, |
| 3407 | .read_u64 = cgroup_read_notify_on_release, |
| 3408 | .write_u64 = cgroup_write_notify_on_release, |
| 3409 | }, |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 3410 | { |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3411 | .name = "release_agent", |
Tejun Heo | cc5943a | 2013-06-03 19:13:55 -0700 | [diff] [blame] | 3412 | .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 3413 | .seq_show = cgroup_release_agent_show, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3414 | .write_string = cgroup_release_agent_write, |
Tejun Heo | 5f46990 | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3415 | .max_write_len = PATH_MAX - 1, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3416 | }, |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3417 | { } /* terminate */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3418 | }; |
| 3419 | |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 3420 | /** |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3421 | * cgroup_populate_dir - create subsys files in a cgroup directory |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 3422 | * @cgrp: target cgroup |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 3423 | * @subsys_mask: mask of the subsystem ids whose files should be added |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3424 | * |
| 3425 | * On failure, no file is added. |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 3426 | */ |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3427 | static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3428 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3429 | struct cgroup_subsys *ss; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 3430 | int i, ret = 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3431 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3432 | /* process cftsets of each subsystem */ |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 3433 | for_each_subsys(ss, i) { |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3434 | struct cftype *cfts; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 3435 | |
| 3436 | if (!test_bit(i, &subsys_mask)) |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 3437 | continue; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3438 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3439 | list_for_each_entry(cfts, &ss->cfts, node) { |
| 3440 | ret = cgroup_addrm_files(cgrp, cfts, true); |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3441 | if (ret < 0) |
| 3442 | goto err; |
| 3443 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3444 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3445 | return 0; |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3446 | err: |
| 3447 | cgroup_clear_dir(cgrp, subsys_mask); |
| 3448 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3449 | } |
| 3450 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3451 | /* |
| 3452 | * css destruction is four-stage process. |
| 3453 | * |
| 3454 | * 1. Destruction starts. Killing of the percpu_ref is initiated. |
| 3455 | * Implemented in kill_css(). |
| 3456 | * |
| 3457 | * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs |
| 3458 | * and thus css_tryget() is guaranteed to fail, the css can be offlined |
| 3459 | * by invoking offline_css(). After offlining, the base ref is put. |
| 3460 | * Implemented in css_killed_work_fn(). |
| 3461 | * |
| 3462 | * 3. When the percpu_ref reaches zero, the only possible remaining |
| 3463 | * accessors are inside RCU read sections. css_release() schedules the |
| 3464 | * RCU callback. |
| 3465 | * |
| 3466 | * 4. After the grace period, the css can be freed. Implemented in |
| 3467 | * css_free_work_fn(). |
| 3468 | * |
| 3469 | * It is actually hairier because both step 2 and 4 require process context |
| 3470 | * and thus involve punting to css->destroy_work adding two additional |
| 3471 | * steps to the already complex sequence. |
| 3472 | */ |
Tejun Heo | 35ef10d | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 3473 | static void css_free_work_fn(struct work_struct *work) |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3474 | { |
| 3475 | struct cgroup_subsys_state *css = |
Tejun Heo | 35ef10d | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 3476 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3477 | struct cgroup *cgrp = css->cgroup; |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3478 | |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 3479 | if (css->parent) |
| 3480 | css_put(css->parent); |
| 3481 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3482 | css->ss->css_free(css); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3483 | cgroup_put(cgrp); |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3484 | } |
| 3485 | |
| 3486 | static void css_free_rcu_fn(struct rcu_head *rcu_head) |
| 3487 | { |
| 3488 | struct cgroup_subsys_state *css = |
| 3489 | container_of(rcu_head, struct cgroup_subsys_state, rcu_head); |
| 3490 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3491 | INIT_WORK(&css->destroy_work, css_free_work_fn); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 3492 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3493 | } |
| 3494 | |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3495 | static void css_release(struct percpu_ref *ref) |
| 3496 | { |
| 3497 | struct cgroup_subsys_state *css = |
| 3498 | container_of(ref, struct cgroup_subsys_state, refcnt); |
| 3499 | |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 3500 | rcu_assign_pointer(css->cgroup->subsys[css->ss->id], NULL); |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3501 | call_rcu(&css->rcu_head, css_free_rcu_fn); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3502 | } |
| 3503 | |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 3504 | static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss, |
| 3505 | struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3506 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3507 | css->cgroup = cgrp; |
Tejun Heo | 72c97e5 | 2013-08-08 20:11:22 -0400 | [diff] [blame] | 3508 | css->ss = ss; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3509 | css->flags = 0; |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3510 | |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 3511 | if (cgrp->parent) |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 3512 | css->parent = cgroup_css(cgrp->parent, ss); |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 3513 | else |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3514 | css->flags |= CSS_ROOT; |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 3515 | |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 3516 | BUG_ON(cgroup_css(cgrp, ss)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3517 | } |
| 3518 | |
Li Zefan | 2a4ac63 | 2013-07-31 16:16:40 +0800 | [diff] [blame] | 3519 | /* invoke ->css_online() on a new CSS and mark it online if successful */ |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 3520 | static int online_css(struct cgroup_subsys_state *css) |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3521 | { |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 3522 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | b1929db | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 3523 | int ret = 0; |
| 3524 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3525 | lockdep_assert_held(&cgroup_tree_mutex); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3526 | lockdep_assert_held(&cgroup_mutex); |
| 3527 | |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 3528 | if (ss->css_online) |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3529 | ret = ss->css_online(css); |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3530 | if (!ret) { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3531 | css->flags |= CSS_ONLINE; |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3532 | css->cgroup->nr_css++; |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 3533 | rcu_assign_pointer(css->cgroup->subsys[ss->id], css); |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3534 | } |
Tejun Heo | b1929db | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 3535 | return ret; |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3536 | } |
| 3537 | |
Li Zefan | 2a4ac63 | 2013-07-31 16:16:40 +0800 | [diff] [blame] | 3538 | /* if the CSS is online, invoke ->css_offline() on it and mark it offline */ |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 3539 | static void offline_css(struct cgroup_subsys_state *css) |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3540 | { |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 3541 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3542 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3543 | lockdep_assert_held(&cgroup_tree_mutex); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3544 | lockdep_assert_held(&cgroup_mutex); |
| 3545 | |
| 3546 | if (!(css->flags & CSS_ONLINE)) |
| 3547 | return; |
| 3548 | |
Li Zefan | d7eeac1 | 2013-03-12 15:35:59 -0700 | [diff] [blame] | 3549 | if (ss->css_offline) |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3550 | ss->css_offline(css); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3551 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3552 | css->flags &= ~CSS_ONLINE; |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3553 | css->cgroup->nr_css--; |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 3554 | RCU_INIT_POINTER(css->cgroup->subsys[ss->id], css); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3555 | } |
| 3556 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 3557 | /** |
| 3558 | * create_css - create a cgroup_subsys_state |
| 3559 | * @cgrp: the cgroup new css will be associated with |
| 3560 | * @ss: the subsys of new css |
| 3561 | * |
| 3562 | * Create a new css associated with @cgrp - @ss pair. On success, the new |
| 3563 | * css is online and installed in @cgrp with all interface files created. |
| 3564 | * Returns 0 on success, -errno on failure. |
| 3565 | */ |
| 3566 | static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss) |
| 3567 | { |
| 3568 | struct cgroup *parent = cgrp->parent; |
| 3569 | struct cgroup_subsys_state *css; |
| 3570 | int err; |
| 3571 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 3572 | lockdep_assert_held(&cgroup_mutex); |
| 3573 | |
| 3574 | css = ss->css_alloc(cgroup_css(parent, ss)); |
| 3575 | if (IS_ERR(css)) |
| 3576 | return PTR_ERR(css); |
| 3577 | |
| 3578 | err = percpu_ref_init(&css->refcnt, css_release); |
| 3579 | if (err) |
| 3580 | goto err_free; |
| 3581 | |
| 3582 | init_css(css, ss, cgrp); |
| 3583 | |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 3584 | err = cgroup_populate_dir(cgrp, 1 << ss->id); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 3585 | if (err) |
| 3586 | goto err_free; |
| 3587 | |
| 3588 | err = online_css(css); |
| 3589 | if (err) |
| 3590 | goto err_free; |
| 3591 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3592 | cgroup_get(cgrp); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 3593 | css_get(css->parent); |
| 3594 | |
| 3595 | if (ss->broken_hierarchy && !ss->warned_broken_hierarchy && |
| 3596 | parent->parent) { |
| 3597 | pr_warning("cgroup: %s (%d) created nested cgroup for controller \"%s\" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.\n", |
| 3598 | current->comm, current->pid, ss->name); |
| 3599 | if (!strcmp(ss->name, "memory")) |
| 3600 | pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n"); |
| 3601 | ss->warned_broken_hierarchy = true; |
| 3602 | } |
| 3603 | |
| 3604 | return 0; |
| 3605 | |
| 3606 | err_free: |
| 3607 | percpu_ref_cancel_init(&css->refcnt); |
| 3608 | ss->css_free(css); |
| 3609 | return err; |
| 3610 | } |
| 3611 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3612 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3613 | * cgroup_create - create a cgroup |
| 3614 | * @parent: cgroup that will be parent of the new cgroup |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 3615 | * @name: name of the new cgroup |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3616 | * @mode: mode to set on new cgroup |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3617 | */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 3618 | static long cgroup_create(struct cgroup *parent, const char *name, |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3619 | umode_t mode) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3620 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3621 | struct cgroup *cgrp; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3622 | struct cgroupfs_root *root = parent->root; |
Tejun Heo | b58c899 | 2014-02-08 10:26:33 -0500 | [diff] [blame] | 3623 | int ssid, err; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3624 | struct cgroup_subsys *ss; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3625 | struct kernfs_node *kn; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3626 | |
Tejun Heo | 0a950f6 | 2012-11-19 09:02:12 -0800 | [diff] [blame] | 3627 | /* allocate the cgroup and its ID, 0 is reserved for the root */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3628 | cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL); |
| 3629 | if (!cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3630 | return -ENOMEM; |
| 3631 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3632 | mutex_lock(&cgroup_tree_mutex); |
| 3633 | |
Li Zefan | 4e96ee8 | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 3634 | /* |
Tejun Heo | 976c06b | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 3635 | * Only live parents can have children. Note that the liveliness |
| 3636 | * check isn't strictly necessary because cgroup_mkdir() and |
| 3637 | * cgroup_rmdir() are fully synchronized by i_mutex; however, do it |
| 3638 | * anyway so that locking is contained inside cgroup proper and we |
| 3639 | * don't get nasty surprises if we ever grow another caller. |
| 3640 | */ |
| 3641 | if (!cgroup_lock_live_group(parent)) { |
| 3642 | err = -ENODEV; |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3643 | goto err_unlock_tree; |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 3644 | } |
| 3645 | |
| 3646 | /* |
| 3647 | * Temporarily set the pointer to NULL, so idr_find() won't return |
| 3648 | * a half-baked cgroup. |
| 3649 | */ |
| 3650 | cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL); |
| 3651 | if (cgrp->id < 0) { |
| 3652 | err = -ENOMEM; |
| 3653 | goto err_unlock; |
Tejun Heo | 976c06b | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 3654 | } |
| 3655 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3656 | init_cgroup_housekeeping(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3657 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3658 | cgrp->parent = parent; |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 3659 | cgrp->dummy_css.parent = &parent->dummy_css; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3660 | cgrp->root = parent->root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3661 | |
Li Zefan | b6abdb0 | 2008-03-04 14:28:19 -0800 | [diff] [blame] | 3662 | if (notify_on_release(parent)) |
| 3663 | set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
| 3664 | |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 3665 | if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags)) |
| 3666 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3667 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3668 | /* create the directory */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 3669 | kn = kernfs_create_dir(parent->kn, name, mode, cgrp); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3670 | if (IS_ERR(kn)) { |
| 3671 | err = PTR_ERR(kn); |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 3672 | goto err_free_id; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3673 | } |
| 3674 | cgrp->kn = kn; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3675 | |
Tejun Heo | 6f30558 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 3676 | /* |
| 3677 | * This extra ref will be put in cgroup_free_fn() and guarantees |
| 3678 | * that @cgrp->kn is always accessible. |
| 3679 | */ |
| 3680 | kernfs_get(kn); |
| 3681 | |
Tejun Heo | 00356bd | 2013-06-18 11:14:22 -0700 | [diff] [blame] | 3682 | cgrp->serial_nr = cgroup_serial_nr_next++; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3683 | |
Tejun Heo | 4e139af | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 3684 | /* allocation complete, commit to creation */ |
Tejun Heo | 4e139af | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 3685 | list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 3686 | atomic_inc(&root->nr_cgrps); |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3687 | cgroup_get(parent); |
Li Zefan | 415cf07 | 2013-04-08 14:35:02 +0800 | [diff] [blame] | 3688 | |
Tejun Heo | 0d80255 | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 3689 | /* |
| 3690 | * @cgrp is now fully operational. If something fails after this |
| 3691 | * point, it'll be released via the normal destruction path. |
| 3692 | */ |
Li Zefan | 4e96ee8 | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 3693 | idr_replace(&root->cgroup_idr, cgrp, cgrp->id); |
| 3694 | |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3695 | err = cgroup_addrm_files(cgrp, cgroup_base_files, true); |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3696 | if (err) |
| 3697 | goto err_destroy; |
| 3698 | |
Tejun Heo | 9d403e9 | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 3699 | /* let's create and online css's */ |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 3700 | for_each_subsys(ss, ssid) { |
| 3701 | if (root->subsys_mask & (1 << ssid)) { |
| 3702 | err = create_css(cgrp, ss); |
| 3703 | if (err) |
| 3704 | goto err_destroy; |
| 3705 | } |
Tejun Heo | a863803 | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3706 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3707 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3708 | kernfs_activate(kn); |
| 3709 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3710 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3711 | mutex_unlock(&cgroup_tree_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3712 | |
| 3713 | return 0; |
| 3714 | |
Tejun Heo | 0a950f6 | 2012-11-19 09:02:12 -0800 | [diff] [blame] | 3715 | err_free_id: |
Li Zefan | 4e96ee8 | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 3716 | idr_remove(&root->cgroup_idr, cgrp->id); |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 3717 | err_unlock: |
| 3718 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3719 | err_unlock_tree: |
| 3720 | mutex_unlock(&cgroup_tree_mutex); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3721 | kfree(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3722 | return err; |
Tejun Heo | 4b8b47e | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 3723 | |
| 3724 | err_destroy: |
| 3725 | cgroup_destroy_locked(cgrp); |
| 3726 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3727 | mutex_unlock(&cgroup_tree_mutex); |
Tejun Heo | 4b8b47e | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 3728 | return err; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3729 | } |
| 3730 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3731 | static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name, |
| 3732 | umode_t mode) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3733 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3734 | struct cgroup *parent = parent_kn->priv; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3735 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3736 | return cgroup_create(parent, name, mode); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3737 | } |
| 3738 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3739 | /* |
| 3740 | * This is called when the refcnt of a css is confirmed to be killed. |
| 3741 | * css_tryget() is now guaranteed to fail. |
| 3742 | */ |
| 3743 | static void css_killed_work_fn(struct work_struct *work) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3744 | { |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3745 | struct cgroup_subsys_state *css = |
| 3746 | container_of(work, struct cgroup_subsys_state, destroy_work); |
| 3747 | struct cgroup *cgrp = css->cgroup; |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3748 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3749 | mutex_lock(&cgroup_tree_mutex); |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3750 | mutex_lock(&cgroup_mutex); |
| 3751 | |
| 3752 | /* |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3753 | * css_tryget() is guaranteed to fail now. Tell subsystems to |
| 3754 | * initate destruction. |
| 3755 | */ |
| 3756 | offline_css(css); |
| 3757 | |
| 3758 | /* |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3759 | * If @cgrp is marked dead, it's waiting for refs of all css's to |
| 3760 | * be disabled before proceeding to the second phase of cgroup |
| 3761 | * destruction. If we are the last one, kick it off. |
| 3762 | */ |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3763 | if (!cgrp->nr_css && cgroup_is_dead(cgrp)) |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3764 | cgroup_destroy_css_killed(cgrp); |
| 3765 | |
| 3766 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3767 | mutex_unlock(&cgroup_tree_mutex); |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3768 | |
| 3769 | /* |
| 3770 | * Put the css refs from kill_css(). Each css holds an extra |
| 3771 | * reference to the cgroup's dentry and cgroup removal proceeds |
| 3772 | * regardless of css refs. On the last put of each css, whenever |
| 3773 | * that may be, the extra dentry ref is put so that dentry |
| 3774 | * destruction happens only after all css's are released. |
| 3775 | */ |
| 3776 | css_put(css); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3777 | } |
| 3778 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3779 | /* css kill confirmation processing requires process context, bounce */ |
| 3780 | static void css_killed_ref_fn(struct percpu_ref *ref) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3781 | { |
| 3782 | struct cgroup_subsys_state *css = |
| 3783 | container_of(ref, struct cgroup_subsys_state, refcnt); |
| 3784 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3785 | INIT_WORK(&css->destroy_work, css_killed_work_fn); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 3786 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3787 | } |
| 3788 | |
| 3789 | /** |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3790 | * kill_css - destroy a css |
| 3791 | * @css: css to destroy |
| 3792 | * |
Tejun Heo | 3c14f8b | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3793 | * This function initiates destruction of @css by removing cgroup interface |
| 3794 | * files and putting its base reference. ->css_offline() will be invoked |
| 3795 | * asynchronously once css_tryget() is guaranteed to fail and when the |
| 3796 | * reference count reaches zero, @css will be released. |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3797 | */ |
| 3798 | static void kill_css(struct cgroup_subsys_state *css) |
| 3799 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3800 | /* |
| 3801 | * This must happen before css is disassociated with its cgroup. |
| 3802 | * See seq_css() for details. |
| 3803 | */ |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 3804 | cgroup_clear_dir(css->cgroup, 1 << css->ss->id); |
Tejun Heo | 3c14f8b | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3805 | |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3806 | /* |
| 3807 | * Killing would put the base ref, but we need to keep it alive |
| 3808 | * until after ->css_offline(). |
| 3809 | */ |
| 3810 | css_get(css); |
| 3811 | |
| 3812 | /* |
| 3813 | * cgroup core guarantees that, by the time ->css_offline() is |
| 3814 | * invoked, no new css reference will be given out via |
| 3815 | * css_tryget(). We can't simply call percpu_ref_kill() and |
| 3816 | * proceed to offlining css's because percpu_ref_kill() doesn't |
| 3817 | * guarantee that the ref is seen as killed on all CPUs on return. |
| 3818 | * |
| 3819 | * Use percpu_ref_kill_and_confirm() to get notifications as each |
| 3820 | * css is confirmed to be seen as killed on all CPUs. |
| 3821 | */ |
| 3822 | percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3823 | } |
| 3824 | |
| 3825 | /** |
| 3826 | * cgroup_destroy_locked - the first stage of cgroup destruction |
| 3827 | * @cgrp: cgroup to be destroyed |
| 3828 | * |
| 3829 | * css's make use of percpu refcnts whose killing latency shouldn't be |
| 3830 | * exposed to userland and are RCU protected. Also, cgroup core needs to |
| 3831 | * guarantee that css_tryget() won't succeed by the time ->css_offline() is |
| 3832 | * invoked. To satisfy all the requirements, destruction is implemented in |
| 3833 | * the following two steps. |
| 3834 | * |
| 3835 | * s1. Verify @cgrp can be destroyed and mark it dying. Remove all |
| 3836 | * userland visible parts and start killing the percpu refcnts of |
| 3837 | * css's. Set up so that the next stage will be kicked off once all |
| 3838 | * the percpu refcnts are confirmed to be killed. |
| 3839 | * |
| 3840 | * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the |
| 3841 | * rest of destruction. Once all cgroup references are gone, the |
| 3842 | * cgroup is RCU-freed. |
| 3843 | * |
| 3844 | * This function implements s1. After this step, @cgrp is gone as far as |
| 3845 | * the userland is concerned and a new cgroup with the same name may be |
| 3846 | * created. As cgroup doesn't care about the names internally, this |
| 3847 | * doesn't cause any problem. |
| 3848 | */ |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3849 | static int cgroup_destroy_locked(struct cgroup *cgrp) |
| 3850 | __releases(&cgroup_mutex) __acquires(&cgroup_mutex) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3851 | { |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 3852 | struct cgroup *child; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3853 | struct cgroup_subsys_state *css; |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 3854 | bool empty; |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 3855 | int ssid; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3856 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3857 | lockdep_assert_held(&cgroup_tree_mutex); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3858 | lockdep_assert_held(&cgroup_mutex); |
| 3859 | |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 3860 | /* |
Tejun Heo | 6f3d828f0 | 2013-06-12 21:04:55 -0700 | [diff] [blame] | 3861 | * css_set_lock synchronizes access to ->cset_links and prevents |
| 3862 | * @cgrp from being removed while __put_css_set() is in progress. |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 3863 | */ |
| 3864 | read_lock(&css_set_lock); |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 3865 | empty = list_empty(&cgrp->cset_links); |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 3866 | read_unlock(&css_set_lock); |
| 3867 | if (!empty) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3868 | return -EBUSY; |
Tejun Heo | ed957793 | 2012-11-05 09:16:58 -0800 | [diff] [blame] | 3869 | |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 3870 | /* |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 3871 | * Make sure there's no live children. We can't test ->children |
| 3872 | * emptiness as dead children linger on it while being destroyed; |
| 3873 | * otherwise, "rmdir parent/child parent" may fail with -EBUSY. |
| 3874 | */ |
| 3875 | empty = true; |
| 3876 | rcu_read_lock(); |
| 3877 | list_for_each_entry_rcu(child, &cgrp->children, sibling) { |
| 3878 | empty = cgroup_is_dead(child); |
| 3879 | if (!empty) |
| 3880 | break; |
| 3881 | } |
| 3882 | rcu_read_unlock(); |
| 3883 | if (!empty) |
| 3884 | return -EBUSY; |
| 3885 | |
| 3886 | /* |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 3887 | * Initiate massacre of all css's. cgroup_destroy_css_killed() |
| 3888 | * will be invoked to perform the rest of destruction once the |
Tejun Heo | 4ac0601 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3889 | * percpu refs of all css's are confirmed to be killed. This |
| 3890 | * involves removing the subsystem's files, drop cgroup_mutex. |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 3891 | */ |
Tejun Heo | 4ac0601 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3892 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 3893 | for_each_css(css, ssid, cgrp) |
| 3894 | kill_css(css); |
Tejun Heo | 4ac0601 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3895 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 3896 | |
| 3897 | /* |
| 3898 | * Mark @cgrp dead. This prevents further task migration and child |
| 3899 | * creation by disabling cgroup_lock_live_group(). Note that |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3900 | * CGRP_DEAD assertion is depended upon by css_next_child() to |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 3901 | * resume iteration after dropping RCU read lock. See |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3902 | * css_next_child() for details. |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 3903 | */ |
Tejun Heo | 54766d4 | 2013-06-12 21:04:53 -0700 | [diff] [blame] | 3904 | set_bit(CGRP_DEAD, &cgrp->flags); |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 3905 | |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 3906 | /* CGRP_DEAD is set, remove from ->release_list for the last time */ |
| 3907 | raw_spin_lock(&release_list_lock); |
| 3908 | if (!list_empty(&cgrp->release_list)) |
| 3909 | list_del_init(&cgrp->release_list); |
| 3910 | raw_spin_unlock(&release_list_lock); |
| 3911 | |
| 3912 | /* |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3913 | * If @cgrp has css's attached, the second stage of cgroup |
| 3914 | * destruction is kicked off from css_killed_work_fn() after the |
| 3915 | * refs of all attached css's are killed. If @cgrp doesn't have |
| 3916 | * any css, we kick it off here. |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 3917 | */ |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3918 | if (!cgrp->nr_css) |
| 3919 | cgroup_destroy_css_killed(cgrp); |
| 3920 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3921 | /* remove @cgrp directory along with the base files */ |
Tejun Heo | 4ac0601 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3922 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3923 | |
| 3924 | /* |
| 3925 | * There are two control paths which try to determine cgroup from |
| 3926 | * dentry without going through kernfs - cgroupstats_build() and |
| 3927 | * css_tryget_from_dir(). Those are supported by RCU protecting |
| 3928 | * clearing of cgrp->kn->priv backpointer, which should happen |
| 3929 | * after all files under it have been removed. |
| 3930 | */ |
Tejun Heo | 6f30558 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 3931 | kernfs_remove(cgrp->kn); /* @cgrp has an extra ref on its kn */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3932 | RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3933 | |
Tejun Heo | 4ac0601 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3934 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 3935 | |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 3936 | return 0; |
| 3937 | }; |
| 3938 | |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3939 | /** |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3940 | * cgroup_destroy_css_killed - the second step of cgroup destruction |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3941 | * @work: cgroup->destroy_free_work |
| 3942 | * |
| 3943 | * This function is invoked from a work item for a cgroup which is being |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3944 | * destroyed after all css's are offlined and performs the rest of |
| 3945 | * destruction. This is the second step of destruction described in the |
| 3946 | * comment above cgroup_destroy_locked(). |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 3947 | */ |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3948 | static void cgroup_destroy_css_killed(struct cgroup *cgrp) |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 3949 | { |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 3950 | struct cgroup *parent = cgrp->parent; |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 3951 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3952 | lockdep_assert_held(&cgroup_tree_mutex); |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 3953 | lockdep_assert_held(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3954 | |
Paul Menage | 999cd8a | 2009-01-07 18:08:36 -0800 | [diff] [blame] | 3955 | /* delete this cgroup from parent->children */ |
Tejun Heo | eb6fd50 | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3956 | list_del_rcu(&cgrp->sibling); |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 3957 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3958 | cgroup_put(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3959 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3960 | set_bit(CGRP_RELEASABLE, &parent->flags); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3961 | check_for_release(parent); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3962 | } |
| 3963 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3964 | static int cgroup_rmdir(struct kernfs_node *kn) |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3965 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3966 | struct cgroup *cgrp = kn->priv; |
| 3967 | int ret = 0; |
| 3968 | |
| 3969 | /* |
| 3970 | * This is self-destruction but @kn can't be removed while this |
| 3971 | * callback is in progress. Let's break active protection. Once |
| 3972 | * the protection is broken, @cgrp can be destroyed at any point. |
| 3973 | * Pin it so that it stays accessible. |
| 3974 | */ |
| 3975 | cgroup_get(cgrp); |
| 3976 | kernfs_break_active_protection(kn); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3977 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3978 | mutex_lock(&cgroup_tree_mutex); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3979 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3980 | |
| 3981 | /* |
| 3982 | * @cgrp might already have been destroyed while we're trying to |
| 3983 | * grab the mutexes. |
| 3984 | */ |
| 3985 | if (!cgroup_is_dead(cgrp)) |
| 3986 | ret = cgroup_destroy_locked(cgrp); |
| 3987 | |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3988 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 3989 | mutex_unlock(&cgroup_tree_mutex); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3990 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3991 | kernfs_unbreak_active_protection(kn); |
| 3992 | cgroup_put(cgrp); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 3993 | return ret; |
| 3994 | } |
| 3995 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3996 | static struct kernfs_syscall_ops cgroup_kf_syscall_ops = { |
| 3997 | .remount_fs = cgroup_remount, |
| 3998 | .show_options = cgroup_show_options, |
| 3999 | .mkdir = cgroup_mkdir, |
| 4000 | .rmdir = cgroup_rmdir, |
| 4001 | .rename = cgroup_rename, |
| 4002 | }; |
| 4003 | |
Li Zefan | 06a1192 | 2008-04-29 01:00:07 -0700 | [diff] [blame] | 4004 | static void __init cgroup_init_subsys(struct cgroup_subsys *ss) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4005 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4006 | struct cgroup_subsys_state *css; |
Diego Calleja | cfe36bd | 2007-11-14 16:58:54 -0800 | [diff] [blame] | 4007 | |
| 4008 | printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4009 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 4010 | mutex_lock(&cgroup_tree_mutex); |
Tejun Heo | 648bb56 | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4011 | mutex_lock(&cgroup_mutex); |
| 4012 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4013 | INIT_LIST_HEAD(&ss->cfts); |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4014 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4015 | /* Create the top cgroup state for this subsystem */ |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 4016 | ss->root = &cgroup_dummy_root; |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 4017 | css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4018 | /* We don't handle early failures gracefully */ |
| 4019 | BUG_ON(IS_ERR(css)); |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 4020 | init_css(css, ss, cgroup_dummy_top); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4021 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4022 | /* Update the init_css_set to contain a subsys |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4023 | * pointer to this state - since the subsystem is |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4024 | * newly registered, all tasks and hence the |
| 4025 | * init_css_set is in the subsystem's top cgroup. */ |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4026 | init_css_set.subsys[ss->id] = css; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4027 | |
| 4028 | need_forkexit_callback |= ss->fork || ss->exit; |
| 4029 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4030 | /* At system boot, before all subsystems have been |
| 4031 | * registered, no tasks have been forked, so we don't |
| 4032 | * need to invoke fork callbacks here. */ |
| 4033 | BUG_ON(!list_empty(&init_task.tasks)); |
| 4034 | |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4035 | BUG_ON(online_css(css)); |
Tejun Heo | a863803 | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 4036 | |
Tejun Heo | 648bb56 | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4037 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 4038 | mutex_unlock(&cgroup_tree_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4039 | } |
| 4040 | |
| 4041 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4042 | * cgroup_init_early - cgroup initialization at system boot |
| 4043 | * |
| 4044 | * Initialize cgroups at system boot, and initialize any |
| 4045 | * subsystems that request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4046 | */ |
| 4047 | int __init cgroup_init_early(void) |
| 4048 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4049 | struct cgroup_subsys *ss; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4050 | int i; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4051 | |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 4052 | atomic_set(&init_css_set.refcount, 1); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 4053 | INIT_LIST_HEAD(&init_css_set.cgrp_links); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4054 | INIT_LIST_HEAD(&init_css_set.tasks); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 4055 | INIT_HLIST_NODE(&init_css_set.hlist); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4056 | css_set_count = 1; |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 4057 | init_cgroup_root(&cgroup_dummy_root); |
| 4058 | cgroup_root_count = 1; |
Tejun Heo | a4ea1cc | 2013-06-21 15:52:33 -0700 | [diff] [blame] | 4059 | RCU_INIT_POINTER(init_task.cgroups, &init_css_set); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4060 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 4061 | init_cgrp_cset_link.cset = &init_css_set; |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 4062 | init_cgrp_cset_link.cgrp = cgroup_dummy_top; |
| 4063 | list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 4064 | list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4065 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4066 | for_each_subsys(ss, i) { |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4067 | WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id, |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4068 | "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n", |
| 4069 | i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free, |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4070 | ss->id, ss->name); |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4071 | WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN, |
| 4072 | "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]); |
| 4073 | |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4074 | ss->id = i; |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4075 | ss->name = cgroup_subsys_name[i]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4076 | |
| 4077 | if (ss->early_init) |
| 4078 | cgroup_init_subsys(ss); |
| 4079 | } |
| 4080 | return 0; |
| 4081 | } |
| 4082 | |
| 4083 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4084 | * cgroup_init - cgroup initialization |
| 4085 | * |
| 4086 | * Register cgroup filesystem and /proc file, and initialize |
| 4087 | * any subsystems that didn't request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4088 | */ |
| 4089 | int __init cgroup_init(void) |
| 4090 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4091 | struct cgroup_subsys *ss; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 4092 | unsigned long key; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4093 | int i, err; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4094 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4095 | BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files)); |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 4096 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4097 | for_each_subsys(ss, i) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4098 | if (!ss->early_init) |
| 4099 | cgroup_init_subsys(ss); |
Tejun Heo | de00ffa | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 4100 | |
| 4101 | /* |
| 4102 | * cftype registration needs kmalloc and can't be done |
| 4103 | * during early_init. Register base cftypes separately. |
| 4104 | */ |
| 4105 | if (ss->base_cftypes) |
| 4106 | WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4107 | } |
| 4108 | |
Tejun Heo | fa3ca07 | 2013-04-14 11:36:56 -0700 | [diff] [blame] | 4109 | /* allocate id for the dummy hierarchy */ |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4110 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4111 | |
Tejun Heo | 82fe9b0 | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4112 | /* Add init_css_set to the hash table */ |
| 4113 | key = css_set_hash(init_css_set.subsys); |
| 4114 | hash_add(css_set_table, &init_css_set.hlist, key); |
| 4115 | |
Tejun Heo | fc76df7 | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4116 | BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1)); |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4117 | |
Li Zefan | 4e96ee8 | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 4118 | err = idr_alloc(&cgroup_dummy_root.cgroup_idr, cgroup_dummy_top, |
| 4119 | 0, 1, GFP_KERNEL); |
| 4120 | BUG_ON(err < 0); |
| 4121 | |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4122 | mutex_unlock(&cgroup_mutex); |
| 4123 | |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4124 | cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4125 | if (!cgroup_kobj) |
| 4126 | return -ENOMEM; |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4127 | |
| 4128 | err = register_filesystem(&cgroup_fs_type); |
| 4129 | if (err < 0) { |
| 4130 | kobject_put(cgroup_kobj); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4131 | return err; |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4132 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4133 | |
Li Zefan | 46ae220 | 2008-04-29 01:00:08 -0700 | [diff] [blame] | 4134 | proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4135 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4136 | } |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4137 | |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4138 | static int __init cgroup_wq_init(void) |
| 4139 | { |
| 4140 | /* |
| 4141 | * There isn't much point in executing destruction path in |
| 4142 | * parallel. Good chunk is serialized with cgroup_mutex anyway. |
Hugh Dickins | ab3f5fa | 2014-02-06 15:56:01 -0800 | [diff] [blame] | 4143 | * |
| 4144 | * XXX: Must be ordered to make sure parent is offlined after |
| 4145 | * children. The ordering requirement is for memcg where a |
| 4146 | * parent's offline may wait for a child's leading to deadlock. In |
| 4147 | * the long term, this should be fixed from memcg side. |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4148 | * |
| 4149 | * We would prefer to do this in cgroup_init() above, but that |
| 4150 | * is called before init_workqueues(): so leave this until after. |
| 4151 | */ |
Hugh Dickins | ab3f5fa | 2014-02-06 15:56:01 -0800 | [diff] [blame] | 4152 | cgroup_destroy_wq = alloc_ordered_workqueue("cgroup_destroy", 0); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4153 | BUG_ON(!cgroup_destroy_wq); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 4154 | |
| 4155 | /* |
| 4156 | * Used to destroy pidlists and separate to serve as flush domain. |
| 4157 | * Cap @max_active to 1 too. |
| 4158 | */ |
| 4159 | cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy", |
| 4160 | 0, 1); |
| 4161 | BUG_ON(!cgroup_pidlist_destroy_wq); |
| 4162 | |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4163 | return 0; |
| 4164 | } |
| 4165 | core_initcall(cgroup_wq_init); |
| 4166 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4167 | /* |
| 4168 | * proc_cgroup_show() |
| 4169 | * - Print task's cgroup paths into seq_file, one line for each hierarchy |
| 4170 | * - Used for /proc/<pid>/cgroup. |
| 4171 | * - No need to task_lock(tsk) on this tsk->cgroup reference, as it |
| 4172 | * doesn't really matter if tsk->cgroup changes after we read it, |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 4173 | * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4174 | * anyway. No need to check that tsk->cgroup != NULL, thanks to |
| 4175 | * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks |
| 4176 | * cgroup to top_cgroup. |
| 4177 | */ |
| 4178 | |
| 4179 | /* TODO: Use a proper seq_file iterator */ |
Al Viro | 8d8b97b | 2013-04-19 23:11:24 -0400 | [diff] [blame] | 4180 | int proc_cgroup_show(struct seq_file *m, void *v) |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4181 | { |
| 4182 | struct pid *pid; |
| 4183 | struct task_struct *tsk; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4184 | char *buf, *path; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4185 | int retval; |
| 4186 | struct cgroupfs_root *root; |
| 4187 | |
| 4188 | retval = -ENOMEM; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4189 | buf = kmalloc(PATH_MAX, GFP_KERNEL); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4190 | if (!buf) |
| 4191 | goto out; |
| 4192 | |
| 4193 | retval = -ESRCH; |
| 4194 | pid = m->private; |
| 4195 | tsk = get_pid_task(pid, PIDTYPE_PID); |
| 4196 | if (!tsk) |
| 4197 | goto out_free; |
| 4198 | |
| 4199 | retval = 0; |
| 4200 | |
| 4201 | mutex_lock(&cgroup_mutex); |
| 4202 | |
Li Zefan | e5f6a86 | 2009-01-07 18:07:41 -0800 | [diff] [blame] | 4203 | for_each_active_root(root) { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4204 | struct cgroup_subsys *ss; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4205 | struct cgroup *cgrp; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 4206 | int ssid, count = 0; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4207 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 4208 | seq_printf(m, "%d:", root->hierarchy_id); |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 4209 | for_each_subsys(ss, ssid) |
| 4210 | if (root->subsys_mask & (1 << ssid)) |
| 4211 | seq_printf(m, "%s%s", count++ ? "," : "", ss->name); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 4212 | if (strlen(root->name)) |
| 4213 | seq_printf(m, "%sname=%s", count ? "," : "", |
| 4214 | root->name); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4215 | seq_putc(m, ':'); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4216 | cgrp = task_cgroup_from_root(tsk, root); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4217 | path = cgroup_path(cgrp, buf, PATH_MAX); |
| 4218 | if (!path) { |
| 4219 | retval = -ENAMETOOLONG; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4220 | goto out_unlock; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4221 | } |
| 4222 | seq_puts(m, path); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4223 | seq_putc(m, '\n'); |
| 4224 | } |
| 4225 | |
| 4226 | out_unlock: |
| 4227 | mutex_unlock(&cgroup_mutex); |
| 4228 | put_task_struct(tsk); |
| 4229 | out_free: |
| 4230 | kfree(buf); |
| 4231 | out: |
| 4232 | return retval; |
| 4233 | } |
| 4234 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4235 | /* Display information about each subsystem and each hierarchy */ |
| 4236 | static int proc_cgroupstats_show(struct seq_file *m, void *v) |
| 4237 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4238 | struct cgroup_subsys *ss; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4239 | int i; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4240 | |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 4241 | seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n"); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 4242 | /* |
| 4243 | * ideally we don't want subsystems moving around while we do this. |
| 4244 | * cgroup_mutex is also necessary to guarantee an atomic snapshot of |
| 4245 | * subsys/hierarchy state. |
| 4246 | */ |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4247 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4248 | |
| 4249 | for_each_subsys(ss, i) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 4250 | seq_printf(m, "%s\t%d\t%d\t%d\n", |
| 4251 | ss->name, ss->root->hierarchy_id, |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4252 | atomic_read(&ss->root->nr_cgrps), !ss->disabled); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4253 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4254 | mutex_unlock(&cgroup_mutex); |
| 4255 | return 0; |
| 4256 | } |
| 4257 | |
| 4258 | static int cgroupstats_open(struct inode *inode, struct file *file) |
| 4259 | { |
Al Viro | 9dce07f | 2008-03-29 03:07:28 +0000 | [diff] [blame] | 4260 | return single_open(file, proc_cgroupstats_show, NULL); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4261 | } |
| 4262 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 4263 | static const struct file_operations proc_cgroupstats_operations = { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4264 | .open = cgroupstats_open, |
| 4265 | .read = seq_read, |
| 4266 | .llseek = seq_lseek, |
| 4267 | .release = single_release, |
| 4268 | }; |
| 4269 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4270 | /** |
| 4271 | * cgroup_fork - attach newly forked task to its parents cgroup. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4272 | * @child: pointer to task_struct of forking parent process. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4273 | * |
| 4274 | * Description: A task inherits its parent's cgroup at fork(). |
| 4275 | * |
| 4276 | * A pointer to the shared css_set was automatically copied in |
| 4277 | * fork.c by dup_task_struct(). However, we ignore that copy, since |
Tejun Heo | 9bb7130 | 2012-10-18 17:52:07 -0700 | [diff] [blame] | 4278 | * it was not made under the protection of RCU or cgroup_mutex, so |
| 4279 | * might no longer be a valid cgroup pointer. cgroup_attach_task() might |
| 4280 | * have already changed current->cgroups, allowing the previously |
| 4281 | * referenced cgroup group to be removed and freed. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4282 | * |
| 4283 | * At the point that cgroup_fork() is called, 'current' is the parent |
| 4284 | * task, and the passed argument 'child' points to the child task. |
| 4285 | */ |
| 4286 | void cgroup_fork(struct task_struct *child) |
| 4287 | { |
Tejun Heo | 9bb7130 | 2012-10-18 17:52:07 -0700 | [diff] [blame] | 4288 | task_lock(current); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 4289 | get_css_set(task_css_set(current)); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4290 | child->cgroups = current->cgroups; |
Tejun Heo | 9bb7130 | 2012-10-18 17:52:07 -0700 | [diff] [blame] | 4291 | task_unlock(current); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4292 | INIT_LIST_HEAD(&child->cg_list); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4293 | } |
| 4294 | |
| 4295 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4296 | * cgroup_post_fork - called on a new task after adding it to the task list |
| 4297 | * @child: the task in question |
| 4298 | * |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 4299 | * Adds the task to the list running through its css_set if necessary and |
| 4300 | * call the subsystem fork() callbacks. Has to be after the task is |
| 4301 | * visible on the task list in case we race with the first call to |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 4302 | * cgroup_task_iter_start() - to guarantee that the new task ends up on its |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 4303 | * list. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4304 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4305 | void cgroup_post_fork(struct task_struct *child) |
| 4306 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4307 | struct cgroup_subsys *ss; |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 4308 | int i; |
| 4309 | |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 4310 | /* |
| 4311 | * use_task_css_set_links is set to 1 before we walk the tasklist |
| 4312 | * under the tasklist_lock and we read it here after we added the child |
| 4313 | * to the tasklist under the tasklist_lock as well. If the child wasn't |
| 4314 | * yet in the tasklist when we walked through it from |
| 4315 | * cgroup_enable_task_cg_lists(), then use_task_css_set_links value |
| 4316 | * should be visible now due to the paired locking and barriers implied |
| 4317 | * by LOCK/UNLOCK: it is written before the tasklist_lock unlock |
| 4318 | * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock |
| 4319 | * lock on fork. |
| 4320 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4321 | if (use_task_css_set_links) { |
| 4322 | write_lock(&css_set_lock); |
Tejun Heo | d878383 | 2012-10-18 17:40:30 -0700 | [diff] [blame] | 4323 | task_lock(child); |
| 4324 | if (list_empty(&child->cg_list)) |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 4325 | list_add(&child->cg_list, &task_css_set(child)->tasks); |
Tejun Heo | d878383 | 2012-10-18 17:40:30 -0700 | [diff] [blame] | 4326 | task_unlock(child); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4327 | write_unlock(&css_set_lock); |
| 4328 | } |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 4329 | |
| 4330 | /* |
| 4331 | * Call ss->fork(). This must happen after @child is linked on |
| 4332 | * css_set; otherwise, @child might change state between ->fork() |
| 4333 | * and addition to css_set. |
| 4334 | */ |
| 4335 | if (need_forkexit_callback) { |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4336 | for_each_subsys(ss, i) |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 4337 | if (ss->fork) |
| 4338 | ss->fork(child); |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 4339 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4340 | } |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 4341 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4342 | /** |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4343 | * cgroup_exit - detach cgroup from exiting task |
| 4344 | * @tsk: pointer to task_struct of exiting process |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4345 | * @run_callback: run exit callbacks? |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4346 | * |
| 4347 | * Description: Detach cgroup from @tsk and release it. |
| 4348 | * |
| 4349 | * Note that cgroups marked notify_on_release force every task in |
| 4350 | * them to take the global cgroup_mutex mutex when exiting. |
| 4351 | * This could impact scaling on very large systems. Be reluctant to |
| 4352 | * use notify_on_release cgroups where very high task exit scaling |
| 4353 | * is required on large systems. |
| 4354 | * |
| 4355 | * the_top_cgroup_hack: |
| 4356 | * |
| 4357 | * Set the exiting tasks cgroup to the root cgroup (top_cgroup). |
| 4358 | * |
| 4359 | * We call cgroup_exit() while the task is still competent to |
| 4360 | * handle notify_on_release(), then leave the task attached to the |
| 4361 | * root cgroup in each hierarchy for the remainder of its exit. |
| 4362 | * |
| 4363 | * To do this properly, we would increment the reference count on |
| 4364 | * top_cgroup, and near the very end of the kernel/exit.c do_exit() |
| 4365 | * code we would add a second cgroup function call, to drop that |
| 4366 | * reference. This would just create an unnecessary hot spot on |
| 4367 | * the top_cgroup reference count, to no avail. |
| 4368 | * |
| 4369 | * Normally, holding a reference to a cgroup without bumping its |
| 4370 | * count is unsafe. The cgroup could go away, or someone could |
| 4371 | * attach us to a different cgroup, decrementing the count on |
| 4372 | * the first cgroup that we never incremented. But in this case, |
| 4373 | * top_cgroup isn't going away, and either task has PF_EXITING set, |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 4374 | * which wards off any cgroup_attach_task() attempts, or task is a failed |
| 4375 | * fork, never visible to cgroup_attach_task. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4376 | */ |
| 4377 | void cgroup_exit(struct task_struct *tsk, int run_callbacks) |
| 4378 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4379 | struct cgroup_subsys *ss; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 4380 | struct css_set *cset; |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 4381 | int i; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4382 | |
| 4383 | /* |
| 4384 | * Unlink from the css_set task list if necessary. |
| 4385 | * Optimistically check cg_list before taking |
| 4386 | * css_set_lock |
| 4387 | */ |
| 4388 | if (!list_empty(&tsk->cg_list)) { |
| 4389 | write_lock(&css_set_lock); |
| 4390 | if (!list_empty(&tsk->cg_list)) |
Phil Carmody | 8d25879 | 2011-03-22 16:30:13 -0700 | [diff] [blame] | 4391 | list_del_init(&tsk->cg_list); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4392 | write_unlock(&css_set_lock); |
| 4393 | } |
| 4394 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4395 | /* Reassign the task to the init_css_set. */ |
| 4396 | task_lock(tsk); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 4397 | cset = task_css_set(tsk); |
| 4398 | RCU_INIT_POINTER(tsk->cgroups, &init_css_set); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 4399 | |
| 4400 | if (run_callbacks && need_forkexit_callback) { |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4401 | /* see cgroup_post_fork() for details */ |
| 4402 | for_each_subsys(ss, i) { |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 4403 | if (ss->exit) { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4404 | struct cgroup_subsys_state *old_css = cset->subsys[i]; |
| 4405 | struct cgroup_subsys_state *css = task_css(tsk, i); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4406 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4407 | ss->exit(css, old_css, tsk); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 4408 | } |
| 4409 | } |
| 4410 | } |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4411 | task_unlock(tsk); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 4412 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 4413 | put_css_set_taskexit(cset); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4414 | } |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 4415 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4416 | static void check_for_release(struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4417 | { |
Li Zefan | f50daa7 | 2013-03-01 15:06:07 +0800 | [diff] [blame] | 4418 | if (cgroup_is_releasable(cgrp) && |
Tejun Heo | 6f3d828f0 | 2013-06-12 21:04:55 -0700 | [diff] [blame] | 4419 | list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) { |
Li Zefan | f50daa7 | 2013-03-01 15:06:07 +0800 | [diff] [blame] | 4420 | /* |
| 4421 | * Control Group is currently removeable. If it's not |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4422 | * already queued for a userspace notification, queue |
Li Zefan | f50daa7 | 2013-03-01 15:06:07 +0800 | [diff] [blame] | 4423 | * it now |
| 4424 | */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4425 | int need_schedule_work = 0; |
Li Zefan | f50daa7 | 2013-03-01 15:06:07 +0800 | [diff] [blame] | 4426 | |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4427 | raw_spin_lock(&release_list_lock); |
Tejun Heo | 54766d4 | 2013-06-12 21:04:53 -0700 | [diff] [blame] | 4428 | if (!cgroup_is_dead(cgrp) && |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4429 | list_empty(&cgrp->release_list)) { |
| 4430 | list_add(&cgrp->release_list, &release_list); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4431 | need_schedule_work = 1; |
| 4432 | } |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4433 | raw_spin_unlock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4434 | if (need_schedule_work) |
| 4435 | schedule_work(&release_agent_work); |
| 4436 | } |
| 4437 | } |
| 4438 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4439 | /* |
| 4440 | * Notify userspace when a cgroup is released, by running the |
| 4441 | * configured release agent with the name of the cgroup (path |
| 4442 | * relative to the root of cgroup file system) as the argument. |
| 4443 | * |
| 4444 | * Most likely, this user command will try to rmdir this cgroup. |
| 4445 | * |
| 4446 | * This races with the possibility that some other task will be |
| 4447 | * attached to this cgroup before it is removed, or that some other |
| 4448 | * user task will 'mkdir' a child cgroup of this cgroup. That's ok. |
| 4449 | * The presumed 'rmdir' will fail quietly if this cgroup is no longer |
| 4450 | * unused, and this cgroup will be reprieved from its death sentence, |
| 4451 | * to continue to serve a useful existence. Next time it's released, |
| 4452 | * we will get notified again, if it still has 'notify_on_release' set. |
| 4453 | * |
| 4454 | * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which |
| 4455 | * means only wait until the task is successfully execve()'d. The |
| 4456 | * separate release agent task is forked by call_usermodehelper(), |
| 4457 | * then control in this thread returns here, without waiting for the |
| 4458 | * release agent task. We don't bother to wait because the caller of |
| 4459 | * this routine has no use for the exit status of the release agent |
| 4460 | * task, so no sense holding our caller up for that. |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4461 | */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4462 | static void cgroup_release_agent(struct work_struct *work) |
| 4463 | { |
| 4464 | BUG_ON(work != &release_agent_work); |
| 4465 | mutex_lock(&cgroup_mutex); |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4466 | raw_spin_lock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4467 | while (!list_empty(&release_list)) { |
| 4468 | char *argv[3], *envp[3]; |
| 4469 | int i; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4470 | char *pathbuf = NULL, *agentbuf = NULL, *path; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4471 | struct cgroup *cgrp = list_entry(release_list.next, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4472 | struct cgroup, |
| 4473 | release_list); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4474 | list_del_init(&cgrp->release_list); |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4475 | raw_spin_unlock(&release_list_lock); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4476 | pathbuf = kmalloc(PATH_MAX, GFP_KERNEL); |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 4477 | if (!pathbuf) |
| 4478 | goto continue_free; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4479 | path = cgroup_path(cgrp, pathbuf, PATH_MAX); |
| 4480 | if (!path) |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 4481 | goto continue_free; |
| 4482 | agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL); |
| 4483 | if (!agentbuf) |
| 4484 | goto continue_free; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4485 | |
| 4486 | i = 0; |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 4487 | argv[i++] = agentbuf; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4488 | argv[i++] = path; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4489 | argv[i] = NULL; |
| 4490 | |
| 4491 | i = 0; |
| 4492 | /* minimal command environment */ |
| 4493 | envp[i++] = "HOME=/"; |
| 4494 | envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin"; |
| 4495 | envp[i] = NULL; |
| 4496 | |
| 4497 | /* Drop the lock while we invoke the usermode helper, |
| 4498 | * since the exec could involve hitting disk and hence |
| 4499 | * be a slow process */ |
| 4500 | mutex_unlock(&cgroup_mutex); |
| 4501 | call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4502 | mutex_lock(&cgroup_mutex); |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 4503 | continue_free: |
| 4504 | kfree(pathbuf); |
| 4505 | kfree(agentbuf); |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4506 | raw_spin_lock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4507 | } |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4508 | raw_spin_unlock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4509 | mutex_unlock(&cgroup_mutex); |
| 4510 | } |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 4511 | |
| 4512 | static int __init cgroup_disable(char *str) |
| 4513 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4514 | struct cgroup_subsys *ss; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 4515 | char *token; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4516 | int i; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 4517 | |
| 4518 | while ((token = strsep(&str, ",")) != NULL) { |
| 4519 | if (!*token) |
| 4520 | continue; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 4521 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4522 | for_each_subsys(ss, i) { |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 4523 | if (!strcmp(token, ss->name)) { |
| 4524 | ss->disabled = 1; |
| 4525 | printk(KERN_INFO "Disabling %s control group" |
| 4526 | " subsystem\n", ss->name); |
| 4527 | break; |
| 4528 | } |
| 4529 | } |
| 4530 | } |
| 4531 | return 1; |
| 4532 | } |
| 4533 | __setup("cgroup_disable=", cgroup_disable); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 4534 | |
Tejun Heo | b77d7b6 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4535 | /** |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 4536 | * css_tryget_from_dir - get corresponding css from the dentry of a cgroup dir |
Tejun Heo | 35cf083 | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 4537 | * @dentry: directory dentry of interest |
| 4538 | * @ss: subsystem of interest |
Tejun Heo | b77d7b6 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4539 | * |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 4540 | * If @dentry is a directory for a cgroup which has @ss enabled on it, try |
| 4541 | * to get the corresponding css and return it. If such css doesn't exist |
| 4542 | * or can't be pinned, an ERR_PTR value is returned. |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 4543 | */ |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 4544 | struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry, |
| 4545 | struct cgroup_subsys *ss) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 4546 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4547 | struct kernfs_node *kn = kernfs_node_from_dentry(dentry); |
| 4548 | struct cgroup_subsys_state *css = NULL; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 4549 | struct cgroup *cgrp; |
Tejun Heo | b77d7b6 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4550 | |
Tejun Heo | 35cf083 | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 4551 | /* is @dentry a cgroup dir? */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4552 | if (dentry->d_sb->s_type != &cgroup_fs_type || !kn || |
| 4553 | kernfs_type(kn) != KERNFS_DIR) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 4554 | return ERR_PTR(-EBADF); |
| 4555 | |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 4556 | rcu_read_lock(); |
| 4557 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4558 | /* |
| 4559 | * This path doesn't originate from kernfs and @kn could already |
| 4560 | * have been or be removed at any point. @kn->priv is RCU |
| 4561 | * protected for this access. See destroy_locked() for details. |
| 4562 | */ |
| 4563 | cgrp = rcu_dereference(kn->priv); |
| 4564 | if (cgrp) |
| 4565 | css = cgroup_css(cgrp, ss); |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 4566 | |
| 4567 | if (!css || !css_tryget(css)) |
| 4568 | css = ERR_PTR(-ENOENT); |
| 4569 | |
| 4570 | rcu_read_unlock(); |
| 4571 | return css; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 4572 | } |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 4573 | |
Li Zefan | 1cb650b | 2013-08-19 10:05:24 +0800 | [diff] [blame] | 4574 | /** |
| 4575 | * css_from_id - lookup css by id |
| 4576 | * @id: the cgroup id |
| 4577 | * @ss: cgroup subsys to be looked into |
| 4578 | * |
| 4579 | * Returns the css if there's valid one with @id, otherwise returns NULL. |
| 4580 | * Should be called under rcu_read_lock(). |
| 4581 | */ |
| 4582 | struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss) |
| 4583 | { |
| 4584 | struct cgroup *cgrp; |
| 4585 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 4586 | cgroup_assert_mutexes_or_rcu_locked(); |
Li Zefan | 1cb650b | 2013-08-19 10:05:24 +0800 | [diff] [blame] | 4587 | |
| 4588 | cgrp = idr_find(&ss->root->cgroup_idr, id); |
| 4589 | if (cgrp) |
Tejun Heo | d162596 | 2013-08-27 14:27:23 -0400 | [diff] [blame] | 4590 | return cgroup_css(cgrp, ss); |
Li Zefan | 1cb650b | 2013-08-19 10:05:24 +0800 | [diff] [blame] | 4591 | return NULL; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 4592 | } |
| 4593 | |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4594 | #ifdef CONFIG_CGROUP_DEBUG |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4595 | static struct cgroup_subsys_state * |
| 4596 | debug_css_alloc(struct cgroup_subsys_state *parent_css) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4597 | { |
| 4598 | struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL); |
| 4599 | |
| 4600 | if (!css) |
| 4601 | return ERR_PTR(-ENOMEM); |
| 4602 | |
| 4603 | return css; |
| 4604 | } |
| 4605 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4606 | static void debug_css_free(struct cgroup_subsys_state *css) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4607 | { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4608 | kfree(css); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4609 | } |
| 4610 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4611 | static u64 debug_taskcount_read(struct cgroup_subsys_state *css, |
| 4612 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4613 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4614 | return cgroup_task_count(css->cgroup); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4615 | } |
| 4616 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4617 | static u64 current_css_set_read(struct cgroup_subsys_state *css, |
| 4618 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4619 | { |
| 4620 | return (u64)(unsigned long)current->cgroups; |
| 4621 | } |
| 4622 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4623 | static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css, |
Li Zefan | 03c78cb | 2013-06-14 11:17:19 +0800 | [diff] [blame] | 4624 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4625 | { |
| 4626 | u64 count; |
| 4627 | |
| 4628 | rcu_read_lock(); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 4629 | count = atomic_read(&task_css_set(current)->refcount); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4630 | rcu_read_unlock(); |
| 4631 | return count; |
| 4632 | } |
| 4633 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4634 | static int current_css_set_cg_links_read(struct seq_file *seq, void *v) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4635 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 4636 | struct cgrp_cset_link *link; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 4637 | struct css_set *cset; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4638 | char *name_buf; |
| 4639 | |
| 4640 | name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL); |
| 4641 | if (!name_buf) |
| 4642 | return -ENOMEM; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4643 | |
| 4644 | read_lock(&css_set_lock); |
| 4645 | rcu_read_lock(); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 4646 | cset = rcu_dereference(current->cgroups); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 4647 | list_for_each_entry(link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4648 | struct cgroup *c = link->cgrp; |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4649 | const char *name = "?"; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4650 | |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4651 | if (c != cgroup_dummy_top) { |
| 4652 | cgroup_name(c, name_buf, NAME_MAX + 1); |
| 4653 | name = name_buf; |
| 4654 | } |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4655 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 4656 | seq_printf(seq, "Root %d group %s\n", |
| 4657 | c->root->hierarchy_id, name); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4658 | } |
| 4659 | rcu_read_unlock(); |
| 4660 | read_unlock(&css_set_lock); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4661 | kfree(name_buf); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4662 | return 0; |
| 4663 | } |
| 4664 | |
| 4665 | #define MAX_TASKS_SHOWN_PER_CSS 25 |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4666 | static int cgroup_css_links_read(struct seq_file *seq, void *v) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4667 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4668 | struct cgroup_subsys_state *css = seq_css(seq); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 4669 | struct cgrp_cset_link *link; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4670 | |
| 4671 | read_lock(&css_set_lock); |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4672 | list_for_each_entry(link, &css->cgroup->cset_links, cset_link) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 4673 | struct css_set *cset = link->cset; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4674 | struct task_struct *task; |
| 4675 | int count = 0; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 4676 | seq_printf(seq, "css_set %p\n", cset); |
| 4677 | list_for_each_entry(task, &cset->tasks, cg_list) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4678 | if (count++ > MAX_TASKS_SHOWN_PER_CSS) { |
| 4679 | seq_puts(seq, " ...\n"); |
| 4680 | break; |
| 4681 | } else { |
| 4682 | seq_printf(seq, " task %d\n", |
| 4683 | task_pid_vnr(task)); |
| 4684 | } |
| 4685 | } |
| 4686 | } |
| 4687 | read_unlock(&css_set_lock); |
| 4688 | return 0; |
| 4689 | } |
| 4690 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4691 | static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4692 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4693 | return test_bit(CGRP_RELEASABLE, &css->cgroup->flags); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4694 | } |
| 4695 | |
| 4696 | static struct cftype debug_files[] = { |
| 4697 | { |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4698 | .name = "taskcount", |
| 4699 | .read_u64 = debug_taskcount_read, |
| 4700 | }, |
| 4701 | |
| 4702 | { |
| 4703 | .name = "current_css_set", |
| 4704 | .read_u64 = current_css_set_read, |
| 4705 | }, |
| 4706 | |
| 4707 | { |
| 4708 | .name = "current_css_set_refcount", |
| 4709 | .read_u64 = current_css_set_refcount_read, |
| 4710 | }, |
| 4711 | |
| 4712 | { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4713 | .name = "current_css_set_cg_links", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4714 | .seq_show = current_css_set_cg_links_read, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4715 | }, |
| 4716 | |
| 4717 | { |
| 4718 | .name = "cgroup_css_links", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4719 | .seq_show = cgroup_css_links_read, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4720 | }, |
| 4721 | |
| 4722 | { |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4723 | .name = "releasable", |
| 4724 | .read_u64 = releasable_read, |
| 4725 | }, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4726 | |
Tejun Heo | 4baf6e3 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4727 | { } /* terminate */ |
| 4728 | }; |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4729 | |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4730 | struct cgroup_subsys debug_cgrp_subsys = { |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4731 | .css_alloc = debug_css_alloc, |
| 4732 | .css_free = debug_css_free, |
Tejun Heo | 4baf6e3 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4733 | .base_cftypes = debug_files, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 4734 | }; |
| 4735 | #endif /* CONFIG_CGROUP_DEBUG */ |