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> |
| 33 | #include <linux/fs.h> |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 34 | #include <linux/init_task.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 35 | #include <linux/kernel.h> |
| 36 | #include <linux/list.h> |
| 37 | #include <linux/mm.h> |
| 38 | #include <linux/mutex.h> |
| 39 | #include <linux/mount.h> |
| 40 | #include <linux/pagemap.h> |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 41 | #include <linux/proc_fs.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 42 | #include <linux/rcupdate.h> |
| 43 | #include <linux/sched.h> |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 44 | #include <linux/backing-dev.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 45 | #include <linux/seq_file.h> |
| 46 | #include <linux/slab.h> |
| 47 | #include <linux/magic.h> |
| 48 | #include <linux/spinlock.h> |
| 49 | #include <linux/string.h> |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 50 | #include <linux/sort.h> |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 51 | #include <linux/kmod.h> |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 52 | #include <linux/module.h> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 53 | #include <linux/delayacct.h> |
| 54 | #include <linux/cgroupstats.h> |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 55 | #include <linux/hash.h> |
Al Viro | 3f8206d | 2008-07-26 03:46:43 -0400 | [diff] [blame] | 56 | #include <linux/namei.h> |
Li Zefan | 096b7fe | 2009-07-29 15:04:04 -0700 | [diff] [blame] | 57 | #include <linux/pid_namespace.h> |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 58 | #include <linux/idr.h> |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 59 | #include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */ |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 60 | #include <linux/eventfd.h> |
| 61 | #include <linux/poll.h> |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 62 | #include <linux/flex_array.h> /* used in cgroup_attach_proc */ |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 63 | #include <linux/kthread.h> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 64 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 65 | #include <linux/atomic.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 66 | |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 67 | /* css deactivation bias, makes css->refcnt negative to deny new trygets */ |
| 68 | #define CSS_DEACT_BIAS INT_MIN |
| 69 | |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 70 | /* |
| 71 | * cgroup_mutex is the master lock. Any modification to cgroup or its |
| 72 | * hierarchy must be performed while holding it. |
| 73 | * |
| 74 | * cgroup_root_mutex nests inside cgroup_mutex and should be held to modify |
| 75 | * cgroupfs_root of any cgroup hierarchy - subsys list, flags, |
| 76 | * release_agent_path and so on. Modifying requires both cgroup_mutex and |
| 77 | * cgroup_root_mutex. Readers can acquire either of the two. This is to |
| 78 | * break the following locking order cycle. |
| 79 | * |
| 80 | * A. cgroup_mutex -> cred_guard_mutex -> s_type->i_mutex_key -> namespace_sem |
| 81 | * B. namespace_sem -> cgroup_mutex |
| 82 | * |
| 83 | * B happens only through cgroup_show_options() and using cgroup_root_mutex |
| 84 | * breaks it. |
| 85 | */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 86 | static DEFINE_MUTEX(cgroup_mutex); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 87 | static DEFINE_MUTEX(cgroup_root_mutex); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 88 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 89 | /* |
| 90 | * Generate an array of cgroup subsystem pointers. At boot time, this is |
| 91 | * populated up to CGROUP_BUILTIN_SUBSYS_COUNT, and modular subsystems are |
| 92 | * registered after that. The mutable section of this array is protected by |
| 93 | * cgroup_mutex. |
| 94 | */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 95 | #define SUBSYS(_x) &_x ## _subsys, |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 96 | static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 97 | #include <linux/cgroup_subsys.h> |
| 98 | }; |
| 99 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 100 | #define MAX_CGROUP_ROOT_NAMELEN 64 |
| 101 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 102 | /* |
| 103 | * A cgroupfs_root represents the root of a cgroup hierarchy, |
| 104 | * and may be associated with a superblock to form an active |
| 105 | * hierarchy |
| 106 | */ |
| 107 | struct cgroupfs_root { |
| 108 | struct super_block *sb; |
| 109 | |
| 110 | /* |
| 111 | * The bitmask of subsystems intended to be attached to this |
| 112 | * hierarchy |
| 113 | */ |
| 114 | unsigned long subsys_bits; |
| 115 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 116 | /* Unique id for this hierarchy. */ |
| 117 | int hierarchy_id; |
| 118 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 119 | /* The bitmask of subsystems currently attached to this hierarchy */ |
| 120 | unsigned long actual_subsys_bits; |
| 121 | |
| 122 | /* A list running through the attached subsystems */ |
| 123 | struct list_head subsys_list; |
| 124 | |
| 125 | /* The root cgroup for this hierarchy */ |
| 126 | struct cgroup top_cgroup; |
| 127 | |
| 128 | /* Tracks how many cgroups are currently defined in hierarchy.*/ |
| 129 | int number_of_cgroups; |
| 130 | |
Li Zefan | e5f6a86 | 2009-01-07 18:07:41 -0800 | [diff] [blame] | 131 | /* A list running through the active hierarchies */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 132 | struct list_head root_list; |
| 133 | |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 134 | /* All cgroups on this root, cgroup_mutex protected */ |
| 135 | struct list_head allcg_list; |
| 136 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 137 | /* Hierarchy-specific flags */ |
| 138 | unsigned long flags; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 139 | |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 140 | /* The path to use for release notifications. */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 141 | char release_agent_path[PATH_MAX]; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 142 | |
| 143 | /* The name for this hierarchy - may be empty */ |
| 144 | char name[MAX_CGROUP_ROOT_NAMELEN]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 145 | }; |
| 146 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 147 | /* |
| 148 | * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the |
| 149 | * subsystems that are otherwise unattached - it never has more than a |
| 150 | * single cgroup, and all tasks are part of that cgroup. |
| 151 | */ |
| 152 | static struct cgroupfs_root rootnode; |
| 153 | |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 154 | /* |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 155 | * cgroupfs file entry, pointed to from leaf dentry->d_fsdata. |
| 156 | */ |
| 157 | struct cfent { |
| 158 | struct list_head node; |
| 159 | struct dentry *dentry; |
| 160 | struct cftype *type; |
| 161 | }; |
| 162 | |
| 163 | /* |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 164 | * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when |
| 165 | * cgroup_subsys->use_id != 0. |
| 166 | */ |
| 167 | #define CSS_ID_MAX (65535) |
| 168 | struct css_id { |
| 169 | /* |
| 170 | * The css to which this ID points. This pointer is set to valid value |
| 171 | * after cgroup is populated. If cgroup is removed, this will be NULL. |
| 172 | * This pointer is expected to be RCU-safe because destroy() |
| 173 | * is called after synchronize_rcu(). But for safe use, css_is_removed() |
| 174 | * css_tryget() should be used for avoiding race. |
| 175 | */ |
Arnd Bergmann | 2c392b8 | 2010-02-24 19:41:39 +0100 | [diff] [blame] | 176 | struct cgroup_subsys_state __rcu *css; |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 177 | /* |
| 178 | * ID of this css. |
| 179 | */ |
| 180 | unsigned short id; |
| 181 | /* |
| 182 | * Depth in hierarchy which this ID belongs to. |
| 183 | */ |
| 184 | unsigned short depth; |
| 185 | /* |
| 186 | * ID is freed by RCU. (and lookup routine is RCU safe.) |
| 187 | */ |
| 188 | struct rcu_head rcu_head; |
| 189 | /* |
| 190 | * Hierarchy of CSS ID belongs to. |
| 191 | */ |
| 192 | unsigned short stack[0]; /* Array of Length (depth+1) */ |
| 193 | }; |
| 194 | |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 195 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 196 | * cgroup_event represents events which userspace want to receive. |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 197 | */ |
| 198 | struct cgroup_event { |
| 199 | /* |
| 200 | * Cgroup which the event belongs to. |
| 201 | */ |
| 202 | struct cgroup *cgrp; |
| 203 | /* |
| 204 | * Control file which the event associated. |
| 205 | */ |
| 206 | struct cftype *cft; |
| 207 | /* |
| 208 | * eventfd to signal userspace about the event. |
| 209 | */ |
| 210 | struct eventfd_ctx *eventfd; |
| 211 | /* |
| 212 | * Each of these stored in a list by the cgroup. |
| 213 | */ |
| 214 | struct list_head list; |
| 215 | /* |
| 216 | * All fields below needed to unregister event when |
| 217 | * userspace closes eventfd. |
| 218 | */ |
| 219 | poll_table pt; |
| 220 | wait_queue_head_t *wqh; |
| 221 | wait_queue_t wait; |
| 222 | struct work_struct remove; |
| 223 | }; |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 224 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 225 | /* The list of hierarchy roots */ |
| 226 | |
| 227 | static LIST_HEAD(roots); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 228 | static int root_count; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 229 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 230 | static DEFINE_IDA(hierarchy_ida); |
| 231 | static int next_hierarchy_id; |
| 232 | static DEFINE_SPINLOCK(hierarchy_id_lock); |
| 233 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 234 | /* dummytop is a shorthand for the dummy hierarchy's top cgroup */ |
| 235 | #define dummytop (&rootnode.top_cgroup) |
| 236 | |
| 237 | /* This flag indicates whether tasks in the fork and exit paths should |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 238 | * check for fork/exit handlers to call. This avoids us having to do |
| 239 | * extra work in the fork/exit path if none of the subsystems need to |
| 240 | * be called. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 241 | */ |
Li Zefan | 8947f9d | 2008-07-25 01:46:56 -0700 | [diff] [blame] | 242 | static int need_forkexit_callback __read_mostly; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 243 | |
Paul E. McKenney | d11c563 | 2010-02-22 17:04:50 -0800 | [diff] [blame] | 244 | #ifdef CONFIG_PROVE_LOCKING |
| 245 | int cgroup_lock_is_held(void) |
| 246 | { |
| 247 | return lockdep_is_held(&cgroup_mutex); |
| 248 | } |
| 249 | #else /* #ifdef CONFIG_PROVE_LOCKING */ |
| 250 | int cgroup_lock_is_held(void) |
| 251 | { |
| 252 | return mutex_is_locked(&cgroup_mutex); |
| 253 | } |
| 254 | #endif /* #else #ifdef CONFIG_PROVE_LOCKING */ |
| 255 | |
| 256 | EXPORT_SYMBOL_GPL(cgroup_lock_is_held); |
| 257 | |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 258 | /* the current nr of refs, always >= 0 whether @css is deactivated or not */ |
| 259 | static int css_refcnt(struct cgroup_subsys_state *css) |
| 260 | { |
| 261 | int v = atomic_read(&css->refcnt); |
| 262 | |
| 263 | return v >= 0 ? v : v - CSS_DEACT_BIAS; |
| 264 | } |
| 265 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 266 | /* convenient tests for these bits */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 267 | inline int cgroup_is_removed(const struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 268 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 269 | return test_bit(CGRP_REMOVED, &cgrp->flags); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | /* bits in struct cgroupfs_root flags field */ |
| 273 | enum { |
| 274 | ROOT_NOPREFIX, /* mounted subsystems have no named prefix */ |
| 275 | }; |
| 276 | |
Adrian Bunk | e9685a0 | 2008-02-07 00:13:46 -0800 | [diff] [blame] | 277 | static int cgroup_is_releasable(const struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 278 | { |
| 279 | const int bits = |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 280 | (1 << CGRP_RELEASABLE) | |
| 281 | (1 << CGRP_NOTIFY_ON_RELEASE); |
| 282 | return (cgrp->flags & bits) == bits; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 283 | } |
| 284 | |
Adrian Bunk | e9685a0 | 2008-02-07 00:13:46 -0800 | [diff] [blame] | 285 | static int notify_on_release(const struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 286 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 287 | return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 288 | } |
| 289 | |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 290 | static int clone_children(const struct cgroup *cgrp) |
| 291 | { |
| 292 | return test_bit(CGRP_CLONE_CHILDREN, &cgrp->flags); |
| 293 | } |
| 294 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 295 | /* |
| 296 | * for_each_subsys() allows you to iterate on each subsystem attached to |
| 297 | * an active hierarchy |
| 298 | */ |
| 299 | #define for_each_subsys(_root, _ss) \ |
| 300 | list_for_each_entry(_ss, &_root->subsys_list, sibling) |
| 301 | |
Li Zefan | e5f6a86 | 2009-01-07 18:07:41 -0800 | [diff] [blame] | 302 | /* for_each_active_root() allows you to iterate across the active hierarchies */ |
| 303 | #define for_each_active_root(_root) \ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 304 | list_for_each_entry(_root, &roots, root_list) |
| 305 | |
Tejun Heo | f6ea937 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 306 | static inline struct cgroup *__d_cgrp(struct dentry *dentry) |
| 307 | { |
| 308 | return dentry->d_fsdata; |
| 309 | } |
| 310 | |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 311 | static inline struct cfent *__d_cfe(struct dentry *dentry) |
Tejun Heo | f6ea937 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 312 | { |
| 313 | return dentry->d_fsdata; |
| 314 | } |
| 315 | |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 316 | static inline struct cftype *__d_cft(struct dentry *dentry) |
| 317 | { |
| 318 | return __d_cfe(dentry)->type; |
| 319 | } |
| 320 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 321 | /* the list of cgroups eligible for automatic release. Protected by |
| 322 | * release_list_lock */ |
| 323 | static LIST_HEAD(release_list); |
Thomas Gleixner | cdcc136f | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 324 | static DEFINE_RAW_SPINLOCK(release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 325 | static void cgroup_release_agent(struct work_struct *work); |
| 326 | static DECLARE_WORK(release_agent_work, cgroup_release_agent); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 327 | static void check_for_release(struct cgroup *cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 328 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 329 | /* Link structure for associating css_set objects with cgroups */ |
| 330 | struct cg_cgroup_link { |
| 331 | /* |
| 332 | * List running through cg_cgroup_links associated with a |
| 333 | * cgroup, anchored on cgroup->css_sets |
| 334 | */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 335 | struct list_head cgrp_link_list; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 336 | struct cgroup *cgrp; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 337 | /* |
| 338 | * List running through cg_cgroup_links pointing at a |
| 339 | * single css_set object, anchored on css_set->cg_links |
| 340 | */ |
| 341 | struct list_head cg_link_list; |
| 342 | struct css_set *cg; |
| 343 | }; |
| 344 | |
| 345 | /* The default css_set - used by init and its children prior to any |
| 346 | * hierarchies being mounted. It contains a pointer to the root state |
| 347 | * for each subsystem. Also used to anchor the list of css_sets. Not |
| 348 | * reference-counted, to improve performance when child cgroups |
| 349 | * haven't been created. |
| 350 | */ |
| 351 | |
| 352 | static struct css_set init_css_set; |
| 353 | static struct cg_cgroup_link init_css_set_link; |
| 354 | |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 355 | static int cgroup_init_idr(struct cgroup_subsys *ss, |
| 356 | struct cgroup_subsys_state *css); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 357 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 358 | /* css_set_lock protects the list of css_set objects, and the |
| 359 | * chain of tasks off each css_set. Nests outside task->alloc_lock |
| 360 | * due to cgroup_iter_start() */ |
| 361 | static DEFINE_RWLOCK(css_set_lock); |
| 362 | static int css_set_count; |
| 363 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 364 | /* |
| 365 | * hash table for cgroup groups. This improves the performance to find |
| 366 | * an existing css_set. This hash doesn't (currently) take into |
| 367 | * account cgroups in empty hierarchies. |
| 368 | */ |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 369 | #define CSS_SET_HASH_BITS 7 |
| 370 | #define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS) |
| 371 | static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE]; |
| 372 | |
| 373 | static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[]) |
| 374 | { |
| 375 | int i; |
| 376 | int index; |
| 377 | unsigned long tmp = 0UL; |
| 378 | |
| 379 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) |
| 380 | tmp += (unsigned long)css[i]; |
| 381 | tmp = (tmp >> 16) ^ tmp; |
| 382 | |
| 383 | index = hash_long(tmp, CSS_SET_HASH_BITS); |
| 384 | |
| 385 | return &css_set_table[index]; |
| 386 | } |
| 387 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 388 | /* We don't maintain the lists running through each css_set to its |
| 389 | * task until after the first call to cgroup_iter_start(). This |
| 390 | * reduces the fork()/exit() overhead for people who have cgroups |
| 391 | * compiled into their kernel but not actually in use */ |
Li Zefan | 8947f9d | 2008-07-25 01:46:56 -0700 | [diff] [blame] | 392 | static int use_task_css_set_links __read_mostly; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 393 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 394 | static void __put_css_set(struct css_set *cg, int taskexit) |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 395 | { |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 396 | struct cg_cgroup_link *link; |
| 397 | struct cg_cgroup_link *saved_link; |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 398 | /* |
| 399 | * Ensure that the refcount doesn't hit zero while any readers |
| 400 | * can see it. Similar to atomic_dec_and_lock(), but for an |
| 401 | * rwlock |
| 402 | */ |
| 403 | if (atomic_add_unless(&cg->refcount, -1, 1)) |
| 404 | return; |
| 405 | write_lock(&css_set_lock); |
| 406 | if (!atomic_dec_and_test(&cg->refcount)) { |
| 407 | write_unlock(&css_set_lock); |
| 408 | return; |
| 409 | } |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 410 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 411 | /* This css_set is dead. unlink it and release cgroup refcounts */ |
| 412 | hlist_del(&cg->hlist); |
| 413 | css_set_count--; |
| 414 | |
| 415 | list_for_each_entry_safe(link, saved_link, &cg->cg_links, |
| 416 | cg_link_list) { |
| 417 | struct cgroup *cgrp = link->cgrp; |
| 418 | list_del(&link->cg_link_list); |
| 419 | list_del(&link->cgrp_link_list); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 420 | if (atomic_dec_and_test(&cgrp->count) && |
| 421 | notify_on_release(cgrp)) { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 422 | if (taskexit) |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 423 | set_bit(CGRP_RELEASABLE, &cgrp->flags); |
| 424 | check_for_release(cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 425 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 426 | |
| 427 | kfree(link); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 428 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 429 | |
| 430 | write_unlock(&css_set_lock); |
Lai Jiangshan | 30088ad | 2011-03-15 17:53:46 +0800 | [diff] [blame] | 431 | kfree_rcu(cg, rcu_head); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | /* |
| 435 | * refcounted get/put for css_set objects |
| 436 | */ |
| 437 | static inline void get_css_set(struct css_set *cg) |
| 438 | { |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 439 | atomic_inc(&cg->refcount); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | static inline void put_css_set(struct css_set *cg) |
| 443 | { |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 444 | __put_css_set(cg, 0); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 445 | } |
| 446 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 447 | static inline void put_css_set_taskexit(struct css_set *cg) |
| 448 | { |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 449 | __put_css_set(cg, 1); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 450 | } |
| 451 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 452 | /* |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 453 | * compare_css_sets - helper function for find_existing_css_set(). |
| 454 | * @cg: candidate css_set being tested |
| 455 | * @old_cg: existing css_set for a task |
| 456 | * @new_cgrp: cgroup that's being entered by the task |
| 457 | * @template: desired set of css pointers in css_set (pre-calculated) |
| 458 | * |
| 459 | * Returns true if "cg" matches "old_cg" except for the hierarchy |
| 460 | * which "new_cgrp" belongs to, for which it should match "new_cgrp". |
| 461 | */ |
| 462 | static bool compare_css_sets(struct css_set *cg, |
| 463 | struct css_set *old_cg, |
| 464 | struct cgroup *new_cgrp, |
| 465 | struct cgroup_subsys_state *template[]) |
| 466 | { |
| 467 | struct list_head *l1, *l2; |
| 468 | |
| 469 | if (memcmp(template, cg->subsys, sizeof(cg->subsys))) { |
| 470 | /* Not all subsystems matched */ |
| 471 | return false; |
| 472 | } |
| 473 | |
| 474 | /* |
| 475 | * Compare cgroup pointers in order to distinguish between |
| 476 | * different cgroups in heirarchies with no subsystems. We |
| 477 | * could get by with just this check alone (and skip the |
| 478 | * memcmp above) but on most setups the memcmp check will |
| 479 | * avoid the need for this more expensive check on almost all |
| 480 | * candidates. |
| 481 | */ |
| 482 | |
| 483 | l1 = &cg->cg_links; |
| 484 | l2 = &old_cg->cg_links; |
| 485 | while (1) { |
| 486 | struct cg_cgroup_link *cgl1, *cgl2; |
| 487 | struct cgroup *cg1, *cg2; |
| 488 | |
| 489 | l1 = l1->next; |
| 490 | l2 = l2->next; |
| 491 | /* See if we reached the end - both lists are equal length. */ |
| 492 | if (l1 == &cg->cg_links) { |
| 493 | BUG_ON(l2 != &old_cg->cg_links); |
| 494 | break; |
| 495 | } else { |
| 496 | BUG_ON(l2 == &old_cg->cg_links); |
| 497 | } |
| 498 | /* Locate the cgroups associated with these links. */ |
| 499 | cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list); |
| 500 | cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list); |
| 501 | cg1 = cgl1->cgrp; |
| 502 | cg2 = cgl2->cgrp; |
| 503 | /* Hierarchies should be linked in the same order. */ |
| 504 | BUG_ON(cg1->root != cg2->root); |
| 505 | |
| 506 | /* |
| 507 | * If this hierarchy is the hierarchy of the cgroup |
| 508 | * that's changing, then we need to check that this |
| 509 | * css_set points to the new cgroup; if it's any other |
| 510 | * hierarchy, then this css_set should point to the |
| 511 | * same cgroup as the old css_set. |
| 512 | */ |
| 513 | if (cg1->root == new_cgrp->root) { |
| 514 | if (cg1 != new_cgrp) |
| 515 | return false; |
| 516 | } else { |
| 517 | if (cg1 != cg2) |
| 518 | return false; |
| 519 | } |
| 520 | } |
| 521 | return true; |
| 522 | } |
| 523 | |
| 524 | /* |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 525 | * find_existing_css_set() is a helper for |
| 526 | * find_css_set(), and checks to see whether an existing |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 527 | * css_set is suitable. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 528 | * |
| 529 | * oldcg: the cgroup group that we're using before the cgroup |
| 530 | * transition |
| 531 | * |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 532 | * cgrp: the cgroup that we're moving into |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 533 | * |
| 534 | * template: location in which to build the desired set of subsystem |
| 535 | * state objects for the new cgroup group |
| 536 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 537 | static struct css_set *find_existing_css_set( |
| 538 | struct css_set *oldcg, |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 539 | struct cgroup *cgrp, |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 540 | struct cgroup_subsys_state *template[]) |
| 541 | { |
| 542 | int i; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 543 | struct cgroupfs_root *root = cgrp->root; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 544 | struct hlist_head *hhead; |
| 545 | struct hlist_node *node; |
| 546 | struct css_set *cg; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 547 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 548 | /* |
| 549 | * Build the set of subsystem state objects that we want to see in the |
| 550 | * new css_set. while subsystems can change globally, the entries here |
| 551 | * won't change, so no need for locking. |
| 552 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 553 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { |
Li Zefan | 8d53d55 | 2008-02-23 15:24:11 -0800 | [diff] [blame] | 554 | if (root->subsys_bits & (1UL << i)) { |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 555 | /* Subsystem is in this hierarchy. So we want |
| 556 | * the subsystem state from the new |
| 557 | * cgroup */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 558 | template[i] = cgrp->subsys[i]; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 559 | } else { |
| 560 | /* Subsystem is not in this hierarchy, so we |
| 561 | * don't want to change the subsystem state */ |
| 562 | template[i] = oldcg->subsys[i]; |
| 563 | } |
| 564 | } |
| 565 | |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 566 | hhead = css_set_hash(template); |
| 567 | hlist_for_each_entry(cg, node, hhead, hlist) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 568 | if (!compare_css_sets(cg, oldcg, cgrp, template)) |
| 569 | continue; |
| 570 | |
| 571 | /* This css_set matches what we need */ |
| 572 | return cg; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 573 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 574 | |
| 575 | /* No existing cgroup group matched */ |
| 576 | return NULL; |
| 577 | } |
| 578 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 579 | static void free_cg_links(struct list_head *tmp) |
| 580 | { |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 581 | struct cg_cgroup_link *link; |
| 582 | struct cg_cgroup_link *saved_link; |
| 583 | |
| 584 | list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 585 | list_del(&link->cgrp_link_list); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 586 | kfree(link); |
| 587 | } |
| 588 | } |
| 589 | |
| 590 | /* |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 591 | * allocate_cg_links() allocates "count" cg_cgroup_link structures |
| 592 | * and chains them on tmp through their cgrp_link_list fields. Returns 0 on |
| 593 | * success or a negative error |
| 594 | */ |
| 595 | static int allocate_cg_links(int count, struct list_head *tmp) |
| 596 | { |
| 597 | struct cg_cgroup_link *link; |
| 598 | int i; |
| 599 | INIT_LIST_HEAD(tmp); |
| 600 | for (i = 0; i < count; i++) { |
| 601 | link = kmalloc(sizeof(*link), GFP_KERNEL); |
| 602 | if (!link) { |
| 603 | free_cg_links(tmp); |
| 604 | return -ENOMEM; |
| 605 | } |
| 606 | list_add(&link->cgrp_link_list, tmp); |
| 607 | } |
| 608 | return 0; |
| 609 | } |
| 610 | |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 611 | /** |
| 612 | * link_css_set - a helper function to link a css_set to a cgroup |
| 613 | * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links() |
| 614 | * @cg: the css_set to be linked |
| 615 | * @cgrp: the destination cgroup |
| 616 | */ |
| 617 | static void link_css_set(struct list_head *tmp_cg_links, |
| 618 | struct css_set *cg, struct cgroup *cgrp) |
| 619 | { |
| 620 | struct cg_cgroup_link *link; |
| 621 | |
| 622 | BUG_ON(list_empty(tmp_cg_links)); |
| 623 | link = list_first_entry(tmp_cg_links, struct cg_cgroup_link, |
| 624 | cgrp_link_list); |
| 625 | link->cg = cg; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 626 | link->cgrp = cgrp; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 627 | atomic_inc(&cgrp->count); |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 628 | list_move(&link->cgrp_link_list, &cgrp->css_sets); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 629 | /* |
| 630 | * Always add links to the tail of the list so that the list |
| 631 | * is sorted by order of hierarchy creation |
| 632 | */ |
| 633 | list_add_tail(&link->cg_link_list, &cg->cg_links); |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 634 | } |
| 635 | |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 636 | /* |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 637 | * find_css_set() takes an existing cgroup group and a |
| 638 | * cgroup object, and returns a css_set object that's |
| 639 | * equivalent to the old group, but with the given cgroup |
| 640 | * substituted into the appropriate hierarchy. Must be called with |
| 641 | * cgroup_mutex held |
| 642 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 643 | static struct css_set *find_css_set( |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 644 | struct css_set *oldcg, struct cgroup *cgrp) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 645 | { |
| 646 | struct css_set *res; |
| 647 | struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT]; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 648 | |
| 649 | struct list_head tmp_cg_links; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 650 | |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 651 | struct hlist_head *hhead; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 652 | struct cg_cgroup_link *link; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 653 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 654 | /* First see if we already have a cgroup group that matches |
| 655 | * the desired set */ |
Li Zefan | 7e9abd8 | 2008-07-25 01:46:54 -0700 | [diff] [blame] | 656 | read_lock(&css_set_lock); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 657 | res = find_existing_css_set(oldcg, cgrp, template); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 658 | if (res) |
| 659 | get_css_set(res); |
Li Zefan | 7e9abd8 | 2008-07-25 01:46:54 -0700 | [diff] [blame] | 660 | read_unlock(&css_set_lock); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 661 | |
| 662 | if (res) |
| 663 | return res; |
| 664 | |
| 665 | res = kmalloc(sizeof(*res), GFP_KERNEL); |
| 666 | if (!res) |
| 667 | return NULL; |
| 668 | |
| 669 | /* Allocate all the cg_cgroup_link objects that we'll need */ |
| 670 | if (allocate_cg_links(root_count, &tmp_cg_links) < 0) { |
| 671 | kfree(res); |
| 672 | return NULL; |
| 673 | } |
| 674 | |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 675 | atomic_set(&res->refcount, 1); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 676 | INIT_LIST_HEAD(&res->cg_links); |
| 677 | INIT_LIST_HEAD(&res->tasks); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 678 | INIT_HLIST_NODE(&res->hlist); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 679 | |
| 680 | /* Copy the set of subsystem state objects generated in |
| 681 | * find_existing_css_set() */ |
| 682 | memcpy(res->subsys, template, sizeof(res->subsys)); |
| 683 | |
| 684 | write_lock(&css_set_lock); |
| 685 | /* Add reference counts and links from the new css_set. */ |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 686 | list_for_each_entry(link, &oldcg->cg_links, cg_link_list) { |
| 687 | struct cgroup *c = link->cgrp; |
| 688 | if (c->root == cgrp->root) |
| 689 | c = cgrp; |
| 690 | link_css_set(&tmp_cg_links, res, c); |
| 691 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 692 | |
| 693 | BUG_ON(!list_empty(&tmp_cg_links)); |
| 694 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 695 | css_set_count++; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 696 | |
| 697 | /* Add this cgroup group to the hash table */ |
| 698 | hhead = css_set_hash(res->subsys); |
| 699 | hlist_add_head(&res->hlist, hhead); |
| 700 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 701 | write_unlock(&css_set_lock); |
| 702 | |
| 703 | return res; |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 704 | } |
| 705 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 706 | /* |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 707 | * Return the cgroup for "task" from the given hierarchy. Must be |
| 708 | * called with cgroup_mutex held. |
| 709 | */ |
| 710 | static struct cgroup *task_cgroup_from_root(struct task_struct *task, |
| 711 | struct cgroupfs_root *root) |
| 712 | { |
| 713 | struct css_set *css; |
| 714 | struct cgroup *res = NULL; |
| 715 | |
| 716 | BUG_ON(!mutex_is_locked(&cgroup_mutex)); |
| 717 | read_lock(&css_set_lock); |
| 718 | /* |
| 719 | * No need to lock the task - since we hold cgroup_mutex the |
| 720 | * task can't change groups, so the only thing that can happen |
| 721 | * is that it exits and its css is set back to init_css_set. |
| 722 | */ |
| 723 | css = task->cgroups; |
| 724 | if (css == &init_css_set) { |
| 725 | res = &root->top_cgroup; |
| 726 | } else { |
| 727 | struct cg_cgroup_link *link; |
| 728 | list_for_each_entry(link, &css->cg_links, cg_link_list) { |
| 729 | struct cgroup *c = link->cgrp; |
| 730 | if (c->root == root) { |
| 731 | res = c; |
| 732 | break; |
| 733 | } |
| 734 | } |
| 735 | } |
| 736 | read_unlock(&css_set_lock); |
| 737 | BUG_ON(!res); |
| 738 | return res; |
| 739 | } |
| 740 | |
| 741 | /* |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 742 | * There is one global cgroup mutex. We also require taking |
| 743 | * task_lock() when dereferencing a task's cgroup subsys pointers. |
| 744 | * See "The task_lock() exception", at the end of this comment. |
| 745 | * |
| 746 | * A task must hold cgroup_mutex to modify cgroups. |
| 747 | * |
| 748 | * Any task can increment and decrement the count field without lock. |
| 749 | * So in general, code holding cgroup_mutex can't rely on the count |
| 750 | * field not changing. However, if the count goes to zero, then only |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 751 | * cgroup_attach_task() can increment it again. Because a count of zero |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 752 | * means that no tasks are currently attached, therefore there is no |
| 753 | * way a task attached to that cgroup can fork (the other way to |
| 754 | * increment the count). So code holding cgroup_mutex can safely |
| 755 | * assume that if the count is zero, it will stay zero. Similarly, if |
| 756 | * a task holds cgroup_mutex on a cgroup with zero count, it |
| 757 | * knows that the cgroup won't be removed, as cgroup_rmdir() |
| 758 | * needs that mutex. |
| 759 | * |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 760 | * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't |
| 761 | * (usually) take cgroup_mutex. These are the two most performance |
| 762 | * critical pieces of code here. The exception occurs on cgroup_exit(), |
| 763 | * when a task in a notify_on_release cgroup exits. Then cgroup_mutex |
| 764 | * 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] | 765 | * to the release agent with the name of the cgroup (path relative to |
| 766 | * the root of cgroup file system) as the argument. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 767 | * |
| 768 | * A cgroup can only be deleted if both its 'count' of using tasks |
| 769 | * is zero, and its list of 'children' cgroups is empty. Since all |
| 770 | * tasks in the system use _some_ cgroup, and since there is always at |
| 771 | * least one task in the system (init, pid == 1), therefore, top_cgroup |
| 772 | * always has either children cgroups and/or using tasks. So we don't |
| 773 | * need a special hack to ensure that top_cgroup cannot be deleted. |
| 774 | * |
| 775 | * The task_lock() exception |
| 776 | * |
| 777 | * The need for this exception arises from the action of |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 778 | * cgroup_attach_task(), which overwrites one tasks cgroup pointer with |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 779 | * another. It does so using cgroup_mutex, however there are |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 780 | * several performance critical places that need to reference |
| 781 | * task->cgroup without the expense of grabbing a system global |
| 782 | * mutex. Therefore except as noted below, when dereferencing or, as |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 783 | * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 784 | * task_lock(), which acts on a spinlock (task->alloc_lock) already in |
| 785 | * the task_struct routinely used for such matters. |
| 786 | * |
| 787 | * P.S. One more locking exception. RCU is used to guard the |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 788 | * update of a tasks cgroup pointer by cgroup_attach_task() |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 789 | */ |
| 790 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 791 | /** |
| 792 | * cgroup_lock - lock out any changes to cgroup structures |
| 793 | * |
| 794 | */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 795 | void cgroup_lock(void) |
| 796 | { |
| 797 | mutex_lock(&cgroup_mutex); |
| 798 | } |
Ben Blum | 67523c4 | 2010-03-10 15:22:11 -0800 | [diff] [blame] | 799 | EXPORT_SYMBOL_GPL(cgroup_lock); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 800 | |
| 801 | /** |
| 802 | * cgroup_unlock - release lock on cgroup changes |
| 803 | * |
| 804 | * Undo the lock taken in a previous cgroup_lock() call. |
| 805 | */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 806 | void cgroup_unlock(void) |
| 807 | { |
| 808 | mutex_unlock(&cgroup_mutex); |
| 809 | } |
Ben Blum | 67523c4 | 2010-03-10 15:22:11 -0800 | [diff] [blame] | 810 | EXPORT_SYMBOL_GPL(cgroup_unlock); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 811 | |
| 812 | /* |
| 813 | * A couple of forward declarations required, due to cyclic reference loop: |
| 814 | * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir -> |
| 815 | * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations |
| 816 | * -> cgroup_mkdir. |
| 817 | */ |
| 818 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 819 | static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode); |
Al Viro | c72a04e | 2011-01-14 05:31:45 +0000 | [diff] [blame] | 820 | static struct dentry *cgroup_lookup(struct inode *, struct dentry *, struct nameidata *); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 821 | static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 822 | static int cgroup_populate_dir(struct cgroup *cgrp); |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 823 | static const struct inode_operations cgroup_dir_inode_operations; |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 824 | static const struct file_operations proc_cgroupstats_operations; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 825 | |
| 826 | static struct backing_dev_info cgroup_backing_dev_info = { |
Jens Axboe | d993831 | 2009-06-12 14:45:52 +0200 | [diff] [blame] | 827 | .name = "cgroup", |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 828 | .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK, |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 829 | }; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 830 | |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 831 | static int alloc_css_id(struct cgroup_subsys *ss, |
| 832 | struct cgroup *parent, struct cgroup *child); |
| 833 | |
Al Viro | a5e7ed3 | 2011-07-26 01:55:55 -0400 | [diff] [blame] | 834 | static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 835 | { |
| 836 | struct inode *inode = new_inode(sb); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 837 | |
| 838 | if (inode) { |
Christoph Hellwig | 85fe402 | 2010-10-23 11:19:54 -0400 | [diff] [blame] | 839 | inode->i_ino = get_next_ino(); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 840 | inode->i_mode = mode; |
David Howells | 76aac0e | 2008-11-14 10:39:12 +1100 | [diff] [blame] | 841 | inode->i_uid = current_fsuid(); |
| 842 | inode->i_gid = current_fsgid(); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 843 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
| 844 | inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info; |
| 845 | } |
| 846 | return inode; |
| 847 | } |
| 848 | |
KAMEZAWA Hiroyuki | 4fca88c | 2008-02-07 00:14:27 -0800 | [diff] [blame] | 849 | /* |
| 850 | * Call subsys's pre_destroy handler. |
| 851 | * This is called before css refcnt check. |
| 852 | */ |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 853 | static int cgroup_call_pre_destroy(struct cgroup *cgrp) |
KAMEZAWA Hiroyuki | 4fca88c | 2008-02-07 00:14:27 -0800 | [diff] [blame] | 854 | { |
| 855 | struct cgroup_subsys *ss; |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 856 | int ret = 0; |
| 857 | |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 858 | for_each_subsys(cgrp->root, ss) { |
| 859 | if (!ss->pre_destroy) |
| 860 | continue; |
| 861 | |
| 862 | ret = ss->pre_destroy(cgrp); |
| 863 | if (ret) { |
| 864 | /* ->pre_destroy() failure is being deprecated */ |
| 865 | WARN_ON_ONCE(!ss->__DEPRECATED_clear_css_refs); |
| 866 | break; |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 867 | } |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 868 | } |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 869 | |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 870 | return ret; |
KAMEZAWA Hiroyuki | 4fca88c | 2008-02-07 00:14:27 -0800 | [diff] [blame] | 871 | } |
| 872 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 873 | static void cgroup_diput(struct dentry *dentry, struct inode *inode) |
| 874 | { |
| 875 | /* is dentry a directory ? if so, kfree() associated cgroup */ |
| 876 | if (S_ISDIR(inode->i_mode)) { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 877 | struct cgroup *cgrp = dentry->d_fsdata; |
Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 878 | struct cgroup_subsys *ss; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 879 | BUG_ON(!(cgroup_is_removed(cgrp))); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 880 | /* It's possible for external users to be holding css |
| 881 | * reference counts on a cgroup; css_put() needs to |
| 882 | * be able to access the cgroup after decrementing |
| 883 | * the reference count in order to know if it needs to |
| 884 | * queue the cgroup to be handled by the release |
| 885 | * agent */ |
| 886 | synchronize_rcu(); |
Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 887 | |
| 888 | mutex_lock(&cgroup_mutex); |
| 889 | /* |
| 890 | * Release the subsystem state objects. |
| 891 | */ |
Li Zefan | 75139b8 | 2009-01-07 18:07:33 -0800 | [diff] [blame] | 892 | for_each_subsys(cgrp->root, ss) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 893 | ss->destroy(cgrp); |
Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 894 | |
| 895 | cgrp->root->number_of_cgroups--; |
| 896 | mutex_unlock(&cgroup_mutex); |
| 897 | |
Paul Menage | a47295e | 2009-01-07 18:07:44 -0800 | [diff] [blame] | 898 | /* |
Tejun Heo | fa980ca | 2012-05-24 08:24:39 -0700 | [diff] [blame] | 899 | * We want to drop the active superblock reference from the |
| 900 | * cgroup creation after all the dentry refs are gone - |
| 901 | * kill_sb gets mighty unhappy otherwise. Mark |
| 902 | * dentry->d_fsdata with cgroup_diput() to tell |
| 903 | * cgroup_d_release() to call deactivate_super(). |
Paul Menage | a47295e | 2009-01-07 18:07:44 -0800 | [diff] [blame] | 904 | */ |
Tejun Heo | fa980ca | 2012-05-24 08:24:39 -0700 | [diff] [blame] | 905 | dentry->d_fsdata = cgroup_diput; |
Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 906 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 907 | /* |
| 908 | * if we're getting rid of the cgroup, refcount should ensure |
| 909 | * that there are no pidlists left. |
| 910 | */ |
| 911 | BUG_ON(!list_empty(&cgrp->pidlists)); |
| 912 | |
Lai Jiangshan | f2da1c4 | 2011-03-15 17:55:16 +0800 | [diff] [blame] | 913 | kfree_rcu(cgrp, rcu_head); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 914 | } else { |
| 915 | struct cfent *cfe = __d_cfe(dentry); |
| 916 | struct cgroup *cgrp = dentry->d_parent->d_fsdata; |
| 917 | |
| 918 | WARN_ONCE(!list_empty(&cfe->node) && |
| 919 | cgrp != &cgrp->root->top_cgroup, |
| 920 | "cfe still linked for %s\n", cfe->type->name); |
| 921 | kfree(cfe); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 922 | } |
| 923 | iput(inode); |
| 924 | } |
| 925 | |
Al Viro | c72a04e | 2011-01-14 05:31:45 +0000 | [diff] [blame] | 926 | static int cgroup_delete(const struct dentry *d) |
| 927 | { |
| 928 | return 1; |
| 929 | } |
| 930 | |
Tejun Heo | fa980ca | 2012-05-24 08:24:39 -0700 | [diff] [blame] | 931 | static void cgroup_d_release(struct dentry *dentry) |
| 932 | { |
| 933 | /* did cgroup_diput() tell me to deactivate super? */ |
| 934 | if (dentry->d_fsdata == cgroup_diput) |
| 935 | deactivate_super(dentry->d_sb); |
| 936 | } |
| 937 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 938 | static void remove_dir(struct dentry *d) |
| 939 | { |
| 940 | struct dentry *parent = dget(d->d_parent); |
| 941 | |
| 942 | d_delete(d); |
| 943 | simple_rmdir(parent->d_inode, d); |
| 944 | dput(parent); |
| 945 | } |
| 946 | |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 947 | static int cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 948 | { |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 949 | struct cfent *cfe; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 950 | |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 951 | lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex); |
| 952 | lockdep_assert_held(&cgroup_mutex); |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 953 | |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 954 | list_for_each_entry(cfe, &cgrp->files, node) { |
| 955 | struct dentry *d = cfe->dentry; |
| 956 | |
| 957 | if (cft && cfe->type != cft) |
| 958 | continue; |
| 959 | |
| 960 | dget(d); |
| 961 | d_delete(d); |
Tejun Heo | ce27e31 | 2012-07-03 10:38:06 -0700 | [diff] [blame^] | 962 | simple_unlink(cgrp->dentry->d_inode, d); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 963 | list_del_init(&cfe->node); |
| 964 | dput(d); |
| 965 | |
| 966 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 967 | } |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 968 | return -ENOENT; |
| 969 | } |
| 970 | |
| 971 | static void cgroup_clear_directory(struct dentry *dir) |
| 972 | { |
| 973 | struct cgroup *cgrp = __d_cgrp(dir); |
| 974 | |
| 975 | while (!list_empty(&cgrp->files)) |
| 976 | cgroup_rm_file(cgrp, NULL); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | /* |
| 980 | * NOTE : the dentry must have been dget()'ed |
| 981 | */ |
| 982 | static void cgroup_d_remove_dir(struct dentry *dentry) |
| 983 | { |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 984 | struct dentry *parent; |
| 985 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 986 | cgroup_clear_directory(dentry); |
| 987 | |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 988 | parent = dentry->d_parent; |
| 989 | spin_lock(&parent->d_lock); |
Li Zefan | 3ec762a | 2011-01-14 11:34:34 +0800 | [diff] [blame] | 990 | spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 991 | list_del_init(&dentry->d_u.d_child); |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 992 | spin_unlock(&dentry->d_lock); |
| 993 | spin_unlock(&parent->d_lock); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 994 | remove_dir(dentry); |
| 995 | } |
| 996 | |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 997 | /* |
| 998 | * A queue for waiters to do rmdir() cgroup. A tasks will sleep when |
| 999 | * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some |
| 1000 | * reference to css->refcnt. In general, this refcnt is expected to goes down |
| 1001 | * to zero, soon. |
| 1002 | * |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 1003 | * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex; |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 1004 | */ |
Kirill A. Shutemov | 1c6c3fa | 2011-12-27 07:46:25 +0200 | [diff] [blame] | 1005 | static DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq); |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 1006 | |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 1007 | static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp) |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 1008 | { |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 1009 | if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))) |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 1010 | wake_up_all(&cgroup_rmdir_waitq); |
| 1011 | } |
| 1012 | |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 1013 | void cgroup_exclude_rmdir(struct cgroup_subsys_state *css) |
| 1014 | { |
| 1015 | css_get(css); |
| 1016 | } |
| 1017 | |
| 1018 | void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css) |
| 1019 | { |
| 1020 | cgroup_wakeup_rmdir_waiter(css->cgroup); |
| 1021 | css_put(css); |
| 1022 | } |
| 1023 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1024 | /* |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1025 | * Call with cgroup_mutex held. Drops reference counts on modules, including |
| 1026 | * any duplicate ones that parse_cgroupfs_options took. If this function |
| 1027 | * returns an error, no reference counts are touched. |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1028 | */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1029 | static int rebind_subsystems(struct cgroupfs_root *root, |
| 1030 | unsigned long final_bits) |
| 1031 | { |
| 1032 | unsigned long added_bits, removed_bits; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1033 | struct cgroup *cgrp = &root->top_cgroup; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1034 | int i; |
| 1035 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1036 | BUG_ON(!mutex_is_locked(&cgroup_mutex)); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1037 | BUG_ON(!mutex_is_locked(&cgroup_root_mutex)); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1038 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1039 | removed_bits = root->actual_subsys_bits & ~final_bits; |
| 1040 | added_bits = final_bits & ~root->actual_subsys_bits; |
| 1041 | /* Check that any added subsystems are currently free */ |
| 1042 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { |
Li Zefan | 8d53d55 | 2008-02-23 15:24:11 -0800 | [diff] [blame] | 1043 | unsigned long bit = 1UL << i; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1044 | struct cgroup_subsys *ss = subsys[i]; |
| 1045 | if (!(bit & added_bits)) |
| 1046 | continue; |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1047 | /* |
| 1048 | * Nobody should tell us to do a subsys that doesn't exist: |
| 1049 | * parse_cgroupfs_options should catch that case and refcounts |
| 1050 | * ensure that subsystems won't disappear once selected. |
| 1051 | */ |
| 1052 | BUG_ON(ss == NULL); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1053 | if (ss->root != &rootnode) { |
| 1054 | /* Subsystem isn't free */ |
| 1055 | return -EBUSY; |
| 1056 | } |
| 1057 | } |
| 1058 | |
| 1059 | /* Currently we don't handle adding/removing subsystems when |
| 1060 | * any child cgroups exist. This is theoretically supportable |
| 1061 | * but involves complex error handling, so it's being left until |
| 1062 | * later */ |
Paul Menage | 307257c | 2008-12-15 13:54:22 -0800 | [diff] [blame] | 1063 | if (root->number_of_cgroups > 1) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1064 | return -EBUSY; |
| 1065 | |
| 1066 | /* Process each subsystem */ |
| 1067 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { |
| 1068 | struct cgroup_subsys *ss = subsys[i]; |
| 1069 | unsigned long bit = 1UL << i; |
| 1070 | if (bit & added_bits) { |
| 1071 | /* We're binding this subsystem to this hierarchy */ |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1072 | BUG_ON(ss == NULL); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1073 | BUG_ON(cgrp->subsys[i]); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1074 | BUG_ON(!dummytop->subsys[i]); |
| 1075 | BUG_ON(dummytop->subsys[i]->cgroup != dummytop); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1076 | cgrp->subsys[i] = dummytop->subsys[i]; |
| 1077 | cgrp->subsys[i]->cgroup = cgrp; |
Li Zefan | 33a68ac | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 1078 | list_move(&ss->sibling, &root->subsys_list); |
Lai Jiangshan | b2aa30f | 2009-01-07 18:07:37 -0800 | [diff] [blame] | 1079 | ss->root = root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1080 | if (ss->bind) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 1081 | ss->bind(cgrp); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1082 | /* refcount was already taken, and we're keeping it */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1083 | } else if (bit & removed_bits) { |
| 1084 | /* We're removing this subsystem */ |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1085 | BUG_ON(ss == NULL); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1086 | BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]); |
| 1087 | BUG_ON(cgrp->subsys[i]->cgroup != cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1088 | if (ss->bind) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 1089 | ss->bind(dummytop); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1090 | dummytop->subsys[i]->cgroup = dummytop; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1091 | cgrp->subsys[i] = NULL; |
Lai Jiangshan | b2aa30f | 2009-01-07 18:07:37 -0800 | [diff] [blame] | 1092 | subsys[i]->root = &rootnode; |
Li Zefan | 33a68ac | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 1093 | list_move(&ss->sibling, &rootnode.subsys_list); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1094 | /* subsystem is now free - drop reference on module */ |
| 1095 | module_put(ss->module); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1096 | } else if (bit & final_bits) { |
| 1097 | /* Subsystem state should already exist */ |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1098 | BUG_ON(ss == NULL); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1099 | BUG_ON(!cgrp->subsys[i]); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1100 | /* |
| 1101 | * a refcount was taken, but we already had one, so |
| 1102 | * drop the extra reference. |
| 1103 | */ |
| 1104 | module_put(ss->module); |
| 1105 | #ifdef CONFIG_MODULE_UNLOAD |
| 1106 | BUG_ON(ss->module && !module_refcount(ss->module)); |
| 1107 | #endif |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1108 | } else { |
| 1109 | /* Subsystem state shouldn't exist */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1110 | BUG_ON(cgrp->subsys[i]); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1111 | } |
| 1112 | } |
| 1113 | root->subsys_bits = root->actual_subsys_bits = final_bits; |
| 1114 | synchronize_rcu(); |
| 1115 | |
| 1116 | return 0; |
| 1117 | } |
| 1118 | |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 1119 | static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1120 | { |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 1121 | struct cgroupfs_root *root = dentry->d_sb->s_fs_info; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1122 | struct cgroup_subsys *ss; |
| 1123 | |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1124 | mutex_lock(&cgroup_root_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1125 | for_each_subsys(root, ss) |
| 1126 | seq_printf(seq, ",%s", ss->name); |
| 1127 | if (test_bit(ROOT_NOPREFIX, &root->flags)) |
| 1128 | seq_puts(seq, ",noprefix"); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1129 | if (strlen(root->release_agent_path)) |
| 1130 | seq_printf(seq, ",release_agent=%s", root->release_agent_path); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 1131 | if (clone_children(&root->top_cgroup)) |
| 1132 | seq_puts(seq, ",clone_children"); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1133 | if (strlen(root->name)) |
| 1134 | seq_printf(seq, ",name=%s", root->name); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1135 | mutex_unlock(&cgroup_root_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1136 | return 0; |
| 1137 | } |
| 1138 | |
| 1139 | struct cgroup_sb_opts { |
| 1140 | unsigned long subsys_bits; |
| 1141 | unsigned long flags; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1142 | char *release_agent; |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 1143 | bool clone_children; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1144 | char *name; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1145 | /* User explicitly requested empty subsystem */ |
| 1146 | bool none; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1147 | |
| 1148 | struct cgroupfs_root *new_root; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1149 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1150 | }; |
| 1151 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1152 | /* |
| 1153 | * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1154 | * with cgroup_mutex held to protect the subsys[] array. This function takes |
| 1155 | * refcounts on subsystems to be used, unless it returns error, in which case |
| 1156 | * no refcounts are taken. |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1157 | */ |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1158 | static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1159 | { |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1160 | char *token, *o = data; |
| 1161 | bool all_ss = false, one_ss = false; |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1162 | unsigned long mask = (unsigned long)-1; |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1163 | int i; |
| 1164 | bool module_pin_failed = false; |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1165 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1166 | BUG_ON(!mutex_is_locked(&cgroup_mutex)); |
| 1167 | |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1168 | #ifdef CONFIG_CPUSETS |
| 1169 | mask = ~(1UL << cpuset_subsys_id); |
| 1170 | #endif |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1171 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1172 | memset(opts, 0, sizeof(*opts)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1173 | |
| 1174 | while ((token = strsep(&o, ",")) != NULL) { |
| 1175 | if (!*token) |
| 1176 | return -EINVAL; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1177 | if (!strcmp(token, "none")) { |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1178 | /* Explicitly have no subsystems */ |
| 1179 | opts->none = true; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1180 | continue; |
| 1181 | } |
| 1182 | if (!strcmp(token, "all")) { |
| 1183 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1184 | if (one_ss) |
| 1185 | return -EINVAL; |
| 1186 | all_ss = true; |
| 1187 | continue; |
| 1188 | } |
| 1189 | if (!strcmp(token, "noprefix")) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1190 | set_bit(ROOT_NOPREFIX, &opts->flags); |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1191 | continue; |
| 1192 | } |
| 1193 | if (!strcmp(token, "clone_children")) { |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 1194 | opts->clone_children = true; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1195 | continue; |
| 1196 | } |
| 1197 | if (!strncmp(token, "release_agent=", 14)) { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1198 | /* Specifying two release agents is forbidden */ |
| 1199 | if (opts->release_agent) |
| 1200 | return -EINVAL; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1201 | opts->release_agent = |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1202 | kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1203 | if (!opts->release_agent) |
| 1204 | return -ENOMEM; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1205 | continue; |
| 1206 | } |
| 1207 | if (!strncmp(token, "name=", 5)) { |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1208 | const char *name = token + 5; |
| 1209 | /* Can't specify an empty name */ |
| 1210 | if (!strlen(name)) |
| 1211 | return -EINVAL; |
| 1212 | /* Must match [\w.-]+ */ |
| 1213 | for (i = 0; i < strlen(name); i++) { |
| 1214 | char c = name[i]; |
| 1215 | if (isalnum(c)) |
| 1216 | continue; |
| 1217 | if ((c == '.') || (c == '-') || (c == '_')) |
| 1218 | continue; |
| 1219 | return -EINVAL; |
| 1220 | } |
| 1221 | /* Specifying two names is forbidden */ |
| 1222 | if (opts->name) |
| 1223 | return -EINVAL; |
| 1224 | opts->name = kstrndup(name, |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1225 | MAX_CGROUP_ROOT_NAMELEN - 1, |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1226 | GFP_KERNEL); |
| 1227 | if (!opts->name) |
| 1228 | return -ENOMEM; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1229 | |
| 1230 | continue; |
| 1231 | } |
| 1232 | |
| 1233 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { |
| 1234 | struct cgroup_subsys *ss = subsys[i]; |
| 1235 | if (ss == NULL) |
| 1236 | continue; |
| 1237 | if (strcmp(token, ss->name)) |
| 1238 | continue; |
| 1239 | if (ss->disabled) |
| 1240 | continue; |
| 1241 | |
| 1242 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1243 | if (all_ss) |
| 1244 | return -EINVAL; |
| 1245 | set_bit(i, &opts->subsys_bits); |
| 1246 | one_ss = true; |
| 1247 | |
| 1248 | break; |
| 1249 | } |
| 1250 | if (i == CGROUP_SUBSYS_COUNT) |
| 1251 | return -ENOENT; |
| 1252 | } |
| 1253 | |
| 1254 | /* |
| 1255 | * If the 'all' option was specified select all the subsystems, |
Li Zefan | 0d19ea8 | 2011-12-27 14:25:55 +0800 | [diff] [blame] | 1256 | * otherwise if 'none', 'name=' and a subsystem name options |
| 1257 | * were not specified, let's default to 'all' |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1258 | */ |
Li Zefan | 0d19ea8 | 2011-12-27 14:25:55 +0800 | [diff] [blame] | 1259 | if (all_ss || (!one_ss && !opts->none && !opts->name)) { |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1260 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { |
| 1261 | struct cgroup_subsys *ss = subsys[i]; |
| 1262 | if (ss == NULL) |
| 1263 | continue; |
| 1264 | if (ss->disabled) |
| 1265 | continue; |
| 1266 | set_bit(i, &opts->subsys_bits); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1267 | } |
| 1268 | } |
| 1269 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1270 | /* Consistency checks */ |
| 1271 | |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1272 | /* |
| 1273 | * Option noprefix was introduced just for backward compatibility |
| 1274 | * with the old cpuset, so we allow noprefix only if mounting just |
| 1275 | * the cpuset subsystem. |
| 1276 | */ |
| 1277 | if (test_bit(ROOT_NOPREFIX, &opts->flags) && |
| 1278 | (opts->subsys_bits & mask)) |
| 1279 | return -EINVAL; |
| 1280 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1281 | |
| 1282 | /* Can't specify "none" and some subsystems */ |
| 1283 | if (opts->subsys_bits && opts->none) |
| 1284 | return -EINVAL; |
| 1285 | |
| 1286 | /* |
| 1287 | * We either have to specify by name or by subsystems. (So all |
| 1288 | * empty hierarchies must have a name). |
| 1289 | */ |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1290 | if (!opts->subsys_bits && !opts->name) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1291 | return -EINVAL; |
| 1292 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1293 | /* |
| 1294 | * Grab references on all the modules we'll need, so the subsystems |
| 1295 | * don't dance around before rebind_subsystems attaches them. This may |
| 1296 | * take duplicate reference counts on a subsystem that's already used, |
| 1297 | * but rebind_subsystems handles this case. |
| 1298 | */ |
| 1299 | for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) { |
| 1300 | unsigned long bit = 1UL << i; |
| 1301 | |
| 1302 | if (!(bit & opts->subsys_bits)) |
| 1303 | continue; |
| 1304 | if (!try_module_get(subsys[i]->module)) { |
| 1305 | module_pin_failed = true; |
| 1306 | break; |
| 1307 | } |
| 1308 | } |
| 1309 | if (module_pin_failed) { |
| 1310 | /* |
| 1311 | * oops, one of the modules was going away. this means that we |
| 1312 | * raced with a module_delete call, and to the user this is |
| 1313 | * essentially a "subsystem doesn't exist" case. |
| 1314 | */ |
| 1315 | for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) { |
| 1316 | /* drop refcounts only on the ones we took */ |
| 1317 | unsigned long bit = 1UL << i; |
| 1318 | |
| 1319 | if (!(bit & opts->subsys_bits)) |
| 1320 | continue; |
| 1321 | module_put(subsys[i]->module); |
| 1322 | } |
| 1323 | return -ENOENT; |
| 1324 | } |
| 1325 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1326 | return 0; |
| 1327 | } |
| 1328 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1329 | static void drop_parsed_module_refcounts(unsigned long subsys_bits) |
| 1330 | { |
| 1331 | int i; |
| 1332 | for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) { |
| 1333 | unsigned long bit = 1UL << i; |
| 1334 | |
| 1335 | if (!(bit & subsys_bits)) |
| 1336 | continue; |
| 1337 | module_put(subsys[i]->module); |
| 1338 | } |
| 1339 | } |
| 1340 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1341 | static int cgroup_remount(struct super_block *sb, int *flags, char *data) |
| 1342 | { |
| 1343 | int ret = 0; |
| 1344 | struct cgroupfs_root *root = sb->s_fs_info; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1345 | struct cgroup *cgrp = &root->top_cgroup; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1346 | struct cgroup_sb_opts opts; |
| 1347 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1348 | mutex_lock(&cgrp->dentry->d_inode->i_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1349 | mutex_lock(&cgroup_mutex); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1350 | mutex_lock(&cgroup_root_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1351 | |
| 1352 | /* See what subsystems are wanted */ |
| 1353 | ret = parse_cgroupfs_options(data, &opts); |
| 1354 | if (ret) |
| 1355 | goto out_unlock; |
| 1356 | |
Tejun Heo | 8b5a5a9 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1357 | /* See feature-removal-schedule.txt */ |
| 1358 | if (opts.subsys_bits != root->actual_subsys_bits || opts.release_agent) |
| 1359 | pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n", |
| 1360 | task_tgid_nr(current), current->comm); |
| 1361 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1362 | /* Don't allow flags or name to change at remount */ |
| 1363 | if (opts.flags != root->flags || |
| 1364 | (opts.name && strcmp(opts.name, root->name))) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1365 | ret = -EINVAL; |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1366 | drop_parsed_module_refcounts(opts.subsys_bits); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1367 | goto out_unlock; |
| 1368 | } |
| 1369 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1370 | ret = rebind_subsystems(root, opts.subsys_bits); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1371 | if (ret) { |
| 1372 | drop_parsed_module_refcounts(opts.subsys_bits); |
Li Zefan | 0670e08 | 2009-04-02 16:57:30 -0700 | [diff] [blame] | 1373 | goto out_unlock; |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1374 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1375 | |
Tejun Heo | ff4c8d5 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1376 | /* clear out any existing files and repopulate subsystem files */ |
| 1377 | cgroup_clear_directory(cgrp->dentry); |
Li Zefan | 0670e08 | 2009-04-02 16:57:30 -0700 | [diff] [blame] | 1378 | cgroup_populate_dir(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1379 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1380 | if (opts.release_agent) |
| 1381 | strcpy(root->release_agent_path, opts.release_agent); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1382 | out_unlock: |
Jesper Juhl | 66bdc9c | 2009-04-02 16:57:27 -0700 | [diff] [blame] | 1383 | kfree(opts.release_agent); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1384 | kfree(opts.name); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1385 | mutex_unlock(&cgroup_root_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1386 | mutex_unlock(&cgroup_mutex); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1387 | mutex_unlock(&cgrp->dentry->d_inode->i_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1388 | return ret; |
| 1389 | } |
| 1390 | |
Alexey Dobriyan | b87221d | 2009-09-21 17:01:09 -0700 | [diff] [blame] | 1391 | static const struct super_operations cgroup_ops = { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1392 | .statfs = simple_statfs, |
| 1393 | .drop_inode = generic_delete_inode, |
| 1394 | .show_options = cgroup_show_options, |
| 1395 | .remount_fs = cgroup_remount, |
| 1396 | }; |
| 1397 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1398 | static void init_cgroup_housekeeping(struct cgroup *cgrp) |
| 1399 | { |
| 1400 | INIT_LIST_HEAD(&cgrp->sibling); |
| 1401 | INIT_LIST_HEAD(&cgrp->children); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1402 | INIT_LIST_HEAD(&cgrp->files); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1403 | INIT_LIST_HEAD(&cgrp->css_sets); |
| 1404 | INIT_LIST_HEAD(&cgrp->release_list); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 1405 | INIT_LIST_HEAD(&cgrp->pidlists); |
| 1406 | mutex_init(&cgrp->pidlist_mutex); |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 1407 | INIT_LIST_HEAD(&cgrp->event_list); |
| 1408 | spin_lock_init(&cgrp->event_list_lock); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1409 | } |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1410 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1411 | static void init_cgroup_root(struct cgroupfs_root *root) |
| 1412 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1413 | struct cgroup *cgrp = &root->top_cgroup; |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1414 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1415 | INIT_LIST_HEAD(&root->subsys_list); |
| 1416 | INIT_LIST_HEAD(&root->root_list); |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1417 | INIT_LIST_HEAD(&root->allcg_list); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1418 | root->number_of_cgroups = 1; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1419 | cgrp->root = root; |
| 1420 | cgrp->top_cgroup = cgrp; |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1421 | list_add_tail(&cgrp->allcg_node, &root->allcg_list); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1422 | init_cgroup_housekeeping(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1423 | } |
| 1424 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1425 | static bool init_root_id(struct cgroupfs_root *root) |
| 1426 | { |
| 1427 | int ret = 0; |
| 1428 | |
| 1429 | do { |
| 1430 | if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL)) |
| 1431 | return false; |
| 1432 | spin_lock(&hierarchy_id_lock); |
| 1433 | /* Try to allocate the next unused ID */ |
| 1434 | ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id, |
| 1435 | &root->hierarchy_id); |
| 1436 | if (ret == -ENOSPC) |
| 1437 | /* Try again starting from 0 */ |
| 1438 | ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id); |
| 1439 | if (!ret) { |
| 1440 | next_hierarchy_id = root->hierarchy_id + 1; |
| 1441 | } else if (ret != -EAGAIN) { |
| 1442 | /* Can only get here if the 31-bit IDR is full ... */ |
| 1443 | BUG_ON(ret); |
| 1444 | } |
| 1445 | spin_unlock(&hierarchy_id_lock); |
| 1446 | } while (ret); |
| 1447 | return true; |
| 1448 | } |
| 1449 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1450 | static int cgroup_test_super(struct super_block *sb, void *data) |
| 1451 | { |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1452 | struct cgroup_sb_opts *opts = data; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1453 | struct cgroupfs_root *root = sb->s_fs_info; |
| 1454 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1455 | /* If we asked for a name then it must match */ |
| 1456 | if (opts->name && strcmp(opts->name, root->name)) |
| 1457 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1458 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1459 | /* |
| 1460 | * If we asked for subsystems (or explicitly for no |
| 1461 | * subsystems) then they must match |
| 1462 | */ |
| 1463 | if ((opts->subsys_bits || opts->none) |
| 1464 | && (opts->subsys_bits != root->subsys_bits)) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1465 | return 0; |
| 1466 | |
| 1467 | return 1; |
| 1468 | } |
| 1469 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1470 | static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts) |
| 1471 | { |
| 1472 | struct cgroupfs_root *root; |
| 1473 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1474 | if (!opts->subsys_bits && !opts->none) |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1475 | return NULL; |
| 1476 | |
| 1477 | root = kzalloc(sizeof(*root), GFP_KERNEL); |
| 1478 | if (!root) |
| 1479 | return ERR_PTR(-ENOMEM); |
| 1480 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1481 | if (!init_root_id(root)) { |
| 1482 | kfree(root); |
| 1483 | return ERR_PTR(-ENOMEM); |
| 1484 | } |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1485 | init_cgroup_root(root); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1486 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1487 | root->subsys_bits = opts->subsys_bits; |
| 1488 | root->flags = opts->flags; |
| 1489 | if (opts->release_agent) |
| 1490 | strcpy(root->release_agent_path, opts->release_agent); |
| 1491 | if (opts->name) |
| 1492 | strcpy(root->name, opts->name); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 1493 | if (opts->clone_children) |
| 1494 | set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1495 | return root; |
| 1496 | } |
| 1497 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1498 | static void cgroup_drop_root(struct cgroupfs_root *root) |
| 1499 | { |
| 1500 | if (!root) |
| 1501 | return; |
| 1502 | |
| 1503 | BUG_ON(!root->hierarchy_id); |
| 1504 | spin_lock(&hierarchy_id_lock); |
| 1505 | ida_remove(&hierarchy_ida, root->hierarchy_id); |
| 1506 | spin_unlock(&hierarchy_id_lock); |
| 1507 | kfree(root); |
| 1508 | } |
| 1509 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1510 | static int cgroup_set_super(struct super_block *sb, void *data) |
| 1511 | { |
| 1512 | int ret; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1513 | struct cgroup_sb_opts *opts = data; |
| 1514 | |
| 1515 | /* If we don't have a new root, we can't set up a new sb */ |
| 1516 | if (!opts->new_root) |
| 1517 | return -EINVAL; |
| 1518 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1519 | BUG_ON(!opts->subsys_bits && !opts->none); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1520 | |
| 1521 | ret = set_anon_super(sb, NULL); |
| 1522 | if (ret) |
| 1523 | return ret; |
| 1524 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1525 | sb->s_fs_info = opts->new_root; |
| 1526 | opts->new_root->sb = sb; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1527 | |
| 1528 | sb->s_blocksize = PAGE_CACHE_SIZE; |
| 1529 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |
| 1530 | sb->s_magic = CGROUP_SUPER_MAGIC; |
| 1531 | sb->s_op = &cgroup_ops; |
| 1532 | |
| 1533 | return 0; |
| 1534 | } |
| 1535 | |
| 1536 | static int cgroup_get_rootdir(struct super_block *sb) |
| 1537 | { |
Al Viro | 0df6a63 | 2010-12-21 13:29:29 -0500 | [diff] [blame] | 1538 | static const struct dentry_operations cgroup_dops = { |
| 1539 | .d_iput = cgroup_diput, |
Al Viro | c72a04e | 2011-01-14 05:31:45 +0000 | [diff] [blame] | 1540 | .d_delete = cgroup_delete, |
Tejun Heo | fa980ca | 2012-05-24 08:24:39 -0700 | [diff] [blame] | 1541 | .d_release = cgroup_d_release, |
Al Viro | 0df6a63 | 2010-12-21 13:29:29 -0500 | [diff] [blame] | 1542 | }; |
| 1543 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1544 | struct inode *inode = |
| 1545 | cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1546 | |
| 1547 | if (!inode) |
| 1548 | return -ENOMEM; |
| 1549 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1550 | inode->i_fop = &simple_dir_operations; |
| 1551 | inode->i_op = &cgroup_dir_inode_operations; |
| 1552 | /* directories start off with i_nlink == 2 (for "." entry) */ |
| 1553 | inc_nlink(inode); |
Al Viro | 48fde70 | 2012-01-08 22:15:13 -0500 | [diff] [blame] | 1554 | sb->s_root = d_make_root(inode); |
| 1555 | if (!sb->s_root) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1556 | return -ENOMEM; |
Al Viro | 0df6a63 | 2010-12-21 13:29:29 -0500 | [diff] [blame] | 1557 | /* for everything else we want ->d_op set */ |
| 1558 | sb->s_d_op = &cgroup_dops; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1559 | return 0; |
| 1560 | } |
| 1561 | |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1562 | static struct dentry *cgroup_mount(struct file_system_type *fs_type, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1563 | int flags, const char *unused_dev_name, |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1564 | void *data) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1565 | { |
| 1566 | struct cgroup_sb_opts opts; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1567 | struct cgroupfs_root *root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1568 | int ret = 0; |
| 1569 | struct super_block *sb; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1570 | struct cgroupfs_root *new_root; |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1571 | struct inode *inode; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1572 | |
| 1573 | /* First find the desired set of subsystems */ |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1574 | mutex_lock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1575 | ret = parse_cgroupfs_options(data, &opts); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1576 | mutex_unlock(&cgroup_mutex); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1577 | if (ret) |
| 1578 | goto out_err; |
| 1579 | |
| 1580 | /* |
| 1581 | * Allocate a new cgroup root. We may not need it if we're |
| 1582 | * reusing an existing hierarchy. |
| 1583 | */ |
| 1584 | new_root = cgroup_root_from_opts(&opts); |
| 1585 | if (IS_ERR(new_root)) { |
| 1586 | ret = PTR_ERR(new_root); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1587 | goto drop_modules; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1588 | } |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1589 | opts.new_root = new_root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1590 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1591 | /* Locate an existing or new sb for this hierarchy */ |
| 1592 | sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1593 | if (IS_ERR(sb)) { |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1594 | ret = PTR_ERR(sb); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1595 | cgroup_drop_root(opts.new_root); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1596 | goto drop_modules; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1597 | } |
| 1598 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1599 | root = sb->s_fs_info; |
| 1600 | BUG_ON(!root); |
| 1601 | if (root == opts.new_root) { |
| 1602 | /* We used the new root structure, so this is a new hierarchy */ |
| 1603 | struct list_head tmp_cg_links; |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 1604 | struct cgroup *root_cgrp = &root->top_cgroup; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1605 | struct cgroupfs_root *existing_root; |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 1606 | const struct cred *cred; |
Li Zefan | 28fd5df | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 1607 | int i; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1608 | |
| 1609 | BUG_ON(sb->s_root != NULL); |
| 1610 | |
| 1611 | ret = cgroup_get_rootdir(sb); |
| 1612 | if (ret) |
| 1613 | goto drop_new_super; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1614 | inode = sb->s_root->d_inode; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1615 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1616 | mutex_lock(&inode->i_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1617 | mutex_lock(&cgroup_mutex); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1618 | mutex_lock(&cgroup_root_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1619 | |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1620 | /* Check for name clashes with existing mounts */ |
| 1621 | ret = -EBUSY; |
| 1622 | if (strlen(root->name)) |
| 1623 | for_each_active_root(existing_root) |
| 1624 | if (!strcmp(existing_root->name, root->name)) |
| 1625 | goto unlock_drop; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1626 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1627 | /* |
| 1628 | * We're accessing css_set_count without locking |
| 1629 | * css_set_lock here, but that's OK - it can only be |
| 1630 | * increased by someone holding cgroup_lock, and |
| 1631 | * that's us. The worst that can happen is that we |
| 1632 | * have some link structures left over |
| 1633 | */ |
| 1634 | ret = allocate_cg_links(css_set_count, &tmp_cg_links); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1635 | if (ret) |
| 1636 | goto unlock_drop; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1637 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1638 | ret = rebind_subsystems(root, root->subsys_bits); |
| 1639 | if (ret == -EBUSY) { |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1640 | free_cg_links(&tmp_cg_links); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1641 | goto unlock_drop; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1642 | } |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1643 | /* |
| 1644 | * There must be no failure case after here, since rebinding |
| 1645 | * takes care of subsystems' refcounts, which are explicitly |
| 1646 | * dropped in the failure exit path. |
| 1647 | */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1648 | |
| 1649 | /* EBUSY should be the only error here */ |
| 1650 | BUG_ON(ret); |
| 1651 | |
| 1652 | list_add(&root->root_list, &roots); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1653 | root_count++; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1654 | |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 1655 | sb->s_root->d_fsdata = root_cgrp; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1656 | root->top_cgroup.dentry = sb->s_root; |
| 1657 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1658 | /* Link the top cgroup in this hierarchy into all |
| 1659 | * the css_set objects */ |
| 1660 | write_lock(&css_set_lock); |
Li Zefan | 28fd5df | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 1661 | for (i = 0; i < CSS_SET_TABLE_SIZE; i++) { |
| 1662 | struct hlist_head *hhead = &css_set_table[i]; |
| 1663 | struct hlist_node *node; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1664 | struct css_set *cg; |
Li Zefan | 28fd5df | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 1665 | |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 1666 | hlist_for_each_entry(cg, node, hhead, hlist) |
| 1667 | link_css_set(&tmp_cg_links, cg, root_cgrp); |
Li Zefan | 28fd5df | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 1668 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1669 | write_unlock(&css_set_lock); |
| 1670 | |
| 1671 | free_cg_links(&tmp_cg_links); |
| 1672 | |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 1673 | BUG_ON(!list_empty(&root_cgrp->sibling)); |
| 1674 | BUG_ON(!list_empty(&root_cgrp->children)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1675 | BUG_ON(root->number_of_cgroups != 1); |
| 1676 | |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 1677 | cred = override_creds(&init_cred); |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 1678 | cgroup_populate_dir(root_cgrp); |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 1679 | revert_creds(cred); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1680 | mutex_unlock(&cgroup_root_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1681 | mutex_unlock(&cgroup_mutex); |
Xiaotian Feng | 34f77a9 | 2009-09-23 15:56:18 -0700 | [diff] [blame] | 1682 | mutex_unlock(&inode->i_mutex); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1683 | } else { |
| 1684 | /* |
| 1685 | * We re-used an existing hierarchy - the new root (if |
| 1686 | * any) is not needed |
| 1687 | */ |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1688 | cgroup_drop_root(opts.new_root); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1689 | /* no subsys rebinding, so refcounts don't change */ |
| 1690 | drop_parsed_module_refcounts(opts.subsys_bits); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1691 | } |
| 1692 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1693 | kfree(opts.release_agent); |
| 1694 | kfree(opts.name); |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1695 | return dget(sb->s_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1696 | |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1697 | unlock_drop: |
| 1698 | mutex_unlock(&cgroup_root_mutex); |
| 1699 | mutex_unlock(&cgroup_mutex); |
| 1700 | mutex_unlock(&inode->i_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1701 | drop_new_super: |
Al Viro | 6f5bbff | 2009-05-06 01:34:22 -0400 | [diff] [blame] | 1702 | deactivate_locked_super(sb); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1703 | drop_modules: |
| 1704 | drop_parsed_module_refcounts(opts.subsys_bits); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1705 | out_err: |
| 1706 | kfree(opts.release_agent); |
| 1707 | kfree(opts.name); |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1708 | return ERR_PTR(ret); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1709 | } |
| 1710 | |
| 1711 | static void cgroup_kill_sb(struct super_block *sb) { |
| 1712 | struct cgroupfs_root *root = sb->s_fs_info; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1713 | struct cgroup *cgrp = &root->top_cgroup; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1714 | int ret; |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 1715 | struct cg_cgroup_link *link; |
| 1716 | struct cg_cgroup_link *saved_link; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1717 | |
| 1718 | BUG_ON(!root); |
| 1719 | |
| 1720 | BUG_ON(root->number_of_cgroups != 1); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1721 | BUG_ON(!list_empty(&cgrp->children)); |
| 1722 | BUG_ON(!list_empty(&cgrp->sibling)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1723 | |
| 1724 | mutex_lock(&cgroup_mutex); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1725 | mutex_lock(&cgroup_root_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1726 | |
| 1727 | /* Rebind all subsystems back to the default hierarchy */ |
| 1728 | ret = rebind_subsystems(root, 0); |
| 1729 | /* Shouldn't be able to fail ... */ |
| 1730 | BUG_ON(ret); |
| 1731 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1732 | /* |
| 1733 | * Release all the links from css_sets to this hierarchy's |
| 1734 | * root cgroup |
| 1735 | */ |
| 1736 | write_lock(&css_set_lock); |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 1737 | |
| 1738 | list_for_each_entry_safe(link, saved_link, &cgrp->css_sets, |
| 1739 | cgrp_link_list) { |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1740 | list_del(&link->cg_link_list); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1741 | list_del(&link->cgrp_link_list); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1742 | kfree(link); |
| 1743 | } |
| 1744 | write_unlock(&css_set_lock); |
| 1745 | |
Paul Menage | 839ec54 | 2009-01-29 14:25:22 -0800 | [diff] [blame] | 1746 | if (!list_empty(&root->root_list)) { |
| 1747 | list_del(&root->root_list); |
| 1748 | root_count--; |
| 1749 | } |
Li Zefan | e5f6a86 | 2009-01-07 18:07:41 -0800 | [diff] [blame] | 1750 | |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1751 | mutex_unlock(&cgroup_root_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1752 | mutex_unlock(&cgroup_mutex); |
| 1753 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1754 | kill_litter_super(sb); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1755 | cgroup_drop_root(root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | static struct file_system_type cgroup_fs_type = { |
| 1759 | .name = "cgroup", |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1760 | .mount = cgroup_mount, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1761 | .kill_sb = cgroup_kill_sb, |
| 1762 | }; |
| 1763 | |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 1764 | static struct kobject *cgroup_kobj; |
| 1765 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 1766 | /** |
| 1767 | * cgroup_path - generate the path of a cgroup |
| 1768 | * @cgrp: the cgroup in question |
| 1769 | * @buf: the buffer to write the path into |
| 1770 | * @buflen: the length of the buffer |
| 1771 | * |
Paul Menage | a47295e | 2009-01-07 18:07:44 -0800 | [diff] [blame] | 1772 | * Called with cgroup_mutex held or else with an RCU-protected cgroup |
| 1773 | * reference. Writes path of cgroup into buf. Returns 0 on success, |
| 1774 | * -errno on error. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1775 | */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1776 | int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1777 | { |
| 1778 | char *start; |
Li Zefan | 9a9686b | 2010-04-22 17:29:24 +0800 | [diff] [blame] | 1779 | struct dentry *dentry = rcu_dereference_check(cgrp->dentry, |
Li Zefan | 9a9686b | 2010-04-22 17:29:24 +0800 | [diff] [blame] | 1780 | cgroup_lock_is_held()); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1781 | |
Paul Menage | a47295e | 2009-01-07 18:07:44 -0800 | [diff] [blame] | 1782 | if (!dentry || cgrp == dummytop) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1783 | /* |
| 1784 | * Inactive subsystems have no dentry for their root |
| 1785 | * cgroup |
| 1786 | */ |
| 1787 | strcpy(buf, "/"); |
| 1788 | return 0; |
| 1789 | } |
| 1790 | |
| 1791 | start = buf + buflen; |
| 1792 | |
| 1793 | *--start = '\0'; |
| 1794 | for (;;) { |
Paul Menage | a47295e | 2009-01-07 18:07:44 -0800 | [diff] [blame] | 1795 | int len = dentry->d_name.len; |
Li Zefan | 9a9686b | 2010-04-22 17:29:24 +0800 | [diff] [blame] | 1796 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1797 | if ((start -= len) < buf) |
| 1798 | return -ENAMETOOLONG; |
Li Zefan | 9a9686b | 2010-04-22 17:29:24 +0800 | [diff] [blame] | 1799 | memcpy(start, dentry->d_name.name, len); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1800 | cgrp = cgrp->parent; |
| 1801 | if (!cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1802 | break; |
Li Zefan | 9a9686b | 2010-04-22 17:29:24 +0800 | [diff] [blame] | 1803 | |
| 1804 | dentry = rcu_dereference_check(cgrp->dentry, |
Li Zefan | 9a9686b | 2010-04-22 17:29:24 +0800 | [diff] [blame] | 1805 | cgroup_lock_is_held()); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1806 | if (!cgrp->parent) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1807 | continue; |
| 1808 | if (--start < buf) |
| 1809 | return -ENAMETOOLONG; |
| 1810 | *start = '/'; |
| 1811 | } |
| 1812 | memmove(buf, start, buf + buflen - start); |
| 1813 | return 0; |
| 1814 | } |
Ben Blum | 67523c4 | 2010-03-10 15:22:11 -0800 | [diff] [blame] | 1815 | EXPORT_SYMBOL_GPL(cgroup_path); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1816 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1817 | /* |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1818 | * Control Group taskset |
| 1819 | */ |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1820 | struct task_and_cgroup { |
| 1821 | struct task_struct *task; |
| 1822 | struct cgroup *cgrp; |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1823 | struct css_set *cg; |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1824 | }; |
| 1825 | |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1826 | struct cgroup_taskset { |
| 1827 | struct task_and_cgroup single; |
| 1828 | struct flex_array *tc_array; |
| 1829 | int tc_array_len; |
| 1830 | int idx; |
| 1831 | struct cgroup *cur_cgrp; |
| 1832 | }; |
| 1833 | |
| 1834 | /** |
| 1835 | * cgroup_taskset_first - reset taskset and return the first task |
| 1836 | * @tset: taskset of interest |
| 1837 | * |
| 1838 | * @tset iteration is initialized and the first task is returned. |
| 1839 | */ |
| 1840 | struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset) |
| 1841 | { |
| 1842 | if (tset->tc_array) { |
| 1843 | tset->idx = 0; |
| 1844 | return cgroup_taskset_next(tset); |
| 1845 | } else { |
| 1846 | tset->cur_cgrp = tset->single.cgrp; |
| 1847 | return tset->single.task; |
| 1848 | } |
| 1849 | } |
| 1850 | EXPORT_SYMBOL_GPL(cgroup_taskset_first); |
| 1851 | |
| 1852 | /** |
| 1853 | * cgroup_taskset_next - iterate to the next task in taskset |
| 1854 | * @tset: taskset of interest |
| 1855 | * |
| 1856 | * Return the next task in @tset. Iteration must have been initialized |
| 1857 | * with cgroup_taskset_first(). |
| 1858 | */ |
| 1859 | struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset) |
| 1860 | { |
| 1861 | struct task_and_cgroup *tc; |
| 1862 | |
| 1863 | if (!tset->tc_array || tset->idx >= tset->tc_array_len) |
| 1864 | return NULL; |
| 1865 | |
| 1866 | tc = flex_array_get(tset->tc_array, tset->idx++); |
| 1867 | tset->cur_cgrp = tc->cgrp; |
| 1868 | return tc->task; |
| 1869 | } |
| 1870 | EXPORT_SYMBOL_GPL(cgroup_taskset_next); |
| 1871 | |
| 1872 | /** |
| 1873 | * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task |
| 1874 | * @tset: taskset of interest |
| 1875 | * |
| 1876 | * Return the cgroup for the current (last returned) task of @tset. This |
| 1877 | * function must be preceded by either cgroup_taskset_first() or |
| 1878 | * cgroup_taskset_next(). |
| 1879 | */ |
| 1880 | struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset) |
| 1881 | { |
| 1882 | return tset->cur_cgrp; |
| 1883 | } |
| 1884 | EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup); |
| 1885 | |
| 1886 | /** |
| 1887 | * cgroup_taskset_size - return the number of tasks in taskset |
| 1888 | * @tset: taskset of interest |
| 1889 | */ |
| 1890 | int cgroup_taskset_size(struct cgroup_taskset *tset) |
| 1891 | { |
| 1892 | return tset->tc_array ? tset->tc_array_len : 1; |
| 1893 | } |
| 1894 | EXPORT_SYMBOL_GPL(cgroup_taskset_size); |
| 1895 | |
| 1896 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1897 | /* |
| 1898 | * cgroup_task_migrate - move a task from one cgroup to another. |
| 1899 | * |
| 1900 | * 'guarantee' is set if the caller promises that a new css_set for the task |
| 1901 | * will already exist. If not set, this function might sleep, and can fail with |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1902 | * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1903 | */ |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1904 | static void cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp, |
| 1905 | struct task_struct *tsk, struct css_set *newcg) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1906 | { |
| 1907 | struct css_set *oldcg; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1908 | |
| 1909 | /* |
Mandeep Singh Baines | 026085e | 2011-12-21 20:18:35 -0800 | [diff] [blame] | 1910 | * We are synchronized through threadgroup_lock() against PF_EXITING |
| 1911 | * setting such that we can't race against cgroup_exit() changing the |
| 1912 | * css_set to init_css_set and dropping the old one. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1913 | */ |
Frederic Weisbecker | c84cdf7 | 2011-12-21 20:03:18 +0100 | [diff] [blame] | 1914 | WARN_ON_ONCE(tsk->flags & PF_EXITING); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1915 | oldcg = tsk->cgroups; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1916 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1917 | task_lock(tsk); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1918 | rcu_assign_pointer(tsk->cgroups, newcg); |
| 1919 | task_unlock(tsk); |
| 1920 | |
| 1921 | /* Update the css_set linked lists if we're using them */ |
| 1922 | write_lock(&css_set_lock); |
| 1923 | if (!list_empty(&tsk->cg_list)) |
| 1924 | list_move(&tsk->cg_list, &newcg->tasks); |
| 1925 | write_unlock(&css_set_lock); |
| 1926 | |
| 1927 | /* |
| 1928 | * We just gained a reference on oldcg by taking it from the task. As |
| 1929 | * trading it for newcg is protected by cgroup_mutex, we're safe to drop |
| 1930 | * it here; it will be freed under RCU. |
| 1931 | */ |
| 1932 | put_css_set(oldcg); |
| 1933 | |
| 1934 | set_bit(CGRP_RELEASABLE, &oldcgrp->flags); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1935 | } |
| 1936 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 1937 | /** |
| 1938 | * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp' |
| 1939 | * @cgrp: the cgroup the task is attaching to |
| 1940 | * @tsk: the task to be attached |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1941 | * |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1942 | * Call with cgroup_mutex and threadgroup locked. May take task_lock of |
| 1943 | * @tsk during call. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1944 | */ |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 1945 | int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1946 | { |
Tejun Heo | 8f12191 | 2012-03-29 22:03:33 -0700 | [diff] [blame] | 1947 | int retval = 0; |
Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 1948 | struct cgroup_subsys *ss, *failed_ss = NULL; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1949 | struct cgroup *oldcgrp; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1950 | struct cgroupfs_root *root = cgrp->root; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1951 | struct cgroup_taskset tset = { }; |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1952 | struct css_set *newcg; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1953 | |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1954 | /* @tsk either already exited or can't exit until the end */ |
| 1955 | if (tsk->flags & PF_EXITING) |
| 1956 | return -ESRCH; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1957 | |
| 1958 | /* Nothing to do if the task is already in that cgroup */ |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 1959 | oldcgrp = task_cgroup_from_root(tsk, root); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1960 | if (cgrp == oldcgrp) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1961 | return 0; |
| 1962 | |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1963 | tset.single.task = tsk; |
| 1964 | tset.single.cgrp = oldcgrp; |
| 1965 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1966 | for_each_subsys(root, ss) { |
| 1967 | if (ss->can_attach) { |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 1968 | retval = ss->can_attach(cgrp, &tset); |
Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 1969 | if (retval) { |
| 1970 | /* |
| 1971 | * Remember on which subsystem the can_attach() |
| 1972 | * failed, so that we only call cancel_attach() |
| 1973 | * against the subsystems whose can_attach() |
| 1974 | * succeeded. (See below) |
| 1975 | */ |
| 1976 | failed_ss = ss; |
| 1977 | goto out; |
| 1978 | } |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1979 | } |
| 1980 | } |
| 1981 | |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1982 | newcg = find_css_set(tsk->cgroups, cgrp); |
| 1983 | if (!newcg) { |
| 1984 | retval = -ENOMEM; |
Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 1985 | goto out; |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 1986 | } |
| 1987 | |
| 1988 | cgroup_task_migrate(cgrp, oldcgrp, tsk, newcg); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1989 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1990 | for_each_subsys(root, ss) { |
Paul Jackson | e18f631 | 2008-02-07 00:13:44 -0800 | [diff] [blame] | 1991 | if (ss->attach) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 1992 | ss->attach(cgrp, &tset); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1993 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 1994 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 1995 | synchronize_rcu(); |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 1996 | |
| 1997 | /* |
| 1998 | * wake up rmdir() waiter. the rmdir should fail since the cgroup |
| 1999 | * is no longer empty. |
| 2000 | */ |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 2001 | cgroup_wakeup_rmdir_waiter(cgrp); |
Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 2002 | out: |
| 2003 | if (retval) { |
| 2004 | for_each_subsys(root, ss) { |
| 2005 | if (ss == failed_ss) |
| 2006 | /* |
| 2007 | * This subsystem was the one that failed the |
| 2008 | * can_attach() check earlier, so we don't need |
| 2009 | * to call cancel_attach() against it or any |
| 2010 | * remaining subsystems. |
| 2011 | */ |
| 2012 | break; |
| 2013 | if (ss->cancel_attach) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 2014 | ss->cancel_attach(cgrp, &tset); |
Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 2015 | } |
| 2016 | } |
| 2017 | return retval; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2018 | } |
| 2019 | |
Sridhar Samudrala | d7926ee | 2010-05-30 22:24:39 +0200 | [diff] [blame] | 2020 | /** |
Michael S. Tsirkin | 31583bb | 2010-09-09 16:37:37 -0700 | [diff] [blame] | 2021 | * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from' |
| 2022 | * @from: attach to all cgroups of a given task |
Sridhar Samudrala | d7926ee | 2010-05-30 22:24:39 +0200 | [diff] [blame] | 2023 | * @tsk: the task to be attached |
| 2024 | */ |
Michael S. Tsirkin | 31583bb | 2010-09-09 16:37:37 -0700 | [diff] [blame] | 2025 | int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk) |
Sridhar Samudrala | d7926ee | 2010-05-30 22:24:39 +0200 | [diff] [blame] | 2026 | { |
| 2027 | struct cgroupfs_root *root; |
Sridhar Samudrala | d7926ee | 2010-05-30 22:24:39 +0200 | [diff] [blame] | 2028 | int retval = 0; |
| 2029 | |
| 2030 | cgroup_lock(); |
| 2031 | for_each_active_root(root) { |
Michael S. Tsirkin | 31583bb | 2010-09-09 16:37:37 -0700 | [diff] [blame] | 2032 | struct cgroup *from_cg = task_cgroup_from_root(from, root); |
| 2033 | |
| 2034 | retval = cgroup_attach_task(from_cg, tsk); |
Sridhar Samudrala | d7926ee | 2010-05-30 22:24:39 +0200 | [diff] [blame] | 2035 | if (retval) |
| 2036 | break; |
| 2037 | } |
| 2038 | cgroup_unlock(); |
| 2039 | |
| 2040 | return retval; |
| 2041 | } |
Michael S. Tsirkin | 31583bb | 2010-09-09 16:37:37 -0700 | [diff] [blame] | 2042 | EXPORT_SYMBOL_GPL(cgroup_attach_task_all); |
Sridhar Samudrala | d7926ee | 2010-05-30 22:24:39 +0200 | [diff] [blame] | 2043 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2044 | /** |
| 2045 | * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup |
| 2046 | * @cgrp: the cgroup to attach to |
| 2047 | * @leader: the threadgroup leader task_struct of the group to be attached |
| 2048 | * |
Tejun Heo | 257058a | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2049 | * Call holding cgroup_mutex and the group_rwsem of the leader. Will take |
| 2050 | * task_lock of each thread in leader's threadgroup individually in turn. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2051 | */ |
Kirill A. Shutemov | 1c6c3fa | 2011-12-27 07:46:25 +0200 | [diff] [blame] | 2052 | static int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2053 | { |
| 2054 | int retval, i, group_size; |
| 2055 | struct cgroup_subsys *ss, *failed_ss = NULL; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2056 | /* guaranteed to be initialized later, but the compiler needs this */ |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2057 | struct cgroupfs_root *root = cgrp->root; |
| 2058 | /* threadgroup list cursor and array */ |
| 2059 | struct task_struct *tsk; |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2060 | struct task_and_cgroup *tc; |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 2061 | struct flex_array *group; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2062 | struct cgroup_taskset tset = { }; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2063 | |
| 2064 | /* |
| 2065 | * step 0: in order to do expensive, possibly blocking operations for |
| 2066 | * every thread, we cannot iterate the thread group list, since it needs |
| 2067 | * 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] | 2068 | * group - group_rwsem prevents new threads from appearing, and if |
| 2069 | * threads exit, this will just be an over-estimate. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2070 | */ |
| 2071 | group_size = get_nr_threads(leader); |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 2072 | /* flex_array supports very large thread-groups better than kmalloc. */ |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2073 | group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2074 | if (!group) |
| 2075 | return -ENOMEM; |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 2076 | /* pre-allocate to guarantee space while iterating in rcu read-side. */ |
| 2077 | retval = flex_array_prealloc(group, 0, group_size - 1, GFP_KERNEL); |
| 2078 | if (retval) |
| 2079 | goto out_free_group_list; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2080 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2081 | tsk = leader; |
| 2082 | i = 0; |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2083 | /* |
| 2084 | * Prevent freeing of tasks while we take a snapshot. Tasks that are |
| 2085 | * already PF_EXITING could be freed from underneath us unless we |
| 2086 | * take an rcu_read_lock. |
| 2087 | */ |
| 2088 | rcu_read_lock(); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2089 | do { |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2090 | struct task_and_cgroup ent; |
| 2091 | |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2092 | /* @tsk either already exited or can't exit until the end */ |
| 2093 | if (tsk->flags & PF_EXITING) |
| 2094 | continue; |
| 2095 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2096 | /* as per above, nr_threads may decrease, but not increase. */ |
| 2097 | BUG_ON(i >= group_size); |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2098 | ent.task = tsk; |
| 2099 | ent.cgrp = task_cgroup_from_root(tsk, root); |
Mandeep Singh Baines | 892a2b9 | 2011-12-21 20:18:37 -0800 | [diff] [blame] | 2100 | /* nothing to do if this task is already in the cgroup */ |
| 2101 | if (ent.cgrp == cgrp) |
| 2102 | continue; |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2103 | /* |
| 2104 | * saying GFP_ATOMIC has no effect here because we did prealloc |
| 2105 | * earlier, but it's good form to communicate our expectations. |
| 2106 | */ |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2107 | retval = flex_array_put(group, i, &ent, GFP_ATOMIC); |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 2108 | BUG_ON(retval != 0); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2109 | i++; |
| 2110 | } while_each_thread(leader, tsk); |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2111 | rcu_read_unlock(); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2112 | /* remember the number of threads in the array for later. */ |
| 2113 | group_size = i; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2114 | tset.tc_array = group; |
| 2115 | tset.tc_array_len = group_size; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2116 | |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2117 | /* methods shouldn't be called if no task is actually migrating */ |
| 2118 | retval = 0; |
Mandeep Singh Baines | 892a2b9 | 2011-12-21 20:18:37 -0800 | [diff] [blame] | 2119 | if (!group_size) |
Mandeep Singh Baines | b07ef77 | 2011-12-21 20:18:36 -0800 | [diff] [blame] | 2120 | goto out_free_group_list; |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2121 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2122 | /* |
| 2123 | * step 1: check that we can legitimately attach to the cgroup. |
| 2124 | */ |
| 2125 | for_each_subsys(root, ss) { |
| 2126 | if (ss->can_attach) { |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 2127 | retval = ss->can_attach(cgrp, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2128 | if (retval) { |
| 2129 | failed_ss = ss; |
| 2130 | goto out_cancel_attach; |
| 2131 | } |
| 2132 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2133 | } |
| 2134 | |
| 2135 | /* |
| 2136 | * step 2: make sure css_sets exist for all threads to be migrated. |
| 2137 | * we use find_css_set, which allocates a new one if necessary. |
| 2138 | */ |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2139 | for (i = 0; i < group_size; i++) { |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2140 | tc = flex_array_get(group, i); |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2141 | tc->cg = find_css_set(tc->task->cgroups, cgrp); |
| 2142 | if (!tc->cg) { |
| 2143 | retval = -ENOMEM; |
| 2144 | goto out_put_css_set_refs; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2145 | } |
| 2146 | } |
| 2147 | |
| 2148 | /* |
Tejun Heo | 494c167 | 2011-12-12 18:12:22 -0800 | [diff] [blame] | 2149 | * step 3: now that we're guaranteed success wrt the css_sets, |
| 2150 | * proceed to move all tasks to the new cgroup. There are no |
| 2151 | * failure cases after here, so this is the commit point. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2152 | */ |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2153 | for (i = 0; i < group_size; i++) { |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2154 | tc = flex_array_get(group, i); |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2155 | cgroup_task_migrate(cgrp, tc->cgrp, tc->task, tc->cg); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2156 | } |
| 2157 | /* nothing is sensitive to fork() after this point. */ |
| 2158 | |
| 2159 | /* |
Tejun Heo | 494c167 | 2011-12-12 18:12:22 -0800 | [diff] [blame] | 2160 | * step 4: do subsystem attach callbacks. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2161 | */ |
| 2162 | for_each_subsys(root, ss) { |
| 2163 | if (ss->attach) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 2164 | ss->attach(cgrp, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2165 | } |
| 2166 | |
| 2167 | /* |
| 2168 | * step 5: success! and cleanup |
| 2169 | */ |
| 2170 | synchronize_rcu(); |
| 2171 | cgroup_wakeup_rmdir_waiter(cgrp); |
| 2172 | retval = 0; |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2173 | out_put_css_set_refs: |
| 2174 | if (retval) { |
| 2175 | for (i = 0; i < group_size; i++) { |
| 2176 | tc = flex_array_get(group, i); |
| 2177 | if (!tc->cg) |
| 2178 | break; |
| 2179 | put_css_set(tc->cg); |
| 2180 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2181 | } |
| 2182 | out_cancel_attach: |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2183 | if (retval) { |
| 2184 | for_each_subsys(root, ss) { |
Tejun Heo | 494c167 | 2011-12-12 18:12:22 -0800 | [diff] [blame] | 2185 | if (ss == failed_ss) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2186 | break; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2187 | if (ss->cancel_attach) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 2188 | ss->cancel_attach(cgrp, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2189 | } |
| 2190 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2191 | out_free_group_list: |
Ben Blum | d846687 | 2011-05-26 16:25:21 -0700 | [diff] [blame] | 2192 | flex_array_free(group); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2193 | return retval; |
| 2194 | } |
| 2195 | |
| 2196 | /* |
| 2197 | * 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] | 2198 | * function to attach either it or all tasks in its threadgroup. Will lock |
| 2199 | * cgroup_mutex and threadgroup; may take task_lock of task. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2200 | */ |
| 2201 | 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] | 2202 | { |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2203 | struct task_struct *tsk; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2204 | const struct cred *cred = current_cred(), *tcred; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2205 | int ret; |
| 2206 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2207 | if (!cgroup_lock_live_group(cgrp)) |
| 2208 | return -ENODEV; |
| 2209 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2210 | retry_find_task: |
| 2211 | rcu_read_lock(); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2212 | if (pid) { |
Pavel Emelyanov | 73507f3 | 2008-02-07 00:14:47 -0800 | [diff] [blame] | 2213 | tsk = find_task_by_vpid(pid); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2214 | if (!tsk) { |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2215 | rcu_read_unlock(); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2216 | ret= -ESRCH; |
| 2217 | goto out_unlock_cgroup; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2218 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2219 | /* |
| 2220 | * even if we're attaching all tasks in the thread group, we |
| 2221 | * only need to check permissions on one of them. |
| 2222 | */ |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2223 | tcred = __task_cred(tsk); |
Eric W. Biederman | 14a590c | 2012-03-12 15:44:39 -0700 | [diff] [blame] | 2224 | if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) && |
| 2225 | !uid_eq(cred->euid, tcred->uid) && |
| 2226 | !uid_eq(cred->euid, tcred->suid)) { |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2227 | rcu_read_unlock(); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2228 | ret = -EACCES; |
| 2229 | goto out_unlock_cgroup; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2230 | } |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2231 | } else |
| 2232 | tsk = current; |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2233 | |
| 2234 | if (threadgroup) |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2235 | tsk = tsk->group_leader; |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2236 | |
| 2237 | /* |
| 2238 | * Workqueue threads may acquire PF_THREAD_BOUND and become |
| 2239 | * trapped in a cpuset, or RT worker may be born in a cgroup |
| 2240 | * with no rt_runtime allocated. Just say no. |
| 2241 | */ |
| 2242 | if (tsk == kthreadd_task || (tsk->flags & PF_THREAD_BOUND)) { |
| 2243 | ret = -EINVAL; |
| 2244 | rcu_read_unlock(); |
| 2245 | goto out_unlock_cgroup; |
| 2246 | } |
| 2247 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2248 | get_task_struct(tsk); |
| 2249 | rcu_read_unlock(); |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2250 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2251 | threadgroup_lock(tsk); |
| 2252 | if (threadgroup) { |
| 2253 | if (!thread_group_leader(tsk)) { |
| 2254 | /* |
| 2255 | * a race with de_thread from another thread's exec() |
| 2256 | * may strip us of our leadership, if this happens, |
| 2257 | * there is no choice but to throw this task away and |
| 2258 | * try again; this is |
| 2259 | * "double-double-toil-and-trouble-check locking". |
| 2260 | */ |
| 2261 | threadgroup_unlock(tsk); |
| 2262 | put_task_struct(tsk); |
| 2263 | goto retry_find_task; |
| 2264 | } |
| 2265 | ret = cgroup_attach_proc(cgrp, tsk); |
| 2266 | } else |
| 2267 | ret = cgroup_attach_task(cgrp, tsk); |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2268 | threadgroup_unlock(tsk); |
| 2269 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2270 | put_task_struct(tsk); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2271 | out_unlock_cgroup: |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2272 | cgroup_unlock(); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2273 | return ret; |
| 2274 | } |
| 2275 | |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2276 | static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid) |
| 2277 | { |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2278 | return attach_task_by_pid(cgrp, pid, false); |
| 2279 | } |
| 2280 | |
| 2281 | static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid) |
| 2282 | { |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2283 | return attach_task_by_pid(cgrp, tgid, true); |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2284 | } |
| 2285 | |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2286 | /** |
| 2287 | * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive. |
| 2288 | * @cgrp: the cgroup to be checked for liveness |
| 2289 | * |
Paul Menage | 84eea84 | 2008-07-25 01:47:00 -0700 | [diff] [blame] | 2290 | * On success, returns true; the lock should be later released with |
| 2291 | * cgroup_unlock(). On failure returns false with no lock held. |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2292 | */ |
Paul Menage | 84eea84 | 2008-07-25 01:47:00 -0700 | [diff] [blame] | 2293 | bool cgroup_lock_live_group(struct cgroup *cgrp) |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2294 | { |
| 2295 | mutex_lock(&cgroup_mutex); |
| 2296 | if (cgroup_is_removed(cgrp)) { |
| 2297 | mutex_unlock(&cgroup_mutex); |
| 2298 | return false; |
| 2299 | } |
| 2300 | return true; |
| 2301 | } |
Ben Blum | 67523c4 | 2010-03-10 15:22:11 -0800 | [diff] [blame] | 2302 | EXPORT_SYMBOL_GPL(cgroup_lock_live_group); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2303 | |
| 2304 | static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft, |
| 2305 | const char *buffer) |
| 2306 | { |
| 2307 | BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX); |
Evgeny Kuznetsov | f4a2589 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 2308 | if (strlen(buffer) >= PATH_MAX) |
| 2309 | return -EINVAL; |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2310 | if (!cgroup_lock_live_group(cgrp)) |
| 2311 | return -ENODEV; |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2312 | mutex_lock(&cgroup_root_mutex); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2313 | strcpy(cgrp->root->release_agent_path, buffer); |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2314 | mutex_unlock(&cgroup_root_mutex); |
Paul Menage | 84eea84 | 2008-07-25 01:47:00 -0700 | [diff] [blame] | 2315 | cgroup_unlock(); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2316 | return 0; |
| 2317 | } |
| 2318 | |
| 2319 | static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft, |
| 2320 | struct seq_file *seq) |
| 2321 | { |
| 2322 | if (!cgroup_lock_live_group(cgrp)) |
| 2323 | return -ENODEV; |
| 2324 | seq_puts(seq, cgrp->root->release_agent_path); |
| 2325 | seq_putc(seq, '\n'); |
Paul Menage | 84eea84 | 2008-07-25 01:47:00 -0700 | [diff] [blame] | 2326 | cgroup_unlock(); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2327 | return 0; |
| 2328 | } |
| 2329 | |
Paul Menage | 84eea84 | 2008-07-25 01:47:00 -0700 | [diff] [blame] | 2330 | /* A buffer size big enough for numbers or short strings */ |
| 2331 | #define CGROUP_LOCAL_BUFFER_SIZE 64 |
| 2332 | |
Paul Menage | e73d2c6 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 2333 | static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft, |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 2334 | struct file *file, |
| 2335 | const char __user *userbuf, |
| 2336 | size_t nbytes, loff_t *unused_ppos) |
Paul Menage | 355e0c4 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 2337 | { |
Paul Menage | 84eea84 | 2008-07-25 01:47:00 -0700 | [diff] [blame] | 2338 | char buffer[CGROUP_LOCAL_BUFFER_SIZE]; |
Paul Menage | 355e0c4 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 2339 | int retval = 0; |
Paul Menage | 355e0c4 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 2340 | char *end; |
| 2341 | |
| 2342 | if (!nbytes) |
| 2343 | return -EINVAL; |
| 2344 | if (nbytes >= sizeof(buffer)) |
| 2345 | return -E2BIG; |
| 2346 | if (copy_from_user(buffer, userbuf, nbytes)) |
| 2347 | return -EFAULT; |
| 2348 | |
| 2349 | buffer[nbytes] = 0; /* nul-terminate */ |
Paul Menage | e73d2c6 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 2350 | if (cft->write_u64) { |
KOSAKI Motohiro | 478988d | 2009-10-26 16:49:36 -0700 | [diff] [blame] | 2351 | u64 val = simple_strtoull(strstrip(buffer), &end, 0); |
Paul Menage | e73d2c6 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 2352 | if (*end) |
| 2353 | return -EINVAL; |
| 2354 | retval = cft->write_u64(cgrp, cft, val); |
| 2355 | } else { |
KOSAKI Motohiro | 478988d | 2009-10-26 16:49:36 -0700 | [diff] [blame] | 2356 | s64 val = simple_strtoll(strstrip(buffer), &end, 0); |
Paul Menage | e73d2c6 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 2357 | if (*end) |
| 2358 | return -EINVAL; |
| 2359 | retval = cft->write_s64(cgrp, cft, val); |
| 2360 | } |
Paul Menage | 355e0c4 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 2361 | if (!retval) |
| 2362 | retval = nbytes; |
| 2363 | return retval; |
| 2364 | } |
| 2365 | |
Paul Menage | db3b149 | 2008-07-25 01:46:58 -0700 | [diff] [blame] | 2366 | static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft, |
| 2367 | struct file *file, |
| 2368 | const char __user *userbuf, |
| 2369 | size_t nbytes, loff_t *unused_ppos) |
| 2370 | { |
Paul Menage | 84eea84 | 2008-07-25 01:47:00 -0700 | [diff] [blame] | 2371 | char local_buffer[CGROUP_LOCAL_BUFFER_SIZE]; |
Paul Menage | db3b149 | 2008-07-25 01:46:58 -0700 | [diff] [blame] | 2372 | int retval = 0; |
| 2373 | size_t max_bytes = cft->max_write_len; |
| 2374 | char *buffer = local_buffer; |
| 2375 | |
| 2376 | if (!max_bytes) |
| 2377 | max_bytes = sizeof(local_buffer) - 1; |
| 2378 | if (nbytes >= max_bytes) |
| 2379 | return -E2BIG; |
| 2380 | /* Allocate a dynamic buffer if we need one */ |
| 2381 | if (nbytes >= sizeof(local_buffer)) { |
| 2382 | buffer = kmalloc(nbytes + 1, GFP_KERNEL); |
| 2383 | if (buffer == NULL) |
| 2384 | return -ENOMEM; |
| 2385 | } |
Li Zefan | 5a3eb9f | 2008-07-29 22:33:18 -0700 | [diff] [blame] | 2386 | if (nbytes && copy_from_user(buffer, userbuf, nbytes)) { |
| 2387 | retval = -EFAULT; |
| 2388 | goto out; |
| 2389 | } |
Paul Menage | db3b149 | 2008-07-25 01:46:58 -0700 | [diff] [blame] | 2390 | |
| 2391 | buffer[nbytes] = 0; /* nul-terminate */ |
KOSAKI Motohiro | 478988d | 2009-10-26 16:49:36 -0700 | [diff] [blame] | 2392 | retval = cft->write_string(cgrp, cft, strstrip(buffer)); |
Paul Menage | db3b149 | 2008-07-25 01:46:58 -0700 | [diff] [blame] | 2393 | if (!retval) |
| 2394 | retval = nbytes; |
Li Zefan | 5a3eb9f | 2008-07-29 22:33:18 -0700 | [diff] [blame] | 2395 | out: |
Paul Menage | db3b149 | 2008-07-25 01:46:58 -0700 | [diff] [blame] | 2396 | if (buffer != local_buffer) |
| 2397 | kfree(buffer); |
| 2398 | return retval; |
| 2399 | } |
| 2400 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2401 | static ssize_t cgroup_file_write(struct file *file, const char __user *buf, |
| 2402 | size_t nbytes, loff_t *ppos) |
| 2403 | { |
| 2404 | struct cftype *cft = __d_cft(file->f_dentry); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2405 | struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2406 | |
Li Zefan | 75139b8 | 2009-01-07 18:07:33 -0800 | [diff] [blame] | 2407 | if (cgroup_is_removed(cgrp)) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2408 | return -ENODEV; |
Paul Menage | 355e0c4 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 2409 | if (cft->write) |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2410 | return cft->write(cgrp, cft, file, buf, nbytes, ppos); |
Paul Menage | e73d2c6 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 2411 | if (cft->write_u64 || cft->write_s64) |
| 2412 | return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos); |
Paul Menage | db3b149 | 2008-07-25 01:46:58 -0700 | [diff] [blame] | 2413 | if (cft->write_string) |
| 2414 | return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos); |
Pavel Emelyanov | d447ea2 | 2008-04-29 01:00:08 -0700 | [diff] [blame] | 2415 | if (cft->trigger) { |
| 2416 | int ret = cft->trigger(cgrp, (unsigned int)cft->private); |
| 2417 | return ret ? ret : nbytes; |
| 2418 | } |
Paul Menage | 355e0c4 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 2419 | return -EINVAL; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2420 | } |
| 2421 | |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 2422 | static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft, |
| 2423 | struct file *file, |
| 2424 | char __user *buf, size_t nbytes, |
| 2425 | loff_t *ppos) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2426 | { |
Paul Menage | 84eea84 | 2008-07-25 01:47:00 -0700 | [diff] [blame] | 2427 | char tmp[CGROUP_LOCAL_BUFFER_SIZE]; |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 2428 | u64 val = cft->read_u64(cgrp, cft); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2429 | int len = sprintf(tmp, "%llu\n", (unsigned long long) val); |
| 2430 | |
| 2431 | return simple_read_from_buffer(buf, nbytes, ppos, tmp, len); |
| 2432 | } |
| 2433 | |
Paul Menage | e73d2c6 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 2434 | static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft, |
| 2435 | struct file *file, |
| 2436 | char __user *buf, size_t nbytes, |
| 2437 | loff_t *ppos) |
| 2438 | { |
Paul Menage | 84eea84 | 2008-07-25 01:47:00 -0700 | [diff] [blame] | 2439 | char tmp[CGROUP_LOCAL_BUFFER_SIZE]; |
Paul Menage | e73d2c6 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 2440 | s64 val = cft->read_s64(cgrp, cft); |
| 2441 | int len = sprintf(tmp, "%lld\n", (long long) val); |
| 2442 | |
| 2443 | return simple_read_from_buffer(buf, nbytes, ppos, tmp, len); |
| 2444 | } |
| 2445 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2446 | static ssize_t cgroup_file_read(struct file *file, char __user *buf, |
| 2447 | size_t nbytes, loff_t *ppos) |
| 2448 | { |
| 2449 | struct cftype *cft = __d_cft(file->f_dentry); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2450 | struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2451 | |
Li Zefan | 75139b8 | 2009-01-07 18:07:33 -0800 | [diff] [blame] | 2452 | if (cgroup_is_removed(cgrp)) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2453 | return -ENODEV; |
| 2454 | |
| 2455 | if (cft->read) |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2456 | return cft->read(cgrp, cft, file, buf, nbytes, ppos); |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 2457 | if (cft->read_u64) |
| 2458 | return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos); |
Paul Menage | e73d2c6 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 2459 | if (cft->read_s64) |
| 2460 | return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2461 | return -EINVAL; |
| 2462 | } |
| 2463 | |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2464 | /* |
| 2465 | * seqfile ops/methods for returning structured data. Currently just |
| 2466 | * supports string->u64 maps, but can be extended in future. |
| 2467 | */ |
| 2468 | |
| 2469 | struct cgroup_seqfile_state { |
| 2470 | struct cftype *cft; |
| 2471 | struct cgroup *cgroup; |
| 2472 | }; |
| 2473 | |
| 2474 | static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value) |
| 2475 | { |
| 2476 | struct seq_file *sf = cb->state; |
| 2477 | return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value); |
| 2478 | } |
| 2479 | |
| 2480 | static int cgroup_seqfile_show(struct seq_file *m, void *arg) |
| 2481 | { |
| 2482 | struct cgroup_seqfile_state *state = m->private; |
| 2483 | struct cftype *cft = state->cft; |
Serge E. Hallyn | 29486df | 2008-04-29 01:00:14 -0700 | [diff] [blame] | 2484 | if (cft->read_map) { |
| 2485 | struct cgroup_map_cb cb = { |
| 2486 | .fill = cgroup_map_add, |
| 2487 | .state = m, |
| 2488 | }; |
| 2489 | return cft->read_map(state->cgroup, cft, &cb); |
| 2490 | } |
| 2491 | return cft->read_seq_string(state->cgroup, cft, m); |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2492 | } |
| 2493 | |
Adrian Bunk | 96930a6 | 2008-07-25 19:46:21 -0700 | [diff] [blame] | 2494 | static int cgroup_seqfile_release(struct inode *inode, struct file *file) |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2495 | { |
| 2496 | struct seq_file *seq = file->private_data; |
| 2497 | kfree(seq->private); |
| 2498 | return single_release(inode, file); |
| 2499 | } |
| 2500 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 2501 | static const struct file_operations cgroup_seqfile_operations = { |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2502 | .read = seq_read, |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2503 | .write = cgroup_file_write, |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2504 | .llseek = seq_lseek, |
| 2505 | .release = cgroup_seqfile_release, |
| 2506 | }; |
| 2507 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2508 | static int cgroup_file_open(struct inode *inode, struct file *file) |
| 2509 | { |
| 2510 | int err; |
| 2511 | struct cftype *cft; |
| 2512 | |
| 2513 | err = generic_file_open(inode, file); |
| 2514 | if (err) |
| 2515 | return err; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2516 | cft = __d_cft(file->f_dentry); |
Li Zefan | 75139b8 | 2009-01-07 18:07:33 -0800 | [diff] [blame] | 2517 | |
Serge E. Hallyn | 29486df | 2008-04-29 01:00:14 -0700 | [diff] [blame] | 2518 | if (cft->read_map || cft->read_seq_string) { |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2519 | struct cgroup_seqfile_state *state = |
| 2520 | kzalloc(sizeof(*state), GFP_USER); |
| 2521 | if (!state) |
| 2522 | return -ENOMEM; |
| 2523 | state->cft = cft; |
| 2524 | state->cgroup = __d_cgrp(file->f_dentry->d_parent); |
| 2525 | file->f_op = &cgroup_seqfile_operations; |
| 2526 | err = single_open(file, cgroup_seqfile_show, state); |
| 2527 | if (err < 0) |
| 2528 | kfree(state); |
| 2529 | } else if (cft->open) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2530 | err = cft->open(inode, file); |
| 2531 | else |
| 2532 | err = 0; |
| 2533 | |
| 2534 | return err; |
| 2535 | } |
| 2536 | |
| 2537 | static int cgroup_file_release(struct inode *inode, struct file *file) |
| 2538 | { |
| 2539 | struct cftype *cft = __d_cft(file->f_dentry); |
| 2540 | if (cft->release) |
| 2541 | return cft->release(inode, file); |
| 2542 | return 0; |
| 2543 | } |
| 2544 | |
| 2545 | /* |
| 2546 | * cgroup_rename - Only allow simple rename of directories in place. |
| 2547 | */ |
| 2548 | static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry, |
| 2549 | struct inode *new_dir, struct dentry *new_dentry) |
| 2550 | { |
| 2551 | if (!S_ISDIR(old_dentry->d_inode->i_mode)) |
| 2552 | return -ENOTDIR; |
| 2553 | if (new_dentry->d_inode) |
| 2554 | return -EEXIST; |
| 2555 | if (old_dir != new_dir) |
| 2556 | return -EIO; |
| 2557 | return simple_rename(old_dir, old_dentry, new_dir, new_dentry); |
| 2558 | } |
| 2559 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 2560 | static const struct file_operations cgroup_file_operations = { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2561 | .read = cgroup_file_read, |
| 2562 | .write = cgroup_file_write, |
| 2563 | .llseek = generic_file_llseek, |
| 2564 | .open = cgroup_file_open, |
| 2565 | .release = cgroup_file_release, |
| 2566 | }; |
| 2567 | |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 2568 | static const struct inode_operations cgroup_dir_inode_operations = { |
Al Viro | c72a04e | 2011-01-14 05:31:45 +0000 | [diff] [blame] | 2569 | .lookup = cgroup_lookup, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2570 | .mkdir = cgroup_mkdir, |
| 2571 | .rmdir = cgroup_rmdir, |
| 2572 | .rename = cgroup_rename, |
| 2573 | }; |
| 2574 | |
Al Viro | c72a04e | 2011-01-14 05:31:45 +0000 | [diff] [blame] | 2575 | static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) |
| 2576 | { |
| 2577 | if (dentry->d_name.len > NAME_MAX) |
| 2578 | return ERR_PTR(-ENAMETOOLONG); |
| 2579 | d_add(dentry, NULL); |
| 2580 | return NULL; |
| 2581 | } |
| 2582 | |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 2583 | /* |
| 2584 | * Check if a file is a control file |
| 2585 | */ |
| 2586 | static inline struct cftype *__file_cft(struct file *file) |
| 2587 | { |
| 2588 | if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations) |
| 2589 | return ERR_PTR(-EINVAL); |
| 2590 | return __d_cft(file->f_dentry); |
| 2591 | } |
| 2592 | |
Al Viro | a5e7ed3 | 2011-07-26 01:55:55 -0400 | [diff] [blame] | 2593 | static int cgroup_create_file(struct dentry *dentry, umode_t mode, |
Nick Piggin | 5adcee1 | 2011-01-07 17:49:20 +1100 | [diff] [blame] | 2594 | struct super_block *sb) |
| 2595 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2596 | struct inode *inode; |
| 2597 | |
| 2598 | if (!dentry) |
| 2599 | return -ENOENT; |
| 2600 | if (dentry->d_inode) |
| 2601 | return -EEXIST; |
| 2602 | |
| 2603 | inode = cgroup_new_inode(mode, sb); |
| 2604 | if (!inode) |
| 2605 | return -ENOMEM; |
| 2606 | |
| 2607 | if (S_ISDIR(mode)) { |
| 2608 | inode->i_op = &cgroup_dir_inode_operations; |
| 2609 | inode->i_fop = &simple_dir_operations; |
| 2610 | |
| 2611 | /* start off with i_nlink == 2 (for "." entry) */ |
| 2612 | inc_nlink(inode); |
| 2613 | |
| 2614 | /* start with the directory inode held, so that we can |
| 2615 | * populate it without racing with another mkdir */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2616 | mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2617 | } else if (S_ISREG(mode)) { |
| 2618 | inode->i_size = 0; |
| 2619 | inode->i_fop = &cgroup_file_operations; |
| 2620 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2621 | d_instantiate(dentry, inode); |
| 2622 | dget(dentry); /* Extra count - pin the dentry in core */ |
| 2623 | return 0; |
| 2624 | } |
| 2625 | |
| 2626 | /* |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 2627 | * cgroup_create_dir - create a directory for an object. |
| 2628 | * @cgrp: the cgroup we create the directory for. It must have a valid |
| 2629 | * ->parent field. And we are going to fill its ->dentry field. |
| 2630 | * @dentry: dentry of the new cgroup |
| 2631 | * @mode: mode to set on new directory. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2632 | */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2633 | static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry, |
Al Viro | a5e7ed3 | 2011-07-26 01:55:55 -0400 | [diff] [blame] | 2634 | umode_t mode) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2635 | { |
| 2636 | struct dentry *parent; |
| 2637 | int error = 0; |
| 2638 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2639 | parent = cgrp->parent->dentry; |
| 2640 | error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2641 | if (!error) { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2642 | dentry->d_fsdata = cgrp; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2643 | inc_nlink(parent->d_inode); |
Paul Menage | a47295e | 2009-01-07 18:07:44 -0800 | [diff] [blame] | 2644 | rcu_assign_pointer(cgrp->dentry, dentry); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2645 | dget(dentry); |
| 2646 | } |
| 2647 | dput(dentry); |
| 2648 | |
| 2649 | return error; |
| 2650 | } |
| 2651 | |
Li Zefan | 099fca3 | 2009-04-02 16:57:29 -0700 | [diff] [blame] | 2652 | /** |
| 2653 | * cgroup_file_mode - deduce file mode of a control file |
| 2654 | * @cft: the control file in question |
| 2655 | * |
| 2656 | * returns cft->mode if ->mode is not 0 |
| 2657 | * returns S_IRUGO|S_IWUSR if it has both a read and a write handler |
| 2658 | * returns S_IRUGO if it has only a read handler |
| 2659 | * returns S_IWUSR if it has only a write hander |
| 2660 | */ |
Al Viro | a5e7ed3 | 2011-07-26 01:55:55 -0400 | [diff] [blame] | 2661 | static umode_t cgroup_file_mode(const struct cftype *cft) |
Li Zefan | 099fca3 | 2009-04-02 16:57:29 -0700 | [diff] [blame] | 2662 | { |
Al Viro | a5e7ed3 | 2011-07-26 01:55:55 -0400 | [diff] [blame] | 2663 | umode_t mode = 0; |
Li Zefan | 099fca3 | 2009-04-02 16:57:29 -0700 | [diff] [blame] | 2664 | |
| 2665 | if (cft->mode) |
| 2666 | return cft->mode; |
| 2667 | |
| 2668 | if (cft->read || cft->read_u64 || cft->read_s64 || |
| 2669 | cft->read_map || cft->read_seq_string) |
| 2670 | mode |= S_IRUGO; |
| 2671 | |
| 2672 | if (cft->write || cft->write_u64 || cft->write_s64 || |
| 2673 | cft->write_string || cft->trigger) |
| 2674 | mode |= S_IWUSR; |
| 2675 | |
| 2676 | return mode; |
| 2677 | } |
| 2678 | |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2679 | static int cgroup_add_file(struct cgroup *cgrp, struct cgroup_subsys *subsys, |
| 2680 | const struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2681 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2682 | struct dentry *dir = cgrp->dentry; |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2683 | struct cgroup *parent = __d_cgrp(dir); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2684 | struct dentry *dentry; |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2685 | struct cfent *cfe; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2686 | int error; |
Al Viro | a5e7ed3 | 2011-07-26 01:55:55 -0400 | [diff] [blame] | 2687 | umode_t mode; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2688 | char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 }; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2689 | |
| 2690 | /* does @cft->flags tell us to skip creation on @cgrp? */ |
| 2691 | if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent) |
| 2692 | return 0; |
| 2693 | if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent) |
| 2694 | return 0; |
| 2695 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2696 | if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2697 | strcpy(name, subsys->name); |
| 2698 | strcat(name, "."); |
| 2699 | } |
| 2700 | strcat(name, cft->name); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2701 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2702 | BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex)); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2703 | |
| 2704 | cfe = kzalloc(sizeof(*cfe), GFP_KERNEL); |
| 2705 | if (!cfe) |
| 2706 | return -ENOMEM; |
| 2707 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2708 | dentry = lookup_one_len(name, dir, strlen(name)); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2709 | if (IS_ERR(dentry)) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2710 | error = PTR_ERR(dentry); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2711 | goto out; |
| 2712 | } |
| 2713 | |
| 2714 | mode = cgroup_file_mode(cft); |
| 2715 | error = cgroup_create_file(dentry, mode | S_IFREG, cgrp->root->sb); |
| 2716 | if (!error) { |
| 2717 | cfe->type = (void *)cft; |
| 2718 | cfe->dentry = dentry; |
| 2719 | dentry->d_fsdata = cfe; |
| 2720 | list_add_tail(&cfe->node, &parent->files); |
| 2721 | cfe = NULL; |
| 2722 | } |
| 2723 | dput(dentry); |
| 2724 | out: |
| 2725 | kfree(cfe); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2726 | return error; |
| 2727 | } |
| 2728 | |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2729 | static int cgroup_addrm_files(struct cgroup *cgrp, struct cgroup_subsys *subsys, |
| 2730 | const struct cftype cfts[], bool is_add) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2731 | { |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2732 | const struct cftype *cft; |
| 2733 | int err, ret = 0; |
| 2734 | |
| 2735 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2736 | if (is_add) |
| 2737 | err = cgroup_add_file(cgrp, subsys, cft); |
| 2738 | else |
| 2739 | err = cgroup_rm_file(cgrp, cft); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2740 | if (err) { |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2741 | pr_warning("cgroup_addrm_files: failed to %s %s, err=%d\n", |
| 2742 | is_add ? "add" : "remove", cft->name, err); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2743 | ret = err; |
| 2744 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2745 | } |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2746 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2747 | } |
| 2748 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2749 | static DEFINE_MUTEX(cgroup_cft_mutex); |
| 2750 | |
| 2751 | static void cgroup_cfts_prepare(void) |
| 2752 | __acquires(&cgroup_cft_mutex) __acquires(&cgroup_mutex) |
| 2753 | { |
| 2754 | /* |
| 2755 | * Thanks to the entanglement with vfs inode locking, we can't walk |
| 2756 | * the existing cgroups under cgroup_mutex and create files. |
| 2757 | * Instead, we increment reference on all cgroups and build list of |
| 2758 | * them using @cgrp->cft_q_node. Grab cgroup_cft_mutex to ensure |
| 2759 | * exclusive access to the field. |
| 2760 | */ |
| 2761 | mutex_lock(&cgroup_cft_mutex); |
| 2762 | mutex_lock(&cgroup_mutex); |
| 2763 | } |
| 2764 | |
| 2765 | static void cgroup_cfts_commit(struct cgroup_subsys *ss, |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2766 | const struct cftype *cfts, bool is_add) |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2767 | __releases(&cgroup_mutex) __releases(&cgroup_cft_mutex) |
| 2768 | { |
| 2769 | LIST_HEAD(pending); |
| 2770 | struct cgroup *cgrp, *n; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2771 | |
| 2772 | /* %NULL @cfts indicates abort and don't bother if @ss isn't attached */ |
| 2773 | if (cfts && ss->root != &rootnode) { |
| 2774 | list_for_each_entry(cgrp, &ss->root->allcg_list, allcg_node) { |
| 2775 | dget(cgrp->dentry); |
| 2776 | list_add_tail(&cgrp->cft_q_node, &pending); |
| 2777 | } |
| 2778 | } |
| 2779 | |
| 2780 | mutex_unlock(&cgroup_mutex); |
| 2781 | |
| 2782 | /* |
| 2783 | * All new cgroups will see @cfts update on @ss->cftsets. Add/rm |
| 2784 | * files for all cgroups which were created before. |
| 2785 | */ |
| 2786 | list_for_each_entry_safe(cgrp, n, &pending, cft_q_node) { |
| 2787 | struct inode *inode = cgrp->dentry->d_inode; |
| 2788 | |
| 2789 | mutex_lock(&inode->i_mutex); |
| 2790 | mutex_lock(&cgroup_mutex); |
| 2791 | if (!cgroup_is_removed(cgrp)) |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2792 | cgroup_addrm_files(cgrp, ss, cfts, is_add); |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2793 | mutex_unlock(&cgroup_mutex); |
| 2794 | mutex_unlock(&inode->i_mutex); |
| 2795 | |
| 2796 | list_del_init(&cgrp->cft_q_node); |
| 2797 | dput(cgrp->dentry); |
| 2798 | } |
| 2799 | |
| 2800 | mutex_unlock(&cgroup_cft_mutex); |
| 2801 | } |
| 2802 | |
| 2803 | /** |
| 2804 | * cgroup_add_cftypes - add an array of cftypes to a subsystem |
| 2805 | * @ss: target cgroup subsystem |
| 2806 | * @cfts: zero-length name terminated array of cftypes |
| 2807 | * |
| 2808 | * Register @cfts to @ss. Files described by @cfts are created for all |
| 2809 | * existing cgroups to which @ss is attached and all future cgroups will |
| 2810 | * have them too. This function can be called anytime whether @ss is |
| 2811 | * attached or not. |
| 2812 | * |
| 2813 | * Returns 0 on successful registration, -errno on failure. Note that this |
| 2814 | * function currently returns 0 as long as @cfts registration is successful |
| 2815 | * even if some file creation attempts on existing cgroups fail. |
| 2816 | */ |
| 2817 | int cgroup_add_cftypes(struct cgroup_subsys *ss, const struct cftype *cfts) |
| 2818 | { |
| 2819 | struct cftype_set *set; |
| 2820 | |
| 2821 | set = kzalloc(sizeof(*set), GFP_KERNEL); |
| 2822 | if (!set) |
| 2823 | return -ENOMEM; |
| 2824 | |
| 2825 | cgroup_cfts_prepare(); |
| 2826 | set->cfts = cfts; |
| 2827 | list_add_tail(&set->node, &ss->cftsets); |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2828 | cgroup_cfts_commit(ss, cfts, true); |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 2829 | |
| 2830 | return 0; |
| 2831 | } |
| 2832 | EXPORT_SYMBOL_GPL(cgroup_add_cftypes); |
| 2833 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 2834 | /** |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 2835 | * cgroup_rm_cftypes - remove an array of cftypes from a subsystem |
| 2836 | * @ss: target cgroup subsystem |
| 2837 | * @cfts: zero-length name terminated array of cftypes |
| 2838 | * |
| 2839 | * Unregister @cfts from @ss. Files described by @cfts are removed from |
| 2840 | * all existing cgroups to which @ss is attached and all future cgroups |
| 2841 | * won't have them either. This function can be called anytime whether @ss |
| 2842 | * is attached or not. |
| 2843 | * |
| 2844 | * Returns 0 on successful unregistration, -ENOENT if @cfts is not |
| 2845 | * registered with @ss. |
| 2846 | */ |
| 2847 | int cgroup_rm_cftypes(struct cgroup_subsys *ss, const struct cftype *cfts) |
| 2848 | { |
| 2849 | struct cftype_set *set; |
| 2850 | |
| 2851 | cgroup_cfts_prepare(); |
| 2852 | |
| 2853 | list_for_each_entry(set, &ss->cftsets, node) { |
| 2854 | if (set->cfts == cfts) { |
| 2855 | list_del_init(&set->node); |
| 2856 | cgroup_cfts_commit(ss, cfts, false); |
| 2857 | return 0; |
| 2858 | } |
| 2859 | } |
| 2860 | |
| 2861 | cgroup_cfts_commit(ss, NULL, false); |
| 2862 | return -ENOENT; |
| 2863 | } |
| 2864 | |
| 2865 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 2866 | * cgroup_task_count - count the number of tasks in a cgroup. |
| 2867 | * @cgrp: the cgroup in question |
| 2868 | * |
| 2869 | * Return the number of tasks in the cgroup. |
| 2870 | */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2871 | int cgroup_task_count(const struct cgroup *cgrp) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2872 | { |
| 2873 | int count = 0; |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 2874 | struct cg_cgroup_link *link; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2875 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2876 | read_lock(&css_set_lock); |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 2877 | list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) { |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 2878 | count += atomic_read(&link->cg->refcount); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2879 | } |
| 2880 | read_unlock(&css_set_lock); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2881 | return count; |
| 2882 | } |
| 2883 | |
| 2884 | /* |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2885 | * Advance a list_head iterator. The iterator should be positioned at |
| 2886 | * the start of a css_set |
| 2887 | */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2888 | static void cgroup_advance_iter(struct cgroup *cgrp, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 2889 | struct cgroup_iter *it) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2890 | { |
| 2891 | struct list_head *l = it->cg_link; |
| 2892 | struct cg_cgroup_link *link; |
| 2893 | struct css_set *cg; |
| 2894 | |
| 2895 | /* Advance to the next non-empty css_set */ |
| 2896 | do { |
| 2897 | l = l->next; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2898 | if (l == &cgrp->css_sets) { |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2899 | it->cg_link = NULL; |
| 2900 | return; |
| 2901 | } |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2902 | link = list_entry(l, struct cg_cgroup_link, cgrp_link_list); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2903 | cg = link->cg; |
| 2904 | } while (list_empty(&cg->tasks)); |
| 2905 | it->cg_link = l; |
| 2906 | it->task = cg->tasks.next; |
| 2907 | } |
| 2908 | |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2909 | /* |
| 2910 | * To reduce the fork() overhead for systems that are not actually |
| 2911 | * using their cgroups capability, we don't maintain the lists running |
| 2912 | * through each css_set to its tasks until we see the list actually |
| 2913 | * used - in other words after the first call to cgroup_iter_start(). |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2914 | */ |
Adrian Bunk | 3df91fe | 2008-04-29 00:59:54 -0700 | [diff] [blame] | 2915 | static void cgroup_enable_task_cg_lists(void) |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2916 | { |
| 2917 | struct task_struct *p, *g; |
| 2918 | write_lock(&css_set_lock); |
| 2919 | use_task_css_set_links = 1; |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 2920 | /* |
| 2921 | * We need tasklist_lock because RCU is not safe against |
| 2922 | * while_each_thread(). Besides, a forking task that has passed |
| 2923 | * cgroup_post_fork() without seeing use_task_css_set_links = 1 |
| 2924 | * is not guaranteed to have its child immediately visible in the |
| 2925 | * tasklist if we walk through it with RCU. |
| 2926 | */ |
| 2927 | read_lock(&tasklist_lock); |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2928 | do_each_thread(g, p) { |
| 2929 | task_lock(p); |
Li Zefan | 0e04388 | 2008-04-17 11:37:15 +0800 | [diff] [blame] | 2930 | /* |
| 2931 | * We should check if the process is exiting, otherwise |
| 2932 | * it will race with cgroup_exit() in that the list |
| 2933 | * entry won't be deleted though the process has exited. |
| 2934 | */ |
| 2935 | if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list)) |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2936 | list_add(&p->cg_list, &p->cgroups->tasks); |
| 2937 | task_unlock(p); |
| 2938 | } while_each_thread(g, p); |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 2939 | read_unlock(&tasklist_lock); |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2940 | write_unlock(&css_set_lock); |
| 2941 | } |
| 2942 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2943 | void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it) |
Kirill A. Shutemov | c6ca575 | 2011-12-27 07:46:26 +0200 | [diff] [blame] | 2944 | __acquires(css_set_lock) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2945 | { |
| 2946 | /* |
| 2947 | * The first time anyone tries to iterate across a cgroup, |
| 2948 | * we need to enable the list linking each css_set to its |
| 2949 | * tasks, and fix up all existing tasks. |
| 2950 | */ |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2951 | if (!use_task_css_set_links) |
| 2952 | cgroup_enable_task_cg_lists(); |
| 2953 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2954 | read_lock(&css_set_lock); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2955 | it->cg_link = &cgrp->css_sets; |
| 2956 | cgroup_advance_iter(cgrp, it); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2957 | } |
| 2958 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2959 | struct task_struct *cgroup_iter_next(struct cgroup *cgrp, |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2960 | struct cgroup_iter *it) |
| 2961 | { |
| 2962 | struct task_struct *res; |
| 2963 | struct list_head *l = it->task; |
Lai Jiangshan | 2019f63 | 2009-01-07 18:07:36 -0800 | [diff] [blame] | 2964 | struct cg_cgroup_link *link; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2965 | |
| 2966 | /* If the iterator cg is NULL, we have no tasks */ |
| 2967 | if (!it->cg_link) |
| 2968 | return NULL; |
| 2969 | res = list_entry(l, struct task_struct, cg_list); |
| 2970 | /* Advance iterator to find next entry */ |
| 2971 | l = l->next; |
Lai Jiangshan | 2019f63 | 2009-01-07 18:07:36 -0800 | [diff] [blame] | 2972 | link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list); |
| 2973 | if (l == &link->cg->tasks) { |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2974 | /* We reached the end of this task list - move on to |
| 2975 | * the next cg_cgroup_link */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2976 | cgroup_advance_iter(cgrp, it); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2977 | } else { |
| 2978 | it->task = l; |
| 2979 | } |
| 2980 | return res; |
| 2981 | } |
| 2982 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 2983 | void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it) |
Kirill A. Shutemov | c6ca575 | 2011-12-27 07:46:26 +0200 | [diff] [blame] | 2984 | __releases(css_set_lock) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 2985 | { |
| 2986 | read_unlock(&css_set_lock); |
| 2987 | } |
| 2988 | |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 2989 | static inline int started_after_time(struct task_struct *t1, |
| 2990 | struct timespec *time, |
| 2991 | struct task_struct *t2) |
| 2992 | { |
| 2993 | int start_diff = timespec_compare(&t1->start_time, time); |
| 2994 | if (start_diff > 0) { |
| 2995 | return 1; |
| 2996 | } else if (start_diff < 0) { |
| 2997 | return 0; |
| 2998 | } else { |
| 2999 | /* |
| 3000 | * Arbitrarily, if two processes started at the same |
| 3001 | * time, we'll say that the lower pointer value |
| 3002 | * started first. Note that t2 may have exited by now |
| 3003 | * so this may not be a valid pointer any longer, but |
| 3004 | * that's fine - it still serves to distinguish |
| 3005 | * between two tasks started (effectively) simultaneously. |
| 3006 | */ |
| 3007 | return t1 > t2; |
| 3008 | } |
| 3009 | } |
| 3010 | |
| 3011 | /* |
| 3012 | * This function is a callback from heap_insert() and is used to order |
| 3013 | * the heap. |
| 3014 | * In this case we order the heap in descending task start time. |
| 3015 | */ |
| 3016 | static inline int started_after(void *p1, void *p2) |
| 3017 | { |
| 3018 | struct task_struct *t1 = p1; |
| 3019 | struct task_struct *t2 = p2; |
| 3020 | return started_after_time(t1, &t2->start_time, t2); |
| 3021 | } |
| 3022 | |
| 3023 | /** |
| 3024 | * cgroup_scan_tasks - iterate though all the tasks in a cgroup |
| 3025 | * @scan: struct cgroup_scanner containing arguments for the scan |
| 3026 | * |
| 3027 | * Arguments include pointers to callback functions test_task() and |
| 3028 | * process_task(). |
| 3029 | * Iterate through all the tasks in a cgroup, calling test_task() for each, |
| 3030 | * and if it returns true, call process_task() for it also. |
| 3031 | * The test_task pointer may be NULL, meaning always true (select all tasks). |
| 3032 | * Effectively duplicates cgroup_iter_{start,next,end}() |
| 3033 | * but does not lock css_set_lock for the call to process_task(). |
| 3034 | * The struct cgroup_scanner may be embedded in any structure of the caller's |
| 3035 | * creation. |
| 3036 | * It is guaranteed that process_task() will act on every task that |
| 3037 | * is a member of the cgroup for the duration of this call. This |
| 3038 | * function may or may not call process_task() for tasks that exit |
| 3039 | * or move to a different cgroup during the call, or are forked or |
| 3040 | * move into the cgroup during the call. |
| 3041 | * |
| 3042 | * Note that test_task() may be called with locks held, and may in some |
| 3043 | * situations be called multiple times for the same task, so it should |
| 3044 | * be cheap. |
| 3045 | * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been |
| 3046 | * pre-allocated and will be used for heap operations (and its "gt" member will |
| 3047 | * be overwritten), else a temporary heap will be used (allocation of which |
| 3048 | * may cause this function to fail). |
| 3049 | */ |
| 3050 | int cgroup_scan_tasks(struct cgroup_scanner *scan) |
| 3051 | { |
| 3052 | int retval, i; |
| 3053 | struct cgroup_iter it; |
| 3054 | struct task_struct *p, *dropped; |
| 3055 | /* Never dereference latest_task, since it's not refcounted */ |
| 3056 | struct task_struct *latest_task = NULL; |
| 3057 | struct ptr_heap tmp_heap; |
| 3058 | struct ptr_heap *heap; |
| 3059 | struct timespec latest_time = { 0, 0 }; |
| 3060 | |
| 3061 | if (scan->heap) { |
| 3062 | /* The caller supplied our heap and pre-allocated its memory */ |
| 3063 | heap = scan->heap; |
| 3064 | heap->gt = &started_after; |
| 3065 | } else { |
| 3066 | /* We need to allocate our own heap memory */ |
| 3067 | heap = &tmp_heap; |
| 3068 | retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after); |
| 3069 | if (retval) |
| 3070 | /* cannot allocate the heap */ |
| 3071 | return retval; |
| 3072 | } |
| 3073 | |
| 3074 | again: |
| 3075 | /* |
| 3076 | * Scan tasks in the cgroup, using the scanner's "test_task" callback |
| 3077 | * to determine which are of interest, and using the scanner's |
| 3078 | * "process_task" callback to process any of them that need an update. |
| 3079 | * Since we don't want to hold any locks during the task updates, |
| 3080 | * gather tasks to be processed in a heap structure. |
| 3081 | * The heap is sorted by descending task start time. |
| 3082 | * If the statically-sized heap fills up, we overflow tasks that |
| 3083 | * started later, and in future iterations only consider tasks that |
| 3084 | * started after the latest task in the previous pass. This |
| 3085 | * guarantees forward progress and that we don't miss any tasks. |
| 3086 | */ |
| 3087 | heap->size = 0; |
| 3088 | cgroup_iter_start(scan->cg, &it); |
| 3089 | while ((p = cgroup_iter_next(scan->cg, &it))) { |
| 3090 | /* |
| 3091 | * Only affect tasks that qualify per the caller's callback, |
| 3092 | * if he provided one |
| 3093 | */ |
| 3094 | if (scan->test_task && !scan->test_task(p, scan)) |
| 3095 | continue; |
| 3096 | /* |
| 3097 | * Only process tasks that started after the last task |
| 3098 | * we processed |
| 3099 | */ |
| 3100 | if (!started_after_time(p, &latest_time, latest_task)) |
| 3101 | continue; |
| 3102 | dropped = heap_insert(heap, p); |
| 3103 | if (dropped == NULL) { |
| 3104 | /* |
| 3105 | * The new task was inserted; the heap wasn't |
| 3106 | * previously full |
| 3107 | */ |
| 3108 | get_task_struct(p); |
| 3109 | } else if (dropped != p) { |
| 3110 | /* |
| 3111 | * The new task was inserted, and pushed out a |
| 3112 | * different task |
| 3113 | */ |
| 3114 | get_task_struct(p); |
| 3115 | put_task_struct(dropped); |
| 3116 | } |
| 3117 | /* |
| 3118 | * Else the new task was newer than anything already in |
| 3119 | * the heap and wasn't inserted |
| 3120 | */ |
| 3121 | } |
| 3122 | cgroup_iter_end(scan->cg, &it); |
| 3123 | |
| 3124 | if (heap->size) { |
| 3125 | for (i = 0; i < heap->size; i++) { |
Paul Jackson | 4fe91d5 | 2008-04-29 00:59:55 -0700 | [diff] [blame] | 3126 | struct task_struct *q = heap->ptrs[i]; |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 3127 | if (i == 0) { |
Paul Jackson | 4fe91d5 | 2008-04-29 00:59:55 -0700 | [diff] [blame] | 3128 | latest_time = q->start_time; |
| 3129 | latest_task = q; |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 3130 | } |
| 3131 | /* Process the task per the caller's callback */ |
Paul Jackson | 4fe91d5 | 2008-04-29 00:59:55 -0700 | [diff] [blame] | 3132 | scan->process_task(q, scan); |
| 3133 | put_task_struct(q); |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 3134 | } |
| 3135 | /* |
| 3136 | * If we had to process any tasks at all, scan again |
| 3137 | * in case some of them were in the middle of forking |
| 3138 | * children that didn't get processed. |
| 3139 | * Not the most efficient way to do it, but it avoids |
| 3140 | * having to take callback_mutex in the fork path |
| 3141 | */ |
| 3142 | goto again; |
| 3143 | } |
| 3144 | if (heap == &tmp_heap) |
| 3145 | heap_free(&tmp_heap); |
| 3146 | return 0; |
| 3147 | } |
| 3148 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3149 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3150 | * Stuff for reading the 'tasks'/'procs' files. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3151 | * |
| 3152 | * Reading this file can return large amounts of data if a cgroup has |
| 3153 | * *lots* of attached tasks. So it may need several calls to read(), |
| 3154 | * but we cannot guarantee that the information we produce is correct |
| 3155 | * unless we produce it entirely atomically. |
| 3156 | * |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3157 | */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3158 | |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3159 | /* which pidlist file are we talking about? */ |
| 3160 | enum cgroup_filetype { |
| 3161 | CGROUP_FILE_PROCS, |
| 3162 | CGROUP_FILE_TASKS, |
| 3163 | }; |
| 3164 | |
| 3165 | /* |
| 3166 | * A pidlist is a list of pids that virtually represents the contents of one |
| 3167 | * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists, |
| 3168 | * a pair (one each for procs, tasks) for each pid namespace that's relevant |
| 3169 | * to the cgroup. |
| 3170 | */ |
| 3171 | struct cgroup_pidlist { |
| 3172 | /* |
| 3173 | * used to find which pidlist is wanted. doesn't change as long as |
| 3174 | * this particular list stays in the list. |
| 3175 | */ |
| 3176 | struct { enum cgroup_filetype type; struct pid_namespace *ns; } key; |
| 3177 | /* array of xids */ |
| 3178 | pid_t *list; |
| 3179 | /* how many elements the above list has */ |
| 3180 | int length; |
| 3181 | /* how many files are using the current array */ |
| 3182 | int use_count; |
| 3183 | /* each of these stored in a list by its cgroup */ |
| 3184 | struct list_head links; |
| 3185 | /* pointer to the cgroup we belong to, for list removal purposes */ |
| 3186 | struct cgroup *owner; |
| 3187 | /* protects the other fields */ |
| 3188 | struct rw_semaphore mutex; |
| 3189 | }; |
| 3190 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3191 | /* |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3192 | * The following two functions "fix" the issue where there are more pids |
| 3193 | * than kmalloc will give memory for; in such cases, we use vmalloc/vfree. |
| 3194 | * TODO: replace with a kernel-wide solution to this problem |
| 3195 | */ |
| 3196 | #define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2)) |
| 3197 | static void *pidlist_allocate(int count) |
| 3198 | { |
| 3199 | if (PIDLIST_TOO_LARGE(count)) |
| 3200 | return vmalloc(count * sizeof(pid_t)); |
| 3201 | else |
| 3202 | return kmalloc(count * sizeof(pid_t), GFP_KERNEL); |
| 3203 | } |
| 3204 | static void pidlist_free(void *p) |
| 3205 | { |
| 3206 | if (is_vmalloc_addr(p)) |
| 3207 | vfree(p); |
| 3208 | else |
| 3209 | kfree(p); |
| 3210 | } |
| 3211 | static void *pidlist_resize(void *p, int newcount) |
| 3212 | { |
| 3213 | void *newlist; |
| 3214 | /* note: if new alloc fails, old p will still be valid either way */ |
| 3215 | if (is_vmalloc_addr(p)) { |
| 3216 | newlist = vmalloc(newcount * sizeof(pid_t)); |
| 3217 | if (!newlist) |
| 3218 | return NULL; |
| 3219 | memcpy(newlist, p, newcount * sizeof(pid_t)); |
| 3220 | vfree(p); |
| 3221 | } else { |
| 3222 | newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL); |
| 3223 | } |
| 3224 | return newlist; |
| 3225 | } |
| 3226 | |
| 3227 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3228 | * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries |
| 3229 | * If the new stripped list is sufficiently smaller and there's enough memory |
| 3230 | * to allocate a new buffer, will let go of the unneeded memory. Returns the |
| 3231 | * number of unique elements. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3232 | */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3233 | /* is the size difference enough that we should re-allocate the array? */ |
| 3234 | #define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new)) |
| 3235 | static int pidlist_uniq(pid_t **p, int length) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3236 | { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3237 | int src, dest = 1; |
| 3238 | pid_t *list = *p; |
| 3239 | pid_t *newlist; |
| 3240 | |
| 3241 | /* |
| 3242 | * we presume the 0th element is unique, so i starts at 1. trivial |
| 3243 | * edge cases first; no work needs to be done for either |
| 3244 | */ |
| 3245 | if (length == 0 || length == 1) |
| 3246 | return length; |
| 3247 | /* src and dest walk down the list; dest counts unique elements */ |
| 3248 | for (src = 1; src < length; src++) { |
| 3249 | /* find next unique element */ |
| 3250 | while (list[src] == list[src-1]) { |
| 3251 | src++; |
| 3252 | if (src == length) |
| 3253 | goto after; |
| 3254 | } |
| 3255 | /* dest always points to where the next unique element goes */ |
| 3256 | list[dest] = list[src]; |
| 3257 | dest++; |
| 3258 | } |
| 3259 | after: |
| 3260 | /* |
| 3261 | * if the length difference is large enough, we want to allocate a |
| 3262 | * smaller buffer to save memory. if this fails due to out of memory, |
| 3263 | * we'll just stay with what we've got. |
| 3264 | */ |
| 3265 | if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) { |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3266 | newlist = pidlist_resize(list, dest); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3267 | if (newlist) |
| 3268 | *p = newlist; |
| 3269 | } |
| 3270 | return dest; |
| 3271 | } |
| 3272 | |
| 3273 | static int cmppid(const void *a, const void *b) |
| 3274 | { |
| 3275 | return *(pid_t *)a - *(pid_t *)b; |
| 3276 | } |
| 3277 | |
| 3278 | /* |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3279 | * find the appropriate pidlist for our purpose (given procs vs tasks) |
| 3280 | * returns with the lock on that pidlist already held, and takes care |
| 3281 | * of the use count, or returns NULL with no locks held if we're out of |
| 3282 | * memory. |
| 3283 | */ |
| 3284 | static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp, |
| 3285 | enum cgroup_filetype type) |
| 3286 | { |
| 3287 | struct cgroup_pidlist *l; |
| 3288 | /* don't need task_nsproxy() if we're looking at ourself */ |
Li Zefan | b70cc5f | 2010-03-10 15:22:12 -0800 | [diff] [blame] | 3289 | struct pid_namespace *ns = current->nsproxy->pid_ns; |
| 3290 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3291 | /* |
| 3292 | * We can't drop the pidlist_mutex before taking the l->mutex in case |
| 3293 | * the last ref-holder is trying to remove l from the list at the same |
| 3294 | * time. Holding the pidlist_mutex precludes somebody taking whichever |
| 3295 | * list we find out from under us - compare release_pid_array(). |
| 3296 | */ |
| 3297 | mutex_lock(&cgrp->pidlist_mutex); |
| 3298 | list_for_each_entry(l, &cgrp->pidlists, links) { |
| 3299 | if (l->key.type == type && l->key.ns == ns) { |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3300 | /* make sure l doesn't vanish out from under us */ |
| 3301 | down_write(&l->mutex); |
| 3302 | mutex_unlock(&cgrp->pidlist_mutex); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3303 | return l; |
| 3304 | } |
| 3305 | } |
| 3306 | /* entry not found; create a new one */ |
| 3307 | l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL); |
| 3308 | if (!l) { |
| 3309 | mutex_unlock(&cgrp->pidlist_mutex); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3310 | return l; |
| 3311 | } |
| 3312 | init_rwsem(&l->mutex); |
| 3313 | down_write(&l->mutex); |
| 3314 | l->key.type = type; |
Li Zefan | b70cc5f | 2010-03-10 15:22:12 -0800 | [diff] [blame] | 3315 | l->key.ns = get_pid_ns(ns); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3316 | l->use_count = 0; /* don't increment here */ |
| 3317 | l->list = NULL; |
| 3318 | l->owner = cgrp; |
| 3319 | list_add(&l->links, &cgrp->pidlists); |
| 3320 | mutex_unlock(&cgrp->pidlist_mutex); |
| 3321 | return l; |
| 3322 | } |
| 3323 | |
| 3324 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3325 | * Load a cgroup's pidarray with either procs' tgids or tasks' pids |
| 3326 | */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3327 | static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type, |
| 3328 | struct cgroup_pidlist **lp) |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3329 | { |
| 3330 | pid_t *array; |
| 3331 | int length; |
| 3332 | int pid, n = 0; /* used for populating the array */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3333 | struct cgroup_iter it; |
| 3334 | struct task_struct *tsk; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3335 | struct cgroup_pidlist *l; |
| 3336 | |
| 3337 | /* |
| 3338 | * If cgroup gets more users after we read count, we won't have |
| 3339 | * enough space - tough. This race is indistinguishable to the |
| 3340 | * caller from the case that the additional cgroup users didn't |
| 3341 | * show up until sometime later on. |
| 3342 | */ |
| 3343 | length = cgroup_task_count(cgrp); |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3344 | array = pidlist_allocate(length); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3345 | if (!array) |
| 3346 | return -ENOMEM; |
| 3347 | /* now, populate the array */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3348 | cgroup_iter_start(cgrp, &it); |
| 3349 | while ((tsk = cgroup_iter_next(cgrp, &it))) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3350 | if (unlikely(n == length)) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3351 | break; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3352 | /* get tgid or pid for procs or tasks file respectively */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3353 | if (type == CGROUP_FILE_PROCS) |
| 3354 | pid = task_tgid_vnr(tsk); |
| 3355 | else |
| 3356 | pid = task_pid_vnr(tsk); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3357 | if (pid > 0) /* make sure to only use valid results */ |
| 3358 | array[n++] = pid; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3359 | } |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3360 | cgroup_iter_end(cgrp, &it); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3361 | length = n; |
| 3362 | /* now sort & (if procs) strip out duplicates */ |
| 3363 | sort(array, length, sizeof(pid_t), cmppid, NULL); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3364 | if (type == CGROUP_FILE_PROCS) |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3365 | length = pidlist_uniq(&array, length); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3366 | l = cgroup_pidlist_find(cgrp, type); |
| 3367 | if (!l) { |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3368 | pidlist_free(array); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3369 | return -ENOMEM; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3370 | } |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3371 | /* store array, freeing old if necessary - lock already held */ |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3372 | pidlist_free(l->list); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3373 | l->list = array; |
| 3374 | l->length = length; |
| 3375 | l->use_count++; |
| 3376 | up_write(&l->mutex); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3377 | *lp = l; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3378 | return 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3379 | } |
| 3380 | |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3381 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3382 | * cgroupstats_build - build and fill cgroupstats |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3383 | * @stats: cgroupstats to fill information into |
| 3384 | * @dentry: A dentry entry belonging to the cgroup for which stats have |
| 3385 | * been requested. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3386 | * |
| 3387 | * Build and fill cgroupstats so that taskstats can export it to user |
| 3388 | * space. |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3389 | */ |
| 3390 | int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry) |
| 3391 | { |
| 3392 | int ret = -EINVAL; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3393 | struct cgroup *cgrp; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3394 | struct cgroup_iter it; |
| 3395 | struct task_struct *tsk; |
Li Zefan | 33d283b | 2008-11-19 15:36:48 -0800 | [diff] [blame] | 3396 | |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3397 | /* |
Li Zefan | 33d283b | 2008-11-19 15:36:48 -0800 | [diff] [blame] | 3398 | * Validate dentry by checking the superblock operations, |
| 3399 | * and make sure it's a directory. |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3400 | */ |
Li Zefan | 33d283b | 2008-11-19 15:36:48 -0800 | [diff] [blame] | 3401 | if (dentry->d_sb->s_op != &cgroup_ops || |
| 3402 | !S_ISDIR(dentry->d_inode->i_mode)) |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3403 | goto err; |
| 3404 | |
| 3405 | ret = 0; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3406 | cgrp = dentry->d_fsdata; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3407 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3408 | cgroup_iter_start(cgrp, &it); |
| 3409 | while ((tsk = cgroup_iter_next(cgrp, &it))) { |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3410 | switch (tsk->state) { |
| 3411 | case TASK_RUNNING: |
| 3412 | stats->nr_running++; |
| 3413 | break; |
| 3414 | case TASK_INTERRUPTIBLE: |
| 3415 | stats->nr_sleeping++; |
| 3416 | break; |
| 3417 | case TASK_UNINTERRUPTIBLE: |
| 3418 | stats->nr_uninterruptible++; |
| 3419 | break; |
| 3420 | case TASK_STOPPED: |
| 3421 | stats->nr_stopped++; |
| 3422 | break; |
| 3423 | default: |
| 3424 | if (delayacct_is_task_waiting_on_io(tsk)) |
| 3425 | stats->nr_io_wait++; |
| 3426 | break; |
| 3427 | } |
| 3428 | } |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3429 | cgroup_iter_end(cgrp, &it); |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3430 | |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3431 | err: |
| 3432 | return ret; |
| 3433 | } |
| 3434 | |
Paul Menage | 8f3ff20 | 2009-09-23 15:56:25 -0700 | [diff] [blame] | 3435 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3436 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3437 | * 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] | 3438 | * 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] | 3439 | * in the cgroup->l->list array. |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3440 | */ |
| 3441 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3442 | static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3443 | { |
| 3444 | /* |
| 3445 | * Initially we receive a position value that corresponds to |
| 3446 | * one more than the last pid shown (or 0 on the first call or |
| 3447 | * after a seek to the start). Use a binary-search to find the |
| 3448 | * next pid to display, if any |
| 3449 | */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3450 | struct cgroup_pidlist *l = s->private; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3451 | int index = 0, pid = *pos; |
| 3452 | int *iter; |
| 3453 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3454 | down_read(&l->mutex); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3455 | if (pid) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3456 | int end = l->length; |
Stephen Rothwell | 2077776 | 2008-10-21 16:11:20 +1100 | [diff] [blame] | 3457 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3458 | while (index < end) { |
| 3459 | int mid = (index + end) / 2; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3460 | if (l->list[mid] == pid) { |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3461 | index = mid; |
| 3462 | break; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3463 | } else if (l->list[mid] <= pid) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3464 | index = mid + 1; |
| 3465 | else |
| 3466 | end = mid; |
| 3467 | } |
| 3468 | } |
| 3469 | /* If we're off the end of the array, we're done */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3470 | if (index >= l->length) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3471 | return NULL; |
| 3472 | /* Update the abstract position to be the actual pid that we found */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3473 | iter = l->list + index; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3474 | *pos = *iter; |
| 3475 | return iter; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3476 | } |
| 3477 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3478 | static void cgroup_pidlist_stop(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3479 | { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3480 | struct cgroup_pidlist *l = s->private; |
| 3481 | up_read(&l->mutex); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3482 | } |
| 3483 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3484 | 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] | 3485 | { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3486 | struct cgroup_pidlist *l = s->private; |
| 3487 | pid_t *p = v; |
| 3488 | pid_t *end = l->list + l->length; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3489 | /* |
| 3490 | * Advance to the next pid in the array. If this goes off the |
| 3491 | * end, we're done |
| 3492 | */ |
| 3493 | p++; |
| 3494 | if (p >= end) { |
| 3495 | return NULL; |
| 3496 | } else { |
| 3497 | *pos = *p; |
| 3498 | return p; |
| 3499 | } |
| 3500 | } |
| 3501 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3502 | static int cgroup_pidlist_show(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3503 | { |
| 3504 | return seq_printf(s, "%d\n", *(int *)v); |
| 3505 | } |
| 3506 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3507 | /* |
| 3508 | * seq_operations functions for iterating on pidlists through seq_file - |
| 3509 | * independent of whether it's tasks or procs |
| 3510 | */ |
| 3511 | static const struct seq_operations cgroup_pidlist_seq_operations = { |
| 3512 | .start = cgroup_pidlist_start, |
| 3513 | .stop = cgroup_pidlist_stop, |
| 3514 | .next = cgroup_pidlist_next, |
| 3515 | .show = cgroup_pidlist_show, |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3516 | }; |
| 3517 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3518 | static void cgroup_release_pid_array(struct cgroup_pidlist *l) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3519 | { |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3520 | /* |
| 3521 | * the case where we're the last user of this particular pidlist will |
| 3522 | * have us remove it from the cgroup's list, which entails taking the |
| 3523 | * mutex. since in pidlist_find the pidlist->lock depends on cgroup-> |
| 3524 | * pidlist_mutex, we have to take pidlist_mutex first. |
| 3525 | */ |
| 3526 | mutex_lock(&l->owner->pidlist_mutex); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3527 | down_write(&l->mutex); |
| 3528 | BUG_ON(!l->use_count); |
| 3529 | if (!--l->use_count) { |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3530 | /* we're the last user if refcount is 0; remove and free */ |
| 3531 | list_del(&l->links); |
| 3532 | mutex_unlock(&l->owner->pidlist_mutex); |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3533 | pidlist_free(l->list); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3534 | put_pid_ns(l->key.ns); |
| 3535 | up_write(&l->mutex); |
| 3536 | kfree(l); |
| 3537 | return; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3538 | } |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3539 | mutex_unlock(&l->owner->pidlist_mutex); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3540 | up_write(&l->mutex); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3541 | } |
| 3542 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3543 | static int cgroup_pidlist_release(struct inode *inode, struct file *file) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3544 | { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3545 | struct cgroup_pidlist *l; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3546 | if (!(file->f_mode & FMODE_READ)) |
| 3547 | return 0; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3548 | /* |
| 3549 | * the seq_file will only be initialized if the file was opened for |
| 3550 | * reading; hence we check if it's not null only in that case. |
| 3551 | */ |
| 3552 | l = ((struct seq_file *)file->private_data)->private; |
| 3553 | cgroup_release_pid_array(l); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3554 | return seq_release(inode, file); |
| 3555 | } |
| 3556 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3557 | static const struct file_operations cgroup_pidlist_operations = { |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3558 | .read = seq_read, |
| 3559 | .llseek = seq_lseek, |
| 3560 | .write = cgroup_file_write, |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3561 | .release = cgroup_pidlist_release, |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3562 | }; |
| 3563 | |
| 3564 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3565 | * The following functions handle opens on a file that displays a pidlist |
| 3566 | * (tasks or procs). Prepare an array of the process/thread IDs of whoever's |
| 3567 | * in the cgroup. |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3568 | */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3569 | /* helper function for the two below it */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3570 | static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3571 | { |
| 3572 | struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3573 | struct cgroup_pidlist *l; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3574 | int retval; |
| 3575 | |
| 3576 | /* Nothing to do for write-only files */ |
| 3577 | if (!(file->f_mode & FMODE_READ)) |
| 3578 | return 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3579 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3580 | /* have the array populated */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3581 | retval = pidlist_array_load(cgrp, type, &l); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3582 | if (retval) |
| 3583 | return retval; |
| 3584 | /* configure file information */ |
| 3585 | file->f_op = &cgroup_pidlist_operations; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3586 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3587 | retval = seq_open(file, &cgroup_pidlist_seq_operations); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3588 | if (retval) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3589 | cgroup_release_pid_array(l); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3590 | return retval; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3591 | } |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3592 | ((struct seq_file *)file->private_data)->private = l; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3593 | return 0; |
| 3594 | } |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3595 | static int cgroup_tasks_open(struct inode *unused, struct file *file) |
| 3596 | { |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3597 | return cgroup_pidlist_open(file, CGROUP_FILE_TASKS); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3598 | } |
| 3599 | static int cgroup_procs_open(struct inode *unused, struct file *file) |
| 3600 | { |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3601 | return cgroup_pidlist_open(file, CGROUP_FILE_PROCS); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3602 | } |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3603 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3604 | static u64 cgroup_read_notify_on_release(struct cgroup *cgrp, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3605 | struct cftype *cft) |
| 3606 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3607 | return notify_on_release(cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3608 | } |
| 3609 | |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 3610 | static int cgroup_write_notify_on_release(struct cgroup *cgrp, |
| 3611 | struct cftype *cft, |
| 3612 | u64 val) |
| 3613 | { |
| 3614 | clear_bit(CGRP_RELEASABLE, &cgrp->flags); |
| 3615 | if (val) |
| 3616 | set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
| 3617 | else |
| 3618 | clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
| 3619 | return 0; |
| 3620 | } |
| 3621 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3622 | /* |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 3623 | * Unregister event and free resources. |
| 3624 | * |
| 3625 | * Gets called from workqueue. |
| 3626 | */ |
| 3627 | static void cgroup_event_remove(struct work_struct *work) |
| 3628 | { |
| 3629 | struct cgroup_event *event = container_of(work, struct cgroup_event, |
| 3630 | remove); |
| 3631 | struct cgroup *cgrp = event->cgrp; |
| 3632 | |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 3633 | event->cft->unregister_event(cgrp, event->cft, event->eventfd); |
| 3634 | |
| 3635 | eventfd_ctx_put(event->eventfd); |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 3636 | kfree(event); |
Kirill A. Shutemov | a0a4db5 | 2010-03-10 15:22:34 -0800 | [diff] [blame] | 3637 | dput(cgrp->dentry); |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 3638 | } |
| 3639 | |
| 3640 | /* |
| 3641 | * Gets called on POLLHUP on eventfd when user closes it. |
| 3642 | * |
| 3643 | * Called with wqh->lock held and interrupts disabled. |
| 3644 | */ |
| 3645 | static int cgroup_event_wake(wait_queue_t *wait, unsigned mode, |
| 3646 | int sync, void *key) |
| 3647 | { |
| 3648 | struct cgroup_event *event = container_of(wait, |
| 3649 | struct cgroup_event, wait); |
| 3650 | struct cgroup *cgrp = event->cgrp; |
| 3651 | unsigned long flags = (unsigned long)key; |
| 3652 | |
| 3653 | if (flags & POLLHUP) { |
Changli Gao | a93d2f17 | 2010-05-07 14:33:26 +0800 | [diff] [blame] | 3654 | __remove_wait_queue(event->wqh, &event->wait); |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 3655 | spin_lock(&cgrp->event_list_lock); |
| 3656 | list_del(&event->list); |
| 3657 | spin_unlock(&cgrp->event_list_lock); |
| 3658 | /* |
| 3659 | * We are in atomic context, but cgroup_event_remove() may |
| 3660 | * sleep, so we have to call it in workqueue. |
| 3661 | */ |
| 3662 | schedule_work(&event->remove); |
| 3663 | } |
| 3664 | |
| 3665 | return 0; |
| 3666 | } |
| 3667 | |
| 3668 | static void cgroup_event_ptable_queue_proc(struct file *file, |
| 3669 | wait_queue_head_t *wqh, poll_table *pt) |
| 3670 | { |
| 3671 | struct cgroup_event *event = container_of(pt, |
| 3672 | struct cgroup_event, pt); |
| 3673 | |
| 3674 | event->wqh = wqh; |
| 3675 | add_wait_queue(wqh, &event->wait); |
| 3676 | } |
| 3677 | |
| 3678 | /* |
| 3679 | * Parse input and register new cgroup event handler. |
| 3680 | * |
| 3681 | * Input must be in format '<event_fd> <control_fd> <args>'. |
| 3682 | * Interpretation of args is defined by control file implementation. |
| 3683 | */ |
| 3684 | static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft, |
| 3685 | const char *buffer) |
| 3686 | { |
| 3687 | struct cgroup_event *event = NULL; |
| 3688 | unsigned int efd, cfd; |
| 3689 | struct file *efile = NULL; |
| 3690 | struct file *cfile = NULL; |
| 3691 | char *endp; |
| 3692 | int ret; |
| 3693 | |
| 3694 | efd = simple_strtoul(buffer, &endp, 10); |
| 3695 | if (*endp != ' ') |
| 3696 | return -EINVAL; |
| 3697 | buffer = endp + 1; |
| 3698 | |
| 3699 | cfd = simple_strtoul(buffer, &endp, 10); |
| 3700 | if ((*endp != ' ') && (*endp != '\0')) |
| 3701 | return -EINVAL; |
| 3702 | buffer = endp + 1; |
| 3703 | |
| 3704 | event = kzalloc(sizeof(*event), GFP_KERNEL); |
| 3705 | if (!event) |
| 3706 | return -ENOMEM; |
| 3707 | event->cgrp = cgrp; |
| 3708 | INIT_LIST_HEAD(&event->list); |
| 3709 | init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc); |
| 3710 | init_waitqueue_func_entry(&event->wait, cgroup_event_wake); |
| 3711 | INIT_WORK(&event->remove, cgroup_event_remove); |
| 3712 | |
| 3713 | efile = eventfd_fget(efd); |
| 3714 | if (IS_ERR(efile)) { |
| 3715 | ret = PTR_ERR(efile); |
| 3716 | goto fail; |
| 3717 | } |
| 3718 | |
| 3719 | event->eventfd = eventfd_ctx_fileget(efile); |
| 3720 | if (IS_ERR(event->eventfd)) { |
| 3721 | ret = PTR_ERR(event->eventfd); |
| 3722 | goto fail; |
| 3723 | } |
| 3724 | |
| 3725 | cfile = fget(cfd); |
| 3726 | if (!cfile) { |
| 3727 | ret = -EBADF; |
| 3728 | goto fail; |
| 3729 | } |
| 3730 | |
| 3731 | /* the process need read permission on control file */ |
Al Viro | 3bfa784 | 2011-06-19 12:55:10 -0400 | [diff] [blame] | 3732 | /* AV: shouldn't we check that it's been opened for read instead? */ |
| 3733 | ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ); |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 3734 | if (ret < 0) |
| 3735 | goto fail; |
| 3736 | |
| 3737 | event->cft = __file_cft(cfile); |
| 3738 | if (IS_ERR(event->cft)) { |
| 3739 | ret = PTR_ERR(event->cft); |
| 3740 | goto fail; |
| 3741 | } |
| 3742 | |
| 3743 | if (!event->cft->register_event || !event->cft->unregister_event) { |
| 3744 | ret = -EINVAL; |
| 3745 | goto fail; |
| 3746 | } |
| 3747 | |
| 3748 | ret = event->cft->register_event(cgrp, event->cft, |
| 3749 | event->eventfd, buffer); |
| 3750 | if (ret) |
| 3751 | goto fail; |
| 3752 | |
| 3753 | if (efile->f_op->poll(efile, &event->pt) & POLLHUP) { |
| 3754 | event->cft->unregister_event(cgrp, event->cft, event->eventfd); |
| 3755 | ret = 0; |
| 3756 | goto fail; |
| 3757 | } |
| 3758 | |
Kirill A. Shutemov | a0a4db5 | 2010-03-10 15:22:34 -0800 | [diff] [blame] | 3759 | /* |
| 3760 | * Events should be removed after rmdir of cgroup directory, but before |
| 3761 | * destroying subsystem state objects. Let's take reference to cgroup |
| 3762 | * directory dentry to do that. |
| 3763 | */ |
| 3764 | dget(cgrp->dentry); |
| 3765 | |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 3766 | spin_lock(&cgrp->event_list_lock); |
| 3767 | list_add(&event->list, &cgrp->event_list); |
| 3768 | spin_unlock(&cgrp->event_list_lock); |
| 3769 | |
| 3770 | fput(cfile); |
| 3771 | fput(efile); |
| 3772 | |
| 3773 | return 0; |
| 3774 | |
| 3775 | fail: |
| 3776 | if (cfile) |
| 3777 | fput(cfile); |
| 3778 | |
| 3779 | if (event && event->eventfd && !IS_ERR(event->eventfd)) |
| 3780 | eventfd_ctx_put(event->eventfd); |
| 3781 | |
| 3782 | if (!IS_ERR_OR_NULL(efile)) |
| 3783 | fput(efile); |
| 3784 | |
| 3785 | kfree(event); |
| 3786 | |
| 3787 | return ret; |
| 3788 | } |
| 3789 | |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3790 | static u64 cgroup_clone_children_read(struct cgroup *cgrp, |
| 3791 | struct cftype *cft) |
| 3792 | { |
| 3793 | return clone_children(cgrp); |
| 3794 | } |
| 3795 | |
| 3796 | static int cgroup_clone_children_write(struct cgroup *cgrp, |
| 3797 | struct cftype *cft, |
| 3798 | u64 val) |
| 3799 | { |
| 3800 | if (val) |
| 3801 | set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags); |
| 3802 | else |
| 3803 | clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags); |
| 3804 | return 0; |
| 3805 | } |
| 3806 | |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 3807 | /* |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3808 | * for the common functions, 'private' gives the type of file |
| 3809 | */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3810 | /* for hysterical raisins, we can't put this on the older files */ |
| 3811 | #define CGROUP_FILE_GENERIC_PREFIX "cgroup." |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3812 | static struct cftype files[] = { |
| 3813 | { |
| 3814 | .name = "tasks", |
| 3815 | .open = cgroup_tasks_open, |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 3816 | .write_u64 = cgroup_tasks_write, |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3817 | .release = cgroup_pidlist_release, |
Li Zefan | 099fca3 | 2009-04-02 16:57:29 -0700 | [diff] [blame] | 3818 | .mode = S_IRUGO | S_IWUSR, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3819 | }, |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3820 | { |
| 3821 | .name = CGROUP_FILE_GENERIC_PREFIX "procs", |
| 3822 | .open = cgroup_procs_open, |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 3823 | .write_u64 = cgroup_procs_write, |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3824 | .release = cgroup_pidlist_release, |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 3825 | .mode = S_IRUGO | S_IWUSR, |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3826 | }, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3827 | { |
| 3828 | .name = "notify_on_release", |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 3829 | .read_u64 = cgroup_read_notify_on_release, |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 3830 | .write_u64 = cgroup_write_notify_on_release, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 3831 | }, |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 3832 | { |
| 3833 | .name = CGROUP_FILE_GENERIC_PREFIX "event_control", |
| 3834 | .write_string = cgroup_write_event_control, |
| 3835 | .mode = S_IWUGO, |
| 3836 | }, |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3837 | { |
| 3838 | .name = "cgroup.clone_children", |
| 3839 | .read_u64 = cgroup_clone_children_read, |
| 3840 | .write_u64 = cgroup_clone_children_write, |
| 3841 | }, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3842 | { |
| 3843 | .name = "release_agent", |
| 3844 | .flags = CFTYPE_ONLY_ON_ROOT, |
| 3845 | .read_seq_string = cgroup_release_agent_show, |
| 3846 | .write_string = cgroup_release_agent_write, |
| 3847 | .max_write_len = PATH_MAX, |
| 3848 | }, |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3849 | { } /* terminate */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3850 | }; |
| 3851 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3852 | static int cgroup_populate_dir(struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3853 | { |
| 3854 | int err; |
| 3855 | struct cgroup_subsys *ss; |
| 3856 | |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3857 | err = cgroup_addrm_files(cgrp, NULL, files, true); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3858 | if (err < 0) |
| 3859 | return err; |
| 3860 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3861 | /* process cftsets of each subsystem */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3862 | for_each_subsys(cgrp->root, ss) { |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3863 | struct cftype_set *set; |
| 3864 | |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3865 | list_for_each_entry(set, &ss->cftsets, node) |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3866 | cgroup_addrm_files(cgrp, ss, set->cfts, true); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3867 | } |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3868 | |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 3869 | /* This cgroup is ready now */ |
| 3870 | for_each_subsys(cgrp->root, ss) { |
| 3871 | struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id]; |
| 3872 | /* |
| 3873 | * Update id->css pointer and make this css visible from |
| 3874 | * CSS ID functions. This pointer will be dereferened |
| 3875 | * from RCU-read-side without locks. |
| 3876 | */ |
| 3877 | if (css->id) |
| 3878 | rcu_assign_pointer(css->id->css, css); |
| 3879 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3880 | |
| 3881 | return 0; |
| 3882 | } |
| 3883 | |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3884 | static void css_dput_fn(struct work_struct *work) |
| 3885 | { |
| 3886 | struct cgroup_subsys_state *css = |
| 3887 | container_of(work, struct cgroup_subsys_state, dput_work); |
| 3888 | |
| 3889 | dput(css->cgroup->dentry); |
| 3890 | } |
| 3891 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3892 | static void init_cgroup_css(struct cgroup_subsys_state *css, |
| 3893 | struct cgroup_subsys *ss, |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3894 | struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3895 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3896 | css->cgroup = cgrp; |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 3897 | atomic_set(&css->refcnt, 1); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3898 | css->flags = 0; |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 3899 | css->id = NULL; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3900 | if (cgrp == dummytop) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3901 | set_bit(CSS_ROOT, &css->flags); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3902 | BUG_ON(cgrp->subsys[ss->subsys_id]); |
| 3903 | cgrp->subsys[ss->subsys_id] = css; |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3904 | |
| 3905 | /* |
| 3906 | * If !clear_css_refs, css holds an extra ref to @cgrp->dentry |
| 3907 | * which is put on the last css_put(). dput() requires process |
| 3908 | * context, which css_put() may be called without. @css->dput_work |
| 3909 | * will be used to invoke dput() asynchronously from css_put(). |
| 3910 | */ |
| 3911 | INIT_WORK(&css->dput_work, css_dput_fn); |
| 3912 | if (ss->__DEPRECATED_clear_css_refs) |
| 3913 | set_bit(CSS_CLEAR_CSS_REFS, &css->flags); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3914 | } |
| 3915 | |
| 3916 | /* |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3917 | * cgroup_create - create a cgroup |
| 3918 | * @parent: cgroup that will be parent of the new cgroup |
| 3919 | * @dentry: dentry of the new cgroup |
| 3920 | * @mode: mode to set on new inode |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3921 | * |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3922 | * Must be called with the mutex on the parent inode held |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3923 | */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3924 | static long cgroup_create(struct cgroup *parent, struct dentry *dentry, |
Al Viro | a5e7ed3 | 2011-07-26 01:55:55 -0400 | [diff] [blame] | 3925 | umode_t mode) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3926 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3927 | struct cgroup *cgrp; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3928 | struct cgroupfs_root *root = parent->root; |
| 3929 | int err = 0; |
| 3930 | struct cgroup_subsys *ss; |
| 3931 | struct super_block *sb = root->sb; |
| 3932 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3933 | cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL); |
| 3934 | if (!cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3935 | return -ENOMEM; |
| 3936 | |
| 3937 | /* Grab a reference on the superblock so the hierarchy doesn't |
| 3938 | * get deleted on unmount if there are child cgroups. This |
| 3939 | * can be done outside cgroup_mutex, since the sb can't |
| 3940 | * disappear while someone has an open control file on the |
| 3941 | * fs */ |
| 3942 | atomic_inc(&sb->s_active); |
| 3943 | |
| 3944 | mutex_lock(&cgroup_mutex); |
| 3945 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 3946 | init_cgroup_housekeeping(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3947 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3948 | cgrp->parent = parent; |
| 3949 | cgrp->root = parent->root; |
| 3950 | cgrp->top_cgroup = parent->top_cgroup; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3951 | |
Li Zefan | b6abdb0 | 2008-03-04 14:28:19 -0800 | [diff] [blame] | 3952 | if (notify_on_release(parent)) |
| 3953 | set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
| 3954 | |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3955 | if (clone_children(parent)) |
| 3956 | set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags); |
| 3957 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3958 | for_each_subsys(root, ss) { |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 3959 | struct cgroup_subsys_state *css = ss->create(cgrp); |
Li Zefan | 4528fd0 | 2010-02-02 13:44:10 -0800 | [diff] [blame] | 3960 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3961 | if (IS_ERR(css)) { |
| 3962 | err = PTR_ERR(css); |
| 3963 | goto err_destroy; |
| 3964 | } |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3965 | init_cgroup_css(css, ss, cgrp); |
Li Zefan | 4528fd0 | 2010-02-02 13:44:10 -0800 | [diff] [blame] | 3966 | if (ss->use_id) { |
| 3967 | err = alloc_css_id(ss, parent, cgrp); |
| 3968 | if (err) |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 3969 | goto err_destroy; |
Li Zefan | 4528fd0 | 2010-02-02 13:44:10 -0800 | [diff] [blame] | 3970 | } |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 3971 | /* At error, ->destroy() callback has to free assigned ID. */ |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 3972 | if (clone_children(parent) && ss->post_clone) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 3973 | ss->post_clone(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3974 | } |
| 3975 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3976 | list_add(&cgrp->sibling, &cgrp->parent->children); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3977 | root->number_of_cgroups++; |
| 3978 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3979 | err = cgroup_create_dir(cgrp, dentry, mode); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3980 | if (err < 0) |
| 3981 | goto err_remove; |
| 3982 | |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3983 | /* If !clear_css_refs, each css holds a ref to the cgroup's dentry */ |
| 3984 | for_each_subsys(root, ss) |
| 3985 | if (!ss->__DEPRECATED_clear_css_refs) |
| 3986 | dget(dentry); |
| 3987 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3988 | /* The cgroup directory was pre-locked for us */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3989 | BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3990 | |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 3991 | list_add_tail(&cgrp->allcg_node, &root->allcg_list); |
| 3992 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3993 | err = cgroup_populate_dir(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3994 | /* If err < 0, we have a half-filled directory - oh well ;) */ |
| 3995 | |
| 3996 | mutex_unlock(&cgroup_mutex); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3997 | mutex_unlock(&cgrp->dentry->d_inode->i_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3998 | |
| 3999 | return 0; |
| 4000 | |
| 4001 | err_remove: |
| 4002 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4003 | list_del(&cgrp->sibling); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4004 | root->number_of_cgroups--; |
| 4005 | |
| 4006 | err_destroy: |
| 4007 | |
| 4008 | for_each_subsys(root, ss) { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4009 | if (cgrp->subsys[ss->subsys_id]) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 4010 | ss->destroy(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4011 | } |
| 4012 | |
| 4013 | mutex_unlock(&cgroup_mutex); |
| 4014 | |
| 4015 | /* Release the reference count that we took on the superblock */ |
| 4016 | deactivate_super(sb); |
| 4017 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4018 | kfree(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4019 | return err; |
| 4020 | } |
| 4021 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 4022 | static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4023 | { |
| 4024 | struct cgroup *c_parent = dentry->d_parent->d_fsdata; |
| 4025 | |
| 4026 | /* the vfs holds inode->i_mutex already */ |
| 4027 | return cgroup_create(c_parent, dentry, mode | S_IFDIR); |
| 4028 | } |
| 4029 | |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4030 | /* |
| 4031 | * Check the reference count on each subsystem. Since we already |
| 4032 | * established that there are no tasks in the cgroup, if the css refcount |
| 4033 | * is also 1, then there should be no outstanding references, so the |
| 4034 | * subsystem is safe to destroy. We scan across all subsystems rather than |
| 4035 | * using the per-hierarchy linked list of mounted subsystems since we can |
| 4036 | * be called via check_for_release() with no synchronization other than |
| 4037 | * RCU, and the subsystem linked list isn't RCU-safe. |
| 4038 | */ |
Li Zefan | 55b6fd0 | 2008-07-29 22:33:20 -0700 | [diff] [blame] | 4039 | static int cgroup_has_css_refs(struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4040 | { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4041 | int i; |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4042 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 4043 | /* |
| 4044 | * We won't need to lock the subsys array, because the subsystems |
| 4045 | * we're concerned about aren't going anywhere since our cgroup root |
| 4046 | * has a reference on them. |
| 4047 | */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4048 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { |
| 4049 | struct cgroup_subsys *ss = subsys[i]; |
| 4050 | struct cgroup_subsys_state *css; |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4051 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 4052 | /* Skip subsystems not present or not in this hierarchy */ |
| 4053 | if (ss == NULL || ss->root != cgrp->root) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4054 | continue; |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4055 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4056 | css = cgrp->subsys[ss->subsys_id]; |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4057 | /* |
| 4058 | * When called from check_for_release() it's possible |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4059 | * that by this point the cgroup has been removed |
| 4060 | * and the css deleted. But a false-positive doesn't |
| 4061 | * matter, since it can only happen if the cgroup |
| 4062 | * has been deleted and hence no longer needs the |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4063 | * release agent to be called anyway. |
| 4064 | */ |
| 4065 | if (css && css_refcnt(css) > 1) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4066 | return 1; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4067 | } |
| 4068 | return 0; |
| 4069 | } |
| 4070 | |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4071 | /* |
| 4072 | * Atomically mark all (or else none) of the cgroup's CSS objects as |
| 4073 | * CSS_REMOVED. Return true on success, or false if the cgroup has |
| 4074 | * busy subsystems. Call with cgroup_mutex held |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4075 | * |
| 4076 | * Depending on whether a subsys has __DEPRECATED_clear_css_refs set or |
| 4077 | * not, cgroup removal behaves differently. |
| 4078 | * |
| 4079 | * If clear is set, css refcnt for the subsystem should be zero before |
| 4080 | * cgroup removal can be committed. This is implemented by |
| 4081 | * CGRP_WAIT_ON_RMDIR and retry logic around ->pre_destroy(), which may be |
| 4082 | * called multiple times until all css refcnts reach zero and is allowed to |
| 4083 | * veto removal on any invocation. This behavior is deprecated and will be |
| 4084 | * removed as soon as the existing user (memcg) is updated. |
| 4085 | * |
| 4086 | * If clear is not set, each css holds an extra reference to the cgroup's |
| 4087 | * dentry and cgroup removal proceeds regardless of css refs. |
| 4088 | * ->pre_destroy() will be called at least once and is not allowed to fail. |
| 4089 | * On the last put of each css, whenever that may be, the extra dentry ref |
| 4090 | * is put so that dentry destruction happens only after all css's are |
| 4091 | * released. |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4092 | */ |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4093 | static int cgroup_clear_css_refs(struct cgroup *cgrp) |
| 4094 | { |
| 4095 | struct cgroup_subsys *ss; |
| 4096 | unsigned long flags; |
| 4097 | bool failed = false; |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4098 | |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4099 | local_irq_save(flags); |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4100 | |
| 4101 | /* |
| 4102 | * Block new css_tryget() by deactivating refcnt. If all refcnts |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4103 | * for subsystems w/ clear_css_refs set were 1 at the moment of |
| 4104 | * deactivation, we succeeded. |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4105 | */ |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4106 | for_each_subsys(cgrp->root, ss) { |
| 4107 | struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id]; |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4108 | |
| 4109 | WARN_ON(atomic_read(&css->refcnt) < 0); |
| 4110 | atomic_add(CSS_DEACT_BIAS, &css->refcnt); |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4111 | |
| 4112 | if (ss->__DEPRECATED_clear_css_refs) |
| 4113 | failed |= css_refcnt(css) != 1; |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4114 | } |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4115 | |
| 4116 | /* |
| 4117 | * If succeeded, set REMOVED and put all the base refs; otherwise, |
| 4118 | * restore refcnts to positive values. Either way, all in-progress |
| 4119 | * css_tryget() will be released. |
| 4120 | */ |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4121 | for_each_subsys(cgrp->root, ss) { |
| 4122 | struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id]; |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4123 | |
| 4124 | if (!failed) { |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4125 | set_bit(CSS_REMOVED, &css->flags); |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4126 | css_put(css); |
| 4127 | } else { |
| 4128 | atomic_sub(CSS_DEACT_BIAS, &css->refcnt); |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4129 | } |
| 4130 | } |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4131 | |
Paul Menage | e7c5ec9 | 2009-01-07 18:08:38 -0800 | [diff] [blame] | 4132 | local_irq_restore(flags); |
| 4133 | return !failed; |
| 4134 | } |
| 4135 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4136 | static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry) |
| 4137 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4138 | struct cgroup *cgrp = dentry->d_fsdata; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4139 | struct dentry *d; |
| 4140 | struct cgroup *parent; |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4141 | DEFINE_WAIT(wait); |
Kirill A. Shutemov | 4ab7868 | 2010-03-10 15:22:34 -0800 | [diff] [blame] | 4142 | struct cgroup_event *event, *tmp; |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4143 | int ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4144 | |
| 4145 | /* the vfs holds both inode->i_mutex already */ |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4146 | again: |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4147 | mutex_lock(&cgroup_mutex); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4148 | if (atomic_read(&cgrp->count) != 0) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4149 | mutex_unlock(&cgroup_mutex); |
| 4150 | return -EBUSY; |
| 4151 | } |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4152 | if (!list_empty(&cgrp->children)) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4153 | mutex_unlock(&cgroup_mutex); |
| 4154 | return -EBUSY; |
| 4155 | } |
KAMEZAWA Hiroyuki | 3fa59df | 2008-11-19 15:36:34 -0800 | [diff] [blame] | 4156 | mutex_unlock(&cgroup_mutex); |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4157 | |
KAMEZAWA Hiroyuki | 4fca88c | 2008-02-07 00:14:27 -0800 | [diff] [blame] | 4158 | /* |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 4159 | * In general, subsystem has no css->refcnt after pre_destroy(). But |
| 4160 | * in racy cases, subsystem may have to get css->refcnt after |
| 4161 | * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes |
| 4162 | * make rmdir return -EBUSY too often. To avoid that, we use waitqueue |
| 4163 | * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir |
| 4164 | * and subsystem's reference count handling. Please see css_get/put |
| 4165 | * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation. |
| 4166 | */ |
| 4167 | set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags); |
| 4168 | |
| 4169 | /* |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4170 | * Call pre_destroy handlers of subsys. Notify subsystems |
| 4171 | * that rmdir() request comes. |
KAMEZAWA Hiroyuki | 4fca88c | 2008-02-07 00:14:27 -0800 | [diff] [blame] | 4172 | */ |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4173 | ret = cgroup_call_pre_destroy(cgrp); |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 4174 | if (ret) { |
| 4175 | clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags); |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4176 | return ret; |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 4177 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4178 | |
KAMEZAWA Hiroyuki | 3fa59df | 2008-11-19 15:36:34 -0800 | [diff] [blame] | 4179 | mutex_lock(&cgroup_mutex); |
| 4180 | parent = cgrp->parent; |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4181 | if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) { |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 4182 | clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4183 | mutex_unlock(&cgroup_mutex); |
| 4184 | return -EBUSY; |
| 4185 | } |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4186 | prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE); |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4187 | if (!cgroup_clear_css_refs(cgrp)) { |
| 4188 | mutex_unlock(&cgroup_mutex); |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 4189 | /* |
| 4190 | * Because someone may call cgroup_wakeup_rmdir_waiter() before |
| 4191 | * prepare_to_wait(), we need to check this flag. |
| 4192 | */ |
| 4193 | if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)) |
| 4194 | schedule(); |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4195 | finish_wait(&cgroup_rmdir_waitq, &wait); |
| 4196 | clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags); |
| 4197 | if (signal_pending(current)) |
| 4198 | return -EINTR; |
| 4199 | goto again; |
| 4200 | } |
| 4201 | /* NO css_tryget() can success after here. */ |
| 4202 | finish_wait(&cgroup_rmdir_waitq, &wait); |
| 4203 | clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4204 | |
Thomas Gleixner | cdcc136f | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4205 | raw_spin_lock(&release_list_lock); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4206 | set_bit(CGRP_REMOVED, &cgrp->flags); |
| 4207 | if (!list_empty(&cgrp->release_list)) |
Phil Carmody | 8d25879 | 2011-03-22 16:30:13 -0700 | [diff] [blame] | 4208 | list_del_init(&cgrp->release_list); |
Thomas Gleixner | cdcc136f | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4209 | raw_spin_unlock(&release_list_lock); |
Paul Menage | 999cd8a | 2009-01-07 18:08:36 -0800 | [diff] [blame] | 4210 | |
Paul Menage | 999cd8a | 2009-01-07 18:08:36 -0800 | [diff] [blame] | 4211 | /* delete this cgroup from parent->children */ |
Phil Carmody | 8d25879 | 2011-03-22 16:30:13 -0700 | [diff] [blame] | 4212 | list_del_init(&cgrp->sibling); |
Paul Menage | 999cd8a | 2009-01-07 18:08:36 -0800 | [diff] [blame] | 4213 | |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 4214 | list_del_init(&cgrp->allcg_node); |
| 4215 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4216 | d = dget(cgrp->dentry); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4217 | |
| 4218 | cgroup_d_remove_dir(d); |
| 4219 | dput(d); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4220 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4221 | set_bit(CGRP_RELEASABLE, &parent->flags); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4222 | check_for_release(parent); |
| 4223 | |
Kirill A. Shutemov | 4ab7868 | 2010-03-10 15:22:34 -0800 | [diff] [blame] | 4224 | /* |
| 4225 | * Unregister events and notify userspace. |
| 4226 | * Notify userspace about cgroup removing only after rmdir of cgroup |
| 4227 | * directory to avoid race between userspace and kernelspace |
| 4228 | */ |
| 4229 | spin_lock(&cgrp->event_list_lock); |
| 4230 | list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) { |
| 4231 | list_del(&event->list); |
| 4232 | remove_wait_queue(event->wqh, &event->wait); |
| 4233 | eventfd_signal(event->eventfd, 1); |
| 4234 | schedule_work(&event->remove); |
| 4235 | } |
| 4236 | spin_unlock(&cgrp->event_list_lock); |
| 4237 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4238 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4239 | return 0; |
| 4240 | } |
| 4241 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4242 | static void __init_or_module cgroup_init_cftsets(struct cgroup_subsys *ss) |
| 4243 | { |
| 4244 | INIT_LIST_HEAD(&ss->cftsets); |
| 4245 | |
| 4246 | /* |
| 4247 | * base_cftset is embedded in subsys itself, no need to worry about |
| 4248 | * deregistration. |
| 4249 | */ |
| 4250 | if (ss->base_cftypes) { |
| 4251 | ss->base_cftset.cfts = ss->base_cftypes; |
| 4252 | list_add_tail(&ss->base_cftset.node, &ss->cftsets); |
| 4253 | } |
| 4254 | } |
| 4255 | |
Li Zefan | 06a1192 | 2008-04-29 01:00:07 -0700 | [diff] [blame] | 4256 | static void __init cgroup_init_subsys(struct cgroup_subsys *ss) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4257 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4258 | struct cgroup_subsys_state *css; |
Diego Calleja | cfe36bd | 2007-11-14 16:58:54 -0800 | [diff] [blame] | 4259 | |
| 4260 | printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4261 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4262 | /* init base cftset */ |
| 4263 | cgroup_init_cftsets(ss); |
| 4264 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4265 | /* Create the top cgroup state for this subsystem */ |
Li Zefan | 33a68ac | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 4266 | list_add(&ss->sibling, &rootnode.subsys_list); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4267 | ss->root = &rootnode; |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 4268 | css = ss->create(dummytop); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4269 | /* We don't handle early failures gracefully */ |
| 4270 | BUG_ON(IS_ERR(css)); |
| 4271 | init_cgroup_css(css, ss, dummytop); |
| 4272 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4273 | /* Update the init_css_set to contain a subsys |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4274 | * pointer to this state - since the subsystem is |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4275 | * newly registered, all tasks and hence the |
| 4276 | * init_css_set is in the subsystem's top cgroup. */ |
| 4277 | init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4278 | |
| 4279 | need_forkexit_callback |= ss->fork || ss->exit; |
| 4280 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4281 | /* At system boot, before all subsystems have been |
| 4282 | * registered, no tasks have been forked, so we don't |
| 4283 | * need to invoke fork callbacks here. */ |
| 4284 | BUG_ON(!list_empty(&init_task.tasks)); |
| 4285 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4286 | ss->active = 1; |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4287 | |
| 4288 | /* this function shouldn't be used with modular subsystems, since they |
| 4289 | * need to register a subsys_id, among other things */ |
| 4290 | BUG_ON(ss->module); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4291 | } |
| 4292 | |
| 4293 | /** |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4294 | * cgroup_load_subsys: load and register a modular subsystem at runtime |
| 4295 | * @ss: the subsystem to load |
| 4296 | * |
| 4297 | * This function should be called in a modular subsystem's initcall. If the |
Thomas Weber | 8839316 | 2010-03-16 11:47:56 +0100 | [diff] [blame] | 4298 | * subsystem is built as a module, it will be assigned a new subsys_id and set |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4299 | * up for use. If the subsystem is built-in anyway, work is delegated to the |
| 4300 | * simpler cgroup_init_subsys. |
| 4301 | */ |
| 4302 | int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss) |
| 4303 | { |
| 4304 | int i; |
| 4305 | struct cgroup_subsys_state *css; |
| 4306 | |
| 4307 | /* check name and function validity */ |
| 4308 | if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN || |
| 4309 | ss->create == NULL || ss->destroy == NULL) |
| 4310 | return -EINVAL; |
| 4311 | |
| 4312 | /* |
| 4313 | * we don't support callbacks in modular subsystems. this check is |
| 4314 | * before the ss->module check for consistency; a subsystem that could |
| 4315 | * be a module should still have no callbacks even if the user isn't |
| 4316 | * compiling it as one. |
| 4317 | */ |
| 4318 | if (ss->fork || ss->exit) |
| 4319 | return -EINVAL; |
| 4320 | |
| 4321 | /* |
| 4322 | * an optionally modular subsystem is built-in: we want to do nothing, |
| 4323 | * since cgroup_init_subsys will have already taken care of it. |
| 4324 | */ |
| 4325 | if (ss->module == NULL) { |
| 4326 | /* a few sanity checks */ |
| 4327 | BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT); |
| 4328 | BUG_ON(subsys[ss->subsys_id] != ss); |
| 4329 | return 0; |
| 4330 | } |
| 4331 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4332 | /* init base cftset */ |
| 4333 | cgroup_init_cftsets(ss); |
| 4334 | |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4335 | /* |
| 4336 | * need to register a subsys id before anything else - for example, |
| 4337 | * init_cgroup_css needs it. |
| 4338 | */ |
| 4339 | mutex_lock(&cgroup_mutex); |
| 4340 | /* find the first empty slot in the array */ |
| 4341 | for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) { |
| 4342 | if (subsys[i] == NULL) |
| 4343 | break; |
| 4344 | } |
| 4345 | if (i == CGROUP_SUBSYS_COUNT) { |
| 4346 | /* maximum number of subsystems already registered! */ |
| 4347 | mutex_unlock(&cgroup_mutex); |
| 4348 | return -EBUSY; |
| 4349 | } |
| 4350 | /* assign ourselves the subsys_id */ |
| 4351 | ss->subsys_id = i; |
| 4352 | subsys[i] = ss; |
| 4353 | |
| 4354 | /* |
| 4355 | * no ss->create seems to need anything important in the ss struct, so |
| 4356 | * this can happen first (i.e. before the rootnode attachment). |
| 4357 | */ |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 4358 | css = ss->create(dummytop); |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4359 | if (IS_ERR(css)) { |
| 4360 | /* failure case - need to deassign the subsys[] slot. */ |
| 4361 | subsys[i] = NULL; |
| 4362 | mutex_unlock(&cgroup_mutex); |
| 4363 | return PTR_ERR(css); |
| 4364 | } |
| 4365 | |
| 4366 | list_add(&ss->sibling, &rootnode.subsys_list); |
| 4367 | ss->root = &rootnode; |
| 4368 | |
| 4369 | /* our new subsystem will be attached to the dummy hierarchy. */ |
| 4370 | init_cgroup_css(css, ss, dummytop); |
| 4371 | /* init_idr must be after init_cgroup_css because it sets css->id. */ |
| 4372 | if (ss->use_id) { |
| 4373 | int ret = cgroup_init_idr(ss, css); |
| 4374 | if (ret) { |
| 4375 | dummytop->subsys[ss->subsys_id] = NULL; |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 4376 | ss->destroy(dummytop); |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4377 | subsys[i] = NULL; |
| 4378 | mutex_unlock(&cgroup_mutex); |
| 4379 | return ret; |
| 4380 | } |
| 4381 | } |
| 4382 | |
| 4383 | /* |
| 4384 | * Now we need to entangle the css into the existing css_sets. unlike |
| 4385 | * in cgroup_init_subsys, there are now multiple css_sets, so each one |
| 4386 | * will need a new pointer to it; done by iterating the css_set_table. |
| 4387 | * furthermore, modifying the existing css_sets will corrupt the hash |
| 4388 | * table state, so each changed css_set will need its hash recomputed. |
| 4389 | * this is all done under the css_set_lock. |
| 4390 | */ |
| 4391 | write_lock(&css_set_lock); |
| 4392 | for (i = 0; i < CSS_SET_TABLE_SIZE; i++) { |
| 4393 | struct css_set *cg; |
| 4394 | struct hlist_node *node, *tmp; |
| 4395 | struct hlist_head *bucket = &css_set_table[i], *new_bucket; |
| 4396 | |
| 4397 | hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) { |
| 4398 | /* skip entries that we already rehashed */ |
| 4399 | if (cg->subsys[ss->subsys_id]) |
| 4400 | continue; |
| 4401 | /* remove existing entry */ |
| 4402 | hlist_del(&cg->hlist); |
| 4403 | /* set new value */ |
| 4404 | cg->subsys[ss->subsys_id] = css; |
| 4405 | /* recompute hash and restore entry */ |
| 4406 | new_bucket = css_set_hash(cg->subsys); |
| 4407 | hlist_add_head(&cg->hlist, new_bucket); |
| 4408 | } |
| 4409 | } |
| 4410 | write_unlock(&css_set_lock); |
| 4411 | |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4412 | ss->active = 1; |
| 4413 | |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4414 | /* success! */ |
| 4415 | mutex_unlock(&cgroup_mutex); |
| 4416 | return 0; |
| 4417 | } |
| 4418 | EXPORT_SYMBOL_GPL(cgroup_load_subsys); |
| 4419 | |
| 4420 | /** |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4421 | * cgroup_unload_subsys: unload a modular subsystem |
| 4422 | * @ss: the subsystem to unload |
| 4423 | * |
| 4424 | * This function should be called in a modular subsystem's exitcall. When this |
| 4425 | * function is invoked, the refcount on the subsystem's module will be 0, so |
| 4426 | * the subsystem will not be attached to any hierarchy. |
| 4427 | */ |
| 4428 | void cgroup_unload_subsys(struct cgroup_subsys *ss) |
| 4429 | { |
| 4430 | struct cg_cgroup_link *link; |
| 4431 | struct hlist_head *hhead; |
| 4432 | |
| 4433 | BUG_ON(ss->module == NULL); |
| 4434 | |
| 4435 | /* |
| 4436 | * we shouldn't be called if the subsystem is in use, and the use of |
| 4437 | * try_module_get in parse_cgroupfs_options should ensure that it |
| 4438 | * doesn't start being used while we're killing it off. |
| 4439 | */ |
| 4440 | BUG_ON(ss->root != &rootnode); |
| 4441 | |
| 4442 | mutex_lock(&cgroup_mutex); |
| 4443 | /* deassign the subsys_id */ |
| 4444 | BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT); |
| 4445 | subsys[ss->subsys_id] = NULL; |
| 4446 | |
| 4447 | /* remove subsystem from rootnode's list of subsystems */ |
Phil Carmody | 8d25879 | 2011-03-22 16:30:13 -0700 | [diff] [blame] | 4448 | list_del_init(&ss->sibling); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4449 | |
| 4450 | /* |
| 4451 | * disentangle the css from all css_sets attached to the dummytop. as |
| 4452 | * in loading, we need to pay our respects to the hashtable gods. |
| 4453 | */ |
| 4454 | write_lock(&css_set_lock); |
| 4455 | list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) { |
| 4456 | struct css_set *cg = link->cg; |
| 4457 | |
| 4458 | hlist_del(&cg->hlist); |
| 4459 | BUG_ON(!cg->subsys[ss->subsys_id]); |
| 4460 | cg->subsys[ss->subsys_id] = NULL; |
| 4461 | hhead = css_set_hash(cg->subsys); |
| 4462 | hlist_add_head(&cg->hlist, hhead); |
| 4463 | } |
| 4464 | write_unlock(&css_set_lock); |
| 4465 | |
| 4466 | /* |
| 4467 | * remove subsystem's css from the dummytop and free it - need to free |
| 4468 | * before marking as null because ss->destroy needs the cgrp->subsys |
| 4469 | * pointer to find their state. note that this also takes care of |
| 4470 | * freeing the css_id. |
| 4471 | */ |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 4472 | ss->destroy(dummytop); |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4473 | dummytop->subsys[ss->subsys_id] = NULL; |
| 4474 | |
| 4475 | mutex_unlock(&cgroup_mutex); |
| 4476 | } |
| 4477 | EXPORT_SYMBOL_GPL(cgroup_unload_subsys); |
| 4478 | |
| 4479 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4480 | * cgroup_init_early - cgroup initialization at system boot |
| 4481 | * |
| 4482 | * Initialize cgroups at system boot, and initialize any |
| 4483 | * subsystems that request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4484 | */ |
| 4485 | int __init cgroup_init_early(void) |
| 4486 | { |
| 4487 | int i; |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 4488 | atomic_set(&init_css_set.refcount, 1); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4489 | INIT_LIST_HEAD(&init_css_set.cg_links); |
| 4490 | INIT_LIST_HEAD(&init_css_set.tasks); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 4491 | INIT_HLIST_NODE(&init_css_set.hlist); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4492 | css_set_count = 1; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4493 | init_cgroup_root(&rootnode); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4494 | root_count = 1; |
| 4495 | init_task.cgroups = &init_css_set; |
| 4496 | |
| 4497 | init_css_set_link.cg = &init_css_set; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4498 | init_css_set_link.cgrp = dummytop; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4499 | list_add(&init_css_set_link.cgrp_link_list, |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4500 | &rootnode.top_cgroup.css_sets); |
| 4501 | list_add(&init_css_set_link.cg_link_list, |
| 4502 | &init_css_set.cg_links); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4503 | |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 4504 | for (i = 0; i < CSS_SET_TABLE_SIZE; i++) |
| 4505 | INIT_HLIST_HEAD(&css_set_table[i]); |
| 4506 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 4507 | /* at bootup time, we don't worry about modular subsystems */ |
| 4508 | for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4509 | struct cgroup_subsys *ss = subsys[i]; |
| 4510 | |
| 4511 | BUG_ON(!ss->name); |
| 4512 | BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN); |
| 4513 | BUG_ON(!ss->create); |
| 4514 | BUG_ON(!ss->destroy); |
| 4515 | if (ss->subsys_id != i) { |
Diego Calleja | cfe36bd | 2007-11-14 16:58:54 -0800 | [diff] [blame] | 4516 | printk(KERN_ERR "cgroup: Subsys %s id == %d\n", |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4517 | ss->name, ss->subsys_id); |
| 4518 | BUG(); |
| 4519 | } |
| 4520 | |
| 4521 | if (ss->early_init) |
| 4522 | cgroup_init_subsys(ss); |
| 4523 | } |
| 4524 | return 0; |
| 4525 | } |
| 4526 | |
| 4527 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4528 | * cgroup_init - cgroup initialization |
| 4529 | * |
| 4530 | * Register cgroup filesystem and /proc file, and initialize |
| 4531 | * any subsystems that didn't request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4532 | */ |
| 4533 | int __init cgroup_init(void) |
| 4534 | { |
| 4535 | int err; |
| 4536 | int i; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 4537 | struct hlist_head *hhead; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4538 | |
| 4539 | err = bdi_init(&cgroup_backing_dev_info); |
| 4540 | if (err) |
| 4541 | return err; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4542 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 4543 | /* at bootup time, we don't worry about modular subsystems */ |
| 4544 | for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4545 | struct cgroup_subsys *ss = subsys[i]; |
| 4546 | if (!ss->early_init) |
| 4547 | cgroup_init_subsys(ss); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 4548 | if (ss->use_id) |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 4549 | cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4550 | } |
| 4551 | |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 4552 | /* Add init_css_set to the hash table */ |
| 4553 | hhead = css_set_hash(init_css_set.subsys); |
| 4554 | hlist_add_head(&init_css_set.hlist, hhead); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 4555 | BUG_ON(!init_root_id(&rootnode)); |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4556 | |
| 4557 | cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj); |
| 4558 | if (!cgroup_kobj) { |
| 4559 | err = -ENOMEM; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4560 | goto out; |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4561 | } |
| 4562 | |
| 4563 | err = register_filesystem(&cgroup_fs_type); |
| 4564 | if (err < 0) { |
| 4565 | kobject_put(cgroup_kobj); |
| 4566 | goto out; |
| 4567 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4568 | |
Li Zefan | 46ae220 | 2008-04-29 01:00:08 -0700 | [diff] [blame] | 4569 | proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4570 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4571 | out: |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4572 | if (err) |
| 4573 | bdi_destroy(&cgroup_backing_dev_info); |
| 4574 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4575 | return err; |
| 4576 | } |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4577 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4578 | /* |
| 4579 | * proc_cgroup_show() |
| 4580 | * - Print task's cgroup paths into seq_file, one line for each hierarchy |
| 4581 | * - Used for /proc/<pid>/cgroup. |
| 4582 | * - No need to task_lock(tsk) on this tsk->cgroup reference, as it |
| 4583 | * doesn't really matter if tsk->cgroup changes after we read it, |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 4584 | * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4585 | * anyway. No need to check that tsk->cgroup != NULL, thanks to |
| 4586 | * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks |
| 4587 | * cgroup to top_cgroup. |
| 4588 | */ |
| 4589 | |
| 4590 | /* TODO: Use a proper seq_file iterator */ |
| 4591 | static int proc_cgroup_show(struct seq_file *m, void *v) |
| 4592 | { |
| 4593 | struct pid *pid; |
| 4594 | struct task_struct *tsk; |
| 4595 | char *buf; |
| 4596 | int retval; |
| 4597 | struct cgroupfs_root *root; |
| 4598 | |
| 4599 | retval = -ENOMEM; |
| 4600 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 4601 | if (!buf) |
| 4602 | goto out; |
| 4603 | |
| 4604 | retval = -ESRCH; |
| 4605 | pid = m->private; |
| 4606 | tsk = get_pid_task(pid, PIDTYPE_PID); |
| 4607 | if (!tsk) |
| 4608 | goto out_free; |
| 4609 | |
| 4610 | retval = 0; |
| 4611 | |
| 4612 | mutex_lock(&cgroup_mutex); |
| 4613 | |
Li Zefan | e5f6a86 | 2009-01-07 18:07:41 -0800 | [diff] [blame] | 4614 | for_each_active_root(root) { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4615 | struct cgroup_subsys *ss; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4616 | struct cgroup *cgrp; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4617 | int count = 0; |
| 4618 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 4619 | seq_printf(m, "%d:", root->hierarchy_id); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4620 | for_each_subsys(root, ss) |
| 4621 | seq_printf(m, "%s%s", count++ ? "," : "", ss->name); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 4622 | if (strlen(root->name)) |
| 4623 | seq_printf(m, "%sname=%s", count ? "," : "", |
| 4624 | root->name); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4625 | seq_putc(m, ':'); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4626 | cgrp = task_cgroup_from_root(tsk, root); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4627 | retval = cgroup_path(cgrp, buf, PAGE_SIZE); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4628 | if (retval < 0) |
| 4629 | goto out_unlock; |
| 4630 | seq_puts(m, buf); |
| 4631 | seq_putc(m, '\n'); |
| 4632 | } |
| 4633 | |
| 4634 | out_unlock: |
| 4635 | mutex_unlock(&cgroup_mutex); |
| 4636 | put_task_struct(tsk); |
| 4637 | out_free: |
| 4638 | kfree(buf); |
| 4639 | out: |
| 4640 | return retval; |
| 4641 | } |
| 4642 | |
| 4643 | static int cgroup_open(struct inode *inode, struct file *file) |
| 4644 | { |
| 4645 | struct pid *pid = PROC_I(inode)->pid; |
| 4646 | return single_open(file, proc_cgroup_show, pid); |
| 4647 | } |
| 4648 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 4649 | const struct file_operations proc_cgroup_operations = { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4650 | .open = cgroup_open, |
| 4651 | .read = seq_read, |
| 4652 | .llseek = seq_lseek, |
| 4653 | .release = single_release, |
| 4654 | }; |
| 4655 | |
| 4656 | /* Display information about each subsystem and each hierarchy */ |
| 4657 | static int proc_cgroupstats_show(struct seq_file *m, void *v) |
| 4658 | { |
| 4659 | int i; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4660 | |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 4661 | seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n"); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 4662 | /* |
| 4663 | * ideally we don't want subsystems moving around while we do this. |
| 4664 | * cgroup_mutex is also necessary to guarantee an atomic snapshot of |
| 4665 | * subsys/hierarchy state. |
| 4666 | */ |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4667 | mutex_lock(&cgroup_mutex); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4668 | for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) { |
| 4669 | struct cgroup_subsys *ss = subsys[i]; |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 4670 | if (ss == NULL) |
| 4671 | continue; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 4672 | seq_printf(m, "%s\t%d\t%d\t%d\n", |
| 4673 | ss->name, ss->root->hierarchy_id, |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 4674 | ss->root->number_of_cgroups, !ss->disabled); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4675 | } |
| 4676 | mutex_unlock(&cgroup_mutex); |
| 4677 | return 0; |
| 4678 | } |
| 4679 | |
| 4680 | static int cgroupstats_open(struct inode *inode, struct file *file) |
| 4681 | { |
Al Viro | 9dce07f | 2008-03-29 03:07:28 +0000 | [diff] [blame] | 4682 | return single_open(file, proc_cgroupstats_show, NULL); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4683 | } |
| 4684 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 4685 | static const struct file_operations proc_cgroupstats_operations = { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4686 | .open = cgroupstats_open, |
| 4687 | .read = seq_read, |
| 4688 | .llseek = seq_lseek, |
| 4689 | .release = single_release, |
| 4690 | }; |
| 4691 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4692 | /** |
| 4693 | * cgroup_fork - attach newly forked task to its parents cgroup. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4694 | * @child: pointer to task_struct of forking parent process. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4695 | * |
| 4696 | * Description: A task inherits its parent's cgroup at fork(). |
| 4697 | * |
| 4698 | * A pointer to the shared css_set was automatically copied in |
| 4699 | * fork.c by dup_task_struct(). However, we ignore that copy, since |
Frederic Weisbecker | 7e381b0e | 2011-12-21 20:03:19 +0100 | [diff] [blame] | 4700 | * it was not made under the protection of RCU, cgroup_mutex or |
| 4701 | * threadgroup_change_begin(), so it might no longer be a valid |
| 4702 | * cgroup pointer. cgroup_attach_task() might have already changed |
| 4703 | * current->cgroups, allowing the previously referenced cgroup |
| 4704 | * group to be removed and freed. |
| 4705 | * |
| 4706 | * Outside the pointer validity we also need to process the css_set |
| 4707 | * inheritance between threadgoup_change_begin() and |
| 4708 | * threadgoup_change_end(), this way there is no leak in any process |
| 4709 | * wide migration performed by cgroup_attach_proc() that could otherwise |
| 4710 | * miss a thread because it is too early or too late in the fork stage. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4711 | * |
| 4712 | * At the point that cgroup_fork() is called, 'current' is the parent |
| 4713 | * task, and the passed argument 'child' points to the child task. |
| 4714 | */ |
| 4715 | void cgroup_fork(struct task_struct *child) |
| 4716 | { |
Frederic Weisbecker | 7e381b0e | 2011-12-21 20:03:19 +0100 | [diff] [blame] | 4717 | /* |
| 4718 | * We don't need to task_lock() current because current->cgroups |
| 4719 | * can't be changed concurrently here. The parent obviously hasn't |
| 4720 | * exited and called cgroup_exit(), and we are synchronized against |
| 4721 | * cgroup migration through threadgroup_change_begin(). |
| 4722 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4723 | child->cgroups = current->cgroups; |
| 4724 | get_css_set(child->cgroups); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4725 | INIT_LIST_HEAD(&child->cg_list); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4726 | } |
| 4727 | |
| 4728 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4729 | * cgroup_fork_callbacks - run fork callbacks |
| 4730 | * @child: the new task |
| 4731 | * |
| 4732 | * Called on a new task very soon before adding it to the |
| 4733 | * tasklist. No need to take any locks since no-one can |
| 4734 | * be operating on this task. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4735 | */ |
| 4736 | void cgroup_fork_callbacks(struct task_struct *child) |
| 4737 | { |
| 4738 | if (need_forkexit_callback) { |
| 4739 | int i; |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 4740 | /* |
| 4741 | * forkexit callbacks are only supported for builtin |
| 4742 | * subsystems, and the builtin section of the subsys array is |
| 4743 | * immutable, so we don't need to lock the subsys array here. |
| 4744 | */ |
| 4745 | for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) { |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4746 | struct cgroup_subsys *ss = subsys[i]; |
| 4747 | if (ss->fork) |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 4748 | ss->fork(child); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4749 | } |
| 4750 | } |
| 4751 | } |
| 4752 | |
| 4753 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4754 | * cgroup_post_fork - called on a new task after adding it to the task list |
| 4755 | * @child: the task in question |
| 4756 | * |
| 4757 | * Adds the task to the list running through its css_set if necessary. |
| 4758 | * Has to be after the task is visible on the task list in case we race |
| 4759 | * with the first call to cgroup_iter_start() - to guarantee that the |
| 4760 | * new task ends up on its list. |
| 4761 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4762 | void cgroup_post_fork(struct task_struct *child) |
| 4763 | { |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 4764 | /* |
| 4765 | * use_task_css_set_links is set to 1 before we walk the tasklist |
| 4766 | * under the tasklist_lock and we read it here after we added the child |
| 4767 | * to the tasklist under the tasklist_lock as well. If the child wasn't |
| 4768 | * yet in the tasklist when we walked through it from |
| 4769 | * cgroup_enable_task_cg_lists(), then use_task_css_set_links value |
| 4770 | * should be visible now due to the paired locking and barriers implied |
| 4771 | * by LOCK/UNLOCK: it is written before the tasklist_lock unlock |
| 4772 | * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock |
| 4773 | * lock on fork. |
| 4774 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4775 | if (use_task_css_set_links) { |
| 4776 | write_lock(&css_set_lock); |
Frederic Weisbecker | 7e3aa30 | 2011-12-23 04:25:23 +0100 | [diff] [blame] | 4777 | if (list_empty(&child->cg_list)) { |
| 4778 | /* |
| 4779 | * It's safe to use child->cgroups without task_lock() |
| 4780 | * here because we are protected through |
| 4781 | * threadgroup_change_begin() against concurrent |
| 4782 | * css_set change in cgroup_task_migrate(). Also |
| 4783 | * the task can't exit at that point until |
| 4784 | * wake_up_new_task() is called, so we are protected |
| 4785 | * against cgroup_exit() setting child->cgroup to |
| 4786 | * init_css_set. |
| 4787 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4788 | list_add(&child->cg_list, &child->cgroups->tasks); |
Frederic Weisbecker | 7e3aa30 | 2011-12-23 04:25:23 +0100 | [diff] [blame] | 4789 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4790 | write_unlock(&css_set_lock); |
| 4791 | } |
| 4792 | } |
| 4793 | /** |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4794 | * cgroup_exit - detach cgroup from exiting task |
| 4795 | * @tsk: pointer to task_struct of exiting process |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4796 | * @run_callback: run exit callbacks? |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4797 | * |
| 4798 | * Description: Detach cgroup from @tsk and release it. |
| 4799 | * |
| 4800 | * Note that cgroups marked notify_on_release force every task in |
| 4801 | * them to take the global cgroup_mutex mutex when exiting. |
| 4802 | * This could impact scaling on very large systems. Be reluctant to |
| 4803 | * use notify_on_release cgroups where very high task exit scaling |
| 4804 | * is required on large systems. |
| 4805 | * |
| 4806 | * the_top_cgroup_hack: |
| 4807 | * |
| 4808 | * Set the exiting tasks cgroup to the root cgroup (top_cgroup). |
| 4809 | * |
| 4810 | * We call cgroup_exit() while the task is still competent to |
| 4811 | * handle notify_on_release(), then leave the task attached to the |
| 4812 | * root cgroup in each hierarchy for the remainder of its exit. |
| 4813 | * |
| 4814 | * To do this properly, we would increment the reference count on |
| 4815 | * top_cgroup, and near the very end of the kernel/exit.c do_exit() |
| 4816 | * code we would add a second cgroup function call, to drop that |
| 4817 | * reference. This would just create an unnecessary hot spot on |
| 4818 | * the top_cgroup reference count, to no avail. |
| 4819 | * |
| 4820 | * Normally, holding a reference to a cgroup without bumping its |
| 4821 | * count is unsafe. The cgroup could go away, or someone could |
| 4822 | * attach us to a different cgroup, decrementing the count on |
| 4823 | * the first cgroup that we never incremented. But in this case, |
| 4824 | * 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] | 4825 | * which wards off any cgroup_attach_task() attempts, or task is a failed |
| 4826 | * fork, never visible to cgroup_attach_task. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4827 | */ |
| 4828 | void cgroup_exit(struct task_struct *tsk, int run_callbacks) |
| 4829 | { |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4830 | struct css_set *cg; |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 4831 | int i; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4832 | |
| 4833 | /* |
| 4834 | * Unlink from the css_set task list if necessary. |
| 4835 | * Optimistically check cg_list before taking |
| 4836 | * css_set_lock |
| 4837 | */ |
| 4838 | if (!list_empty(&tsk->cg_list)) { |
| 4839 | write_lock(&css_set_lock); |
| 4840 | if (!list_empty(&tsk->cg_list)) |
Phil Carmody | 8d25879 | 2011-03-22 16:30:13 -0700 | [diff] [blame] | 4841 | list_del_init(&tsk->cg_list); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4842 | write_unlock(&css_set_lock); |
| 4843 | } |
| 4844 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4845 | /* Reassign the task to the init_css_set. */ |
| 4846 | task_lock(tsk); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4847 | cg = tsk->cgroups; |
| 4848 | tsk->cgroups = &init_css_set; |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 4849 | |
| 4850 | if (run_callbacks && need_forkexit_callback) { |
| 4851 | /* |
| 4852 | * modular subsystems can't use callbacks, so no need to lock |
| 4853 | * the subsys array |
| 4854 | */ |
| 4855 | for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) { |
| 4856 | struct cgroup_subsys *ss = subsys[i]; |
| 4857 | if (ss->exit) { |
| 4858 | struct cgroup *old_cgrp = |
| 4859 | rcu_dereference_raw(cg->subsys[i])->cgroup; |
| 4860 | struct cgroup *cgrp = task_cgroup(tsk, i); |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 4861 | ss->exit(cgrp, old_cgrp, tsk); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 4862 | } |
| 4863 | } |
| 4864 | } |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4865 | task_unlock(tsk); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 4866 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4867 | if (cg) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4868 | put_css_set_taskexit(cg); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4869 | } |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 4870 | |
| 4871 | /** |
Grzegorz Nosek | 313e924 | 2009-04-02 16:57:23 -0700 | [diff] [blame] | 4872 | * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4873 | * @cgrp: the cgroup in question |
Grzegorz Nosek | 313e924 | 2009-04-02 16:57:23 -0700 | [diff] [blame] | 4874 | * @task: the task in question |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4875 | * |
Grzegorz Nosek | 313e924 | 2009-04-02 16:57:23 -0700 | [diff] [blame] | 4876 | * See if @cgrp is a descendant of @task's cgroup in the appropriate |
| 4877 | * hierarchy. |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 4878 | * |
| 4879 | * If we are sending in dummytop, then presumably we are creating |
| 4880 | * the top cgroup in the subsystem. |
| 4881 | * |
| 4882 | * Called only by the ns (nsproxy) cgroup. |
| 4883 | */ |
Grzegorz Nosek | 313e924 | 2009-04-02 16:57:23 -0700 | [diff] [blame] | 4884 | int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task) |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 4885 | { |
| 4886 | int ret; |
| 4887 | struct cgroup *target; |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 4888 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4889 | if (cgrp == dummytop) |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 4890 | return 1; |
| 4891 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 4892 | target = task_cgroup_from_root(task, cgrp->root); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4893 | while (cgrp != target && cgrp!= cgrp->top_cgroup) |
| 4894 | cgrp = cgrp->parent; |
| 4895 | ret = (cgrp == target); |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 4896 | return ret; |
| 4897 | } |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4898 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4899 | static void check_for_release(struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4900 | { |
| 4901 | /* All of these checks rely on RCU to keep the cgroup |
| 4902 | * structure alive */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4903 | if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count) |
| 4904 | && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4905 | /* Control Group is currently removeable. If it's not |
| 4906 | * already queued for a userspace notification, queue |
| 4907 | * it now */ |
| 4908 | int need_schedule_work = 0; |
Thomas Gleixner | cdcc136f | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4909 | raw_spin_lock(&release_list_lock); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4910 | if (!cgroup_is_removed(cgrp) && |
| 4911 | list_empty(&cgrp->release_list)) { |
| 4912 | list_add(&cgrp->release_list, &release_list); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4913 | need_schedule_work = 1; |
| 4914 | } |
Thomas Gleixner | cdcc136f | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4915 | raw_spin_unlock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4916 | if (need_schedule_work) |
| 4917 | schedule_work(&release_agent_work); |
| 4918 | } |
| 4919 | } |
| 4920 | |
Daisuke Nishimura | d7b9fff | 2010-03-10 15:22:05 -0800 | [diff] [blame] | 4921 | /* Caller must verify that the css is not for root cgroup */ |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4922 | bool __css_tryget(struct cgroup_subsys_state *css) |
| 4923 | { |
| 4924 | do { |
| 4925 | int v = css_refcnt(css); |
| 4926 | |
| 4927 | if (atomic_cmpxchg(&css->refcnt, v, v + 1) == v) |
| 4928 | return true; |
| 4929 | cpu_relax(); |
| 4930 | } while (!test_bit(CSS_REMOVED, &css->flags)); |
| 4931 | |
| 4932 | return false; |
| 4933 | } |
| 4934 | EXPORT_SYMBOL_GPL(__css_tryget); |
| 4935 | |
| 4936 | /* Caller must verify that the css is not for root cgroup */ |
| 4937 | void __css_put(struct cgroup_subsys_state *css) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4938 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4939 | struct cgroup *cgrp = css->cgroup; |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4940 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4941 | rcu_read_lock(); |
Salman Qazi | 967db0e | 2012-06-06 18:51:35 -0700 | [diff] [blame] | 4942 | switch (atomic_dec_return(&css->refcnt)) { |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4943 | case 1: |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 4944 | if (notify_on_release(cgrp)) { |
| 4945 | set_bit(CGRP_RELEASABLE, &cgrp->flags); |
| 4946 | check_for_release(cgrp); |
| 4947 | } |
KAMEZAWA Hiroyuki | 8870326 | 2009-07-29 15:04:06 -0700 | [diff] [blame] | 4948 | cgroup_wakeup_rmdir_waiter(cgrp); |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4949 | break; |
| 4950 | case 0: |
| 4951 | if (!test_bit(CSS_CLEAR_CSS_REFS, &css->flags)) |
| 4952 | schedule_work(&css->dput_work); |
| 4953 | break; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4954 | } |
| 4955 | rcu_read_unlock(); |
| 4956 | } |
Ben Blum | 67523c4 | 2010-03-10 15:22:11 -0800 | [diff] [blame] | 4957 | EXPORT_SYMBOL_GPL(__css_put); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4958 | |
| 4959 | /* |
| 4960 | * Notify userspace when a cgroup is released, by running the |
| 4961 | * configured release agent with the name of the cgroup (path |
| 4962 | * relative to the root of cgroup file system) as the argument. |
| 4963 | * |
| 4964 | * Most likely, this user command will try to rmdir this cgroup. |
| 4965 | * |
| 4966 | * This races with the possibility that some other task will be |
| 4967 | * attached to this cgroup before it is removed, or that some other |
| 4968 | * user task will 'mkdir' a child cgroup of this cgroup. That's ok. |
| 4969 | * The presumed 'rmdir' will fail quietly if this cgroup is no longer |
| 4970 | * unused, and this cgroup will be reprieved from its death sentence, |
| 4971 | * to continue to serve a useful existence. Next time it's released, |
| 4972 | * we will get notified again, if it still has 'notify_on_release' set. |
| 4973 | * |
| 4974 | * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which |
| 4975 | * means only wait until the task is successfully execve()'d. The |
| 4976 | * separate release agent task is forked by call_usermodehelper(), |
| 4977 | * then control in this thread returns here, without waiting for the |
| 4978 | * release agent task. We don't bother to wait because the caller of |
| 4979 | * this routine has no use for the exit status of the release agent |
| 4980 | * task, so no sense holding our caller up for that. |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4981 | */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4982 | static void cgroup_release_agent(struct work_struct *work) |
| 4983 | { |
| 4984 | BUG_ON(work != &release_agent_work); |
| 4985 | mutex_lock(&cgroup_mutex); |
Thomas Gleixner | cdcc136f | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4986 | raw_spin_lock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4987 | while (!list_empty(&release_list)) { |
| 4988 | char *argv[3], *envp[3]; |
| 4989 | int i; |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 4990 | char *pathbuf = NULL, *agentbuf = NULL; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4991 | struct cgroup *cgrp = list_entry(release_list.next, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4992 | struct cgroup, |
| 4993 | release_list); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4994 | list_del_init(&cgrp->release_list); |
Thomas Gleixner | cdcc136f | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 4995 | raw_spin_unlock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4996 | pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 4997 | if (!pathbuf) |
| 4998 | goto continue_free; |
| 4999 | if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0) |
| 5000 | goto continue_free; |
| 5001 | agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL); |
| 5002 | if (!agentbuf) |
| 5003 | goto continue_free; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5004 | |
| 5005 | i = 0; |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 5006 | argv[i++] = agentbuf; |
| 5007 | argv[i++] = pathbuf; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5008 | argv[i] = NULL; |
| 5009 | |
| 5010 | i = 0; |
| 5011 | /* minimal command environment */ |
| 5012 | envp[i++] = "HOME=/"; |
| 5013 | envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin"; |
| 5014 | envp[i] = NULL; |
| 5015 | |
| 5016 | /* Drop the lock while we invoke the usermode helper, |
| 5017 | * since the exec could involve hitting disk and hence |
| 5018 | * be a slow process */ |
| 5019 | mutex_unlock(&cgroup_mutex); |
| 5020 | call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5021 | mutex_lock(&cgroup_mutex); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 5022 | continue_free: |
| 5023 | kfree(pathbuf); |
| 5024 | kfree(agentbuf); |
Thomas Gleixner | cdcc136f | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 5025 | raw_spin_lock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5026 | } |
Thomas Gleixner | cdcc136f | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 5027 | raw_spin_unlock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5028 | mutex_unlock(&cgroup_mutex); |
| 5029 | } |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5030 | |
| 5031 | static int __init cgroup_disable(char *str) |
| 5032 | { |
| 5033 | int i; |
| 5034 | char *token; |
| 5035 | |
| 5036 | while ((token = strsep(&str, ",")) != NULL) { |
| 5037 | if (!*token) |
| 5038 | continue; |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 5039 | /* |
| 5040 | * cgroup_disable, being at boot time, can't know about module |
| 5041 | * subsystems, so we don't worry about them. |
| 5042 | */ |
| 5043 | for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) { |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5044 | struct cgroup_subsys *ss = subsys[i]; |
| 5045 | |
| 5046 | if (!strcmp(token, ss->name)) { |
| 5047 | ss->disabled = 1; |
| 5048 | printk(KERN_INFO "Disabling %s control group" |
| 5049 | " subsystem\n", ss->name); |
| 5050 | break; |
| 5051 | } |
| 5052 | } |
| 5053 | } |
| 5054 | return 1; |
| 5055 | } |
| 5056 | __setup("cgroup_disable=", cgroup_disable); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5057 | |
| 5058 | /* |
| 5059 | * Functons for CSS ID. |
| 5060 | */ |
| 5061 | |
| 5062 | /* |
| 5063 | *To get ID other than 0, this should be called when !cgroup_is_removed(). |
| 5064 | */ |
| 5065 | unsigned short css_id(struct cgroup_subsys_state *css) |
| 5066 | { |
KAMEZAWA Hiroyuki | 7f0f154 | 2010-05-11 14:06:58 -0700 | [diff] [blame] | 5067 | struct css_id *cssid; |
| 5068 | |
| 5069 | /* |
| 5070 | * This css_id() can return correct value when somone has refcnt |
| 5071 | * on this or this is under rcu_read_lock(). Once css->id is allocated, |
| 5072 | * it's unchanged until freed. |
| 5073 | */ |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 5074 | cssid = rcu_dereference_check(css->id, css_refcnt(css)); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5075 | |
| 5076 | if (cssid) |
| 5077 | return cssid->id; |
| 5078 | return 0; |
| 5079 | } |
Ben Blum | 67523c4 | 2010-03-10 15:22:11 -0800 | [diff] [blame] | 5080 | EXPORT_SYMBOL_GPL(css_id); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5081 | |
| 5082 | unsigned short css_depth(struct cgroup_subsys_state *css) |
| 5083 | { |
KAMEZAWA Hiroyuki | 7f0f154 | 2010-05-11 14:06:58 -0700 | [diff] [blame] | 5084 | struct css_id *cssid; |
| 5085 | |
Tejun Heo | 28b4c27 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 5086 | cssid = rcu_dereference_check(css->id, css_refcnt(css)); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5087 | |
| 5088 | if (cssid) |
| 5089 | return cssid->depth; |
| 5090 | return 0; |
| 5091 | } |
Ben Blum | 67523c4 | 2010-03-10 15:22:11 -0800 | [diff] [blame] | 5092 | EXPORT_SYMBOL_GPL(css_depth); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5093 | |
KAMEZAWA Hiroyuki | 747388d | 2010-05-11 14:06:59 -0700 | [diff] [blame] | 5094 | /** |
| 5095 | * css_is_ancestor - test "root" css is an ancestor of "child" |
| 5096 | * @child: the css to be tested. |
| 5097 | * @root: the css supporsed to be an ancestor of the child. |
| 5098 | * |
| 5099 | * Returns true if "root" is an ancestor of "child" in its hierarchy. Because |
Johannes Weiner | 91c63734 | 2012-05-29 15:06:24 -0700 | [diff] [blame] | 5100 | * this function reads css->id, the caller must hold rcu_read_lock(). |
KAMEZAWA Hiroyuki | 747388d | 2010-05-11 14:06:59 -0700 | [diff] [blame] | 5101 | * But, considering usual usage, the csses should be valid objects after test. |
| 5102 | * Assuming that the caller will do some action to the child if this returns |
| 5103 | * returns true, the caller must take "child";s reference count. |
| 5104 | * If "child" is valid object and this returns true, "root" is valid, too. |
| 5105 | */ |
| 5106 | |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5107 | bool css_is_ancestor(struct cgroup_subsys_state *child, |
KAMEZAWA Hiroyuki | 0b7f569 | 2009-04-02 16:57:38 -0700 | [diff] [blame] | 5108 | const struct cgroup_subsys_state *root) |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5109 | { |
KAMEZAWA Hiroyuki | 747388d | 2010-05-11 14:06:59 -0700 | [diff] [blame] | 5110 | struct css_id *child_id; |
| 5111 | struct css_id *root_id; |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5112 | |
KAMEZAWA Hiroyuki | 747388d | 2010-05-11 14:06:59 -0700 | [diff] [blame] | 5113 | child_id = rcu_dereference(child->id); |
Johannes Weiner | 91c63734 | 2012-05-29 15:06:24 -0700 | [diff] [blame] | 5114 | if (!child_id) |
| 5115 | return false; |
KAMEZAWA Hiroyuki | 747388d | 2010-05-11 14:06:59 -0700 | [diff] [blame] | 5116 | root_id = rcu_dereference(root->id); |
Johannes Weiner | 91c63734 | 2012-05-29 15:06:24 -0700 | [diff] [blame] | 5117 | if (!root_id) |
| 5118 | return false; |
| 5119 | if (child_id->depth < root_id->depth) |
| 5120 | return false; |
| 5121 | if (child_id->stack[root_id->depth] != root_id->id) |
| 5122 | return false; |
| 5123 | return true; |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5124 | } |
| 5125 | |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5126 | void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css) |
| 5127 | { |
| 5128 | struct css_id *id = css->id; |
| 5129 | /* When this is called before css_id initialization, id can be NULL */ |
| 5130 | if (!id) |
| 5131 | return; |
| 5132 | |
| 5133 | BUG_ON(!ss->use_id); |
| 5134 | |
| 5135 | rcu_assign_pointer(id->css, NULL); |
| 5136 | rcu_assign_pointer(css->id, NULL); |
Hugh Dickins | 42aee6c | 2012-03-21 16:34:21 -0700 | [diff] [blame] | 5137 | spin_lock(&ss->id_lock); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5138 | idr_remove(&ss->idr, id->id); |
Hugh Dickins | 42aee6c | 2012-03-21 16:34:21 -0700 | [diff] [blame] | 5139 | spin_unlock(&ss->id_lock); |
Lai Jiangshan | 025cea9 | 2011-03-15 17:56:10 +0800 | [diff] [blame] | 5140 | kfree_rcu(id, rcu_head); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5141 | } |
Ben Blum | 67523c4 | 2010-03-10 15:22:11 -0800 | [diff] [blame] | 5142 | EXPORT_SYMBOL_GPL(free_css_id); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5143 | |
| 5144 | /* |
| 5145 | * This is called by init or create(). Then, calls to this function are |
| 5146 | * always serialized (By cgroup_mutex() at create()). |
| 5147 | */ |
| 5148 | |
| 5149 | static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth) |
| 5150 | { |
| 5151 | struct css_id *newid; |
| 5152 | int myid, error, size; |
| 5153 | |
| 5154 | BUG_ON(!ss->use_id); |
| 5155 | |
| 5156 | size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1); |
| 5157 | newid = kzalloc(size, GFP_KERNEL); |
| 5158 | if (!newid) |
| 5159 | return ERR_PTR(-ENOMEM); |
| 5160 | /* get id */ |
| 5161 | if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) { |
| 5162 | error = -ENOMEM; |
| 5163 | goto err_out; |
| 5164 | } |
Hugh Dickins | 42aee6c | 2012-03-21 16:34:21 -0700 | [diff] [blame] | 5165 | spin_lock(&ss->id_lock); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5166 | /* Don't use 0. allocates an ID of 1-65535 */ |
| 5167 | error = idr_get_new_above(&ss->idr, newid, 1, &myid); |
Hugh Dickins | 42aee6c | 2012-03-21 16:34:21 -0700 | [diff] [blame] | 5168 | spin_unlock(&ss->id_lock); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5169 | |
| 5170 | /* Returns error when there are no free spaces for new ID.*/ |
| 5171 | if (error) { |
| 5172 | error = -ENOSPC; |
| 5173 | goto err_out; |
| 5174 | } |
| 5175 | if (myid > CSS_ID_MAX) |
| 5176 | goto remove_idr; |
| 5177 | |
| 5178 | newid->id = myid; |
| 5179 | newid->depth = depth; |
| 5180 | return newid; |
| 5181 | remove_idr: |
| 5182 | error = -ENOSPC; |
Hugh Dickins | 42aee6c | 2012-03-21 16:34:21 -0700 | [diff] [blame] | 5183 | spin_lock(&ss->id_lock); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5184 | idr_remove(&ss->idr, myid); |
Hugh Dickins | 42aee6c | 2012-03-21 16:34:21 -0700 | [diff] [blame] | 5185 | spin_unlock(&ss->id_lock); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5186 | err_out: |
| 5187 | kfree(newid); |
| 5188 | return ERR_PTR(error); |
| 5189 | |
| 5190 | } |
| 5191 | |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 5192 | static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss, |
| 5193 | struct cgroup_subsys_state *rootcss) |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5194 | { |
| 5195 | struct css_id *newid; |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5196 | |
Hugh Dickins | 42aee6c | 2012-03-21 16:34:21 -0700 | [diff] [blame] | 5197 | spin_lock_init(&ss->id_lock); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5198 | idr_init(&ss->idr); |
| 5199 | |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5200 | newid = get_new_cssid(ss, 0); |
| 5201 | if (IS_ERR(newid)) |
| 5202 | return PTR_ERR(newid); |
| 5203 | |
| 5204 | newid->stack[0] = newid->id; |
| 5205 | newid->css = rootcss; |
| 5206 | rootcss->id = newid; |
| 5207 | return 0; |
| 5208 | } |
| 5209 | |
| 5210 | static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent, |
| 5211 | struct cgroup *child) |
| 5212 | { |
| 5213 | int subsys_id, i, depth = 0; |
| 5214 | struct cgroup_subsys_state *parent_css, *child_css; |
Li Zefan | fae9c79 | 2010-04-22 17:30:00 +0800 | [diff] [blame] | 5215 | struct css_id *child_id, *parent_id; |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5216 | |
| 5217 | subsys_id = ss->subsys_id; |
| 5218 | parent_css = parent->subsys[subsys_id]; |
| 5219 | child_css = child->subsys[subsys_id]; |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5220 | parent_id = parent_css->id; |
Greg Thelen | 94b3dd0 | 2010-06-04 14:15:03 -0700 | [diff] [blame] | 5221 | depth = parent_id->depth + 1; |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5222 | |
| 5223 | child_id = get_new_cssid(ss, depth); |
| 5224 | if (IS_ERR(child_id)) |
| 5225 | return PTR_ERR(child_id); |
| 5226 | |
| 5227 | for (i = 0; i < depth; i++) |
| 5228 | child_id->stack[i] = parent_id->stack[i]; |
| 5229 | child_id->stack[depth] = child_id->id; |
| 5230 | /* |
| 5231 | * child_id->css pointer will be set after this cgroup is available |
| 5232 | * see cgroup_populate_dir() |
| 5233 | */ |
| 5234 | rcu_assign_pointer(child_css->id, child_id); |
| 5235 | |
| 5236 | return 0; |
| 5237 | } |
| 5238 | |
| 5239 | /** |
| 5240 | * css_lookup - lookup css by id |
| 5241 | * @ss: cgroup subsys to be looked into. |
| 5242 | * @id: the id |
| 5243 | * |
| 5244 | * Returns pointer to cgroup_subsys_state if there is valid one with id. |
| 5245 | * NULL if not. Should be called under rcu_read_lock() |
| 5246 | */ |
| 5247 | struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id) |
| 5248 | { |
| 5249 | struct css_id *cssid = NULL; |
| 5250 | |
| 5251 | BUG_ON(!ss->use_id); |
| 5252 | cssid = idr_find(&ss->idr, id); |
| 5253 | |
| 5254 | if (unlikely(!cssid)) |
| 5255 | return NULL; |
| 5256 | |
| 5257 | return rcu_dereference(cssid->css); |
| 5258 | } |
Ben Blum | 67523c4 | 2010-03-10 15:22:11 -0800 | [diff] [blame] | 5259 | EXPORT_SYMBOL_GPL(css_lookup); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5260 | |
| 5261 | /** |
| 5262 | * css_get_next - lookup next cgroup under specified hierarchy. |
| 5263 | * @ss: pointer to subsystem |
| 5264 | * @id: current position of iteration. |
| 5265 | * @root: pointer to css. search tree under this. |
| 5266 | * @foundid: position of found object. |
| 5267 | * |
| 5268 | * Search next css under the specified hierarchy of rootid. Calling under |
| 5269 | * rcu_read_lock() is necessary. Returns NULL if it reaches the end. |
| 5270 | */ |
| 5271 | struct cgroup_subsys_state * |
| 5272 | css_get_next(struct cgroup_subsys *ss, int id, |
| 5273 | struct cgroup_subsys_state *root, int *foundid) |
| 5274 | { |
| 5275 | struct cgroup_subsys_state *ret = NULL; |
| 5276 | struct css_id *tmp; |
| 5277 | int tmpid; |
| 5278 | int rootid = css_id(root); |
| 5279 | int depth = css_depth(root); |
| 5280 | |
| 5281 | if (!rootid) |
| 5282 | return NULL; |
| 5283 | |
| 5284 | BUG_ON(!ss->use_id); |
Hugh Dickins | ca464d6 | 2012-03-21 16:34:21 -0700 | [diff] [blame] | 5285 | WARN_ON_ONCE(!rcu_read_lock_held()); |
| 5286 | |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5287 | /* fill start point for scan */ |
| 5288 | tmpid = id; |
| 5289 | while (1) { |
| 5290 | /* |
| 5291 | * scan next entry from bitmap(tree), tmpid is updated after |
| 5292 | * idr_get_next(). |
| 5293 | */ |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5294 | tmp = idr_get_next(&ss->idr, &tmpid); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5295 | if (!tmp) |
| 5296 | break; |
| 5297 | if (tmp->depth >= depth && tmp->stack[depth] == rootid) { |
| 5298 | ret = rcu_dereference(tmp->css); |
| 5299 | if (ret) { |
| 5300 | *foundid = tmpid; |
| 5301 | break; |
| 5302 | } |
| 5303 | } |
| 5304 | /* continue to scan from next id */ |
| 5305 | tmpid = tmpid + 1; |
| 5306 | } |
| 5307 | return ret; |
| 5308 | } |
| 5309 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5310 | /* |
| 5311 | * get corresponding css from file open on cgroupfs directory |
| 5312 | */ |
| 5313 | struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id) |
| 5314 | { |
| 5315 | struct cgroup *cgrp; |
| 5316 | struct inode *inode; |
| 5317 | struct cgroup_subsys_state *css; |
| 5318 | |
| 5319 | inode = f->f_dentry->d_inode; |
| 5320 | /* check in cgroup filesystem dir */ |
| 5321 | if (inode->i_op != &cgroup_dir_inode_operations) |
| 5322 | return ERR_PTR(-EBADF); |
| 5323 | |
| 5324 | if (id < 0 || id >= CGROUP_SUBSYS_COUNT) |
| 5325 | return ERR_PTR(-EINVAL); |
| 5326 | |
| 5327 | /* get cgroup */ |
| 5328 | cgrp = __d_cgrp(f->f_dentry); |
| 5329 | css = cgrp->subsys[id]; |
| 5330 | return css ? css : ERR_PTR(-ENOENT); |
| 5331 | } |
| 5332 | |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5333 | #ifdef CONFIG_CGROUP_DEBUG |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 5334 | static struct cgroup_subsys_state *debug_create(struct cgroup *cont) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5335 | { |
| 5336 | struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL); |
| 5337 | |
| 5338 | if (!css) |
| 5339 | return ERR_PTR(-ENOMEM); |
| 5340 | |
| 5341 | return css; |
| 5342 | } |
| 5343 | |
Li Zefan | 761b3ef5 | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 5344 | static void debug_destroy(struct cgroup *cont) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5345 | { |
| 5346 | kfree(cont->subsys[debug_subsys_id]); |
| 5347 | } |
| 5348 | |
| 5349 | static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft) |
| 5350 | { |
| 5351 | return atomic_read(&cont->count); |
| 5352 | } |
| 5353 | |
| 5354 | static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft) |
| 5355 | { |
| 5356 | return cgroup_task_count(cont); |
| 5357 | } |
| 5358 | |
| 5359 | static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft) |
| 5360 | { |
| 5361 | return (u64)(unsigned long)current->cgroups; |
| 5362 | } |
| 5363 | |
| 5364 | static u64 current_css_set_refcount_read(struct cgroup *cont, |
| 5365 | struct cftype *cft) |
| 5366 | { |
| 5367 | u64 count; |
| 5368 | |
| 5369 | rcu_read_lock(); |
| 5370 | count = atomic_read(¤t->cgroups->refcount); |
| 5371 | rcu_read_unlock(); |
| 5372 | return count; |
| 5373 | } |
| 5374 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5375 | static int current_css_set_cg_links_read(struct cgroup *cont, |
| 5376 | struct cftype *cft, |
| 5377 | struct seq_file *seq) |
| 5378 | { |
| 5379 | struct cg_cgroup_link *link; |
| 5380 | struct css_set *cg; |
| 5381 | |
| 5382 | read_lock(&css_set_lock); |
| 5383 | rcu_read_lock(); |
| 5384 | cg = rcu_dereference(current->cgroups); |
| 5385 | list_for_each_entry(link, &cg->cg_links, cg_link_list) { |
| 5386 | struct cgroup *c = link->cgrp; |
| 5387 | const char *name; |
| 5388 | |
| 5389 | if (c->dentry) |
| 5390 | name = c->dentry->d_name.name; |
| 5391 | else |
| 5392 | name = "?"; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5393 | seq_printf(seq, "Root %d group %s\n", |
| 5394 | c->root->hierarchy_id, name); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5395 | } |
| 5396 | rcu_read_unlock(); |
| 5397 | read_unlock(&css_set_lock); |
| 5398 | return 0; |
| 5399 | } |
| 5400 | |
| 5401 | #define MAX_TASKS_SHOWN_PER_CSS 25 |
| 5402 | static int cgroup_css_links_read(struct cgroup *cont, |
| 5403 | struct cftype *cft, |
| 5404 | struct seq_file *seq) |
| 5405 | { |
| 5406 | struct cg_cgroup_link *link; |
| 5407 | |
| 5408 | read_lock(&css_set_lock); |
| 5409 | list_for_each_entry(link, &cont->css_sets, cgrp_link_list) { |
| 5410 | struct css_set *cg = link->cg; |
| 5411 | struct task_struct *task; |
| 5412 | int count = 0; |
| 5413 | seq_printf(seq, "css_set %p\n", cg); |
| 5414 | list_for_each_entry(task, &cg->tasks, cg_list) { |
| 5415 | if (count++ > MAX_TASKS_SHOWN_PER_CSS) { |
| 5416 | seq_puts(seq, " ...\n"); |
| 5417 | break; |
| 5418 | } else { |
| 5419 | seq_printf(seq, " task %d\n", |
| 5420 | task_pid_vnr(task)); |
| 5421 | } |
| 5422 | } |
| 5423 | } |
| 5424 | read_unlock(&css_set_lock); |
| 5425 | return 0; |
| 5426 | } |
| 5427 | |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5428 | static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft) |
| 5429 | { |
| 5430 | return test_bit(CGRP_RELEASABLE, &cgrp->flags); |
| 5431 | } |
| 5432 | |
| 5433 | static struct cftype debug_files[] = { |
| 5434 | { |
| 5435 | .name = "cgroup_refcount", |
| 5436 | .read_u64 = cgroup_refcount_read, |
| 5437 | }, |
| 5438 | { |
| 5439 | .name = "taskcount", |
| 5440 | .read_u64 = debug_taskcount_read, |
| 5441 | }, |
| 5442 | |
| 5443 | { |
| 5444 | .name = "current_css_set", |
| 5445 | .read_u64 = current_css_set_read, |
| 5446 | }, |
| 5447 | |
| 5448 | { |
| 5449 | .name = "current_css_set_refcount", |
| 5450 | .read_u64 = current_css_set_refcount_read, |
| 5451 | }, |
| 5452 | |
| 5453 | { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5454 | .name = "current_css_set_cg_links", |
| 5455 | .read_seq_string = current_css_set_cg_links_read, |
| 5456 | }, |
| 5457 | |
| 5458 | { |
| 5459 | .name = "cgroup_css_links", |
| 5460 | .read_seq_string = cgroup_css_links_read, |
| 5461 | }, |
| 5462 | |
| 5463 | { |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5464 | .name = "releasable", |
| 5465 | .read_u64 = releasable_read, |
| 5466 | }, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5467 | |
Tejun Heo | 4baf6e3 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 5468 | { } /* terminate */ |
| 5469 | }; |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5470 | |
| 5471 | struct cgroup_subsys debug_subsys = { |
| 5472 | .name = "debug", |
| 5473 | .create = debug_create, |
| 5474 | .destroy = debug_destroy, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5475 | .subsys_id = debug_subsys_id, |
Tejun Heo | 4baf6e3 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 5476 | .base_cftypes = debug_files, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5477 | }; |
| 5478 | #endif /* CONFIG_CGROUP_DEBUG */ |