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