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 | |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 29 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 30 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 31 | #include <linux/cgroup.h> |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 32 | #include <linux/cred.h> |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 33 | #include <linux/ctype.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 34 | #include <linux/errno.h> |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 35 | #include <linux/init_task.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 36 | #include <linux/kernel.h> |
| 37 | #include <linux/list.h> |
Jianyu Zhan | c9482a5 | 2014-04-26 15:40:28 +0800 | [diff] [blame] | 38 | #include <linux/magic.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 39 | #include <linux/mm.h> |
| 40 | #include <linux/mutex.h> |
| 41 | #include <linux/mount.h> |
| 42 | #include <linux/pagemap.h> |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 43 | #include <linux/proc_fs.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 44 | #include <linux/rcupdate.h> |
| 45 | #include <linux/sched.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 46 | #include <linux/slab.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 47 | #include <linux/spinlock.h> |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 48 | #include <linux/rwsem.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 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> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 52 | #include <linux/delayacct.h> |
| 53 | #include <linux/cgroupstats.h> |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 54 | #include <linux/hashtable.h> |
Li Zefan | 096b7fe | 2009-07-29 15:04:04 -0700 | [diff] [blame] | 55 | #include <linux/pid_namespace.h> |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 56 | #include <linux/idr.h> |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 57 | #include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */ |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 58 | #include <linux/kthread.h> |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 59 | #include <linux/delay.h> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 60 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 61 | #include <linux/atomic.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 62 | |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 63 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 64 | * pidlists linger the following amount before being destroyed. The goal |
| 65 | * is avoiding frequent destruction in the middle of consecutive read calls |
| 66 | * Expiring in the middle is a performance problem not a correctness one. |
| 67 | * 1 sec should be enough. |
| 68 | */ |
| 69 | #define CGROUP_PIDLIST_DESTROY_DELAY HZ |
| 70 | |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 71 | #define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \ |
| 72 | MAX_CFTYPE_NAME + 2) |
| 73 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 74 | /* |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 75 | * cgroup_mutex is the master lock. Any modification to cgroup or its |
| 76 | * hierarchy must be performed while holding it. |
| 77 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 78 | * css_set_rwsem protects task->cgroups pointer, the list of css_set |
| 79 | * objects, and the chain of tasks off each css_set. |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 80 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 81 | * These locks are exported if CONFIG_PROVE_RCU so that accessors in |
| 82 | * cgroup.h can use them for lockdep annotations. |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 83 | */ |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 84 | #ifdef CONFIG_PROVE_RCU |
| 85 | DEFINE_MUTEX(cgroup_mutex); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 86 | DECLARE_RWSEM(css_set_rwsem); |
| 87 | EXPORT_SYMBOL_GPL(cgroup_mutex); |
| 88 | EXPORT_SYMBOL_GPL(css_set_rwsem); |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 89 | #else |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 90 | static DEFINE_MUTEX(cgroup_mutex); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 91 | static DECLARE_RWSEM(css_set_rwsem); |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 92 | #endif |
| 93 | |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 94 | /* |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 95 | * Protects cgroup_idr and css_idr so that IDs can be released without |
| 96 | * grabbing cgroup_mutex. |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 97 | */ |
| 98 | static DEFINE_SPINLOCK(cgroup_idr_lock); |
| 99 | |
| 100 | /* |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 101 | * Protects cgroup_subsys->release_agent_path. Modifying it also requires |
| 102 | * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock. |
| 103 | */ |
| 104 | static DEFINE_SPINLOCK(release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 105 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 106 | #define cgroup_assert_mutex_or_rcu_locked() \ |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 107 | rcu_lockdep_assert(rcu_read_lock_held() || \ |
| 108 | lockdep_is_held(&cgroup_mutex), \ |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 109 | "cgroup_mutex or RCU read lock required"); |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 110 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 111 | /* |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 112 | * cgroup destruction makes heavy use of work items and there can be a lot |
| 113 | * of concurrent destructions. Use a separate workqueue so that cgroup |
| 114 | * destruction work items don't end up filling up max_active of system_wq |
| 115 | * which may lead to deadlock. |
| 116 | */ |
| 117 | static struct workqueue_struct *cgroup_destroy_wq; |
| 118 | |
| 119 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 120 | * pidlist destructions need to be flushed on cgroup destruction. Use a |
| 121 | * separate workqueue as flush domain. |
| 122 | */ |
| 123 | static struct workqueue_struct *cgroup_pidlist_destroy_wq; |
| 124 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 125 | /* generate an array of cgroup subsystem pointers */ |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 126 | #define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys, |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 127 | static struct cgroup_subsys *cgroup_subsys[] = { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 128 | #include <linux/cgroup_subsys.h> |
| 129 | }; |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 130 | #undef SUBSYS |
| 131 | |
| 132 | /* array of cgroup subsystem names */ |
| 133 | #define SUBSYS(_x) [_x ## _cgrp_id] = #_x, |
| 134 | static const char *cgroup_subsys_name[] = { |
| 135 | #include <linux/cgroup_subsys.h> |
| 136 | }; |
| 137 | #undef SUBSYS |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 138 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 139 | /* |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 140 | * The default hierarchy, reserved for the subsystems that are otherwise |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 141 | * unattached - it never has more than a single cgroup, and all tasks are |
| 142 | * part of that cgroup. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 143 | */ |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 144 | struct cgroup_root cgrp_dfl_root; |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 145 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 146 | /* |
| 147 | * The default hierarchy always exists but is hidden until mounted for the |
| 148 | * first time. This is for backward compatibility. |
| 149 | */ |
| 150 | static bool cgrp_dfl_root_visible; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 151 | |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 152 | /* |
| 153 | * Set by the boot param of the same name and makes subsystems with NULL |
| 154 | * ->dfl_files to use ->legacy_files on the default hierarchy. |
| 155 | */ |
| 156 | static bool cgroup_legacy_files_on_dfl; |
| 157 | |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 158 | /* some controllers are not supported in the default hierarchy */ |
Tejun Heo | 5de4fa1 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 159 | static unsigned int cgrp_dfl_root_inhibit_ss_mask; |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 160 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 161 | /* The list of hierarchy roots */ |
| 162 | |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 163 | static LIST_HEAD(cgroup_roots); |
| 164 | static int cgroup_root_count; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 165 | |
Tejun Heo | 3417ae1 | 2014-02-08 10:37:01 -0500 | [diff] [blame] | 166 | /* hierarchy ID allocation and mapping, protected by cgroup_mutex */ |
Tejun Heo | 1a57423 | 2013-04-14 11:36:58 -0700 | [diff] [blame] | 167 | static DEFINE_IDR(cgroup_hierarchy_idr); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 168 | |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 169 | /* |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 170 | * Assign a monotonically increasing serial number to csses. It guarantees |
| 171 | * cgroups with bigger numbers are newer than those with smaller numbers. |
| 172 | * Also, as csses are always appended to the parent's ->children list, it |
| 173 | * guarantees that sibling csses are always sorted in the ascending serial |
| 174 | * number order on the list. Protected by cgroup_mutex. |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 175 | */ |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 176 | static u64 css_serial_nr_next = 1; |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 177 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 178 | /* This flag indicates whether tasks in the fork and exit paths should |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 179 | * check for fork/exit handlers to call. This avoids us having to do |
| 180 | * extra work in the fork/exit path if none of the subsystems need to |
| 181 | * be called. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 182 | */ |
Li Zefan | 8947f9d | 2008-07-25 01:46:56 -0700 | [diff] [blame] | 183 | static int need_forkexit_callback __read_mostly; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 184 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 185 | static struct cftype cgroup_dfl_base_files[]; |
| 186 | static struct cftype cgroup_legacy_base_files[]; |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 187 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 188 | static int rebind_subsystems(struct cgroup_root *dst_root, |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 189 | unsigned int ss_mask); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 190 | static int cgroup_destroy_locked(struct cgroup *cgrp); |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 191 | static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss, |
| 192 | bool visible); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 193 | static void css_release(struct percpu_ref *ref); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 194 | static void kill_css(struct cgroup_subsys_state *css); |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 195 | static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[], |
| 196 | bool is_add); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 197 | |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 198 | /* IDR wrappers which synchronize using cgroup_idr_lock */ |
| 199 | static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end, |
| 200 | gfp_t gfp_mask) |
| 201 | { |
| 202 | int ret; |
| 203 | |
| 204 | idr_preload(gfp_mask); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 205 | spin_lock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 206 | ret = idr_alloc(idr, ptr, start, end, gfp_mask); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 207 | spin_unlock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 208 | idr_preload_end(); |
| 209 | return ret; |
| 210 | } |
| 211 | |
| 212 | static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id) |
| 213 | { |
| 214 | void *ret; |
| 215 | |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 216 | spin_lock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 217 | ret = idr_replace(idr, ptr, id); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 218 | spin_unlock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 219 | return ret; |
| 220 | } |
| 221 | |
| 222 | static void cgroup_idr_remove(struct idr *idr, int id) |
| 223 | { |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 224 | spin_lock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 225 | idr_remove(idr, id); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 226 | spin_unlock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 227 | } |
| 228 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 229 | static struct cgroup *cgroup_parent(struct cgroup *cgrp) |
| 230 | { |
| 231 | struct cgroup_subsys_state *parent_css = cgrp->self.parent; |
| 232 | |
| 233 | if (parent_css) |
| 234 | return container_of(parent_css, struct cgroup, self); |
| 235 | return NULL; |
| 236 | } |
| 237 | |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 238 | /** |
| 239 | * cgroup_css - obtain a cgroup's css for the specified subsystem |
| 240 | * @cgrp: the cgroup of interest |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 241 | * @ss: the subsystem of interest (%NULL returns @cgrp->self) |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 242 | * |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 243 | * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This |
| 244 | * function must be called either under cgroup_mutex or rcu_read_lock() and |
| 245 | * the caller is responsible for pinning the returned css if it wants to |
| 246 | * keep accessing it outside the said locks. This function may return |
| 247 | * %NULL if @cgrp doesn't have @subsys_id enabled. |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 248 | */ |
| 249 | static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp, |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 250 | struct cgroup_subsys *ss) |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 251 | { |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 252 | if (ss) |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 253 | return rcu_dereference_check(cgrp->subsys[ss->id], |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 254 | lockdep_is_held(&cgroup_mutex)); |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 255 | else |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 256 | return &cgrp->self; |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 257 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 258 | |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 259 | /** |
| 260 | * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem |
| 261 | * @cgrp: the cgroup of interest |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 262 | * @ss: the subsystem of interest (%NULL returns @cgrp->self) |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 263 | * |
| 264 | * Similar to cgroup_css() but returns the effctive css, which is defined |
| 265 | * as the matching css of the nearest ancestor including self which has @ss |
| 266 | * enabled. If @ss is associated with the hierarchy @cgrp is on, this |
| 267 | * function is guaranteed to return non-NULL css. |
| 268 | */ |
| 269 | static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp, |
| 270 | struct cgroup_subsys *ss) |
| 271 | { |
| 272 | lockdep_assert_held(&cgroup_mutex); |
| 273 | |
| 274 | if (!ss) |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 275 | return &cgrp->self; |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 276 | |
| 277 | if (!(cgrp->root->subsys_mask & (1 << ss->id))) |
| 278 | return NULL; |
| 279 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 280 | while (cgroup_parent(cgrp) && |
| 281 | !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id))) |
| 282 | cgrp = cgroup_parent(cgrp); |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 283 | |
| 284 | return cgroup_css(cgrp, ss); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 287 | /* convenient tests for these bits */ |
Tejun Heo | 54766d4 | 2013-06-12 21:04:53 -0700 | [diff] [blame] | 288 | static inline bool cgroup_is_dead(const struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 289 | { |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 290 | return !(cgrp->self.flags & CSS_ONLINE); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 293 | struct cgroup_subsys_state *of_css(struct kernfs_open_file *of) |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 294 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 295 | struct cgroup *cgrp = of->kn->parent->priv; |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 296 | struct cftype *cft = of_cft(of); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 297 | |
| 298 | /* |
| 299 | * This is open and unprotected implementation of cgroup_css(). |
| 300 | * seq_css() is only called from a kernfs file operation which has |
| 301 | * an active reference on the file. Because all the subsystem |
| 302 | * files are drained before a css is disassociated with a cgroup, |
| 303 | * the matching css from the cgroup's subsys table is guaranteed to |
| 304 | * be and stay valid until the enclosing operation is complete. |
| 305 | */ |
| 306 | if (cft->ss) |
| 307 | return rcu_dereference_raw(cgrp->subsys[cft->ss->id]); |
| 308 | else |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 309 | return &cgrp->self; |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 310 | } |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 311 | EXPORT_SYMBOL_GPL(of_css); |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 312 | |
Li Zefan | 78574cf | 2013-04-08 19:00:38 -0700 | [diff] [blame] | 313 | /** |
| 314 | * cgroup_is_descendant - test ancestry |
| 315 | * @cgrp: the cgroup to be tested |
| 316 | * @ancestor: possible ancestor of @cgrp |
| 317 | * |
| 318 | * Test whether @cgrp is a descendant of @ancestor. It also returns %true |
| 319 | * if @cgrp == @ancestor. This function is safe to call as long as @cgrp |
| 320 | * and @ancestor are accessible. |
| 321 | */ |
| 322 | bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor) |
| 323 | { |
| 324 | while (cgrp) { |
| 325 | if (cgrp == ancestor) |
| 326 | return true; |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 327 | cgrp = cgroup_parent(cgrp); |
Li Zefan | 78574cf | 2013-04-08 19:00:38 -0700 | [diff] [blame] | 328 | } |
| 329 | return false; |
| 330 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 331 | |
Adrian Bunk | e9685a0 | 2008-02-07 00:13:46 -0800 | [diff] [blame] | 332 | static int notify_on_release(const struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 333 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 334 | return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 335 | } |
| 336 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 337 | /** |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 338 | * for_each_css - iterate all css's of a cgroup |
| 339 | * @css: the iteration cursor |
| 340 | * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end |
| 341 | * @cgrp: the target cgroup to iterate css's of |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 342 | * |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 343 | * Should be called under cgroup_[tree_]mutex. |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 344 | */ |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 345 | #define for_each_css(css, ssid, cgrp) \ |
| 346 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \ |
| 347 | if (!((css) = rcu_dereference_check( \ |
| 348 | (cgrp)->subsys[(ssid)], \ |
| 349 | lockdep_is_held(&cgroup_mutex)))) { } \ |
| 350 | else |
| 351 | |
| 352 | /** |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 353 | * for_each_e_css - iterate all effective css's of a cgroup |
| 354 | * @css: the iteration cursor |
| 355 | * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end |
| 356 | * @cgrp: the target cgroup to iterate css's of |
| 357 | * |
| 358 | * Should be called under cgroup_[tree_]mutex. |
| 359 | */ |
| 360 | #define for_each_e_css(css, ssid, cgrp) \ |
| 361 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \ |
| 362 | if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \ |
| 363 | ; \ |
| 364 | else |
| 365 | |
| 366 | /** |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 367 | * for_each_subsys - iterate all enabled cgroup subsystems |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 368 | * @ss: the iteration cursor |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 369 | * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 370 | */ |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 371 | #define for_each_subsys(ss, ssid) \ |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 372 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \ |
| 373 | (((ss) = cgroup_subsys[ssid]) || true); (ssid)++) |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 374 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 375 | /* iterate across the hierarchies */ |
| 376 | #define for_each_root(root) \ |
Tejun Heo | 5549c49 | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 377 | list_for_each_entry((root), &cgroup_roots, root_list) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 378 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 379 | /* iterate over child cgrps, lock should be held throughout iteration */ |
| 380 | #define cgroup_for_each_live_child(child, cgrp) \ |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 381 | list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \ |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 382 | if (({ lockdep_assert_held(&cgroup_mutex); \ |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 383 | cgroup_is_dead(child); })) \ |
| 384 | ; \ |
| 385 | else |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 386 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 387 | static void cgroup_release_agent(struct work_struct *work); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 388 | static void check_for_release(struct cgroup *cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 389 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 390 | /* |
| 391 | * A cgroup can be associated with multiple css_sets as different tasks may |
| 392 | * belong to different cgroups on different hierarchies. In the other |
| 393 | * direction, a css_set is naturally associated with multiple cgroups. |
| 394 | * This M:N relationship is represented by the following link structure |
| 395 | * which exists for each association and allows traversing the associations |
| 396 | * from both sides. |
| 397 | */ |
| 398 | struct cgrp_cset_link { |
| 399 | /* the cgroup and css_set this link associates */ |
| 400 | struct cgroup *cgrp; |
| 401 | struct css_set *cset; |
| 402 | |
| 403 | /* list of cgrp_cset_links anchored at cgrp->cset_links */ |
| 404 | struct list_head cset_link; |
| 405 | |
| 406 | /* list of cgrp_cset_links anchored at css_set->cgrp_links */ |
| 407 | struct list_head cgrp_link; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 408 | }; |
| 409 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 410 | /* |
| 411 | * The default css_set - used by init and its children prior to any |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 412 | * hierarchies being mounted. It contains a pointer to the root state |
| 413 | * for each subsystem. Also used to anchor the list of css_sets. Not |
| 414 | * reference-counted, to improve performance when child cgroups |
| 415 | * haven't been created. |
| 416 | */ |
Tejun Heo | 5024ae2 | 2014-05-07 21:31:17 -0400 | [diff] [blame] | 417 | struct css_set init_css_set = { |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 418 | .refcount = ATOMIC_INIT(1), |
| 419 | .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links), |
| 420 | .tasks = LIST_HEAD_INIT(init_css_set.tasks), |
| 421 | .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks), |
| 422 | .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node), |
| 423 | .mg_node = LIST_HEAD_INIT(init_css_set.mg_node), |
| 424 | }; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 425 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 426 | static int css_set_count = 1; /* 1 for init_css_set */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 427 | |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 428 | /** |
| 429 | * cgroup_update_populated - updated populated count of a cgroup |
| 430 | * @cgrp: the target cgroup |
| 431 | * @populated: inc or dec populated count |
| 432 | * |
| 433 | * @cgrp is either getting the first task (css_set) or losing the last. |
| 434 | * Update @cgrp->populated_cnt accordingly. The count is propagated |
| 435 | * towards root so that a given cgroup's populated_cnt is zero iff the |
| 436 | * cgroup and all its descendants are empty. |
| 437 | * |
| 438 | * @cgrp's interface file "cgroup.populated" is zero if |
| 439 | * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt |
| 440 | * changes from or to zero, userland is notified that the content of the |
| 441 | * interface file has changed. This can be used to detect when @cgrp and |
| 442 | * its descendants become populated or empty. |
| 443 | */ |
| 444 | static void cgroup_update_populated(struct cgroup *cgrp, bool populated) |
| 445 | { |
| 446 | lockdep_assert_held(&css_set_rwsem); |
| 447 | |
| 448 | do { |
| 449 | bool trigger; |
| 450 | |
| 451 | if (populated) |
| 452 | trigger = !cgrp->populated_cnt++; |
| 453 | else |
| 454 | trigger = !--cgrp->populated_cnt; |
| 455 | |
| 456 | if (!trigger) |
| 457 | break; |
| 458 | |
| 459 | if (cgrp->populated_kn) |
| 460 | kernfs_notify(cgrp->populated_kn); |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 461 | cgrp = cgroup_parent(cgrp); |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 462 | } while (cgrp); |
| 463 | } |
| 464 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 465 | /* |
| 466 | * hash table for cgroup groups. This improves the performance to find |
| 467 | * an existing css_set. This hash doesn't (currently) take into |
| 468 | * account cgroups in empty hierarchies. |
| 469 | */ |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 470 | #define CSS_SET_HASH_BITS 7 |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 471 | static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 472 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 473 | static unsigned long css_set_hash(struct cgroup_subsys_state *css[]) |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 474 | { |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 475 | unsigned long key = 0UL; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 476 | struct cgroup_subsys *ss; |
| 477 | int i; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 478 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 479 | for_each_subsys(ss, i) |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 480 | key += (unsigned long)css[i]; |
| 481 | key = (key >> 16) ^ key; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 482 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 483 | return key; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 484 | } |
| 485 | |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 486 | static void put_css_set_locked(struct css_set *cset) |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 487 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 488 | struct cgrp_cset_link *link, *tmp_link; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 489 | struct cgroup_subsys *ss; |
| 490 | int ssid; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 491 | |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 492 | lockdep_assert_held(&css_set_rwsem); |
| 493 | |
| 494 | if (!atomic_dec_and_test(&cset->refcount)) |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 495 | return; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 496 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 497 | /* This css_set is dead. unlink it and release cgroup refcounts */ |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 498 | for_each_subsys(ss, ssid) |
| 499 | list_del(&cset->e_cset_node[ssid]); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 500 | hash_del(&cset->hlist); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 501 | css_set_count--; |
| 502 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 503 | list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 504 | struct cgroup *cgrp = link->cgrp; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 505 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 506 | list_del(&link->cset_link); |
| 507 | list_del(&link->cgrp_link); |
Li Zefan | 71b5707 | 2013-01-24 14:43:28 +0800 | [diff] [blame] | 508 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 509 | /* @cgrp can't go away while we're holding css_set_rwsem */ |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 510 | if (list_empty(&cgrp->cset_links)) { |
| 511 | cgroup_update_populated(cgrp, false); |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 512 | check_for_release(cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 513 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 514 | |
| 515 | kfree(link); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 516 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 517 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 518 | kfree_rcu(cset, rcu_head); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 519 | } |
| 520 | |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 521 | static void put_css_set(struct css_set *cset) |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 522 | { |
| 523 | /* |
| 524 | * Ensure that the refcount doesn't hit zero while any readers |
| 525 | * can see it. Similar to atomic_dec_and_lock(), but for an |
| 526 | * rwlock |
| 527 | */ |
| 528 | if (atomic_add_unless(&cset->refcount, -1, 1)) |
| 529 | return; |
| 530 | |
| 531 | down_write(&css_set_rwsem); |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 532 | put_css_set_locked(cset); |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 533 | up_write(&css_set_rwsem); |
| 534 | } |
| 535 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 536 | /* |
| 537 | * refcounted get/put for css_set objects |
| 538 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 539 | static inline void get_css_set(struct css_set *cset) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 540 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 541 | atomic_inc(&cset->refcount); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 542 | } |
| 543 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 544 | /** |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 545 | * compare_css_sets - helper function for find_existing_css_set(). |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 546 | * @cset: candidate css_set being tested |
| 547 | * @old_cset: existing css_set for a task |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 548 | * @new_cgrp: cgroup that's being entered by the task |
| 549 | * @template: desired set of css pointers in css_set (pre-calculated) |
| 550 | * |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 551 | * Returns true if "cset" matches "old_cset" except for the hierarchy |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 552 | * which "new_cgrp" belongs to, for which it should match "new_cgrp". |
| 553 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 554 | static bool compare_css_sets(struct css_set *cset, |
| 555 | struct css_set *old_cset, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 556 | struct cgroup *new_cgrp, |
| 557 | struct cgroup_subsys_state *template[]) |
| 558 | { |
| 559 | struct list_head *l1, *l2; |
| 560 | |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 561 | /* |
| 562 | * On the default hierarchy, there can be csets which are |
| 563 | * associated with the same set of cgroups but different csses. |
| 564 | * Let's first ensure that csses match. |
| 565 | */ |
| 566 | if (memcmp(template, cset->subsys, sizeof(cset->subsys))) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 567 | return false; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 568 | |
| 569 | /* |
| 570 | * Compare cgroup pointers in order to distinguish between |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 571 | * different cgroups in hierarchies. As different cgroups may |
| 572 | * share the same effective css, this comparison is always |
| 573 | * necessary. |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 574 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 575 | l1 = &cset->cgrp_links; |
| 576 | l2 = &old_cset->cgrp_links; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 577 | while (1) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 578 | struct cgrp_cset_link *link1, *link2; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 579 | struct cgroup *cgrp1, *cgrp2; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 580 | |
| 581 | l1 = l1->next; |
| 582 | l2 = l2->next; |
| 583 | /* See if we reached the end - both lists are equal length. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 584 | if (l1 == &cset->cgrp_links) { |
| 585 | BUG_ON(l2 != &old_cset->cgrp_links); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 586 | break; |
| 587 | } else { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 588 | BUG_ON(l2 == &old_cset->cgrp_links); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 589 | } |
| 590 | /* Locate the cgroups associated with these links. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 591 | link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link); |
| 592 | link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link); |
| 593 | cgrp1 = link1->cgrp; |
| 594 | cgrp2 = link2->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 595 | /* Hierarchies should be linked in the same order. */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 596 | BUG_ON(cgrp1->root != cgrp2->root); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 597 | |
| 598 | /* |
| 599 | * If this hierarchy is the hierarchy of the cgroup |
| 600 | * that's changing, then we need to check that this |
| 601 | * css_set points to the new cgroup; if it's any other |
| 602 | * hierarchy, then this css_set should point to the |
| 603 | * same cgroup as the old css_set. |
| 604 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 605 | if (cgrp1->root == new_cgrp->root) { |
| 606 | if (cgrp1 != new_cgrp) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 607 | return false; |
| 608 | } else { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 609 | if (cgrp1 != cgrp2) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 610 | return false; |
| 611 | } |
| 612 | } |
| 613 | return true; |
| 614 | } |
| 615 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 616 | /** |
| 617 | * find_existing_css_set - init css array and find the matching css_set |
| 618 | * @old_cset: the css_set that we're using before the cgroup transition |
| 619 | * @cgrp: the cgroup that we're moving into |
| 620 | * @template: out param for the new set of csses, should be clear on entry |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 621 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 622 | static struct css_set *find_existing_css_set(struct css_set *old_cset, |
| 623 | struct cgroup *cgrp, |
| 624 | struct cgroup_subsys_state *template[]) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 625 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 626 | struct cgroup_root *root = cgrp->root; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 627 | struct cgroup_subsys *ss; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 628 | struct css_set *cset; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 629 | unsigned long key; |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 630 | int i; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 631 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 632 | /* |
| 633 | * Build the set of subsystem state objects that we want to see in the |
| 634 | * new css_set. while subsystems can change globally, the entries here |
| 635 | * won't change, so no need for locking. |
| 636 | */ |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 637 | for_each_subsys(ss, i) { |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 638 | if (root->subsys_mask & (1UL << i)) { |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 639 | /* |
| 640 | * @ss is in this hierarchy, so we want the |
| 641 | * effective css from @cgrp. |
| 642 | */ |
| 643 | template[i] = cgroup_e_css(cgrp, ss); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 644 | } else { |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 645 | /* |
| 646 | * @ss is not in this hierarchy, so we don't want |
| 647 | * to change the css. |
| 648 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 649 | template[i] = old_cset->subsys[i]; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 650 | } |
| 651 | } |
| 652 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 653 | key = css_set_hash(template); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 654 | hash_for_each_possible(css_set_table, cset, hlist, key) { |
| 655 | if (!compare_css_sets(cset, old_cset, cgrp, template)) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 656 | continue; |
| 657 | |
| 658 | /* This css_set matches what we need */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 659 | return cset; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 660 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 661 | |
| 662 | /* No existing cgroup group matched */ |
| 663 | return NULL; |
| 664 | } |
| 665 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 666 | static void free_cgrp_cset_links(struct list_head *links_to_free) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 667 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 668 | struct cgrp_cset_link *link, *tmp_link; |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 669 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 670 | list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) { |
| 671 | list_del(&link->cset_link); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 672 | kfree(link); |
| 673 | } |
| 674 | } |
| 675 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 676 | /** |
| 677 | * allocate_cgrp_cset_links - allocate cgrp_cset_links |
| 678 | * @count: the number of links to allocate |
| 679 | * @tmp_links: list_head the allocated links are put on |
| 680 | * |
| 681 | * Allocate @count cgrp_cset_link structures and chain them on @tmp_links |
| 682 | * through ->cset_link. Returns 0 on success or -errno. |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 683 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 684 | static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links) |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 685 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 686 | struct cgrp_cset_link *link; |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 687 | int i; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 688 | |
| 689 | INIT_LIST_HEAD(tmp_links); |
| 690 | |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 691 | for (i = 0; i < count; i++) { |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 692 | link = kzalloc(sizeof(*link), GFP_KERNEL); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 693 | if (!link) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 694 | free_cgrp_cset_links(tmp_links); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 695 | return -ENOMEM; |
| 696 | } |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 697 | list_add(&link->cset_link, tmp_links); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 698 | } |
| 699 | return 0; |
| 700 | } |
| 701 | |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 702 | /** |
| 703 | * link_css_set - a helper function to link a css_set to a cgroup |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 704 | * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links() |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 705 | * @cset: the css_set to be linked |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 706 | * @cgrp: the destination cgroup |
| 707 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 708 | static void link_css_set(struct list_head *tmp_links, struct css_set *cset, |
| 709 | struct cgroup *cgrp) |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 710 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 711 | struct cgrp_cset_link *link; |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 712 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 713 | BUG_ON(list_empty(tmp_links)); |
Tejun Heo | 6803c00 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 714 | |
| 715 | if (cgroup_on_dfl(cgrp)) |
| 716 | cset->dfl_cgrp = cgrp; |
| 717 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 718 | link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link); |
| 719 | link->cset = cset; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 720 | link->cgrp = cgrp; |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 721 | |
| 722 | if (list_empty(&cgrp->cset_links)) |
| 723 | cgroup_update_populated(cgrp, true); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 724 | list_move(&link->cset_link, &cgrp->cset_links); |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 725 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 726 | /* |
| 727 | * Always add links to the tail of the list so that the list |
| 728 | * is sorted by order of hierarchy creation |
| 729 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 730 | list_add_tail(&link->cgrp_link, &cset->cgrp_links); |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 731 | } |
| 732 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 733 | /** |
| 734 | * find_css_set - return a new css_set with one cgroup updated |
| 735 | * @old_cset: the baseline css_set |
| 736 | * @cgrp: the cgroup to be updated |
| 737 | * |
| 738 | * Return a new css_set that's equivalent to @old_cset, but with @cgrp |
| 739 | * substituted into the appropriate hierarchy. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 740 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 741 | static struct css_set *find_css_set(struct css_set *old_cset, |
| 742 | struct cgroup *cgrp) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 743 | { |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 744 | struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { }; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 745 | struct css_set *cset; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 746 | struct list_head tmp_links; |
| 747 | struct cgrp_cset_link *link; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 748 | struct cgroup_subsys *ss; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 749 | unsigned long key; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 750 | int ssid; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 751 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 752 | lockdep_assert_held(&cgroup_mutex); |
| 753 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 754 | /* First see if we already have a cgroup group that matches |
| 755 | * the desired set */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 756 | down_read(&css_set_rwsem); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 757 | cset = find_existing_css_set(old_cset, cgrp, template); |
| 758 | if (cset) |
| 759 | get_css_set(cset); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 760 | up_read(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 761 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 762 | if (cset) |
| 763 | return cset; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 764 | |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 765 | cset = kzalloc(sizeof(*cset), GFP_KERNEL); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 766 | if (!cset) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 767 | return NULL; |
| 768 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 769 | /* Allocate all the cgrp_cset_link objects that we'll need */ |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 770 | if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 771 | kfree(cset); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 772 | return NULL; |
| 773 | } |
| 774 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 775 | atomic_set(&cset->refcount, 1); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 776 | INIT_LIST_HEAD(&cset->cgrp_links); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 777 | INIT_LIST_HEAD(&cset->tasks); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 778 | INIT_LIST_HEAD(&cset->mg_tasks); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 779 | INIT_LIST_HEAD(&cset->mg_preload_node); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 780 | INIT_LIST_HEAD(&cset->mg_node); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 781 | INIT_HLIST_NODE(&cset->hlist); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 782 | |
| 783 | /* Copy the set of subsystem state objects generated in |
| 784 | * find_existing_css_set() */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 785 | memcpy(cset->subsys, template, sizeof(cset->subsys)); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 786 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 787 | down_write(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 788 | /* Add reference counts and links from the new css_set. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 789 | list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 790 | struct cgroup *c = link->cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 791 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 792 | if (c->root == cgrp->root) |
| 793 | c = cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 794 | link_css_set(&tmp_links, cset, c); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 795 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 796 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 797 | BUG_ON(!list_empty(&tmp_links)); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 798 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 799 | css_set_count++; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 800 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 801 | /* Add @cset to the hash table */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 802 | key = css_set_hash(cset->subsys); |
| 803 | hash_add(css_set_table, &cset->hlist, key); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 804 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 805 | for_each_subsys(ss, ssid) |
| 806 | list_add_tail(&cset->e_cset_node[ssid], |
| 807 | &cset->subsys[ssid]->cgroup->e_csets[ssid]); |
| 808 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 809 | up_write(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 810 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 811 | return cset; |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 812 | } |
| 813 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 814 | static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 815 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 816 | struct cgroup *root_cgrp = kf_root->kn->priv; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 817 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 818 | return root_cgrp->root; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 819 | } |
| 820 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 821 | static int cgroup_init_root_id(struct cgroup_root *root) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 822 | { |
| 823 | int id; |
| 824 | |
| 825 | lockdep_assert_held(&cgroup_mutex); |
| 826 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 827 | id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 828 | if (id < 0) |
| 829 | return id; |
| 830 | |
| 831 | root->hierarchy_id = id; |
| 832 | return 0; |
| 833 | } |
| 834 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 835 | static void cgroup_exit_root_id(struct cgroup_root *root) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 836 | { |
| 837 | lockdep_assert_held(&cgroup_mutex); |
| 838 | |
| 839 | if (root->hierarchy_id) { |
| 840 | idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id); |
| 841 | root->hierarchy_id = 0; |
| 842 | } |
| 843 | } |
| 844 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 845 | static void cgroup_free_root(struct cgroup_root *root) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 846 | { |
| 847 | if (root) { |
| 848 | /* hierarhcy ID shoulid already have been released */ |
| 849 | WARN_ON_ONCE(root->hierarchy_id); |
| 850 | |
| 851 | idr_destroy(&root->cgroup_idr); |
| 852 | kfree(root); |
| 853 | } |
| 854 | } |
| 855 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 856 | static void cgroup_destroy_root(struct cgroup_root *root) |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 857 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 858 | struct cgroup *cgrp = &root->cgrp; |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 859 | struct cgrp_cset_link *link, *tmp_link; |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 860 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 861 | mutex_lock(&cgroup_mutex); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 862 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 863 | BUG_ON(atomic_read(&root->nr_cgrps)); |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 864 | BUG_ON(!list_empty(&cgrp->self.children)); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 865 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 866 | /* Rebind all subsystems back to the default hierarchy */ |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 867 | rebind_subsystems(&cgrp_dfl_root, root->subsys_mask); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 868 | |
| 869 | /* |
| 870 | * Release all the links from cset_links to this hierarchy's |
| 871 | * root cgroup |
| 872 | */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 873 | down_write(&css_set_rwsem); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 874 | |
| 875 | list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) { |
| 876 | list_del(&link->cset_link); |
| 877 | list_del(&link->cgrp_link); |
| 878 | kfree(link); |
| 879 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 880 | up_write(&css_set_rwsem); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 881 | |
| 882 | if (!list_empty(&root->root_list)) { |
| 883 | list_del(&root->root_list); |
| 884 | cgroup_root_count--; |
| 885 | } |
| 886 | |
| 887 | cgroup_exit_root_id(root); |
| 888 | |
| 889 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 890 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 891 | kernfs_destroy_root(root->kf_root); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 892 | cgroup_free_root(root); |
| 893 | } |
| 894 | |
Tejun Heo | ceb6a08 | 2014-02-25 10:04:02 -0500 | [diff] [blame] | 895 | /* look up cgroup associated with given css_set on the specified hierarchy */ |
| 896 | static struct cgroup *cset_cgroup_from_root(struct css_set *cset, |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 897 | struct cgroup_root *root) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 898 | { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 899 | struct cgroup *res = NULL; |
| 900 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 901 | lockdep_assert_held(&cgroup_mutex); |
| 902 | lockdep_assert_held(&css_set_rwsem); |
| 903 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 904 | if (cset == &init_css_set) { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 905 | res = &root->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 906 | } else { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 907 | struct cgrp_cset_link *link; |
| 908 | |
| 909 | list_for_each_entry(link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 910 | struct cgroup *c = link->cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 911 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 912 | if (c->root == root) { |
| 913 | res = c; |
| 914 | break; |
| 915 | } |
| 916 | } |
| 917 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 918 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 919 | BUG_ON(!res); |
| 920 | return res; |
| 921 | } |
| 922 | |
| 923 | /* |
Tejun Heo | ceb6a08 | 2014-02-25 10:04:02 -0500 | [diff] [blame] | 924 | * Return the cgroup for "task" from the given hierarchy. Must be |
| 925 | * called with cgroup_mutex and css_set_rwsem held. |
| 926 | */ |
| 927 | static struct cgroup *task_cgroup_from_root(struct task_struct *task, |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 928 | struct cgroup_root *root) |
Tejun Heo | ceb6a08 | 2014-02-25 10:04:02 -0500 | [diff] [blame] | 929 | { |
| 930 | /* |
| 931 | * No need to lock the task - since we hold cgroup_mutex the |
| 932 | * task can't change groups, so the only thing that can happen |
| 933 | * is that it exits and its css is set back to init_css_set. |
| 934 | */ |
| 935 | return cset_cgroup_from_root(task_css_set(task), root); |
| 936 | } |
| 937 | |
| 938 | /* |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 939 | * A task must hold cgroup_mutex to modify cgroups. |
| 940 | * |
| 941 | * Any task can increment and decrement the count field without lock. |
| 942 | * So in general, code holding cgroup_mutex can't rely on the count |
| 943 | * field not changing. However, if the count goes to zero, then only |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 944 | * cgroup_attach_task() can increment it again. Because a count of zero |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 945 | * means that no tasks are currently attached, therefore there is no |
| 946 | * way a task attached to that cgroup can fork (the other way to |
| 947 | * increment the count). So code holding cgroup_mutex can safely |
| 948 | * assume that if the count is zero, it will stay zero. Similarly, if |
| 949 | * a task holds cgroup_mutex on a cgroup with zero count, it |
| 950 | * knows that the cgroup won't be removed, as cgroup_rmdir() |
| 951 | * needs that mutex. |
| 952 | * |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 953 | * A cgroup can only be deleted if both its 'count' of using tasks |
| 954 | * is zero, and its list of 'children' cgroups is empty. Since all |
| 955 | * tasks in the system use _some_ cgroup, and since there is always at |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 956 | * least one task in the system (init, pid == 1), therefore, root cgroup |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 957 | * always has either children cgroups and/or using tasks. So we don't |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 958 | * need a special hack to ensure that root cgroup cannot be deleted. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 959 | * |
| 960 | * P.S. One more locking exception. RCU is used to guard the |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 961 | * update of a tasks cgroup pointer by cgroup_attach_task() |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 962 | */ |
| 963 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 964 | static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 965 | static struct kernfs_syscall_ops cgroup_kf_syscall_ops; |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 966 | static const struct file_operations proc_cgroupstats_operations; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 967 | |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 968 | static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft, |
| 969 | char *buf) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 970 | { |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 971 | if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) && |
| 972 | !(cgrp->root->flags & CGRP_ROOT_NOPREFIX)) |
| 973 | snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s", |
| 974 | cft->ss->name, cft->name); |
| 975 | else |
| 976 | strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX); |
| 977 | return buf; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 978 | } |
| 979 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 980 | /** |
| 981 | * cgroup_file_mode - deduce file mode of a control file |
| 982 | * @cft: the control file in question |
| 983 | * |
| 984 | * returns cft->mode if ->mode is not 0 |
| 985 | * returns S_IRUGO|S_IWUSR if it has both a read and a write handler |
| 986 | * returns S_IRUGO if it has only a read handler |
| 987 | * returns S_IWUSR if it has only a write hander |
| 988 | */ |
| 989 | static umode_t cgroup_file_mode(const struct cftype *cft) |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 990 | { |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 991 | umode_t mode = 0; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 992 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 993 | if (cft->mode) |
| 994 | return cft->mode; |
| 995 | |
| 996 | if (cft->read_u64 || cft->read_s64 || cft->seq_show) |
| 997 | mode |= S_IRUGO; |
| 998 | |
Tejun Heo | 6770c64 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 999 | if (cft->write_u64 || cft->write_s64 || cft->write) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1000 | mode |= S_IWUSR; |
| 1001 | |
| 1002 | return mode; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 1003 | } |
| 1004 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1005 | static void cgroup_get(struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1006 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1007 | WARN_ON_ONCE(cgroup_is_dead(cgrp)); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1008 | css_get(&cgrp->self); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1009 | } |
| 1010 | |
Li Zefan | aa32362 | 2014-09-04 14:43:38 +0800 | [diff] [blame] | 1011 | static bool cgroup_tryget(struct cgroup *cgrp) |
| 1012 | { |
| 1013 | return css_tryget(&cgrp->self); |
| 1014 | } |
| 1015 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1016 | static void cgroup_put(struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1017 | { |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1018 | css_put(&cgrp->self); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1019 | } |
| 1020 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1021 | /** |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1022 | * cgroup_calc_child_subsys_mask - calculate child_subsys_mask |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1023 | * @cgrp: the target cgroup |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1024 | * @subtree_control: the new subtree_control mask to consider |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1025 | * |
| 1026 | * On the default hierarchy, a subsystem may request other subsystems to be |
| 1027 | * enabled together through its ->depends_on mask. In such cases, more |
| 1028 | * subsystems than specified in "cgroup.subtree_control" may be enabled. |
| 1029 | * |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1030 | * This function calculates which subsystems need to be enabled if |
| 1031 | * @subtree_control is to be applied to @cgrp. The returned mask is always |
| 1032 | * a superset of @subtree_control and follows the usual hierarchy rules. |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1033 | */ |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1034 | static unsigned int cgroup_calc_child_subsys_mask(struct cgroup *cgrp, |
| 1035 | unsigned int subtree_control) |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1036 | { |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1037 | struct cgroup *parent = cgroup_parent(cgrp); |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1038 | unsigned int cur_ss_mask = subtree_control; |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1039 | struct cgroup_subsys *ss; |
| 1040 | int ssid; |
| 1041 | |
| 1042 | lockdep_assert_held(&cgroup_mutex); |
| 1043 | |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1044 | if (!cgroup_on_dfl(cgrp)) |
| 1045 | return cur_ss_mask; |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1046 | |
| 1047 | while (true) { |
| 1048 | unsigned int new_ss_mask = cur_ss_mask; |
| 1049 | |
| 1050 | for_each_subsys(ss, ssid) |
| 1051 | if (cur_ss_mask & (1 << ssid)) |
| 1052 | new_ss_mask |= ss->depends_on; |
| 1053 | |
| 1054 | /* |
| 1055 | * Mask out subsystems which aren't available. This can |
| 1056 | * happen only if some depended-upon subsystems were bound |
| 1057 | * to non-default hierarchies. |
| 1058 | */ |
| 1059 | if (parent) |
| 1060 | new_ss_mask &= parent->child_subsys_mask; |
| 1061 | else |
| 1062 | new_ss_mask &= cgrp->root->subsys_mask; |
| 1063 | |
| 1064 | if (new_ss_mask == cur_ss_mask) |
| 1065 | break; |
| 1066 | cur_ss_mask = new_ss_mask; |
| 1067 | } |
| 1068 | |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1069 | return cur_ss_mask; |
| 1070 | } |
| 1071 | |
| 1072 | /** |
| 1073 | * cgroup_refresh_child_subsys_mask - update child_subsys_mask |
| 1074 | * @cgrp: the target cgroup |
| 1075 | * |
| 1076 | * Update @cgrp->child_subsys_mask according to the current |
| 1077 | * @cgrp->subtree_control using cgroup_calc_child_subsys_mask(). |
| 1078 | */ |
| 1079 | static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp) |
| 1080 | { |
| 1081 | cgrp->child_subsys_mask = |
| 1082 | cgroup_calc_child_subsys_mask(cgrp, cgrp->subtree_control); |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1083 | } |
| 1084 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1085 | /** |
| 1086 | * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods |
| 1087 | * @kn: the kernfs_node being serviced |
| 1088 | * |
| 1089 | * This helper undoes cgroup_kn_lock_live() and should be invoked before |
| 1090 | * the method finishes if locking succeeded. Note that once this function |
| 1091 | * returns the cgroup returned by cgroup_kn_lock_live() may become |
| 1092 | * inaccessible any time. If the caller intends to continue to access the |
| 1093 | * cgroup, it should pin it before invoking this function. |
| 1094 | */ |
| 1095 | static void cgroup_kn_unlock(struct kernfs_node *kn) |
| 1096 | { |
| 1097 | struct cgroup *cgrp; |
| 1098 | |
| 1099 | if (kernfs_type(kn) == KERNFS_DIR) |
| 1100 | cgrp = kn->priv; |
| 1101 | else |
| 1102 | cgrp = kn->parent->priv; |
| 1103 | |
| 1104 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1105 | |
| 1106 | kernfs_unbreak_active_protection(kn); |
| 1107 | cgroup_put(cgrp); |
| 1108 | } |
| 1109 | |
| 1110 | /** |
| 1111 | * cgroup_kn_lock_live - locking helper for cgroup kernfs methods |
| 1112 | * @kn: the kernfs_node being serviced |
| 1113 | * |
| 1114 | * This helper is to be used by a cgroup kernfs method currently servicing |
| 1115 | * @kn. It breaks the active protection, performs cgroup locking and |
| 1116 | * verifies that the associated cgroup is alive. Returns the cgroup if |
| 1117 | * alive; otherwise, %NULL. A successful return should be undone by a |
| 1118 | * matching cgroup_kn_unlock() invocation. |
| 1119 | * |
| 1120 | * Any cgroup kernfs method implementation which requires locking the |
| 1121 | * associated cgroup should use this helper. It avoids nesting cgroup |
| 1122 | * locking under kernfs active protection and allows all kernfs operations |
| 1123 | * including self-removal. |
| 1124 | */ |
| 1125 | static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn) |
| 1126 | { |
| 1127 | struct cgroup *cgrp; |
| 1128 | |
| 1129 | if (kernfs_type(kn) == KERNFS_DIR) |
| 1130 | cgrp = kn->priv; |
| 1131 | else |
| 1132 | cgrp = kn->parent->priv; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1133 | |
| 1134 | /* |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 1135 | * We're gonna grab cgroup_mutex which nests outside kernfs |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1136 | * active_ref. cgroup liveliness check alone provides enough |
| 1137 | * protection against removal. Ensure @cgrp stays accessible and |
| 1138 | * break the active_ref protection. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1139 | */ |
Li Zefan | aa32362 | 2014-09-04 14:43:38 +0800 | [diff] [blame] | 1140 | if (!cgroup_tryget(cgrp)) |
| 1141 | return NULL; |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1142 | kernfs_break_active_protection(kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1143 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1144 | mutex_lock(&cgroup_mutex); |
| 1145 | |
| 1146 | if (!cgroup_is_dead(cgrp)) |
| 1147 | return cgrp; |
| 1148 | |
| 1149 | cgroup_kn_unlock(kn); |
| 1150 | return NULL; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1151 | } |
| 1152 | |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 1153 | static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1154 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1155 | char name[CGROUP_FILE_NAME_MAX]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1156 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 1157 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1158 | kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name)); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1159 | } |
| 1160 | |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1161 | /** |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 1162 | * cgroup_clear_dir - remove subsys files in a cgroup directory |
Tejun Heo | 8f89140 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 1163 | * @cgrp: target cgroup |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1164 | * @subsys_mask: mask of the subsystem ids whose files should be removed |
| 1165 | */ |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1166 | static void cgroup_clear_dir(struct cgroup *cgrp, unsigned int subsys_mask) |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1167 | { |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1168 | struct cgroup_subsys *ss; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 1169 | int i; |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1170 | |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 1171 | for_each_subsys(ss, i) { |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 1172 | struct cftype *cfts; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 1173 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1174 | if (!(subsys_mask & (1 << i))) |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1175 | continue; |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 1176 | list_for_each_entry(cfts, &ss->cfts, node) |
| 1177 | cgroup_addrm_files(cgrp, cfts, false); |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1178 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1179 | } |
| 1180 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1181 | static int rebind_subsystems(struct cgroup_root *dst_root, unsigned int ss_mask) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1182 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1183 | struct cgroup_subsys *ss; |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 1184 | unsigned int tmp_ss_mask; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1185 | int ssid, i, ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1186 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 1187 | lockdep_assert_held(&cgroup_mutex); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1188 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1189 | for_each_subsys(ss, ssid) { |
| 1190 | if (!(ss_mask & (1 << ssid))) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1191 | continue; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1192 | |
Tejun Heo | 7fd8c56 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1193 | /* if @ss has non-root csses attached to it, can't move */ |
| 1194 | if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss))) |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1195 | return -EBUSY; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1196 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1197 | /* can't move between two non-dummy roots either */ |
Tejun Heo | 7fd8c56 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1198 | if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root) |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1199 | return -EBUSY; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1200 | } |
| 1201 | |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 1202 | /* skip creating root files on dfl_root for inhibited subsystems */ |
| 1203 | tmp_ss_mask = ss_mask; |
| 1204 | if (dst_root == &cgrp_dfl_root) |
| 1205 | tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask; |
| 1206 | |
| 1207 | ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask); |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1208 | if (ret) { |
| 1209 | if (dst_root != &cgrp_dfl_root) |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1210 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1211 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1212 | /* |
| 1213 | * Rebinding back to the default root is not allowed to |
| 1214 | * fail. Using both default and non-default roots should |
| 1215 | * be rare. Moving subsystems back and forth even more so. |
| 1216 | * Just warn about it and continue. |
| 1217 | */ |
| 1218 | if (cgrp_dfl_root_visible) { |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1219 | pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n", |
Jianyu Zhan | a2a1f9e | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1220 | ret, ss_mask); |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1221 | pr_warn("you may retry by moving them to a different hierarchy and unbinding\n"); |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1222 | } |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1223 | } |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1224 | |
| 1225 | /* |
| 1226 | * Nothing can fail from this point on. Remove files for the |
| 1227 | * removed subsystems and rebind each subsystem. |
| 1228 | */ |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1229 | for_each_subsys(ss, ssid) |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1230 | if (ss_mask & (1 << ssid)) |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1231 | cgroup_clear_dir(&ss->root->cgrp, 1 << ssid); |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1232 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1233 | for_each_subsys(ss, ssid) { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1234 | struct cgroup_root *src_root; |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1235 | struct cgroup_subsys_state *css; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1236 | struct css_set *cset; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1237 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1238 | if (!(ss_mask & (1 << ssid))) |
| 1239 | continue; |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1240 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1241 | src_root = ss->root; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1242 | css = cgroup_css(&src_root->cgrp, ss); |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1243 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1244 | WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss)); |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1245 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1246 | RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL); |
| 1247 | rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css); |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1248 | ss->root = dst_root; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1249 | css->cgroup = &dst_root->cgrp; |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1250 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1251 | down_write(&css_set_rwsem); |
| 1252 | hash_for_each(css_set_table, i, cset, hlist) |
| 1253 | list_move_tail(&cset->e_cset_node[ss->id], |
| 1254 | &dst_root->cgrp.e_csets[ss->id]); |
| 1255 | up_write(&css_set_rwsem); |
| 1256 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1257 | src_root->subsys_mask &= ~(1 << ssid); |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1258 | src_root->cgrp.subtree_control &= ~(1 << ssid); |
| 1259 | cgroup_refresh_child_subsys_mask(&src_root->cgrp); |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1260 | |
Tejun Heo | bd53d61 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1261 | /* default hierarchy doesn't enable controllers by default */ |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1262 | dst_root->subsys_mask |= 1 << ssid; |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1263 | if (dst_root != &cgrp_dfl_root) { |
| 1264 | dst_root->cgrp.subtree_control |= 1 << ssid; |
| 1265 | cgroup_refresh_child_subsys_mask(&dst_root->cgrp); |
| 1266 | } |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1267 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1268 | if (ss->bind) |
| 1269 | ss->bind(css); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1270 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1271 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1272 | kernfs_activate(dst_root->cgrp.kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1273 | return 0; |
| 1274 | } |
| 1275 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1276 | static int cgroup_show_options(struct seq_file *seq, |
| 1277 | struct kernfs_root *kf_root) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1278 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1279 | struct cgroup_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1280 | struct cgroup_subsys *ss; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1281 | int ssid; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1282 | |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1283 | for_each_subsys(ss, ssid) |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1284 | if (root->subsys_mask & (1 << ssid)) |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1285 | seq_printf(seq, ",%s", ss->name); |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1286 | if (root->flags & CGRP_ROOT_NOPREFIX) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1287 | seq_puts(seq, ",noprefix"); |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1288 | if (root->flags & CGRP_ROOT_XATTR) |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1289 | seq_puts(seq, ",xattr"); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1290 | |
| 1291 | spin_lock(&release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1292 | if (strlen(root->release_agent_path)) |
| 1293 | seq_printf(seq, ",release_agent=%s", root->release_agent_path); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1294 | spin_unlock(&release_agent_path_lock); |
| 1295 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1296 | if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags)) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 1297 | seq_puts(seq, ",clone_children"); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1298 | if (strlen(root->name)) |
| 1299 | seq_printf(seq, ",name=%s", root->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1300 | return 0; |
| 1301 | } |
| 1302 | |
| 1303 | struct cgroup_sb_opts { |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1304 | unsigned int subsys_mask; |
| 1305 | unsigned int flags; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1306 | char *release_agent; |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1307 | bool cpuset_clone_children; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1308 | char *name; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1309 | /* User explicitly requested empty subsystem */ |
| 1310 | bool none; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1311 | }; |
| 1312 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1313 | static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1314 | { |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1315 | char *token, *o = data; |
| 1316 | bool all_ss = false, one_ss = false; |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1317 | unsigned int mask = -1U; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1318 | struct cgroup_subsys *ss; |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1319 | int nr_opts = 0; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1320 | int i; |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1321 | |
| 1322 | #ifdef CONFIG_CPUSETS |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1323 | mask = ~(1U << cpuset_cgrp_id); |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1324 | #endif |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1325 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1326 | memset(opts, 0, sizeof(*opts)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1327 | |
| 1328 | while ((token = strsep(&o, ",")) != NULL) { |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1329 | nr_opts++; |
| 1330 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1331 | if (!*token) |
| 1332 | return -EINVAL; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1333 | if (!strcmp(token, "none")) { |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1334 | /* Explicitly have no subsystems */ |
| 1335 | opts->none = true; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1336 | continue; |
| 1337 | } |
| 1338 | if (!strcmp(token, "all")) { |
| 1339 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1340 | if (one_ss) |
| 1341 | return -EINVAL; |
| 1342 | all_ss = true; |
| 1343 | continue; |
| 1344 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1345 | if (!strcmp(token, "__DEVEL__sane_behavior")) { |
| 1346 | opts->flags |= CGRP_ROOT_SANE_BEHAVIOR; |
| 1347 | continue; |
| 1348 | } |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1349 | if (!strcmp(token, "noprefix")) { |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1350 | opts->flags |= CGRP_ROOT_NOPREFIX; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1351 | continue; |
| 1352 | } |
| 1353 | if (!strcmp(token, "clone_children")) { |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1354 | opts->cpuset_clone_children = true; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1355 | continue; |
| 1356 | } |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1357 | if (!strcmp(token, "xattr")) { |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1358 | opts->flags |= CGRP_ROOT_XATTR; |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1359 | continue; |
| 1360 | } |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1361 | if (!strncmp(token, "release_agent=", 14)) { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1362 | /* Specifying two release agents is forbidden */ |
| 1363 | if (opts->release_agent) |
| 1364 | return -EINVAL; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1365 | opts->release_agent = |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1366 | kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1367 | if (!opts->release_agent) |
| 1368 | return -ENOMEM; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1369 | continue; |
| 1370 | } |
| 1371 | if (!strncmp(token, "name=", 5)) { |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1372 | const char *name = token + 5; |
| 1373 | /* Can't specify an empty name */ |
| 1374 | if (!strlen(name)) |
| 1375 | return -EINVAL; |
| 1376 | /* Must match [\w.-]+ */ |
| 1377 | for (i = 0; i < strlen(name); i++) { |
| 1378 | char c = name[i]; |
| 1379 | if (isalnum(c)) |
| 1380 | continue; |
| 1381 | if ((c == '.') || (c == '-') || (c == '_')) |
| 1382 | continue; |
| 1383 | return -EINVAL; |
| 1384 | } |
| 1385 | /* Specifying two names is forbidden */ |
| 1386 | if (opts->name) |
| 1387 | return -EINVAL; |
| 1388 | opts->name = kstrndup(name, |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1389 | MAX_CGROUP_ROOT_NAMELEN - 1, |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1390 | GFP_KERNEL); |
| 1391 | if (!opts->name) |
| 1392 | return -ENOMEM; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1393 | |
| 1394 | continue; |
| 1395 | } |
| 1396 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1397 | for_each_subsys(ss, i) { |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1398 | if (strcmp(token, ss->name)) |
| 1399 | continue; |
| 1400 | if (ss->disabled) |
| 1401 | continue; |
| 1402 | |
| 1403 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1404 | if (all_ss) |
| 1405 | return -EINVAL; |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1406 | opts->subsys_mask |= (1 << i); |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1407 | one_ss = true; |
| 1408 | |
| 1409 | break; |
| 1410 | } |
| 1411 | if (i == CGROUP_SUBSYS_COUNT) |
| 1412 | return -ENOENT; |
| 1413 | } |
| 1414 | |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1415 | if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) { |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1416 | pr_warn("sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n"); |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1417 | if (nr_opts != 1) { |
| 1418 | pr_err("sane_behavior: no other mount options allowed\n"); |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1419 | return -EINVAL; |
| 1420 | } |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1421 | return 0; |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1422 | } |
| 1423 | |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1424 | /* |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1425 | * If the 'all' option was specified select all the subsystems, |
| 1426 | * otherwise if 'none', 'name=' and a subsystem name options were |
| 1427 | * not specified, let's default to 'all' |
| 1428 | */ |
| 1429 | if (all_ss || (!one_ss && !opts->none && !opts->name)) |
| 1430 | for_each_subsys(ss, i) |
| 1431 | if (!ss->disabled) |
| 1432 | opts->subsys_mask |= (1 << i); |
| 1433 | |
| 1434 | /* |
| 1435 | * We either have to specify by name or by subsystems. (So all |
| 1436 | * empty hierarchies must have a name). |
| 1437 | */ |
| 1438 | if (!opts->subsys_mask && !opts->name) |
| 1439 | return -EINVAL; |
| 1440 | |
| 1441 | /* |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1442 | * Option noprefix was introduced just for backward compatibility |
| 1443 | * with the old cpuset, so we allow noprefix only if mounting just |
| 1444 | * the cpuset subsystem. |
| 1445 | */ |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1446 | if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask)) |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1447 | return -EINVAL; |
| 1448 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1449 | /* Can't specify "none" and some subsystems */ |
Aristeu Rozanski | a1a71b4 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1450 | if (opts->subsys_mask && opts->none) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1451 | return -EINVAL; |
| 1452 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1453 | return 0; |
| 1454 | } |
| 1455 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1456 | static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1457 | { |
| 1458 | int ret = 0; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1459 | struct cgroup_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1460 | struct cgroup_sb_opts opts; |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1461 | unsigned int added_mask, removed_mask; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1462 | |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1463 | if (root == &cgrp_dfl_root) { |
| 1464 | pr_err("remount is not allowed\n"); |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1465 | return -EINVAL; |
| 1466 | } |
| 1467 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1468 | mutex_lock(&cgroup_mutex); |
| 1469 | |
| 1470 | /* See what subsystems are wanted */ |
| 1471 | ret = parse_cgroupfs_options(data, &opts); |
| 1472 | if (ret) |
| 1473 | goto out_unlock; |
| 1474 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1475 | if (opts.subsys_mask != root->subsys_mask || opts.release_agent) |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1476 | pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n", |
Jianyu Zhan | a2a1f9e | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1477 | task_tgid_nr(current), current->comm); |
Tejun Heo | 8b5a5a9 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1478 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1479 | added_mask = opts.subsys_mask & ~root->subsys_mask; |
| 1480 | removed_mask = root->subsys_mask & ~opts.subsys_mask; |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1481 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1482 | /* Don't allow flags or name to change at remount */ |
Tejun Heo | 7450e90 | 2014-07-09 10:08:07 -0400 | [diff] [blame] | 1483 | if ((opts.flags ^ root->flags) || |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1484 | (opts.name && strcmp(opts.name, root->name))) { |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1485 | pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n", |
Tejun Heo | 7450e90 | 2014-07-09 10:08:07 -0400 | [diff] [blame] | 1486 | opts.flags, opts.name ?: "", root->flags, root->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1487 | ret = -EINVAL; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1488 | goto out_unlock; |
| 1489 | } |
| 1490 | |
Tejun Heo | f172e67 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1491 | /* remounting is not allowed for populated hierarchies */ |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 1492 | if (!list_empty(&root->cgrp.self.children)) { |
Tejun Heo | f172e67 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1493 | ret = -EBUSY; |
Li Zefan | 0670e08 | 2009-04-02 16:57:30 -0700 | [diff] [blame] | 1494 | goto out_unlock; |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1495 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1496 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1497 | ret = rebind_subsystems(root, added_mask); |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1498 | if (ret) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1499 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1500 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1501 | rebind_subsystems(&cgrp_dfl_root, removed_mask); |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1502 | |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1503 | if (opts.release_agent) { |
| 1504 | spin_lock(&release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1505 | strcpy(root->release_agent_path, opts.release_agent); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1506 | spin_unlock(&release_agent_path_lock); |
| 1507 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1508 | out_unlock: |
Jesper Juhl | 66bdc9c | 2009-04-02 16:57:27 -0700 | [diff] [blame] | 1509 | kfree(opts.release_agent); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1510 | kfree(opts.name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1511 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1512 | return ret; |
| 1513 | } |
| 1514 | |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1515 | /* |
| 1516 | * To reduce the fork() overhead for systems that are not actually using |
| 1517 | * their cgroups capability, we don't maintain the lists running through |
| 1518 | * each css_set to its tasks until we see the list actually used - in other |
| 1519 | * words after the first mount. |
| 1520 | */ |
| 1521 | static bool use_task_css_set_links __read_mostly; |
| 1522 | |
| 1523 | static void cgroup_enable_task_cg_lists(void) |
| 1524 | { |
| 1525 | struct task_struct *p, *g; |
| 1526 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1527 | down_write(&css_set_rwsem); |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1528 | |
| 1529 | if (use_task_css_set_links) |
| 1530 | goto out_unlock; |
| 1531 | |
| 1532 | use_task_css_set_links = true; |
| 1533 | |
| 1534 | /* |
| 1535 | * We need tasklist_lock because RCU is not safe against |
| 1536 | * while_each_thread(). Besides, a forking task that has passed |
| 1537 | * cgroup_post_fork() without seeing use_task_css_set_links = 1 |
| 1538 | * is not guaranteed to have its child immediately visible in the |
| 1539 | * tasklist if we walk through it with RCU. |
| 1540 | */ |
| 1541 | read_lock(&tasklist_lock); |
| 1542 | do_each_thread(g, p) { |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1543 | WARN_ON_ONCE(!list_empty(&p->cg_list) || |
| 1544 | task_css_set(p) != &init_css_set); |
| 1545 | |
| 1546 | /* |
| 1547 | * We should check if the process is exiting, otherwise |
| 1548 | * it will race with cgroup_exit() in that the list |
| 1549 | * entry won't be deleted though the process has exited. |
Tejun Heo | f153ad1 | 2014-02-25 09:56:49 -0500 | [diff] [blame] | 1550 | * Do it while holding siglock so that we don't end up |
| 1551 | * racing against cgroup_exit(). |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1552 | */ |
Tejun Heo | f153ad1 | 2014-02-25 09:56:49 -0500 | [diff] [blame] | 1553 | spin_lock_irq(&p->sighand->siglock); |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 1554 | if (!(p->flags & PF_EXITING)) { |
| 1555 | struct css_set *cset = task_css_set(p); |
| 1556 | |
| 1557 | list_add(&p->cg_list, &cset->tasks); |
| 1558 | get_css_set(cset); |
| 1559 | } |
Tejun Heo | f153ad1 | 2014-02-25 09:56:49 -0500 | [diff] [blame] | 1560 | spin_unlock_irq(&p->sighand->siglock); |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1561 | } while_each_thread(g, p); |
| 1562 | read_unlock(&tasklist_lock); |
| 1563 | out_unlock: |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1564 | up_write(&css_set_rwsem); |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1565 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1566 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1567 | static void init_cgroup_housekeeping(struct cgroup *cgrp) |
| 1568 | { |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1569 | struct cgroup_subsys *ss; |
| 1570 | int ssid; |
| 1571 | |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 1572 | INIT_LIST_HEAD(&cgrp->self.sibling); |
| 1573 | INIT_LIST_HEAD(&cgrp->self.children); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 1574 | INIT_LIST_HEAD(&cgrp->cset_links); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 1575 | INIT_LIST_HEAD(&cgrp->pidlists); |
| 1576 | mutex_init(&cgrp->pidlist_mutex); |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1577 | cgrp->self.cgroup = cgrp; |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 1578 | cgrp->self.flags |= CSS_ONLINE; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1579 | |
| 1580 | for_each_subsys(ss, ssid) |
| 1581 | INIT_LIST_HEAD(&cgrp->e_csets[ssid]); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1582 | |
| 1583 | init_waitqueue_head(&cgrp->offline_waitq); |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 1584 | INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1585 | } |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1586 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1587 | static void init_cgroup_root(struct cgroup_root *root, |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1588 | struct cgroup_sb_opts *opts) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1589 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1590 | struct cgroup *cgrp = &root->cgrp; |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1591 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1592 | INIT_LIST_HEAD(&root->root_list); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1593 | atomic_set(&root->nr_cgrps, 1); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1594 | cgrp->root = root; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1595 | init_cgroup_housekeeping(cgrp); |
Li Zefan | 4e96ee8e | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 1596 | idr_init(&root->cgroup_idr); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1597 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1598 | root->flags = opts->flags; |
| 1599 | if (opts->release_agent) |
| 1600 | strcpy(root->release_agent_path, opts->release_agent); |
| 1601 | if (opts->name) |
| 1602 | strcpy(root->name, opts->name); |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1603 | if (opts->cpuset_clone_children) |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1604 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1605 | } |
| 1606 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1607 | static int cgroup_setup_root(struct cgroup_root *root, unsigned int ss_mask) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1608 | { |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1609 | LIST_HEAD(tmp_links); |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1610 | struct cgroup *root_cgrp = &root->cgrp; |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 1611 | struct cftype *base_files; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1612 | struct css_set *cset; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1613 | int i, ret; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1614 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1615 | lockdep_assert_held(&cgroup_mutex); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1616 | |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1617 | ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_NOWAIT); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1618 | if (ret < 0) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1619 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1620 | root_cgrp->id = ret; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1621 | |
Tejun Heo | 2aad2a8 | 2014-09-24 13:31:50 -0400 | [diff] [blame] | 1622 | ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0, |
| 1623 | GFP_KERNEL); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1624 | if (ret) |
| 1625 | goto out; |
| 1626 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1627 | /* |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1628 | * We're accessing css_set_count without locking css_set_rwsem here, |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1629 | * but that's OK - it can only be increased by someone holding |
| 1630 | * cgroup_lock, and that's us. The worst that can happen is that we |
| 1631 | * have some link structures left over |
| 1632 | */ |
| 1633 | ret = allocate_cgrp_cset_links(css_set_count, &tmp_links); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1634 | if (ret) |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1635 | goto cancel_ref; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1636 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1637 | ret = cgroup_init_root_id(root); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1638 | if (ret) |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1639 | goto cancel_ref; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1640 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1641 | root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops, |
| 1642 | KERNFS_ROOT_CREATE_DEACTIVATED, |
| 1643 | root_cgrp); |
| 1644 | if (IS_ERR(root->kf_root)) { |
| 1645 | ret = PTR_ERR(root->kf_root); |
| 1646 | goto exit_root_id; |
| 1647 | } |
| 1648 | root_cgrp->kn = root->kf_root->kn; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1649 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 1650 | if (root == &cgrp_dfl_root) |
| 1651 | base_files = cgroup_dfl_base_files; |
| 1652 | else |
| 1653 | base_files = cgroup_legacy_base_files; |
| 1654 | |
| 1655 | ret = cgroup_addrm_files(root_cgrp, base_files, true); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1656 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1657 | goto destroy_root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1658 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1659 | ret = rebind_subsystems(root, ss_mask); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1660 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1661 | goto destroy_root; |
Al Viro | 0df6a63 | 2010-12-21 13:29:29 -0500 | [diff] [blame] | 1662 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1663 | /* |
| 1664 | * There must be no failure case after here, since rebinding takes |
| 1665 | * care of subsystems' refcounts, which are explicitly dropped in |
| 1666 | * the failure exit path. |
| 1667 | */ |
| 1668 | list_add(&root->root_list, &cgroup_roots); |
| 1669 | cgroup_root_count++; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1670 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1671 | /* |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1672 | * Link the root cgroup in this hierarchy into all the css_set |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1673 | * objects. |
| 1674 | */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1675 | down_write(&css_set_rwsem); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1676 | hash_for_each(css_set_table, i, cset, hlist) |
| 1677 | link_css_set(&tmp_links, cset, root_cgrp); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1678 | up_write(&css_set_rwsem); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1679 | |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 1680 | BUG_ON(!list_empty(&root_cgrp->self.children)); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1681 | BUG_ON(atomic_read(&root->nr_cgrps) != 1); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1682 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1683 | kernfs_activate(root_cgrp->kn); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1684 | ret = 0; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1685 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1686 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1687 | destroy_root: |
| 1688 | kernfs_destroy_root(root->kf_root); |
| 1689 | root->kf_root = NULL; |
| 1690 | exit_root_id: |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1691 | cgroup_exit_root_id(root); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1692 | cancel_ref: |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 1693 | percpu_ref_exit(&root_cgrp->self.refcnt); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1694 | out: |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1695 | free_cgrp_cset_links(&tmp_links); |
| 1696 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1697 | } |
| 1698 | |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1699 | static struct dentry *cgroup_mount(struct file_system_type *fs_type, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1700 | int flags, const char *unused_dev_name, |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1701 | void *data) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1702 | { |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1703 | struct super_block *pinned_sb = NULL; |
Li Zefan | 970317a | 2014-06-30 11:49:58 +0800 | [diff] [blame] | 1704 | struct cgroup_subsys *ss; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1705 | struct cgroup_root *root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1706 | struct cgroup_sb_opts opts; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1707 | struct dentry *dentry; |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1708 | int ret; |
Li Zefan | 970317a | 2014-06-30 11:49:58 +0800 | [diff] [blame] | 1709 | int i; |
Li Zefan | c6b3d5b | 2014-04-04 17:14:41 +0800 | [diff] [blame] | 1710 | bool new_sb; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1711 | |
| 1712 | /* |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1713 | * The first time anyone tries to mount a cgroup, enable the list |
| 1714 | * linking each css_set to its tasks and fix up all existing tasks. |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1715 | */ |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1716 | if (!use_task_css_set_links) |
| 1717 | cgroup_enable_task_cg_lists(); |
Li Zefan | e37a06f | 2014-04-17 13:53:08 +0800 | [diff] [blame] | 1718 | |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1719 | mutex_lock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1720 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1721 | /* First find the desired set of subsystems */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1722 | ret = parse_cgroupfs_options(data, &opts); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1723 | if (ret) |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1724 | goto out_unlock; |
Tejun Heo | a015edd | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1725 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1726 | /* look for a matching existing root */ |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1727 | if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) { |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1728 | cgrp_dfl_root_visible = true; |
| 1729 | root = &cgrp_dfl_root; |
| 1730 | cgroup_get(&root->cgrp); |
| 1731 | ret = 0; |
| 1732 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1733 | } |
| 1734 | |
Li Zefan | 970317a | 2014-06-30 11:49:58 +0800 | [diff] [blame] | 1735 | /* |
| 1736 | * Destruction of cgroup root is asynchronous, so subsystems may |
| 1737 | * still be dying after the previous unmount. Let's drain the |
| 1738 | * dying subsystems. We just need to ensure that the ones |
| 1739 | * unmounted previously finish dying and don't care about new ones |
| 1740 | * starting. Testing ref liveliness is good enough. |
| 1741 | */ |
| 1742 | for_each_subsys(ss, i) { |
| 1743 | if (!(opts.subsys_mask & (1 << i)) || |
| 1744 | ss->root == &cgrp_dfl_root) |
| 1745 | continue; |
| 1746 | |
| 1747 | if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) { |
| 1748 | mutex_unlock(&cgroup_mutex); |
| 1749 | msleep(10); |
| 1750 | ret = restart_syscall(); |
| 1751 | goto out_free; |
| 1752 | } |
| 1753 | cgroup_put(&ss->root->cgrp); |
| 1754 | } |
| 1755 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1756 | for_each_root(root) { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1757 | bool name_match = false; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1758 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1759 | if (root == &cgrp_dfl_root) |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1760 | continue; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1761 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1762 | /* |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1763 | * If we asked for a name then it must match. Also, if |
| 1764 | * name matches but sybsys_mask doesn't, we should fail. |
| 1765 | * Remember whether name matched. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1766 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1767 | if (opts.name) { |
| 1768 | if (strcmp(opts.name, root->name)) |
| 1769 | continue; |
| 1770 | name_match = true; |
| 1771 | } |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1772 | |
| 1773 | /* |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1774 | * If we asked for subsystems (or explicitly for no |
| 1775 | * subsystems) then they must match. |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1776 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1777 | if ((opts.subsys_mask || opts.none) && |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1778 | (opts.subsys_mask != root->subsys_mask)) { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1779 | if (!name_match) |
| 1780 | continue; |
| 1781 | ret = -EBUSY; |
| 1782 | goto out_unlock; |
| 1783 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1784 | |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1785 | if (root->flags ^ opts.flags) |
| 1786 | pr_warn("new mount options do not match the existing superblock, will be ignored\n"); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1787 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1788 | /* |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1789 | * We want to reuse @root whose lifetime is governed by its |
| 1790 | * ->cgrp. Let's check whether @root is alive and keep it |
| 1791 | * that way. As cgroup_kill_sb() can happen anytime, we |
| 1792 | * want to block it by pinning the sb so that @root doesn't |
| 1793 | * get killed before mount is complete. |
| 1794 | * |
| 1795 | * With the sb pinned, tryget_live can reliably indicate |
| 1796 | * whether @root can be reused. If it's being killed, |
| 1797 | * drain it. We can use wait_queue for the wait but this |
| 1798 | * path is super cold. Let's just sleep a bit and retry. |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1799 | */ |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1800 | pinned_sb = kernfs_pin_sb(root->kf_root, NULL); |
| 1801 | if (IS_ERR(pinned_sb) || |
| 1802 | !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) { |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1803 | mutex_unlock(&cgroup_mutex); |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1804 | if (!IS_ERR_OR_NULL(pinned_sb)) |
| 1805 | deactivate_super(pinned_sb); |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1806 | msleep(10); |
Tejun Heo | a015edd | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1807 | ret = restart_syscall(); |
| 1808 | goto out_free; |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1809 | } |
| 1810 | |
| 1811 | ret = 0; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1812 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1813 | } |
| 1814 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1815 | /* |
| 1816 | * No such thing, create a new one. name= matching without subsys |
| 1817 | * specification is allowed for already existing hierarchies but we |
| 1818 | * can't create new one without subsys specification. |
| 1819 | */ |
| 1820 | if (!opts.subsys_mask && !opts.none) { |
| 1821 | ret = -EINVAL; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1822 | goto out_unlock; |
| 1823 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1824 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1825 | root = kzalloc(sizeof(*root), GFP_KERNEL); |
| 1826 | if (!root) { |
| 1827 | ret = -ENOMEM; |
| 1828 | goto out_unlock; |
| 1829 | } |
| 1830 | |
| 1831 | init_cgroup_root(root, &opts); |
| 1832 | |
Tejun Heo | 3558557 | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1833 | ret = cgroup_setup_root(root, opts.subsys_mask); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1834 | if (ret) |
| 1835 | cgroup_free_root(root); |
| 1836 | |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1837 | out_unlock: |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1838 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | a015edd | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1839 | out_free: |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1840 | kfree(opts.release_agent); |
| 1841 | kfree(opts.name); |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1842 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1843 | if (ret) |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1844 | return ERR_PTR(ret); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1845 | |
Jianyu Zhan | c9482a5 | 2014-04-26 15:40:28 +0800 | [diff] [blame] | 1846 | dentry = kernfs_mount(fs_type, flags, root->kf_root, |
| 1847 | CGROUP_SUPER_MAGIC, &new_sb); |
Li Zefan | c6b3d5b | 2014-04-04 17:14:41 +0800 | [diff] [blame] | 1848 | if (IS_ERR(dentry) || !new_sb) |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1849 | cgroup_put(&root->cgrp); |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1850 | |
| 1851 | /* |
| 1852 | * If @pinned_sb, we're reusing an existing root and holding an |
| 1853 | * extra ref on its sb. Mount is complete. Put the extra ref. |
| 1854 | */ |
| 1855 | if (pinned_sb) { |
| 1856 | WARN_ON(new_sb); |
| 1857 | deactivate_super(pinned_sb); |
| 1858 | } |
| 1859 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1860 | return dentry; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1861 | } |
| 1862 | |
SeongJae Park | dd4b0a4 | 2014-01-18 16:56:47 +0900 | [diff] [blame] | 1863 | static void cgroup_kill_sb(struct super_block *sb) |
| 1864 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1865 | struct kernfs_root *kf_root = kernfs_root_from_sb(sb); |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1866 | struct cgroup_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1867 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1868 | /* |
| 1869 | * If @root doesn't have any mounts or children, start killing it. |
| 1870 | * This prevents new mounts by disabling percpu_ref_tryget_live(). |
| 1871 | * cgroup_mount() may wait for @root's release. |
Li Zefan | 1f779fb | 2014-06-04 16:48:15 +0800 | [diff] [blame] | 1872 | * |
| 1873 | * And don't kill the default root. |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1874 | */ |
Li Zefan | 1f779fb | 2014-06-04 16:48:15 +0800 | [diff] [blame] | 1875 | if (css_has_online_children(&root->cgrp.self) || |
| 1876 | root == &cgrp_dfl_root) |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1877 | cgroup_put(&root->cgrp); |
| 1878 | else |
| 1879 | percpu_ref_kill(&root->cgrp.self.refcnt); |
| 1880 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1881 | kernfs_kill_sb(sb); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1882 | } |
| 1883 | |
| 1884 | static struct file_system_type cgroup_fs_type = { |
| 1885 | .name = "cgroup", |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1886 | .mount = cgroup_mount, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1887 | .kill_sb = cgroup_kill_sb, |
| 1888 | }; |
| 1889 | |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 1890 | static struct kobject *cgroup_kobj; |
| 1891 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 1892 | /** |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1893 | * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1894 | * @task: target task |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1895 | * @buf: the buffer to write the path into |
| 1896 | * @buflen: the length of the buffer |
| 1897 | * |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1898 | * Determine @task's cgroup on the first (the one with the lowest non-zero |
| 1899 | * hierarchy_id) cgroup hierarchy and copy its path into @buf. This |
| 1900 | * function grabs cgroup_mutex and shouldn't be used inside locks used by |
| 1901 | * cgroup controller callbacks. |
| 1902 | * |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1903 | * Return value is the same as kernfs_path(). |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1904 | */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1905 | char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen) |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1906 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1907 | struct cgroup_root *root; |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1908 | struct cgroup *cgrp; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1909 | int hierarchy_id = 1; |
| 1910 | char *path = NULL; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1911 | |
| 1912 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1913 | down_read(&css_set_rwsem); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1914 | |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1915 | root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id); |
| 1916 | |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1917 | if (root) { |
| 1918 | cgrp = task_cgroup_from_root(task, root); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1919 | path = cgroup_path(cgrp, buf, buflen); |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1920 | } else { |
| 1921 | /* if no hierarchy exists, everyone is in "/" */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1922 | if (strlcpy(buf, "/", buflen) < buflen) |
| 1923 | path = buf; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1924 | } |
| 1925 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1926 | up_read(&css_set_rwsem); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1927 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1928 | return path; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1929 | } |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1930 | EXPORT_SYMBOL_GPL(task_cgroup_path); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1931 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1932 | /* used to track tasks and other necessary states during migration */ |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1933 | struct cgroup_taskset { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1934 | /* the src and dst cset list running through cset->mg_node */ |
| 1935 | struct list_head src_csets; |
| 1936 | struct list_head dst_csets; |
| 1937 | |
| 1938 | /* |
| 1939 | * Fields for cgroup_taskset_*() iteration. |
| 1940 | * |
| 1941 | * Before migration is committed, the target migration tasks are on |
| 1942 | * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of |
| 1943 | * the csets on ->dst_csets. ->csets point to either ->src_csets |
| 1944 | * or ->dst_csets depending on whether migration is committed. |
| 1945 | * |
| 1946 | * ->cur_csets and ->cur_task point to the current task position |
| 1947 | * during iteration. |
| 1948 | */ |
| 1949 | struct list_head *csets; |
| 1950 | struct css_set *cur_cset; |
| 1951 | struct task_struct *cur_task; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1952 | }; |
| 1953 | |
| 1954 | /** |
| 1955 | * cgroup_taskset_first - reset taskset and return the first task |
| 1956 | * @tset: taskset of interest |
| 1957 | * |
| 1958 | * @tset iteration is initialized and the first task is returned. |
| 1959 | */ |
| 1960 | struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset) |
| 1961 | { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1962 | tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node); |
| 1963 | tset->cur_task = NULL; |
| 1964 | |
| 1965 | return cgroup_taskset_next(tset); |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1966 | } |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1967 | |
| 1968 | /** |
| 1969 | * cgroup_taskset_next - iterate to the next task in taskset |
| 1970 | * @tset: taskset of interest |
| 1971 | * |
| 1972 | * Return the next task in @tset. Iteration must have been initialized |
| 1973 | * with cgroup_taskset_first(). |
| 1974 | */ |
| 1975 | struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset) |
| 1976 | { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1977 | struct css_set *cset = tset->cur_cset; |
| 1978 | struct task_struct *task = tset->cur_task; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1979 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1980 | while (&cset->mg_node != tset->csets) { |
| 1981 | if (!task) |
| 1982 | task = list_first_entry(&cset->mg_tasks, |
| 1983 | struct task_struct, cg_list); |
| 1984 | else |
| 1985 | task = list_next_entry(task, cg_list); |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1986 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1987 | if (&task->cg_list != &cset->mg_tasks) { |
| 1988 | tset->cur_cset = cset; |
| 1989 | tset->cur_task = task; |
| 1990 | return task; |
| 1991 | } |
| 1992 | |
| 1993 | cset = list_next_entry(cset, mg_node); |
| 1994 | task = NULL; |
| 1995 | } |
| 1996 | |
| 1997 | return NULL; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1998 | } |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1999 | |
| 2000 | /** |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2001 | * cgroup_task_migrate - move a task from one cgroup to another. |
Fabian Frederick | 6010694 | 2014-05-05 20:08:13 +0200 | [diff] [blame] | 2002 | * @old_cgrp: the cgroup @tsk is being migrated from |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2003 | * @tsk: the task being migrated |
| 2004 | * @new_cset: the new css_set @tsk is being attached to |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2005 | * |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2006 | * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2007 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2008 | static void cgroup_task_migrate(struct cgroup *old_cgrp, |
| 2009 | struct task_struct *tsk, |
| 2010 | struct css_set *new_cset) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2011 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2012 | struct css_set *old_cset; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2013 | |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2014 | lockdep_assert_held(&cgroup_mutex); |
| 2015 | lockdep_assert_held(&css_set_rwsem); |
| 2016 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2017 | /* |
Mandeep Singh Baines | 026085e | 2011-12-21 20:18:35 -0800 | [diff] [blame] | 2018 | * We are synchronized through threadgroup_lock() against PF_EXITING |
| 2019 | * setting such that we can't race against cgroup_exit() changing the |
| 2020 | * css_set to init_css_set and dropping the old one. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2021 | */ |
Frederic Weisbecker | c84cdf7 | 2011-12-21 20:03:18 +0100 | [diff] [blame] | 2022 | WARN_ON_ONCE(tsk->flags & PF_EXITING); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 2023 | old_cset = task_css_set(tsk); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2024 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2025 | get_css_set(new_cset); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2026 | rcu_assign_pointer(tsk->cgroups, new_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2027 | |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2028 | /* |
| 2029 | * Use move_tail so that cgroup_taskset_first() still returns the |
| 2030 | * leader after migration. This works because cgroup_migrate() |
| 2031 | * ensures that the dst_cset of the leader is the first on the |
| 2032 | * tset's dst_csets list. |
| 2033 | */ |
| 2034 | list_move_tail(&tsk->cg_list, &new_cset->mg_tasks); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2035 | |
| 2036 | /* |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2037 | * We just gained a reference on old_cset by taking it from the |
| 2038 | * task. As trading it for new_cset is protected by cgroup_mutex, |
| 2039 | * we're safe to drop it here; it will be freed under RCU. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2040 | */ |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 2041 | put_css_set_locked(old_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2042 | } |
| 2043 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 2044 | /** |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2045 | * cgroup_migrate_finish - cleanup after attach |
| 2046 | * @preloaded_csets: list of preloaded css_sets |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2047 | * |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2048 | * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See |
| 2049 | * those functions for details. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2050 | */ |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2051 | static void cgroup_migrate_finish(struct list_head *preloaded_csets) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2052 | { |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2053 | struct css_set *cset, *tmp_cset; |
| 2054 | |
| 2055 | lockdep_assert_held(&cgroup_mutex); |
| 2056 | |
| 2057 | down_write(&css_set_rwsem); |
| 2058 | list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) { |
| 2059 | cset->mg_src_cgrp = NULL; |
| 2060 | cset->mg_dst_cset = NULL; |
| 2061 | list_del_init(&cset->mg_preload_node); |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 2062 | put_css_set_locked(cset); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2063 | } |
| 2064 | up_write(&css_set_rwsem); |
| 2065 | } |
| 2066 | |
| 2067 | /** |
| 2068 | * cgroup_migrate_add_src - add a migration source css_set |
| 2069 | * @src_cset: the source css_set to add |
| 2070 | * @dst_cgrp: the destination cgroup |
| 2071 | * @preloaded_csets: list of preloaded css_sets |
| 2072 | * |
| 2073 | * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin |
| 2074 | * @src_cset and add it to @preloaded_csets, which should later be cleaned |
| 2075 | * up by cgroup_migrate_finish(). |
| 2076 | * |
| 2077 | * This function may be called without holding threadgroup_lock even if the |
| 2078 | * target is a process. Threads may be created and destroyed but as long |
| 2079 | * as cgroup_mutex is not dropped, no new css_set can be put into play and |
| 2080 | * the preloaded css_sets are guaranteed to cover all migrations. |
| 2081 | */ |
| 2082 | static void cgroup_migrate_add_src(struct css_set *src_cset, |
| 2083 | struct cgroup *dst_cgrp, |
| 2084 | struct list_head *preloaded_csets) |
| 2085 | { |
| 2086 | struct cgroup *src_cgrp; |
| 2087 | |
| 2088 | lockdep_assert_held(&cgroup_mutex); |
| 2089 | lockdep_assert_held(&css_set_rwsem); |
| 2090 | |
| 2091 | src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root); |
| 2092 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2093 | if (!list_empty(&src_cset->mg_preload_node)) |
| 2094 | return; |
| 2095 | |
| 2096 | WARN_ON(src_cset->mg_src_cgrp); |
| 2097 | WARN_ON(!list_empty(&src_cset->mg_tasks)); |
| 2098 | WARN_ON(!list_empty(&src_cset->mg_node)); |
| 2099 | |
| 2100 | src_cset->mg_src_cgrp = src_cgrp; |
| 2101 | get_css_set(src_cset); |
| 2102 | list_add(&src_cset->mg_preload_node, preloaded_csets); |
| 2103 | } |
| 2104 | |
| 2105 | /** |
| 2106 | * cgroup_migrate_prepare_dst - prepare destination css_sets for migration |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2107 | * @dst_cgrp: the destination cgroup (may be %NULL) |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2108 | * @preloaded_csets: list of preloaded source css_sets |
| 2109 | * |
| 2110 | * Tasks are about to be moved to @dst_cgrp and all the source css_sets |
| 2111 | * have been preloaded to @preloaded_csets. This function looks up and |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2112 | * pins all destination css_sets, links each to its source, and append them |
| 2113 | * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each |
| 2114 | * source css_set is assumed to be its cgroup on the default hierarchy. |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2115 | * |
| 2116 | * This function must be called after cgroup_migrate_add_src() has been |
| 2117 | * called on each migration source css_set. After migration is performed |
| 2118 | * using cgroup_migrate(), cgroup_migrate_finish() must be called on |
| 2119 | * @preloaded_csets. |
| 2120 | */ |
| 2121 | static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp, |
| 2122 | struct list_head *preloaded_csets) |
| 2123 | { |
| 2124 | LIST_HEAD(csets); |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2125 | struct css_set *src_cset, *tmp_cset; |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2126 | |
| 2127 | lockdep_assert_held(&cgroup_mutex); |
| 2128 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2129 | /* |
| 2130 | * Except for the root, child_subsys_mask must be zero for a cgroup |
| 2131 | * with tasks so that child cgroups don't compete against tasks. |
| 2132 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 2133 | if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) && |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2134 | dst_cgrp->child_subsys_mask) |
| 2135 | return -EBUSY; |
| 2136 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2137 | /* look up the dst cset for each src cset and link it to src */ |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2138 | list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) { |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2139 | struct css_set *dst_cset; |
| 2140 | |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2141 | dst_cset = find_css_set(src_cset, |
| 2142 | dst_cgrp ?: src_cset->dfl_cgrp); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2143 | if (!dst_cset) |
| 2144 | goto err; |
| 2145 | |
| 2146 | WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset); |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2147 | |
| 2148 | /* |
| 2149 | * If src cset equals dst, it's noop. Drop the src. |
| 2150 | * cgroup_migrate() will skip the cset too. Note that we |
| 2151 | * can't handle src == dst as some nodes are used by both. |
| 2152 | */ |
| 2153 | if (src_cset == dst_cset) { |
| 2154 | src_cset->mg_src_cgrp = NULL; |
| 2155 | list_del_init(&src_cset->mg_preload_node); |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 2156 | put_css_set(src_cset); |
| 2157 | put_css_set(dst_cset); |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2158 | continue; |
| 2159 | } |
| 2160 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2161 | src_cset->mg_dst_cset = dst_cset; |
| 2162 | |
| 2163 | if (list_empty(&dst_cset->mg_preload_node)) |
| 2164 | list_add(&dst_cset->mg_preload_node, &csets); |
| 2165 | else |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 2166 | put_css_set(dst_cset); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2167 | } |
| 2168 | |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2169 | list_splice_tail(&csets, preloaded_csets); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2170 | return 0; |
| 2171 | err: |
| 2172 | cgroup_migrate_finish(&csets); |
| 2173 | return -ENOMEM; |
| 2174 | } |
| 2175 | |
| 2176 | /** |
| 2177 | * cgroup_migrate - migrate a process or task to a cgroup |
| 2178 | * @cgrp: the destination cgroup |
| 2179 | * @leader: the leader of the process or the task to migrate |
| 2180 | * @threadgroup: whether @leader points to the whole process or a single task |
| 2181 | * |
| 2182 | * Migrate a process or task denoted by @leader to @cgrp. If migrating a |
| 2183 | * process, the caller must be holding threadgroup_lock of @leader. The |
| 2184 | * caller is also responsible for invoking cgroup_migrate_add_src() and |
| 2185 | * cgroup_migrate_prepare_dst() on the targets before invoking this |
| 2186 | * function and following up with cgroup_migrate_finish(). |
| 2187 | * |
| 2188 | * As long as a controller's ->can_attach() doesn't fail, this function is |
| 2189 | * guaranteed to succeed. This means that, excluding ->can_attach() |
| 2190 | * failure, when migrating multiple targets, the success or failure can be |
| 2191 | * decided for all targets by invoking group_migrate_prepare_dst() before |
| 2192 | * actually starting migrating. |
| 2193 | */ |
| 2194 | static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader, |
| 2195 | bool threadgroup) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2196 | { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2197 | struct cgroup_taskset tset = { |
| 2198 | .src_csets = LIST_HEAD_INIT(tset.src_csets), |
| 2199 | .dst_csets = LIST_HEAD_INIT(tset.dst_csets), |
| 2200 | .csets = &tset.src_csets, |
| 2201 | }; |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2202 | struct cgroup_subsys_state *css, *failed_css = NULL; |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2203 | struct css_set *cset, *tmp_cset; |
| 2204 | struct task_struct *task, *tmp_task; |
| 2205 | int i, ret; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2206 | |
| 2207 | /* |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2208 | * Prevent freeing of tasks while we take a snapshot. Tasks that are |
| 2209 | * already PF_EXITING could be freed from underneath us unless we |
| 2210 | * take an rcu_read_lock. |
| 2211 | */ |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2212 | down_write(&css_set_rwsem); |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2213 | rcu_read_lock(); |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2214 | task = leader; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2215 | do { |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2216 | /* @task either already exited or can't exit until the end */ |
| 2217 | if (task->flags & PF_EXITING) |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 2218 | goto next; |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2219 | |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2220 | /* leave @task alone if post_fork() hasn't linked it yet */ |
| 2221 | if (list_empty(&task->cg_list)) |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 2222 | goto next; |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2223 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2224 | cset = task_css_set(task); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2225 | if (!cset->mg_src_cgrp) |
Mandeep Singh Baines | 892a2b9 | 2011-12-21 20:18:37 -0800 | [diff] [blame] | 2226 | goto next; |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2227 | |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2228 | /* |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2229 | * cgroup_taskset_first() must always return the leader. |
| 2230 | * Take care to avoid disturbing the ordering. |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2231 | */ |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2232 | list_move_tail(&task->cg_list, &cset->mg_tasks); |
| 2233 | if (list_empty(&cset->mg_node)) |
| 2234 | list_add_tail(&cset->mg_node, &tset.src_csets); |
| 2235 | if (list_empty(&cset->mg_dst_cset->mg_node)) |
| 2236 | list_move_tail(&cset->mg_dst_cset->mg_node, |
| 2237 | &tset.dst_csets); |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 2238 | next: |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 2239 | if (!threadgroup) |
| 2240 | break; |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2241 | } while_each_thread(leader, task); |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2242 | rcu_read_unlock(); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2243 | up_write(&css_set_rwsem); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2244 | |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2245 | /* methods shouldn't be called if no task is actually migrating */ |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2246 | if (list_empty(&tset.src_csets)) |
| 2247 | return 0; |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2248 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2249 | /* check that we can legitimately attach to the cgroup */ |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 2250 | for_each_e_css(css, i, cgrp) { |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2251 | if (css->ss->can_attach) { |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2252 | ret = css->ss->can_attach(css, &tset); |
| 2253 | if (ret) { |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2254 | failed_css = css; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2255 | goto out_cancel_attach; |
| 2256 | } |
| 2257 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2258 | } |
| 2259 | |
| 2260 | /* |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2261 | * Now that we're guaranteed success, proceed to move all tasks to |
| 2262 | * the new cgroup. There are no failure cases after here, so this |
| 2263 | * is the commit point. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2264 | */ |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2265 | down_write(&css_set_rwsem); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2266 | list_for_each_entry(cset, &tset.src_csets, mg_node) { |
| 2267 | list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) |
| 2268 | cgroup_task_migrate(cset->mg_src_cgrp, task, |
| 2269 | cset->mg_dst_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2270 | } |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2271 | up_write(&css_set_rwsem); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2272 | |
| 2273 | /* |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2274 | * Migration is committed, all target tasks are now on dst_csets. |
| 2275 | * Nothing is sensitive to fork() after this point. Notify |
| 2276 | * controllers that migration is complete. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2277 | */ |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2278 | tset.csets = &tset.dst_csets; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2279 | |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 2280 | for_each_e_css(css, i, cgrp) |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2281 | if (css->ss->attach) |
| 2282 | css->ss->attach(css, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2283 | |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2284 | ret = 0; |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2285 | goto out_release_tset; |
| 2286 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2287 | out_cancel_attach: |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 2288 | for_each_e_css(css, i, cgrp) { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2289 | if (css == failed_css) |
| 2290 | break; |
| 2291 | if (css->ss->cancel_attach) |
| 2292 | css->ss->cancel_attach(css, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2293 | } |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2294 | out_release_tset: |
| 2295 | down_write(&css_set_rwsem); |
| 2296 | list_splice_init(&tset.dst_csets, &tset.src_csets); |
| 2297 | list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) { |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2298 | list_splice_tail_init(&cset->mg_tasks, &cset->tasks); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2299 | list_del_init(&cset->mg_node); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2300 | } |
| 2301 | up_write(&css_set_rwsem); |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2302 | return ret; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2303 | } |
| 2304 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2305 | /** |
| 2306 | * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup |
| 2307 | * @dst_cgrp: the cgroup to attach to |
| 2308 | * @leader: the task or the leader of the threadgroup to be attached |
| 2309 | * @threadgroup: attach the whole threadgroup? |
| 2310 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2311 | * Call holding cgroup_mutex and threadgroup_lock of @leader. |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2312 | */ |
| 2313 | static int cgroup_attach_task(struct cgroup *dst_cgrp, |
| 2314 | struct task_struct *leader, bool threadgroup) |
| 2315 | { |
| 2316 | LIST_HEAD(preloaded_csets); |
| 2317 | struct task_struct *task; |
| 2318 | int ret; |
| 2319 | |
| 2320 | /* look up all src csets */ |
| 2321 | down_read(&css_set_rwsem); |
| 2322 | rcu_read_lock(); |
| 2323 | task = leader; |
| 2324 | do { |
| 2325 | cgroup_migrate_add_src(task_css_set(task), dst_cgrp, |
| 2326 | &preloaded_csets); |
| 2327 | if (!threadgroup) |
| 2328 | break; |
| 2329 | } while_each_thread(leader, task); |
| 2330 | rcu_read_unlock(); |
| 2331 | up_read(&css_set_rwsem); |
| 2332 | |
| 2333 | /* prepare dst csets and commit */ |
| 2334 | ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets); |
| 2335 | if (!ret) |
| 2336 | ret = cgroup_migrate(dst_cgrp, leader, threadgroup); |
| 2337 | |
| 2338 | cgroup_migrate_finish(&preloaded_csets); |
| 2339 | return ret; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2340 | } |
| 2341 | |
| 2342 | /* |
| 2343 | * 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] | 2344 | * function to attach either it or all tasks in its threadgroup. Will lock |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2345 | * cgroup_mutex and threadgroup. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2346 | */ |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2347 | static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf, |
| 2348 | size_t nbytes, loff_t off, bool threadgroup) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2349 | { |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2350 | struct task_struct *tsk; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2351 | const struct cred *cred = current_cred(), *tcred; |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2352 | struct cgroup *cgrp; |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2353 | pid_t pid; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2354 | int ret; |
| 2355 | |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2356 | if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0) |
| 2357 | return -EINVAL; |
| 2358 | |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2359 | cgrp = cgroup_kn_lock_live(of->kn); |
| 2360 | if (!cgrp) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2361 | return -ENODEV; |
| 2362 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2363 | retry_find_task: |
| 2364 | rcu_read_lock(); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2365 | if (pid) { |
Pavel Emelyanov | 73507f3 | 2008-02-07 00:14:47 -0800 | [diff] [blame] | 2366 | tsk = find_task_by_vpid(pid); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2367 | if (!tsk) { |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2368 | rcu_read_unlock(); |
SeongJae Park | dd4b0a4 | 2014-01-18 16:56:47 +0900 | [diff] [blame] | 2369 | ret = -ESRCH; |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2370 | goto out_unlock_cgroup; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2371 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2372 | /* |
| 2373 | * even if we're attaching all tasks in the thread group, we |
| 2374 | * only need to check permissions on one of them. |
| 2375 | */ |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2376 | tcred = __task_cred(tsk); |
Eric W. Biederman | 14a590c | 2012-03-12 15:44:39 -0700 | [diff] [blame] | 2377 | if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) && |
| 2378 | !uid_eq(cred->euid, tcred->uid) && |
| 2379 | !uid_eq(cred->euid, tcred->suid)) { |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2380 | rcu_read_unlock(); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2381 | ret = -EACCES; |
| 2382 | goto out_unlock_cgroup; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2383 | } |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2384 | } else |
| 2385 | tsk = current; |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2386 | |
| 2387 | if (threadgroup) |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2388 | tsk = tsk->group_leader; |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2389 | |
| 2390 | /* |
Tejun Heo | 14a40ff | 2013-03-19 13:45:20 -0700 | [diff] [blame] | 2391 | * Workqueue threads may acquire PF_NO_SETAFFINITY and become |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2392 | * trapped in a cpuset, or RT worker may be born in a cgroup |
| 2393 | * with no rt_runtime allocated. Just say no. |
| 2394 | */ |
Tejun Heo | 14a40ff | 2013-03-19 13:45:20 -0700 | [diff] [blame] | 2395 | if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) { |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2396 | ret = -EINVAL; |
| 2397 | rcu_read_unlock(); |
| 2398 | goto out_unlock_cgroup; |
| 2399 | } |
| 2400 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2401 | get_task_struct(tsk); |
| 2402 | rcu_read_unlock(); |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2403 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2404 | threadgroup_lock(tsk); |
| 2405 | if (threadgroup) { |
| 2406 | if (!thread_group_leader(tsk)) { |
| 2407 | /* |
| 2408 | * a race with de_thread from another thread's exec() |
| 2409 | * may strip us of our leadership, if this happens, |
| 2410 | * there is no choice but to throw this task away and |
| 2411 | * try again; this is |
| 2412 | * "double-double-toil-and-trouble-check locking". |
| 2413 | */ |
| 2414 | threadgroup_unlock(tsk); |
| 2415 | put_task_struct(tsk); |
| 2416 | goto retry_find_task; |
| 2417 | } |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 2418 | } |
| 2419 | |
| 2420 | ret = cgroup_attach_task(cgrp, tsk, threadgroup); |
| 2421 | |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2422 | threadgroup_unlock(tsk); |
| 2423 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2424 | put_task_struct(tsk); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2425 | out_unlock_cgroup: |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2426 | cgroup_kn_unlock(of->kn); |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2427 | return ret ?: nbytes; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2428 | } |
| 2429 | |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2430 | /** |
| 2431 | * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from' |
| 2432 | * @from: attach to all cgroups of a given task |
| 2433 | * @tsk: the task to be attached |
| 2434 | */ |
| 2435 | int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk) |
| 2436 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 2437 | struct cgroup_root *root; |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2438 | int retval = 0; |
| 2439 | |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2440 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 2441 | for_each_root(root) { |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 2442 | struct cgroup *from_cgrp; |
| 2443 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 2444 | if (root == &cgrp_dfl_root) |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 2445 | continue; |
| 2446 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 2447 | down_read(&css_set_rwsem); |
| 2448 | from_cgrp = task_cgroup_from_root(from, root); |
| 2449 | up_read(&css_set_rwsem); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2450 | |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 2451 | retval = cgroup_attach_task(from_cgrp, tsk, false); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2452 | if (retval) |
| 2453 | break; |
| 2454 | } |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2455 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2456 | |
| 2457 | return retval; |
| 2458 | } |
| 2459 | EXPORT_SYMBOL_GPL(cgroup_attach_task_all); |
| 2460 | |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2461 | static ssize_t cgroup_tasks_write(struct kernfs_open_file *of, |
| 2462 | char *buf, size_t nbytes, loff_t off) |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2463 | { |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2464 | return __cgroup_procs_write(of, buf, nbytes, off, false); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2465 | } |
| 2466 | |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2467 | static ssize_t cgroup_procs_write(struct kernfs_open_file *of, |
| 2468 | char *buf, size_t nbytes, loff_t off) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2469 | { |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2470 | return __cgroup_procs_write(of, buf, nbytes, off, true); |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2471 | } |
| 2472 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2473 | static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of, |
| 2474 | char *buf, size_t nbytes, loff_t off) |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2475 | { |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2476 | struct cgroup *cgrp; |
Tejun Heo | 5f46990 | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2477 | |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2478 | BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX); |
| 2479 | |
| 2480 | cgrp = cgroup_kn_lock_live(of->kn); |
| 2481 | if (!cgrp) |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2482 | return -ENODEV; |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 2483 | spin_lock(&release_agent_path_lock); |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2484 | strlcpy(cgrp->root->release_agent_path, strstrip(buf), |
| 2485 | sizeof(cgrp->root->release_agent_path)); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 2486 | spin_unlock(&release_agent_path_lock); |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2487 | cgroup_kn_unlock(of->kn); |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2488 | return nbytes; |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2489 | } |
| 2490 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2491 | static int cgroup_release_agent_show(struct seq_file *seq, void *v) |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2492 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2493 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2494 | |
Tejun Heo | 46cfeb0 | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2495 | spin_lock(&release_agent_path_lock); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2496 | seq_puts(seq, cgrp->root->release_agent_path); |
Tejun Heo | 46cfeb0 | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2497 | spin_unlock(&release_agent_path_lock); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2498 | seq_putc(seq, '\n'); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2499 | return 0; |
| 2500 | } |
| 2501 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2502 | static int cgroup_sane_behavior_show(struct seq_file *seq, void *v) |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 2503 | { |
Tejun Heo | c1d5d42 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 2504 | seq_puts(seq, "0\n"); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 2505 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2506 | } |
| 2507 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2508 | static void cgroup_print_ss_mask(struct seq_file *seq, unsigned int ss_mask) |
| 2509 | { |
| 2510 | struct cgroup_subsys *ss; |
| 2511 | bool printed = false; |
| 2512 | int ssid; |
| 2513 | |
| 2514 | for_each_subsys(ss, ssid) { |
| 2515 | if (ss_mask & (1 << ssid)) { |
| 2516 | if (printed) |
| 2517 | seq_putc(seq, ' '); |
| 2518 | seq_printf(seq, "%s", ss->name); |
| 2519 | printed = true; |
| 2520 | } |
| 2521 | } |
| 2522 | if (printed) |
| 2523 | seq_putc(seq, '\n'); |
| 2524 | } |
| 2525 | |
| 2526 | /* show controllers which are currently attached to the default hierarchy */ |
| 2527 | static int cgroup_root_controllers_show(struct seq_file *seq, void *v) |
| 2528 | { |
| 2529 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2530 | |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 2531 | cgroup_print_ss_mask(seq, cgrp->root->subsys_mask & |
| 2532 | ~cgrp_dfl_root_inhibit_ss_mask); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2533 | return 0; |
| 2534 | } |
| 2535 | |
| 2536 | /* show controllers which are enabled from the parent */ |
| 2537 | static int cgroup_controllers_show(struct seq_file *seq, void *v) |
| 2538 | { |
| 2539 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2540 | |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2541 | cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2542 | return 0; |
| 2543 | } |
| 2544 | |
| 2545 | /* show controllers which are enabled for a given cgroup's children */ |
| 2546 | static int cgroup_subtree_control_show(struct seq_file *seq, void *v) |
| 2547 | { |
| 2548 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2549 | |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2550 | cgroup_print_ss_mask(seq, cgrp->subtree_control); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2551 | return 0; |
| 2552 | } |
| 2553 | |
| 2554 | /** |
| 2555 | * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy |
| 2556 | * @cgrp: root of the subtree to update csses for |
| 2557 | * |
| 2558 | * @cgrp's child_subsys_mask has changed and its subtree's (self excluded) |
| 2559 | * css associations need to be updated accordingly. This function looks up |
| 2560 | * all css_sets which are attached to the subtree, creates the matching |
| 2561 | * updated css_sets and migrates the tasks to the new ones. |
| 2562 | */ |
| 2563 | static int cgroup_update_dfl_csses(struct cgroup *cgrp) |
| 2564 | { |
| 2565 | LIST_HEAD(preloaded_csets); |
| 2566 | struct cgroup_subsys_state *css; |
| 2567 | struct css_set *src_cset; |
| 2568 | int ret; |
| 2569 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2570 | lockdep_assert_held(&cgroup_mutex); |
| 2571 | |
| 2572 | /* look up all csses currently attached to @cgrp's subtree */ |
| 2573 | down_read(&css_set_rwsem); |
| 2574 | css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) { |
| 2575 | struct cgrp_cset_link *link; |
| 2576 | |
| 2577 | /* self is not affected by child_subsys_mask change */ |
| 2578 | if (css->cgroup == cgrp) |
| 2579 | continue; |
| 2580 | |
| 2581 | list_for_each_entry(link, &css->cgroup->cset_links, cset_link) |
| 2582 | cgroup_migrate_add_src(link->cset, cgrp, |
| 2583 | &preloaded_csets); |
| 2584 | } |
| 2585 | up_read(&css_set_rwsem); |
| 2586 | |
| 2587 | /* NULL dst indicates self on default hierarchy */ |
| 2588 | ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets); |
| 2589 | if (ret) |
| 2590 | goto out_finish; |
| 2591 | |
| 2592 | list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) { |
| 2593 | struct task_struct *last_task = NULL, *task; |
| 2594 | |
| 2595 | /* src_csets precede dst_csets, break on the first dst_cset */ |
| 2596 | if (!src_cset->mg_src_cgrp) |
| 2597 | break; |
| 2598 | |
| 2599 | /* |
| 2600 | * All tasks in src_cset need to be migrated to the |
| 2601 | * matching dst_cset. Empty it process by process. We |
| 2602 | * walk tasks but migrate processes. The leader might even |
| 2603 | * belong to a different cset but such src_cset would also |
| 2604 | * be among the target src_csets because the default |
| 2605 | * hierarchy enforces per-process membership. |
| 2606 | */ |
| 2607 | while (true) { |
| 2608 | down_read(&css_set_rwsem); |
| 2609 | task = list_first_entry_or_null(&src_cset->tasks, |
| 2610 | struct task_struct, cg_list); |
| 2611 | if (task) { |
| 2612 | task = task->group_leader; |
| 2613 | WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp); |
| 2614 | get_task_struct(task); |
| 2615 | } |
| 2616 | up_read(&css_set_rwsem); |
| 2617 | |
| 2618 | if (!task) |
| 2619 | break; |
| 2620 | |
| 2621 | /* guard against possible infinite loop */ |
| 2622 | if (WARN(last_task == task, |
| 2623 | "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n")) |
| 2624 | goto out_finish; |
| 2625 | last_task = task; |
| 2626 | |
| 2627 | threadgroup_lock(task); |
| 2628 | /* raced against de_thread() from another thread? */ |
| 2629 | if (!thread_group_leader(task)) { |
| 2630 | threadgroup_unlock(task); |
| 2631 | put_task_struct(task); |
| 2632 | continue; |
| 2633 | } |
| 2634 | |
| 2635 | ret = cgroup_migrate(src_cset->dfl_cgrp, task, true); |
| 2636 | |
| 2637 | threadgroup_unlock(task); |
| 2638 | put_task_struct(task); |
| 2639 | |
| 2640 | if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret)) |
| 2641 | goto out_finish; |
| 2642 | } |
| 2643 | } |
| 2644 | |
| 2645 | out_finish: |
| 2646 | cgroup_migrate_finish(&preloaded_csets); |
| 2647 | return ret; |
| 2648 | } |
| 2649 | |
| 2650 | /* change the enabled child controllers for a cgroup in the default hierarchy */ |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2651 | static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of, |
| 2652 | char *buf, size_t nbytes, |
| 2653 | loff_t off) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2654 | { |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2655 | unsigned int enable = 0, disable = 0; |
Tejun Heo | 755bf5e | 2014-11-18 02:49:50 -0500 | [diff] [blame^] | 2656 | unsigned int css_enable, css_disable, old_sc, new_sc, old_ss, new_ss; |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2657 | struct cgroup *cgrp, *child; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2658 | struct cgroup_subsys *ss; |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2659 | char *tok; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2660 | int ssid, ret; |
| 2661 | |
| 2662 | /* |
Tejun Heo | d37167a | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2663 | * Parse input - space separated list of subsystem names prefixed |
| 2664 | * with either + or -. |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2665 | */ |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2666 | buf = strstrip(buf); |
| 2667 | while ((tok = strsep(&buf, " "))) { |
Tejun Heo | d37167a | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2668 | if (tok[0] == '\0') |
| 2669 | continue; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2670 | for_each_subsys(ss, ssid) { |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 2671 | if (ss->disabled || strcmp(tok + 1, ss->name) || |
| 2672 | ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask)) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2673 | continue; |
| 2674 | |
| 2675 | if (*tok == '+') { |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2676 | enable |= 1 << ssid; |
| 2677 | disable &= ~(1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2678 | } else if (*tok == '-') { |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2679 | disable |= 1 << ssid; |
| 2680 | enable &= ~(1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2681 | } else { |
| 2682 | return -EINVAL; |
| 2683 | } |
| 2684 | break; |
| 2685 | } |
| 2686 | if (ssid == CGROUP_SUBSYS_COUNT) |
| 2687 | return -EINVAL; |
| 2688 | } |
| 2689 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2690 | cgrp = cgroup_kn_lock_live(of->kn); |
| 2691 | if (!cgrp) |
| 2692 | return -ENODEV; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2693 | |
| 2694 | for_each_subsys(ss, ssid) { |
| 2695 | if (enable & (1 << ssid)) { |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2696 | if (cgrp->subtree_control & (1 << ssid)) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2697 | enable &= ~(1 << ssid); |
| 2698 | continue; |
| 2699 | } |
| 2700 | |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2701 | /* unavailable or not enabled on the parent? */ |
| 2702 | if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) || |
| 2703 | (cgroup_parent(cgrp) && |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2704 | !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) { |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2705 | ret = -ENOENT; |
| 2706 | goto out_unlock; |
| 2707 | } |
| 2708 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2709 | /* |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2710 | * @ss is already enabled through dependency and |
| 2711 | * we'll just make it visible. Skip draining. |
| 2712 | */ |
| 2713 | if (cgrp->child_subsys_mask & (1 << ssid)) |
| 2714 | continue; |
| 2715 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2716 | /* |
| 2717 | * Because css offlining is asynchronous, userland |
| 2718 | * might try to re-enable the same controller while |
| 2719 | * the previous instance is still around. In such |
| 2720 | * cases, wait till it's gone using offline_waitq. |
| 2721 | */ |
| 2722 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | 0cee8b7 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2723 | DEFINE_WAIT(wait); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2724 | |
| 2725 | if (!cgroup_css(child, ss)) |
| 2726 | continue; |
| 2727 | |
Tejun Heo | 0cee8b7 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2728 | cgroup_get(child); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2729 | prepare_to_wait(&child->offline_waitq, &wait, |
| 2730 | TASK_UNINTERRUPTIBLE); |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2731 | cgroup_kn_unlock(of->kn); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2732 | schedule(); |
| 2733 | finish_wait(&child->offline_waitq, &wait); |
Tejun Heo | 0cee8b7 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2734 | cgroup_put(child); |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2735 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2736 | return restart_syscall(); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2737 | } |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2738 | } else if (disable & (1 << ssid)) { |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2739 | if (!(cgrp->subtree_control & (1 << ssid))) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2740 | disable &= ~(1 << ssid); |
| 2741 | continue; |
| 2742 | } |
| 2743 | |
| 2744 | /* a child has it enabled? */ |
| 2745 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2746 | if (child->subtree_control & (1 << ssid)) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2747 | ret = -EBUSY; |
Tejun Heo | ddab2b6 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2748 | goto out_unlock; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2749 | } |
| 2750 | } |
| 2751 | } |
| 2752 | } |
| 2753 | |
| 2754 | if (!enable && !disable) { |
| 2755 | ret = 0; |
Tejun Heo | ddab2b6 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2756 | goto out_unlock; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2757 | } |
| 2758 | |
| 2759 | /* |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2760 | * Except for the root, subtree_control must be zero for a cgroup |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2761 | * with tasks so that child cgroups don't compete against tasks. |
| 2762 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 2763 | if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2764 | ret = -EBUSY; |
| 2765 | goto out_unlock; |
| 2766 | } |
| 2767 | |
| 2768 | /* |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2769 | * Update subsys masks and calculate what needs to be done. More |
| 2770 | * subsystems than specified may need to be enabled or disabled |
| 2771 | * depending on subsystem dependencies. |
| 2772 | */ |
Tejun Heo | 755bf5e | 2014-11-18 02:49:50 -0500 | [diff] [blame^] | 2773 | old_sc = cgrp->subtree_control; |
| 2774 | old_ss = cgrp->child_subsys_mask; |
| 2775 | new_sc = (old_sc | enable) & ~disable; |
| 2776 | new_ss = cgroup_calc_child_subsys_mask(cgrp, new_sc); |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2777 | |
Tejun Heo | 755bf5e | 2014-11-18 02:49:50 -0500 | [diff] [blame^] | 2778 | css_enable = ~old_ss & new_ss; |
| 2779 | css_disable = old_ss & ~new_ss; |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2780 | enable |= css_enable; |
| 2781 | disable |= css_disable; |
| 2782 | |
Tejun Heo | 755bf5e | 2014-11-18 02:49:50 -0500 | [diff] [blame^] | 2783 | cgrp->subtree_control = new_sc; |
| 2784 | cgrp->child_subsys_mask = new_ss; |
| 2785 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2786 | /* |
| 2787 | * Create new csses or make the existing ones visible. A css is |
| 2788 | * created invisible if it's being implicitly enabled through |
| 2789 | * dependency. An invisible css is made visible when the userland |
| 2790 | * explicitly enables it. |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2791 | */ |
| 2792 | for_each_subsys(ss, ssid) { |
| 2793 | if (!(enable & (1 << ssid))) |
| 2794 | continue; |
| 2795 | |
| 2796 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2797 | if (css_enable & (1 << ssid)) |
| 2798 | ret = create_css(child, ss, |
| 2799 | cgrp->subtree_control & (1 << ssid)); |
| 2800 | else |
| 2801 | ret = cgroup_populate_dir(child, 1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2802 | if (ret) |
| 2803 | goto err_undo_css; |
| 2804 | } |
| 2805 | } |
| 2806 | |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2807 | /* |
| 2808 | * At this point, cgroup_e_css() results reflect the new csses |
| 2809 | * making the following cgroup_update_dfl_csses() properly update |
| 2810 | * css associations of all tasks in the subtree. |
| 2811 | */ |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2812 | ret = cgroup_update_dfl_csses(cgrp); |
| 2813 | if (ret) |
| 2814 | goto err_undo_css; |
| 2815 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2816 | /* |
| 2817 | * All tasks are migrated out of disabled csses. Kill or hide |
| 2818 | * them. A css is hidden when the userland requests it to be |
Tejun Heo | b4536f0ca | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2819 | * disabled while other subsystems are still depending on it. The |
| 2820 | * css must not actively control resources and be in the vanilla |
| 2821 | * state if it's made visible again later. Controllers which may |
| 2822 | * be depended upon should provide ->css_reset() for this purpose. |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2823 | */ |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2824 | for_each_subsys(ss, ssid) { |
| 2825 | if (!(disable & (1 << ssid))) |
| 2826 | continue; |
| 2827 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2828 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | b4536f0ca | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2829 | struct cgroup_subsys_state *css = cgroup_css(child, ss); |
| 2830 | |
| 2831 | if (css_disable & (1 << ssid)) { |
| 2832 | kill_css(css); |
| 2833 | } else { |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2834 | cgroup_clear_dir(child, 1 << ssid); |
Tejun Heo | b4536f0ca | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2835 | if (ss->css_reset) |
| 2836 | ss->css_reset(css); |
| 2837 | } |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2838 | } |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2839 | } |
| 2840 | |
| 2841 | kernfs_activate(cgrp->kn); |
| 2842 | ret = 0; |
| 2843 | out_unlock: |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2844 | cgroup_kn_unlock(of->kn); |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2845 | return ret ?: nbytes; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2846 | |
| 2847 | err_undo_css: |
Tejun Heo | 755bf5e | 2014-11-18 02:49:50 -0500 | [diff] [blame^] | 2848 | cgrp->subtree_control = old_sc; |
| 2849 | cgrp->child_subsys_mask = old_ss; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2850 | |
| 2851 | for_each_subsys(ss, ssid) { |
| 2852 | if (!(enable & (1 << ssid))) |
| 2853 | continue; |
| 2854 | |
| 2855 | cgroup_for_each_live_child(child, cgrp) { |
| 2856 | struct cgroup_subsys_state *css = cgroup_css(child, ss); |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2857 | |
| 2858 | if (!css) |
| 2859 | continue; |
| 2860 | |
| 2861 | if (css_enable & (1 << ssid)) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2862 | kill_css(css); |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2863 | else |
| 2864 | cgroup_clear_dir(child, 1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2865 | } |
| 2866 | } |
| 2867 | goto out_unlock; |
| 2868 | } |
| 2869 | |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 2870 | static int cgroup_populated_show(struct seq_file *seq, void *v) |
| 2871 | { |
| 2872 | seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt); |
| 2873 | return 0; |
| 2874 | } |
| 2875 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2876 | static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf, |
| 2877 | size_t nbytes, loff_t off) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2878 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2879 | struct cgroup *cgrp = of->kn->parent->priv; |
| 2880 | struct cftype *cft = of->kn->priv; |
| 2881 | struct cgroup_subsys_state *css; |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2882 | int ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2883 | |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2884 | if (cft->write) |
| 2885 | return cft->write(of, buf, nbytes, off); |
| 2886 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2887 | /* |
| 2888 | * kernfs guarantees that a file isn't deleted with operations in |
| 2889 | * flight, which means that the matching css is and stays alive and |
| 2890 | * doesn't need to be pinned. The RCU locking is not necessary |
| 2891 | * either. It's just for the convenience of using cgroup_css(). |
| 2892 | */ |
| 2893 | rcu_read_lock(); |
| 2894 | css = cgroup_css(cgrp, cft->ss); |
| 2895 | rcu_read_unlock(); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2896 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2897 | if (cft->write_u64) { |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2898 | unsigned long long v; |
| 2899 | ret = kstrtoull(buf, 0, &v); |
| 2900 | if (!ret) |
| 2901 | ret = cft->write_u64(css, cft, v); |
| 2902 | } else if (cft->write_s64) { |
| 2903 | long long v; |
| 2904 | ret = kstrtoll(buf, 0, &v); |
| 2905 | if (!ret) |
| 2906 | ret = cft->write_s64(css, cft, v); |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2907 | } else { |
| 2908 | ret = -EINVAL; |
| 2909 | } |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2910 | |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2911 | return ret ?: nbytes; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2912 | } |
| 2913 | |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2914 | static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos) |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2915 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2916 | return seq_cft(seq)->seq_start(seq, ppos); |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2917 | } |
| 2918 | |
| 2919 | static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos) |
| 2920 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2921 | return seq_cft(seq)->seq_next(seq, v, ppos); |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2922 | } |
| 2923 | |
| 2924 | static void cgroup_seqfile_stop(struct seq_file *seq, void *v) |
| 2925 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2926 | seq_cft(seq)->seq_stop(seq, v); |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2927 | } |
| 2928 | |
| 2929 | static int cgroup_seqfile_show(struct seq_file *m, void *arg) |
| 2930 | { |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2931 | struct cftype *cft = seq_cft(m); |
| 2932 | struct cgroup_subsys_state *css = seq_css(m); |
Li Zefan | e0798ce | 2013-07-31 17:36:25 +0800 | [diff] [blame] | 2933 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2934 | if (cft->seq_show) |
| 2935 | return cft->seq_show(m, arg); |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2936 | |
Tejun Heo | 896f519 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2937 | if (cft->read_u64) |
| 2938 | seq_printf(m, "%llu\n", cft->read_u64(css, cft)); |
| 2939 | else if (cft->read_s64) |
| 2940 | seq_printf(m, "%lld\n", cft->read_s64(css, cft)); |
| 2941 | else |
| 2942 | return -EINVAL; |
| 2943 | return 0; |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2944 | } |
| 2945 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2946 | static struct kernfs_ops cgroup_kf_single_ops = { |
| 2947 | .atomic_write_len = PAGE_SIZE, |
| 2948 | .write = cgroup_file_write, |
| 2949 | .seq_show = cgroup_seqfile_show, |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2950 | }; |
| 2951 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2952 | static struct kernfs_ops cgroup_kf_ops = { |
| 2953 | .atomic_write_len = PAGE_SIZE, |
| 2954 | .write = cgroup_file_write, |
| 2955 | .seq_start = cgroup_seqfile_start, |
| 2956 | .seq_next = cgroup_seqfile_next, |
| 2957 | .seq_stop = cgroup_seqfile_stop, |
| 2958 | .seq_show = cgroup_seqfile_show, |
| 2959 | }; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2960 | |
| 2961 | /* |
| 2962 | * cgroup_rename - Only allow simple rename of directories in place. |
| 2963 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2964 | static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent, |
| 2965 | const char *new_name_str) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2966 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2967 | struct cgroup *cgrp = kn->priv; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2968 | int ret; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2969 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2970 | if (kernfs_type(kn) != KERNFS_DIR) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2971 | return -ENOTDIR; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2972 | if (kn->parent != new_parent) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2973 | return -EIO; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2974 | |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 2975 | /* |
| 2976 | * This isn't a proper migration and its usefulness is very |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 2977 | * limited. Disallow on the default hierarchy. |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 2978 | */ |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 2979 | if (cgroup_on_dfl(cgrp)) |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 2980 | return -EPERM; |
| 2981 | |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 2982 | /* |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2983 | * We're gonna grab cgroup_mutex which nests outside kernfs |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 2984 | * active_ref. kernfs_rename() doesn't require active_ref |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2985 | * protection. Break them before grabbing cgroup_mutex. |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 2986 | */ |
| 2987 | kernfs_break_active_protection(new_parent); |
| 2988 | kernfs_break_active_protection(kn); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2989 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2990 | mutex_lock(&cgroup_mutex); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2991 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2992 | ret = kernfs_rename(kn, new_parent, new_name_str); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2993 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2994 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2995 | |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 2996 | kernfs_unbreak_active_protection(kn); |
| 2997 | kernfs_unbreak_active_protection(new_parent); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2998 | return ret; |
Li Zefan | 099fca3 | 2009-04-02 16:57:29 -0700 | [diff] [blame] | 2999 | } |
| 3000 | |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3001 | /* set uid and gid of cgroup dirs and files to that of the creator */ |
| 3002 | static int cgroup_kn_set_ugid(struct kernfs_node *kn) |
| 3003 | { |
| 3004 | struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID, |
| 3005 | .ia_uid = current_fsuid(), |
| 3006 | .ia_gid = current_fsgid(), }; |
| 3007 | |
| 3008 | if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) && |
| 3009 | gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID)) |
| 3010 | return 0; |
| 3011 | |
| 3012 | return kernfs_setattr(kn, &iattr); |
| 3013 | } |
| 3014 | |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3015 | static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3016 | { |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3017 | char name[CGROUP_FILE_NAME_MAX]; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3018 | struct kernfs_node *kn; |
| 3019 | struct lock_class_key *key = NULL; |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3020 | int ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3021 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3022 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 3023 | key = &cft->lockdep_key; |
| 3024 | #endif |
| 3025 | kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name), |
| 3026 | cgroup_file_mode(cft), 0, cft->kf_ops, cft, |
| 3027 | NULL, false, key); |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3028 | if (IS_ERR(kn)) |
| 3029 | return PTR_ERR(kn); |
| 3030 | |
| 3031 | ret = cgroup_kn_set_ugid(kn); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 3032 | if (ret) { |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3033 | kernfs_remove(kn); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 3034 | return ret; |
| 3035 | } |
| 3036 | |
Tejun Heo | b7fc5ad | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 3037 | if (cft->seq_show == cgroup_populated_show) |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 3038 | cgrp->populated_kn = kn; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 3039 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3040 | } |
| 3041 | |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3042 | /** |
| 3043 | * cgroup_addrm_files - add or remove files to a cgroup directory |
| 3044 | * @cgrp: the target cgroup |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3045 | * @cfts: array of cftypes to be added |
| 3046 | * @is_add: whether to add or remove |
| 3047 | * |
| 3048 | * Depending on @is_add, add or remove files defined by @cfts on @cgrp. |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3049 | * For removals, this function never fails. If addition fails, this |
| 3050 | * function doesn't remove files already added. The caller is responsible |
| 3051 | * for cleaning up. |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3052 | */ |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3053 | static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[], |
| 3054 | bool is_add) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3055 | { |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 3056 | struct cftype *cft; |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3057 | int ret; |
| 3058 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3059 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3060 | |
| 3061 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 3062 | /* does cft->flags tell us to skip this file on @cgrp? */ |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3063 | if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp)) |
Tejun Heo | 8cbbf2c | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 3064 | continue; |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3065 | if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp)) |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 3066 | continue; |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3067 | if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp)) |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 3068 | continue; |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3069 | if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp)) |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 3070 | continue; |
| 3071 | |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 3072 | if (is_add) { |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3073 | ret = cgroup_add_file(cgrp, cft); |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3074 | if (ret) { |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 3075 | pr_warn("%s: failed to add %s, err=%d\n", |
| 3076 | __func__, cft->name, ret); |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3077 | return ret; |
| 3078 | } |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 3079 | } else { |
| 3080 | cgroup_rm_file(cgrp, cft); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3081 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3082 | } |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3083 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3084 | } |
| 3085 | |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3086 | static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add) |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3087 | { |
| 3088 | LIST_HEAD(pending); |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3089 | struct cgroup_subsys *ss = cfts[0].ss; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 3090 | struct cgroup *root = &ss->root->cgrp; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3091 | struct cgroup_subsys_state *css; |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3092 | int ret = 0; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3093 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3094 | lockdep_assert_held(&cgroup_mutex); |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 3095 | |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 3096 | /* add/rm files for all cgroups created before */ |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 3097 | css_for_each_descendant_pre(css, cgroup_css(root, ss)) { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3098 | struct cgroup *cgrp = css->cgroup; |
| 3099 | |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 3100 | if (cgroup_is_dead(cgrp)) |
| 3101 | continue; |
| 3102 | |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3103 | ret = cgroup_addrm_files(cgrp, cfts, is_add); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3104 | if (ret) |
| 3105 | break; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3106 | } |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3107 | |
| 3108 | if (is_add && !ret) |
| 3109 | kernfs_activate(root->kn); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3110 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3111 | } |
| 3112 | |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3113 | static void cgroup_exit_cftypes(struct cftype *cfts) |
| 3114 | { |
| 3115 | struct cftype *cft; |
| 3116 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3117 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
| 3118 | /* free copy for custom atomic_write_len, see init_cftypes() */ |
| 3119 | if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) |
| 3120 | kfree(cft->kf_ops); |
| 3121 | cft->kf_ops = NULL; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3122 | cft->ss = NULL; |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3123 | |
| 3124 | /* revert flags set by cgroup core while adding @cfts */ |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3125 | cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3126 | } |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3127 | } |
| 3128 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3129 | static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3130 | { |
| 3131 | struct cftype *cft; |
| 3132 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3133 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
| 3134 | struct kernfs_ops *kf_ops; |
| 3135 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3136 | WARN_ON(cft->ss || cft->kf_ops); |
| 3137 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3138 | if (cft->seq_start) |
| 3139 | kf_ops = &cgroup_kf_ops; |
| 3140 | else |
| 3141 | kf_ops = &cgroup_kf_single_ops; |
| 3142 | |
| 3143 | /* |
| 3144 | * Ugh... if @cft wants a custom max_write_len, we need to |
| 3145 | * make a copy of kf_ops to set its atomic_write_len. |
| 3146 | */ |
| 3147 | if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) { |
| 3148 | kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL); |
| 3149 | if (!kf_ops) { |
| 3150 | cgroup_exit_cftypes(cfts); |
| 3151 | return -ENOMEM; |
| 3152 | } |
| 3153 | kf_ops->atomic_write_len = cft->max_write_len; |
| 3154 | } |
| 3155 | |
| 3156 | cft->kf_ops = kf_ops; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3157 | cft->ss = ss; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3158 | } |
| 3159 | |
| 3160 | return 0; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3161 | } |
| 3162 | |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3163 | static int cgroup_rm_cftypes_locked(struct cftype *cfts) |
| 3164 | { |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3165 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3166 | |
| 3167 | if (!cfts || !cfts[0].ss) |
| 3168 | return -ENOENT; |
| 3169 | |
| 3170 | list_del(&cfts->node); |
| 3171 | cgroup_apply_cftypes(cfts, false); |
| 3172 | cgroup_exit_cftypes(cfts); |
| 3173 | return 0; |
| 3174 | } |
| 3175 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3176 | /** |
Tejun Heo | 80b1358 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3177 | * cgroup_rm_cftypes - remove an array of cftypes from a subsystem |
| 3178 | * @cfts: zero-length name terminated array of cftypes |
| 3179 | * |
| 3180 | * Unregister @cfts. Files described by @cfts are removed from all |
| 3181 | * existing cgroups and all future cgroups won't have them either. This |
| 3182 | * function can be called anytime whether @cfts' subsys is attached or not. |
| 3183 | * |
| 3184 | * Returns 0 on successful unregistration, -ENOENT if @cfts is not |
| 3185 | * registered. |
| 3186 | */ |
| 3187 | int cgroup_rm_cftypes(struct cftype *cfts) |
| 3188 | { |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3189 | int ret; |
Tejun Heo | 80b1358 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3190 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3191 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3192 | ret = cgroup_rm_cftypes_locked(cfts); |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3193 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3194 | return ret; |
| 3195 | } |
| 3196 | |
| 3197 | /** |
| 3198 | * cgroup_add_cftypes - add an array of cftypes to a subsystem |
| 3199 | * @ss: target cgroup subsystem |
| 3200 | * @cfts: zero-length name terminated array of cftypes |
| 3201 | * |
| 3202 | * Register @cfts to @ss. Files described by @cfts are created for all |
| 3203 | * existing cgroups to which @ss is attached and all future cgroups will |
| 3204 | * have them too. This function can be called anytime whether @ss is |
| 3205 | * attached or not. |
| 3206 | * |
| 3207 | * Returns 0 on successful registration, -errno on failure. Note that this |
| 3208 | * function currently returns 0 as long as @cfts registration is successful |
| 3209 | * even if some file creation attempts on existing cgroups fail. |
| 3210 | */ |
Tejun Heo | 2cf669a | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 3211 | static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3212 | { |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3213 | int ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3214 | |
Li Zefan | c731ae1 | 2014-06-05 17:16:30 +0800 | [diff] [blame] | 3215 | if (ss->disabled) |
| 3216 | return 0; |
| 3217 | |
Li Zefan | dc5736e | 2014-02-17 10:41:50 +0800 | [diff] [blame] | 3218 | if (!cfts || cfts[0].name[0] == '\0') |
| 3219 | return 0; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3220 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3221 | ret = cgroup_init_cftypes(ss, cfts); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3222 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3223 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3224 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3225 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3226 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3227 | list_add_tail(&cfts->node, &ss->cfts); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3228 | ret = cgroup_apply_cftypes(cfts, true); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3229 | if (ret) |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3230 | cgroup_rm_cftypes_locked(cfts); |
| 3231 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3232 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3233 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3234 | } |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3235 | |
| 3236 | /** |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3237 | * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy |
| 3238 | * @ss: target cgroup subsystem |
| 3239 | * @cfts: zero-length name terminated array of cftypes |
| 3240 | * |
| 3241 | * Similar to cgroup_add_cftypes() but the added files are only used for |
| 3242 | * the default hierarchy. |
| 3243 | */ |
| 3244 | int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
| 3245 | { |
| 3246 | struct cftype *cft; |
| 3247 | |
| 3248 | for (cft = cfts; cft && cft->name[0] != '\0'; cft++) |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3249 | cft->flags |= __CFTYPE_ONLY_ON_DFL; |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3250 | return cgroup_add_cftypes(ss, cfts); |
| 3251 | } |
| 3252 | |
| 3253 | /** |
| 3254 | * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies |
| 3255 | * @ss: target cgroup subsystem |
| 3256 | * @cfts: zero-length name terminated array of cftypes |
| 3257 | * |
| 3258 | * Similar to cgroup_add_cftypes() but the added files are only used for |
| 3259 | * the legacy hierarchies. |
| 3260 | */ |
Tejun Heo | 2cf669a | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 3261 | int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
| 3262 | { |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3263 | struct cftype *cft; |
| 3264 | |
Vivek Goyal | fa8137b | 2014-08-08 11:44:03 -0400 | [diff] [blame] | 3265 | /* |
| 3266 | * If legacy_flies_on_dfl, we want to show the legacy files on the |
| 3267 | * dfl hierarchy but iff the target subsystem hasn't been updated |
| 3268 | * for the dfl hierarchy yet. |
| 3269 | */ |
| 3270 | if (!cgroup_legacy_files_on_dfl || |
| 3271 | ss->dfl_cftypes != ss->legacy_cftypes) { |
| 3272 | for (cft = cfts; cft && cft->name[0] != '\0'; cft++) |
| 3273 | cft->flags |= __CFTYPE_NOT_ON_DFL; |
| 3274 | } |
| 3275 | |
Tejun Heo | 2cf669a | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 3276 | return cgroup_add_cftypes(ss, cfts); |
| 3277 | } |
| 3278 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3279 | /** |
| 3280 | * cgroup_task_count - count the number of tasks in a cgroup. |
| 3281 | * @cgrp: the cgroup in question |
| 3282 | * |
| 3283 | * Return the number of tasks in the cgroup. |
| 3284 | */ |
Tejun Heo | 07bc356 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3285 | static int cgroup_task_count(const struct cgroup *cgrp) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3286 | { |
| 3287 | int count = 0; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 3288 | struct cgrp_cset_link *link; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3289 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3290 | down_read(&css_set_rwsem); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 3291 | list_for_each_entry(link, &cgrp->cset_links, cset_link) |
| 3292 | count += atomic_read(&link->cset->refcount); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3293 | up_read(&css_set_rwsem); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3294 | return count; |
| 3295 | } |
| 3296 | |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3297 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3298 | * css_next_child - find the next child of a given css |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3299 | * @pos: the current position (%NULL to initiate traversal) |
| 3300 | * @parent: css whose children to walk |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3301 | * |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3302 | * This function returns the next child of @parent and should be called |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3303 | * under either cgroup_mutex or RCU read lock. The only requirement is |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3304 | * that @parent and @pos are accessible. The next sibling is guaranteed to |
| 3305 | * be returned regardless of their states. |
| 3306 | * |
| 3307 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 3308 | * css which finished ->css_online() is guaranteed to be visible in the |
| 3309 | * future iterations and will stay visible until the last reference is put. |
| 3310 | * A css which hasn't finished ->css_online() or already finished |
| 3311 | * ->css_offline() may show up during traversal. It's each subsystem's |
| 3312 | * responsibility to synchronize against on/offlining. |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3313 | */ |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3314 | struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos, |
| 3315 | struct cgroup_subsys_state *parent) |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3316 | { |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3317 | struct cgroup_subsys_state *next; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3318 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3319 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3320 | |
| 3321 | /* |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 3322 | * @pos could already have been unlinked from the sibling list. |
| 3323 | * Once a cgroup is removed, its ->sibling.next is no longer |
| 3324 | * updated when its next sibling changes. CSS_RELEASED is set when |
| 3325 | * @pos is taken off list, at which time its next pointer is valid, |
| 3326 | * and, as releases are serialized, the one pointed to by the next |
| 3327 | * pointer is guaranteed to not have started release yet. This |
| 3328 | * implies that if we observe !CSS_RELEASED on @pos in this RCU |
| 3329 | * critical section, the one pointed to by its next pointer is |
| 3330 | * guaranteed to not have finished its RCU grace period even if we |
| 3331 | * have dropped rcu_read_lock() inbetween iterations. |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3332 | * |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 3333 | * If @pos has CSS_RELEASED set, its next pointer can't be |
| 3334 | * dereferenced; however, as each css is given a monotonically |
| 3335 | * increasing unique serial number and always appended to the |
| 3336 | * sibling list, the next one can be found by walking the parent's |
| 3337 | * children until the first css with higher serial number than |
| 3338 | * @pos's. While this path can be slower, it happens iff iteration |
| 3339 | * races against release and the race window is very small. |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3340 | */ |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3341 | if (!pos) { |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3342 | next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling); |
| 3343 | } else if (likely(!(pos->flags & CSS_RELEASED))) { |
| 3344 | next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling); |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3345 | } else { |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3346 | list_for_each_entry_rcu(next, &parent->children, sibling) |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3347 | if (next->serial_nr > pos->serial_nr) |
| 3348 | break; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3349 | } |
| 3350 | |
Tejun Heo | 3b281af | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3351 | /* |
| 3352 | * @next, if not pointing to the head, can be dereferenced and is |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3353 | * the next sibling. |
Tejun Heo | 3b281af | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3354 | */ |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3355 | if (&next->sibling != &parent->children) |
| 3356 | return next; |
Tejun Heo | 3b281af | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3357 | return NULL; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3358 | } |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3359 | |
| 3360 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3361 | * css_next_descendant_pre - find the next descendant for pre-order walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3362 | * @pos: the current position (%NULL to initiate traversal) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3363 | * @root: css whose descendants to walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3364 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3365 | * To be used by css_for_each_descendant_pre(). Find the next descendant |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3366 | * to visit for pre-order traversal of @root's descendants. @root is |
| 3367 | * included in the iteration and the first node to be visited. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3368 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3369 | * While this function requires cgroup_mutex or RCU read locking, it |
| 3370 | * doesn't require the whole traversal to be contained in a single critical |
| 3371 | * section. This function will return the correct next descendant as long |
| 3372 | * as both @pos and @root are accessible and @pos is a descendant of @root. |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3373 | * |
| 3374 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 3375 | * css which finished ->css_online() is guaranteed to be visible in the |
| 3376 | * future iterations and will stay visible until the last reference is put. |
| 3377 | * A css which hasn't finished ->css_online() or already finished |
| 3378 | * ->css_offline() may show up during traversal. It's each subsystem's |
| 3379 | * responsibility to synchronize against on/offlining. |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3380 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3381 | struct cgroup_subsys_state * |
| 3382 | css_next_descendant_pre(struct cgroup_subsys_state *pos, |
| 3383 | struct cgroup_subsys_state *root) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3384 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3385 | struct cgroup_subsys_state *next; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3386 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3387 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3388 | |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3389 | /* if first iteration, visit @root */ |
Tejun Heo | 7805d00 | 2013-05-24 10:50:24 +0900 | [diff] [blame] | 3390 | if (!pos) |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3391 | return root; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3392 | |
| 3393 | /* visit the first child if exists */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3394 | next = css_next_child(NULL, pos); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3395 | if (next) |
| 3396 | return next; |
| 3397 | |
| 3398 | /* no child, visit my or the closest ancestor's next sibling */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3399 | while (pos != root) { |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3400 | next = css_next_child(pos, pos->parent); |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3401 | if (next) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3402 | return next; |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3403 | pos = pos->parent; |
Tejun Heo | 7805d00 | 2013-05-24 10:50:24 +0900 | [diff] [blame] | 3404 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3405 | |
| 3406 | return NULL; |
| 3407 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3408 | |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3409 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3410 | * css_rightmost_descendant - return the rightmost descendant of a css |
| 3411 | * @pos: css of interest |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3412 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3413 | * Return the rightmost descendant of @pos. If there's no descendant, @pos |
| 3414 | * is returned. This can be used during pre-order traversal to skip |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3415 | * subtree of @pos. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3416 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3417 | * While this function requires cgroup_mutex or RCU read locking, it |
| 3418 | * doesn't require the whole traversal to be contained in a single critical |
| 3419 | * section. This function will return the correct rightmost descendant as |
| 3420 | * long as @pos is accessible. |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3421 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3422 | struct cgroup_subsys_state * |
| 3423 | css_rightmost_descendant(struct cgroup_subsys_state *pos) |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3424 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3425 | struct cgroup_subsys_state *last, *tmp; |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3426 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3427 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3428 | |
| 3429 | do { |
| 3430 | last = pos; |
| 3431 | /* ->prev isn't RCU safe, walk ->next till the end */ |
| 3432 | pos = NULL; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3433 | css_for_each_child(tmp, last) |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3434 | pos = tmp; |
| 3435 | } while (pos); |
| 3436 | |
| 3437 | return last; |
| 3438 | } |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3439 | |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3440 | static struct cgroup_subsys_state * |
| 3441 | css_leftmost_descendant(struct cgroup_subsys_state *pos) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3442 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3443 | struct cgroup_subsys_state *last; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3444 | |
| 3445 | do { |
| 3446 | last = pos; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3447 | pos = css_next_child(NULL, pos); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3448 | } while (pos); |
| 3449 | |
| 3450 | return last; |
| 3451 | } |
| 3452 | |
| 3453 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3454 | * css_next_descendant_post - find the next descendant for post-order walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3455 | * @pos: the current position (%NULL to initiate traversal) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3456 | * @root: css whose descendants to walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3457 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3458 | * To be used by css_for_each_descendant_post(). Find the next descendant |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3459 | * to visit for post-order traversal of @root's descendants. @root is |
| 3460 | * included in the iteration and the last node to be visited. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3461 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3462 | * While this function requires cgroup_mutex or RCU read locking, it |
| 3463 | * doesn't require the whole traversal to be contained in a single critical |
| 3464 | * section. This function will return the correct next descendant as long |
| 3465 | * as both @pos and @cgroup are accessible and @pos is a descendant of |
| 3466 | * @cgroup. |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3467 | * |
| 3468 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 3469 | * css which finished ->css_online() is guaranteed to be visible in the |
| 3470 | * future iterations and will stay visible until the last reference is put. |
| 3471 | * A css which hasn't finished ->css_online() or already finished |
| 3472 | * ->css_offline() may show up during traversal. It's each subsystem's |
| 3473 | * responsibility to synchronize against on/offlining. |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3474 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3475 | struct cgroup_subsys_state * |
| 3476 | css_next_descendant_post(struct cgroup_subsys_state *pos, |
| 3477 | struct cgroup_subsys_state *root) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3478 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3479 | struct cgroup_subsys_state *next; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3480 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3481 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3482 | |
Tejun Heo | 58b79a9 | 2013-09-06 15:31:08 -0400 | [diff] [blame] | 3483 | /* if first iteration, visit leftmost descendant which may be @root */ |
| 3484 | if (!pos) |
| 3485 | return css_leftmost_descendant(root); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3486 | |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3487 | /* if we visited @root, we're done */ |
| 3488 | if (pos == root) |
| 3489 | return NULL; |
| 3490 | |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3491 | /* if there's an unvisited sibling, visit its leftmost descendant */ |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3492 | next = css_next_child(pos, pos->parent); |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3493 | if (next) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3494 | return css_leftmost_descendant(next); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3495 | |
| 3496 | /* no sibling left, visit parent */ |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3497 | return pos->parent; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3498 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3499 | |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3500 | /** |
| 3501 | * css_has_online_children - does a css have online children |
| 3502 | * @css: the target css |
| 3503 | * |
| 3504 | * Returns %true if @css has any online children; otherwise, %false. This |
| 3505 | * function can be called from any context but the caller is responsible |
| 3506 | * for synchronizing against on/offlining as necessary. |
| 3507 | */ |
| 3508 | bool css_has_online_children(struct cgroup_subsys_state *css) |
Tejun Heo | cbc125e | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 3509 | { |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3510 | struct cgroup_subsys_state *child; |
| 3511 | bool ret = false; |
Tejun Heo | cbc125e | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 3512 | |
| 3513 | rcu_read_lock(); |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3514 | css_for_each_child(child, css) { |
Li Zefan | 99bae5f | 2014-06-12 14:31:31 +0800 | [diff] [blame] | 3515 | if (child->flags & CSS_ONLINE) { |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3516 | ret = true; |
| 3517 | break; |
Tejun Heo | cbc125e | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 3518 | } |
| 3519 | } |
| 3520 | rcu_read_unlock(); |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3521 | return ret; |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 3522 | } |
| 3523 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3524 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3525 | * css_advance_task_iter - advance a task itererator to the next css_set |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3526 | * @it: the iterator to advance |
| 3527 | * |
| 3528 | * Advance @it to the next css_set to walk. |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3529 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3530 | static void css_advance_task_iter(struct css_task_iter *it) |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3531 | { |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3532 | struct list_head *l = it->cset_pos; |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3533 | struct cgrp_cset_link *link; |
| 3534 | struct css_set *cset; |
| 3535 | |
| 3536 | /* Advance to the next non-empty css_set */ |
| 3537 | do { |
| 3538 | l = l->next; |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3539 | if (l == it->cset_head) { |
| 3540 | it->cset_pos = NULL; |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3541 | return; |
| 3542 | } |
Tejun Heo | 3ebb2b6 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3543 | |
| 3544 | if (it->ss) { |
| 3545 | cset = container_of(l, struct css_set, |
| 3546 | e_cset_node[it->ss->id]); |
| 3547 | } else { |
| 3548 | link = list_entry(l, struct cgrp_cset_link, cset_link); |
| 3549 | cset = link->cset; |
| 3550 | } |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3551 | } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks)); |
| 3552 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3553 | it->cset_pos = l; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3554 | |
| 3555 | if (!list_empty(&cset->tasks)) |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3556 | it->task_pos = cset->tasks.next; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3557 | else |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3558 | it->task_pos = cset->mg_tasks.next; |
| 3559 | |
| 3560 | it->tasks_head = &cset->tasks; |
| 3561 | it->mg_tasks_head = &cset->mg_tasks; |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3562 | } |
| 3563 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3564 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3565 | * css_task_iter_start - initiate task iteration |
| 3566 | * @css: the css to walk tasks of |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3567 | * @it: the task iterator to use |
| 3568 | * |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3569 | * Initiate iteration through the tasks of @css. The caller can call |
| 3570 | * css_task_iter_next() to walk through the tasks until the function |
| 3571 | * returns NULL. On completion of iteration, css_task_iter_end() must be |
| 3572 | * called. |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3573 | * |
| 3574 | * Note that this function acquires a lock which is released when the |
| 3575 | * iteration finishes. The caller can't sleep while iteration is in |
| 3576 | * progress. |
| 3577 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3578 | void css_task_iter_start(struct cgroup_subsys_state *css, |
| 3579 | struct css_task_iter *it) |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3580 | __acquires(css_set_rwsem) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3581 | { |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 3582 | /* no one should try to iterate before mounting cgroups */ |
| 3583 | WARN_ON_ONCE(!use_task_css_set_links); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3584 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3585 | down_read(&css_set_rwsem); |
Tejun Heo | c59cd3d | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3586 | |
Tejun Heo | 3ebb2b6 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3587 | it->ss = css->ss; |
| 3588 | |
| 3589 | if (it->ss) |
| 3590 | it->cset_pos = &css->cgroup->e_csets[css->ss->id]; |
| 3591 | else |
| 3592 | it->cset_pos = &css->cgroup->cset_links; |
| 3593 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3594 | it->cset_head = it->cset_pos; |
Tejun Heo | c59cd3d | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3595 | |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3596 | css_advance_task_iter(it); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3597 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3598 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3599 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3600 | * css_task_iter_next - return the next task for the iterator |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3601 | * @it: the task iterator being iterated |
| 3602 | * |
| 3603 | * The "next" function for task iteration. @it should have been |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3604 | * initialized via css_task_iter_start(). Returns NULL when the iteration |
| 3605 | * reaches the end. |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3606 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3607 | struct task_struct *css_task_iter_next(struct css_task_iter *it) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3608 | { |
| 3609 | struct task_struct *res; |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3610 | struct list_head *l = it->task_pos; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3611 | |
| 3612 | /* If the iterator cg is NULL, we have no tasks */ |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3613 | if (!it->cset_pos) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3614 | return NULL; |
| 3615 | res = list_entry(l, struct task_struct, cg_list); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3616 | |
| 3617 | /* |
| 3618 | * Advance iterator to find next entry. cset->tasks is consumed |
| 3619 | * first and then ->mg_tasks. After ->mg_tasks, we move onto the |
| 3620 | * next cset. |
| 3621 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3622 | l = l->next; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3623 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3624 | if (l == it->tasks_head) |
| 3625 | l = it->mg_tasks_head->next; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3626 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3627 | if (l == it->mg_tasks_head) |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3628 | css_advance_task_iter(it); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3629 | else |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3630 | it->task_pos = l; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3631 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3632 | return res; |
| 3633 | } |
| 3634 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3635 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3636 | * css_task_iter_end - finish task iteration |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3637 | * @it: the task iterator to finish |
| 3638 | * |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3639 | * Finish task iteration started by css_task_iter_start(). |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3640 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3641 | void css_task_iter_end(struct css_task_iter *it) |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3642 | __releases(css_set_rwsem) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3643 | { |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3644 | up_read(&css_set_rwsem); |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 3645 | } |
| 3646 | |
| 3647 | /** |
| 3648 | * cgroup_trasnsfer_tasks - move tasks from one cgroup to another |
| 3649 | * @to: cgroup to which the tasks will be moved |
| 3650 | * @from: cgroup in which the tasks currently reside |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3651 | * |
| 3652 | * Locking rules between cgroup_post_fork() and the migration path |
| 3653 | * guarantee that, if a task is forking while being migrated, the new child |
| 3654 | * is guaranteed to be either visible in the source cgroup after the |
| 3655 | * parent's migration is complete or put into the target cgroup. No task |
| 3656 | * can slip out of migration through forking. |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 3657 | */ |
| 3658 | int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from) |
| 3659 | { |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3660 | LIST_HEAD(preloaded_csets); |
| 3661 | struct cgrp_cset_link *link; |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3662 | struct css_task_iter it; |
| 3663 | struct task_struct *task; |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3664 | int ret; |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3665 | |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3666 | mutex_lock(&cgroup_mutex); |
| 3667 | |
| 3668 | /* all tasks in @from are being moved, all csets are source */ |
| 3669 | down_read(&css_set_rwsem); |
| 3670 | list_for_each_entry(link, &from->cset_links, cset_link) |
| 3671 | cgroup_migrate_add_src(link->cset, to, &preloaded_csets); |
| 3672 | up_read(&css_set_rwsem); |
| 3673 | |
| 3674 | ret = cgroup_migrate_prepare_dst(to, &preloaded_csets); |
| 3675 | if (ret) |
| 3676 | goto out_err; |
| 3677 | |
| 3678 | /* |
| 3679 | * Migrate tasks one-by-one until @form is empty. This fails iff |
| 3680 | * ->can_attach() fails. |
| 3681 | */ |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3682 | do { |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 3683 | css_task_iter_start(&from->self, &it); |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3684 | task = css_task_iter_next(&it); |
| 3685 | if (task) |
| 3686 | get_task_struct(task); |
| 3687 | css_task_iter_end(&it); |
| 3688 | |
| 3689 | if (task) { |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3690 | ret = cgroup_migrate(to, task, false); |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3691 | put_task_struct(task); |
| 3692 | } |
| 3693 | } while (task && !ret); |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3694 | out_err: |
| 3695 | cgroup_migrate_finish(&preloaded_csets); |
| 3696 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3697 | return ret; |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 3698 | } |
| 3699 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3700 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3701 | * Stuff for reading the 'tasks'/'procs' files. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3702 | * |
| 3703 | * Reading this file can return large amounts of data if a cgroup has |
| 3704 | * *lots* of attached tasks. So it may need several calls to read(), |
| 3705 | * but we cannot guarantee that the information we produce is correct |
| 3706 | * unless we produce it entirely atomically. |
| 3707 | * |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3708 | */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3709 | |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3710 | /* which pidlist file are we talking about? */ |
| 3711 | enum cgroup_filetype { |
| 3712 | CGROUP_FILE_PROCS, |
| 3713 | CGROUP_FILE_TASKS, |
| 3714 | }; |
| 3715 | |
| 3716 | /* |
| 3717 | * A pidlist is a list of pids that virtually represents the contents of one |
| 3718 | * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists, |
| 3719 | * a pair (one each for procs, tasks) for each pid namespace that's relevant |
| 3720 | * to the cgroup. |
| 3721 | */ |
| 3722 | struct cgroup_pidlist { |
| 3723 | /* |
| 3724 | * used to find which pidlist is wanted. doesn't change as long as |
| 3725 | * this particular list stays in the list. |
| 3726 | */ |
| 3727 | struct { enum cgroup_filetype type; struct pid_namespace *ns; } key; |
| 3728 | /* array of xids */ |
| 3729 | pid_t *list; |
| 3730 | /* how many elements the above list has */ |
| 3731 | int length; |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3732 | /* each of these stored in a list by its cgroup */ |
| 3733 | struct list_head links; |
| 3734 | /* pointer to the cgroup we belong to, for list removal purposes */ |
| 3735 | struct cgroup *owner; |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3736 | /* for delayed destruction */ |
| 3737 | struct delayed_work destroy_dwork; |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3738 | }; |
| 3739 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3740 | /* |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3741 | * The following two functions "fix" the issue where there are more pids |
| 3742 | * than kmalloc will give memory for; in such cases, we use vmalloc/vfree. |
| 3743 | * TODO: replace with a kernel-wide solution to this problem |
| 3744 | */ |
| 3745 | #define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2)) |
| 3746 | static void *pidlist_allocate(int count) |
| 3747 | { |
| 3748 | if (PIDLIST_TOO_LARGE(count)) |
| 3749 | return vmalloc(count * sizeof(pid_t)); |
| 3750 | else |
| 3751 | return kmalloc(count * sizeof(pid_t), GFP_KERNEL); |
| 3752 | } |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3753 | |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3754 | static void pidlist_free(void *p) |
| 3755 | { |
| 3756 | if (is_vmalloc_addr(p)) |
| 3757 | vfree(p); |
| 3758 | else |
| 3759 | kfree(p); |
| 3760 | } |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3761 | |
| 3762 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3763 | * Used to destroy all pidlists lingering waiting for destroy timer. None |
| 3764 | * should be left afterwards. |
| 3765 | */ |
| 3766 | static void cgroup_pidlist_destroy_all(struct cgroup *cgrp) |
| 3767 | { |
| 3768 | struct cgroup_pidlist *l, *tmp_l; |
| 3769 | |
| 3770 | mutex_lock(&cgrp->pidlist_mutex); |
| 3771 | list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links) |
| 3772 | mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0); |
| 3773 | mutex_unlock(&cgrp->pidlist_mutex); |
| 3774 | |
| 3775 | flush_workqueue(cgroup_pidlist_destroy_wq); |
| 3776 | BUG_ON(!list_empty(&cgrp->pidlists)); |
| 3777 | } |
| 3778 | |
| 3779 | static void cgroup_pidlist_destroy_work_fn(struct work_struct *work) |
| 3780 | { |
| 3781 | struct delayed_work *dwork = to_delayed_work(work); |
| 3782 | struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist, |
| 3783 | destroy_dwork); |
| 3784 | struct cgroup_pidlist *tofree = NULL; |
| 3785 | |
| 3786 | mutex_lock(&l->owner->pidlist_mutex); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3787 | |
| 3788 | /* |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3789 | * Destroy iff we didn't get queued again. The state won't change |
| 3790 | * as destroy_dwork can only be queued while locked. |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3791 | */ |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3792 | if (!delayed_work_pending(dwork)) { |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3793 | list_del(&l->links); |
| 3794 | pidlist_free(l->list); |
| 3795 | put_pid_ns(l->key.ns); |
| 3796 | tofree = l; |
| 3797 | } |
| 3798 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3799 | mutex_unlock(&l->owner->pidlist_mutex); |
| 3800 | kfree(tofree); |
| 3801 | } |
| 3802 | |
| 3803 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3804 | * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 3805 | * Returns the number of unique elements. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3806 | */ |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 3807 | static int pidlist_uniq(pid_t *list, int length) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3808 | { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3809 | int src, dest = 1; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3810 | |
| 3811 | /* |
| 3812 | * we presume the 0th element is unique, so i starts at 1. trivial |
| 3813 | * edge cases first; no work needs to be done for either |
| 3814 | */ |
| 3815 | if (length == 0 || length == 1) |
| 3816 | return length; |
| 3817 | /* src and dest walk down the list; dest counts unique elements */ |
| 3818 | for (src = 1; src < length; src++) { |
| 3819 | /* find next unique element */ |
| 3820 | while (list[src] == list[src-1]) { |
| 3821 | src++; |
| 3822 | if (src == length) |
| 3823 | goto after; |
| 3824 | } |
| 3825 | /* dest always points to where the next unique element goes */ |
| 3826 | list[dest] = list[src]; |
| 3827 | dest++; |
| 3828 | } |
| 3829 | after: |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3830 | return dest; |
| 3831 | } |
| 3832 | |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3833 | /* |
| 3834 | * The two pid files - task and cgroup.procs - guaranteed that the result |
| 3835 | * is sorted, which forced this whole pidlist fiasco. As pid order is |
| 3836 | * different per namespace, each namespace needs differently sorted list, |
| 3837 | * making it impossible to use, for example, single rbtree of member tasks |
| 3838 | * sorted by task pointer. As pidlists can be fairly large, allocating one |
| 3839 | * per open file is dangerous, so cgroup had to implement shared pool of |
| 3840 | * pidlists keyed by cgroup and namespace. |
| 3841 | * |
| 3842 | * All this extra complexity was caused by the original implementation |
| 3843 | * committing to an entirely unnecessary property. In the long term, we |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3844 | * want to do away with it. Explicitly scramble sort order if on the |
| 3845 | * default hierarchy so that no such expectation exists in the new |
| 3846 | * interface. |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3847 | * |
| 3848 | * Scrambling is done by swapping every two consecutive bits, which is |
| 3849 | * non-identity one-to-one mapping which disturbs sort order sufficiently. |
| 3850 | */ |
| 3851 | static pid_t pid_fry(pid_t pid) |
| 3852 | { |
| 3853 | unsigned a = pid & 0x55555555; |
| 3854 | unsigned b = pid & 0xAAAAAAAA; |
| 3855 | |
| 3856 | return (a << 1) | (b >> 1); |
| 3857 | } |
| 3858 | |
| 3859 | static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid) |
| 3860 | { |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3861 | if (cgroup_on_dfl(cgrp)) |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3862 | return pid_fry(pid); |
| 3863 | else |
| 3864 | return pid; |
| 3865 | } |
| 3866 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3867 | static int cmppid(const void *a, const void *b) |
| 3868 | { |
| 3869 | return *(pid_t *)a - *(pid_t *)b; |
| 3870 | } |
| 3871 | |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3872 | static int fried_cmppid(const void *a, const void *b) |
| 3873 | { |
| 3874 | return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b); |
| 3875 | } |
| 3876 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3877 | static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp, |
| 3878 | enum cgroup_filetype type) |
| 3879 | { |
| 3880 | struct cgroup_pidlist *l; |
| 3881 | /* don't need task_nsproxy() if we're looking at ourself */ |
Eric W. Biederman | 17cf22c | 2010-03-02 14:51:53 -0800 | [diff] [blame] | 3882 | struct pid_namespace *ns = task_active_pid_ns(current); |
Li Zefan | b70cc5f | 2010-03-10 15:22:12 -0800 | [diff] [blame] | 3883 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3884 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3885 | |
| 3886 | list_for_each_entry(l, &cgrp->pidlists, links) |
| 3887 | if (l->key.type == type && l->key.ns == ns) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3888 | return l; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3889 | return NULL; |
| 3890 | } |
| 3891 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3892 | /* |
| 3893 | * find the appropriate pidlist for our purpose (given procs vs tasks) |
| 3894 | * returns with the lock on that pidlist already held, and takes care |
| 3895 | * of the use count, or returns NULL with no locks held if we're out of |
| 3896 | * memory. |
| 3897 | */ |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3898 | static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp, |
| 3899 | enum cgroup_filetype type) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3900 | { |
| 3901 | struct cgroup_pidlist *l; |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3902 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3903 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3904 | |
| 3905 | l = cgroup_pidlist_find(cgrp, type); |
| 3906 | if (l) |
| 3907 | return l; |
| 3908 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3909 | /* entry not found; create a new one */ |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 3910 | l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL); |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3911 | if (!l) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3912 | return l; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3913 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3914 | INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3915 | l->key.type = type; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3916 | /* don't need task_nsproxy() if we're looking at ourself */ |
| 3917 | l->key.ns = get_pid_ns(task_active_pid_ns(current)); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3918 | l->owner = cgrp; |
| 3919 | list_add(&l->links, &cgrp->pidlists); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3920 | return l; |
| 3921 | } |
| 3922 | |
| 3923 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3924 | * Load a cgroup's pidarray with either procs' tgids or tasks' pids |
| 3925 | */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3926 | static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type, |
| 3927 | struct cgroup_pidlist **lp) |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3928 | { |
| 3929 | pid_t *array; |
| 3930 | int length; |
| 3931 | int pid, n = 0; /* used for populating the array */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3932 | struct css_task_iter it; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3933 | struct task_struct *tsk; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3934 | struct cgroup_pidlist *l; |
| 3935 | |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3936 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3937 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3938 | /* |
| 3939 | * If cgroup gets more users after we read count, we won't have |
| 3940 | * enough space - tough. This race is indistinguishable to the |
| 3941 | * caller from the case that the additional cgroup users didn't |
| 3942 | * show up until sometime later on. |
| 3943 | */ |
| 3944 | length = cgroup_task_count(cgrp); |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3945 | array = pidlist_allocate(length); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3946 | if (!array) |
| 3947 | return -ENOMEM; |
| 3948 | /* now, populate the array */ |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 3949 | css_task_iter_start(&cgrp->self, &it); |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3950 | while ((tsk = css_task_iter_next(&it))) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3951 | if (unlikely(n == length)) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3952 | break; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3953 | /* get tgid or pid for procs or tasks file respectively */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3954 | if (type == CGROUP_FILE_PROCS) |
| 3955 | pid = task_tgid_vnr(tsk); |
| 3956 | else |
| 3957 | pid = task_pid_vnr(tsk); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3958 | if (pid > 0) /* make sure to only use valid results */ |
| 3959 | array[n++] = pid; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3960 | } |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3961 | css_task_iter_end(&it); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3962 | length = n; |
| 3963 | /* now sort & (if procs) strip out duplicates */ |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3964 | if (cgroup_on_dfl(cgrp)) |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3965 | sort(array, length, sizeof(pid_t), fried_cmppid, NULL); |
| 3966 | else |
| 3967 | sort(array, length, sizeof(pid_t), cmppid, NULL); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3968 | if (type == CGROUP_FILE_PROCS) |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 3969 | length = pidlist_uniq(array, length); |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3970 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3971 | l = cgroup_pidlist_find_create(cgrp, type); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3972 | if (!l) { |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3973 | pidlist_free(array); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3974 | return -ENOMEM; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3975 | } |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3976 | |
| 3977 | /* store array, freeing old if necessary */ |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3978 | pidlist_free(l->list); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3979 | l->list = array; |
| 3980 | l->length = length; |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3981 | *lp = l; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3982 | return 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3983 | } |
| 3984 | |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3985 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3986 | * cgroupstats_build - build and fill cgroupstats |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3987 | * @stats: cgroupstats to fill information into |
| 3988 | * @dentry: A dentry entry belonging to the cgroup for which stats have |
| 3989 | * been requested. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3990 | * |
| 3991 | * Build and fill cgroupstats so that taskstats can export it to user |
| 3992 | * space. |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3993 | */ |
| 3994 | int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry) |
| 3995 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3996 | struct kernfs_node *kn = kernfs_node_from_dentry(dentry); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3997 | struct cgroup *cgrp; |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3998 | struct css_task_iter it; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 3999 | struct task_struct *tsk; |
Li Zefan | 33d283b | 2008-11-19 15:36:48 -0800 | [diff] [blame] | 4000 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4001 | /* it should be kernfs_node belonging to cgroupfs and is a directory */ |
| 4002 | if (dentry->d_sb->s_type != &cgroup_fs_type || !kn || |
| 4003 | kernfs_type(kn) != KERNFS_DIR) |
| 4004 | return -EINVAL; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4005 | |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4006 | mutex_lock(&cgroup_mutex); |
| 4007 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4008 | /* |
| 4009 | * We aren't being called from kernfs and there's no guarantee on |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4010 | * @kn->priv's validity. For this and css_tryget_online_from_dir(), |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4011 | * @kn->priv is RCU safe. Let's do the RCU dancing. |
| 4012 | */ |
| 4013 | rcu_read_lock(); |
| 4014 | cgrp = rcu_dereference(kn->priv); |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4015 | if (!cgrp || cgroup_is_dead(cgrp)) { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4016 | rcu_read_unlock(); |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4017 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4018 | return -ENOENT; |
| 4019 | } |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4020 | rcu_read_unlock(); |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4021 | |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 4022 | css_task_iter_start(&cgrp->self, &it); |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 4023 | while ((tsk = css_task_iter_next(&it))) { |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4024 | switch (tsk->state) { |
| 4025 | case TASK_RUNNING: |
| 4026 | stats->nr_running++; |
| 4027 | break; |
| 4028 | case TASK_INTERRUPTIBLE: |
| 4029 | stats->nr_sleeping++; |
| 4030 | break; |
| 4031 | case TASK_UNINTERRUPTIBLE: |
| 4032 | stats->nr_uninterruptible++; |
| 4033 | break; |
| 4034 | case TASK_STOPPED: |
| 4035 | stats->nr_stopped++; |
| 4036 | break; |
| 4037 | default: |
| 4038 | if (delayacct_is_task_waiting_on_io(tsk)) |
| 4039 | stats->nr_io_wait++; |
| 4040 | break; |
| 4041 | } |
| 4042 | } |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 4043 | css_task_iter_end(&it); |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4044 | |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4045 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4046 | return 0; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4047 | } |
| 4048 | |
Paul Menage | 8f3ff20 | 2009-09-23 15:56:25 -0700 | [diff] [blame] | 4049 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4050 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4051 | * 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] | 4052 | * 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] | 4053 | * in the cgroup->l->list array. |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4054 | */ |
| 4055 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4056 | static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4057 | { |
| 4058 | /* |
| 4059 | * Initially we receive a position value that corresponds to |
| 4060 | * one more than the last pid shown (or 0 on the first call or |
| 4061 | * after a seek to the start). Use a binary-search to find the |
| 4062 | * next pid to display, if any |
| 4063 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4064 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4065 | struct cgroup *cgrp = seq_css(s)->cgroup; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4066 | struct cgroup_pidlist *l; |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4067 | enum cgroup_filetype type = seq_cft(s)->private; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4068 | int index = 0, pid = *pos; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4069 | int *iter, ret; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4070 | |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4071 | mutex_lock(&cgrp->pidlist_mutex); |
| 4072 | |
| 4073 | /* |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4074 | * !NULL @of->priv indicates that this isn't the first start() |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4075 | * after open. If the matching pidlist is around, we can use that. |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4076 | * Look for it. Note that @of->priv can't be used directly. It |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4077 | * could already have been destroyed. |
| 4078 | */ |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4079 | if (of->priv) |
| 4080 | of->priv = cgroup_pidlist_find(cgrp, type); |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4081 | |
| 4082 | /* |
| 4083 | * Either this is the first start() after open or the matching |
| 4084 | * pidlist has been destroyed inbetween. Create a new one. |
| 4085 | */ |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4086 | if (!of->priv) { |
| 4087 | ret = pidlist_array_load(cgrp, type, |
| 4088 | (struct cgroup_pidlist **)&of->priv); |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4089 | if (ret) |
| 4090 | return ERR_PTR(ret); |
| 4091 | } |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4092 | l = of->priv; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4093 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4094 | if (pid) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4095 | int end = l->length; |
Stephen Rothwell | 2077776 | 2008-10-21 16:11:20 +1100 | [diff] [blame] | 4096 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4097 | while (index < end) { |
| 4098 | int mid = (index + end) / 2; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4099 | if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) { |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4100 | index = mid; |
| 4101 | break; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4102 | } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4103 | index = mid + 1; |
| 4104 | else |
| 4105 | end = mid; |
| 4106 | } |
| 4107 | } |
| 4108 | /* If we're off the end of the array, we're done */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4109 | if (index >= l->length) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4110 | return NULL; |
| 4111 | /* Update the abstract position to be the actual pid that we found */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4112 | iter = l->list + index; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4113 | *pos = cgroup_pid_fry(cgrp, *iter); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4114 | return iter; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4115 | } |
| 4116 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4117 | static void cgroup_pidlist_stop(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4118 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4119 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4120 | struct cgroup_pidlist *l = of->priv; |
Tejun Heo | 6223685 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 4121 | |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4122 | if (l) |
| 4123 | mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4124 | CGROUP_PIDLIST_DESTROY_DELAY); |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4125 | mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4126 | } |
| 4127 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4128 | 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] | 4129 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4130 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4131 | struct cgroup_pidlist *l = of->priv; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4132 | pid_t *p = v; |
| 4133 | pid_t *end = l->list + l->length; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4134 | /* |
| 4135 | * Advance to the next pid in the array. If this goes off the |
| 4136 | * end, we're done |
| 4137 | */ |
| 4138 | p++; |
| 4139 | if (p >= end) { |
| 4140 | return NULL; |
| 4141 | } else { |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4142 | *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4143 | return p; |
| 4144 | } |
| 4145 | } |
| 4146 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4147 | static int cgroup_pidlist_show(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4148 | { |
| 4149 | return seq_printf(s, "%d\n", *(int *)v); |
| 4150 | } |
| 4151 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4152 | static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css, |
| 4153 | struct cftype *cft) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4154 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4155 | return notify_on_release(css->cgroup); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4156 | } |
| 4157 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4158 | static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css, |
| 4159 | struct cftype *cft, u64 val) |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4160 | { |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4161 | if (val) |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4162 | set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4163 | else |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4164 | clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4165 | return 0; |
| 4166 | } |
| 4167 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4168 | static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css, |
| 4169 | struct cftype *cft) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4170 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4171 | return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4172 | } |
| 4173 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4174 | static int cgroup_clone_children_write(struct cgroup_subsys_state *css, |
| 4175 | struct cftype *cft, u64 val) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4176 | { |
| 4177 | if (val) |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4178 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4179 | else |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4180 | clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4181 | return 0; |
| 4182 | } |
| 4183 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4184 | /* cgroup core interface files for the default hierarchy */ |
| 4185 | static struct cftype cgroup_dfl_base_files[] = { |
| 4186 | { |
| 4187 | .name = "cgroup.procs", |
| 4188 | .seq_start = cgroup_pidlist_start, |
| 4189 | .seq_next = cgroup_pidlist_next, |
| 4190 | .seq_stop = cgroup_pidlist_stop, |
| 4191 | .seq_show = cgroup_pidlist_show, |
| 4192 | .private = CGROUP_FILE_PROCS, |
| 4193 | .write = cgroup_procs_write, |
| 4194 | .mode = S_IRUGO | S_IWUSR, |
| 4195 | }, |
| 4196 | { |
| 4197 | .name = "cgroup.controllers", |
| 4198 | .flags = CFTYPE_ONLY_ON_ROOT, |
| 4199 | .seq_show = cgroup_root_controllers_show, |
| 4200 | }, |
| 4201 | { |
| 4202 | .name = "cgroup.controllers", |
| 4203 | .flags = CFTYPE_NOT_ON_ROOT, |
| 4204 | .seq_show = cgroup_controllers_show, |
| 4205 | }, |
| 4206 | { |
| 4207 | .name = "cgroup.subtree_control", |
| 4208 | .seq_show = cgroup_subtree_control_show, |
| 4209 | .write = cgroup_subtree_control_write, |
| 4210 | }, |
| 4211 | { |
| 4212 | .name = "cgroup.populated", |
| 4213 | .flags = CFTYPE_NOT_ON_ROOT, |
| 4214 | .seq_show = cgroup_populated_show, |
| 4215 | }, |
| 4216 | { } /* terminate */ |
| 4217 | }; |
| 4218 | |
| 4219 | /* cgroup core interface files for the legacy hierarchies */ |
| 4220 | static struct cftype cgroup_legacy_base_files[] = { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4221 | { |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4222 | .name = "cgroup.procs", |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4223 | .seq_start = cgroup_pidlist_start, |
| 4224 | .seq_next = cgroup_pidlist_next, |
| 4225 | .seq_stop = cgroup_pidlist_stop, |
| 4226 | .seq_show = cgroup_pidlist_show, |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4227 | .private = CGROUP_FILE_PROCS, |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 4228 | .write = cgroup_procs_write, |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 4229 | .mode = S_IRUGO | S_IWUSR, |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4230 | }, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4231 | { |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4232 | .name = "cgroup.clone_children", |
| 4233 | .read_u64 = cgroup_clone_children_read, |
| 4234 | .write_u64 = cgroup_clone_children_write, |
| 4235 | }, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4236 | { |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 4237 | .name = "cgroup.sane_behavior", |
| 4238 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4239 | .seq_show = cgroup_sane_behavior_show, |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 4240 | }, |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4241 | { |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4242 | .name = "tasks", |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4243 | .seq_start = cgroup_pidlist_start, |
| 4244 | .seq_next = cgroup_pidlist_next, |
| 4245 | .seq_stop = cgroup_pidlist_stop, |
| 4246 | .seq_show = cgroup_pidlist_show, |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4247 | .private = CGROUP_FILE_TASKS, |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 4248 | .write = cgroup_tasks_write, |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4249 | .mode = S_IRUGO | S_IWUSR, |
| 4250 | }, |
| 4251 | { |
| 4252 | .name = "notify_on_release", |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4253 | .read_u64 = cgroup_read_notify_on_release, |
| 4254 | .write_u64 = cgroup_write_notify_on_release, |
| 4255 | }, |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 4256 | { |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4257 | .name = "release_agent", |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4258 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4259 | .seq_show = cgroup_release_agent_show, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 4260 | .write = cgroup_release_agent_write, |
Tejun Heo | 5f46990 | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 4261 | .max_write_len = PATH_MAX - 1, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4262 | }, |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4263 | { } /* terminate */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4264 | }; |
| 4265 | |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4266 | /** |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4267 | * cgroup_populate_dir - create subsys files in a cgroup directory |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4268 | * @cgrp: target cgroup |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4269 | * @subsys_mask: mask of the subsystem ids whose files should be added |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4270 | * |
| 4271 | * On failure, no file is added. |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4272 | */ |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4273 | static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4274 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4275 | struct cgroup_subsys *ss; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 4276 | int i, ret = 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4277 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4278 | /* process cftsets of each subsystem */ |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 4279 | for_each_subsys(ss, i) { |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4280 | struct cftype *cfts; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 4281 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4282 | if (!(subsys_mask & (1 << i))) |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4283 | continue; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4284 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4285 | list_for_each_entry(cfts, &ss->cfts, node) { |
| 4286 | ret = cgroup_addrm_files(cgrp, cfts, true); |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4287 | if (ret < 0) |
| 4288 | goto err; |
| 4289 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4290 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4291 | return 0; |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4292 | err: |
| 4293 | cgroup_clear_dir(cgrp, subsys_mask); |
| 4294 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4295 | } |
| 4296 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4297 | /* |
| 4298 | * css destruction is four-stage process. |
| 4299 | * |
| 4300 | * 1. Destruction starts. Killing of the percpu_ref is initiated. |
| 4301 | * Implemented in kill_css(). |
| 4302 | * |
| 4303 | * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4304 | * and thus css_tryget_online() is guaranteed to fail, the css can be |
| 4305 | * offlined by invoking offline_css(). After offlining, the base ref is |
| 4306 | * put. Implemented in css_killed_work_fn(). |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4307 | * |
| 4308 | * 3. When the percpu_ref reaches zero, the only possible remaining |
| 4309 | * accessors are inside RCU read sections. css_release() schedules the |
| 4310 | * RCU callback. |
| 4311 | * |
| 4312 | * 4. After the grace period, the css can be freed. Implemented in |
| 4313 | * css_free_work_fn(). |
| 4314 | * |
| 4315 | * It is actually hairier because both step 2 and 4 require process context |
| 4316 | * and thus involve punting to css->destroy_work adding two additional |
| 4317 | * steps to the already complex sequence. |
| 4318 | */ |
Tejun Heo | 35ef10d | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4319 | static void css_free_work_fn(struct work_struct *work) |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4320 | { |
| 4321 | struct cgroup_subsys_state *css = |
Tejun Heo | 35ef10d | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4322 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4323 | struct cgroup *cgrp = css->cgroup; |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4324 | |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 4325 | percpu_ref_exit(&css->refcnt); |
| 4326 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4327 | if (css->ss) { |
| 4328 | /* css free path */ |
| 4329 | if (css->parent) |
| 4330 | css_put(css->parent); |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4331 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4332 | css->ss->css_free(css); |
| 4333 | cgroup_put(cgrp); |
| 4334 | } else { |
| 4335 | /* cgroup free path */ |
| 4336 | atomic_dec(&cgrp->root->nr_cgrps); |
| 4337 | cgroup_pidlist_destroy_all(cgrp); |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 4338 | cancel_work_sync(&cgrp->release_agent_work); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4339 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4340 | if (cgroup_parent(cgrp)) { |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4341 | /* |
| 4342 | * We get a ref to the parent, and put the ref when |
| 4343 | * this cgroup is being freed, so it's guaranteed |
| 4344 | * that the parent won't be destroyed before its |
| 4345 | * children. |
| 4346 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4347 | cgroup_put(cgroup_parent(cgrp)); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4348 | kernfs_put(cgrp->kn); |
| 4349 | kfree(cgrp); |
| 4350 | } else { |
| 4351 | /* |
| 4352 | * This is root cgroup's refcnt reaching zero, |
| 4353 | * which indicates that the root should be |
| 4354 | * released. |
| 4355 | */ |
| 4356 | cgroup_destroy_root(cgrp->root); |
| 4357 | } |
| 4358 | } |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4359 | } |
| 4360 | |
| 4361 | static void css_free_rcu_fn(struct rcu_head *rcu_head) |
| 4362 | { |
| 4363 | struct cgroup_subsys_state *css = |
| 4364 | container_of(rcu_head, struct cgroup_subsys_state, rcu_head); |
| 4365 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4366 | INIT_WORK(&css->destroy_work, css_free_work_fn); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4367 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4368 | } |
| 4369 | |
Tejun Heo | 25e15d8 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4370 | static void css_release_work_fn(struct work_struct *work) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4371 | { |
| 4372 | struct cgroup_subsys_state *css = |
Tejun Heo | 25e15d8 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4373 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4374 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4375 | struct cgroup *cgrp = css->cgroup; |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4376 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4377 | mutex_lock(&cgroup_mutex); |
| 4378 | |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4379 | css->flags |= CSS_RELEASED; |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4380 | list_del_rcu(&css->sibling); |
| 4381 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4382 | if (ss) { |
| 4383 | /* css release path */ |
| 4384 | cgroup_idr_remove(&ss->css_idr, css->id); |
| 4385 | } else { |
| 4386 | /* cgroup release path */ |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4387 | cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id); |
| 4388 | cgrp->id = -1; |
Li Zefan | a418948 | 2014-09-04 14:43:07 +0800 | [diff] [blame] | 4389 | |
| 4390 | /* |
| 4391 | * There are two control paths which try to determine |
| 4392 | * cgroup from dentry without going through kernfs - |
| 4393 | * cgroupstats_build() and css_tryget_online_from_dir(). |
| 4394 | * Those are supported by RCU protecting clearing of |
| 4395 | * cgrp->kn->priv backpointer. |
| 4396 | */ |
| 4397 | RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4398 | } |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4399 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4400 | mutex_unlock(&cgroup_mutex); |
| 4401 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4402 | call_rcu(&css->rcu_head, css_free_rcu_fn); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4403 | } |
| 4404 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4405 | static void css_release(struct percpu_ref *ref) |
| 4406 | { |
| 4407 | struct cgroup_subsys_state *css = |
| 4408 | container_of(ref, struct cgroup_subsys_state, refcnt); |
| 4409 | |
Tejun Heo | 25e15d8 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4410 | INIT_WORK(&css->destroy_work, css_release_work_fn); |
| 4411 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4412 | } |
| 4413 | |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4414 | static void init_and_link_css(struct cgroup_subsys_state *css, |
| 4415 | struct cgroup_subsys *ss, struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4416 | { |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4417 | lockdep_assert_held(&cgroup_mutex); |
| 4418 | |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4419 | cgroup_get(cgrp); |
| 4420 | |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4421 | memset(css, 0, sizeof(*css)); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4422 | css->cgroup = cgrp; |
Tejun Heo | 72c97e5 | 2013-08-08 20:11:22 -0400 | [diff] [blame] | 4423 | css->ss = ss; |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4424 | INIT_LIST_HEAD(&css->sibling); |
| 4425 | INIT_LIST_HEAD(&css->children); |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4426 | css->serial_nr = css_serial_nr_next++; |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4427 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4428 | if (cgroup_parent(cgrp)) { |
| 4429 | css->parent = cgroup_css(cgroup_parent(cgrp), ss); |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4430 | css_get(css->parent); |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4431 | } |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4432 | |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 4433 | BUG_ON(cgroup_css(cgrp, ss)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4434 | } |
| 4435 | |
Li Zefan | 2a4ac63 | 2013-07-31 16:16:40 +0800 | [diff] [blame] | 4436 | /* invoke ->css_online() on a new CSS and mark it online if successful */ |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 4437 | static int online_css(struct cgroup_subsys_state *css) |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4438 | { |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 4439 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | b1929db | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4440 | int ret = 0; |
| 4441 | |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4442 | lockdep_assert_held(&cgroup_mutex); |
| 4443 | |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4444 | if (ss->css_online) |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4445 | ret = ss->css_online(css); |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4446 | if (!ret) { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4447 | css->flags |= CSS_ONLINE; |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4448 | rcu_assign_pointer(css->cgroup->subsys[ss->id], css); |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4449 | } |
Tejun Heo | b1929db | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4450 | return ret; |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4451 | } |
| 4452 | |
Li Zefan | 2a4ac63 | 2013-07-31 16:16:40 +0800 | [diff] [blame] | 4453 | /* if the CSS is online, invoke ->css_offline() on it and mark it offline */ |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 4454 | static void offline_css(struct cgroup_subsys_state *css) |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4455 | { |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 4456 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4457 | |
| 4458 | lockdep_assert_held(&cgroup_mutex); |
| 4459 | |
| 4460 | if (!(css->flags & CSS_ONLINE)) |
| 4461 | return; |
| 4462 | |
Li Zefan | d7eeac1 | 2013-03-12 15:35:59 -0700 | [diff] [blame] | 4463 | if (ss->css_offline) |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4464 | ss->css_offline(css); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4465 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4466 | css->flags &= ~CSS_ONLINE; |
Tejun Heo | e329780 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 4467 | RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4468 | |
| 4469 | wake_up_all(&css->cgroup->offline_waitq); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4470 | } |
| 4471 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4472 | /** |
| 4473 | * create_css - create a cgroup_subsys_state |
| 4474 | * @cgrp: the cgroup new css will be associated with |
| 4475 | * @ss: the subsys of new css |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4476 | * @visible: whether to create control knobs for the new css or not |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4477 | * |
| 4478 | * Create a new css associated with @cgrp - @ss pair. On success, the new |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4479 | * css is online and installed in @cgrp with all interface files created if |
| 4480 | * @visible. Returns 0 on success, -errno on failure. |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4481 | */ |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4482 | static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss, |
| 4483 | bool visible) |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4484 | { |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4485 | struct cgroup *parent = cgroup_parent(cgrp); |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4486 | struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4487 | struct cgroup_subsys_state *css; |
| 4488 | int err; |
| 4489 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4490 | lockdep_assert_held(&cgroup_mutex); |
| 4491 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4492 | css = ss->css_alloc(parent_css); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4493 | if (IS_ERR(css)) |
| 4494 | return PTR_ERR(css); |
| 4495 | |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4496 | init_and_link_css(css, ss, cgrp); |
Tejun Heo | a2bed82 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4497 | |
Tejun Heo | 2aad2a8 | 2014-09-24 13:31:50 -0400 | [diff] [blame] | 4498 | err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4499 | if (err) |
Li Zefan | 3eb59ec | 2014-03-18 17:02:36 +0800 | [diff] [blame] | 4500 | goto err_free_css; |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4501 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4502 | err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT); |
| 4503 | if (err < 0) |
| 4504 | goto err_free_percpu_ref; |
| 4505 | css->id = err; |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4506 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4507 | if (visible) { |
| 4508 | err = cgroup_populate_dir(cgrp, 1 << ss->id); |
| 4509 | if (err) |
| 4510 | goto err_free_id; |
| 4511 | } |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4512 | |
| 4513 | /* @css is ready to be brought online now, make it visible */ |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4514 | list_add_tail_rcu(&css->sibling, &parent_css->children); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4515 | cgroup_idr_replace(&ss->css_idr, css, css->id); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4516 | |
| 4517 | err = online_css(css); |
| 4518 | if (err) |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4519 | goto err_list_del; |
Tejun Heo | 9441962 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4520 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4521 | if (ss->broken_hierarchy && !ss->warned_broken_hierarchy && |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4522 | cgroup_parent(parent)) { |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 4523 | pr_warn("%s (%d) created nested cgroup for controller \"%s\" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.\n", |
Jianyu Zhan | a2a1f9e | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 4524 | current->comm, current->pid, ss->name); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4525 | if (!strcmp(ss->name, "memory")) |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 4526 | pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n"); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4527 | ss->warned_broken_hierarchy = true; |
| 4528 | } |
| 4529 | |
| 4530 | return 0; |
| 4531 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4532 | err_list_del: |
| 4533 | list_del_rcu(&css->sibling); |
Linus Torvalds | 32d01dc | 2014-04-03 13:05:42 -0700 | [diff] [blame] | 4534 | cgroup_clear_dir(css->cgroup, 1 << css->ss->id); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4535 | err_free_id: |
| 4536 | cgroup_idr_remove(&ss->css_idr, css->id); |
Li Zefan | 3eb59ec | 2014-03-18 17:02:36 +0800 | [diff] [blame] | 4537 | err_free_percpu_ref: |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 4538 | percpu_ref_exit(&css->refcnt); |
Li Zefan | 3eb59ec | 2014-03-18 17:02:36 +0800 | [diff] [blame] | 4539 | err_free_css: |
Tejun Heo | a2bed82 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4540 | call_rcu(&css->rcu_head, css_free_rcu_fn); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4541 | return err; |
| 4542 | } |
| 4543 | |
Tejun Heo | b3bfd98 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4544 | static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name, |
| 4545 | umode_t mode) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4546 | { |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4547 | struct cgroup *parent, *cgrp; |
| 4548 | struct cgroup_root *root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4549 | struct cgroup_subsys *ss; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4550 | struct kernfs_node *kn; |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4551 | struct cftype *base_files; |
Tejun Heo | b3bfd98 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4552 | int ssid, ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4553 | |
Alban Crequy | 71b1fb5 | 2014-08-18 12:20:20 +0100 | [diff] [blame] | 4554 | /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable. |
| 4555 | */ |
| 4556 | if (strchr(name, '\n')) |
| 4557 | return -EINVAL; |
| 4558 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4559 | parent = cgroup_kn_lock_live(parent_kn); |
| 4560 | if (!parent) |
| 4561 | return -ENODEV; |
| 4562 | root = parent->root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4563 | |
Tejun Heo | 0a950f6 | 2012-11-19 09:02:12 -0800 | [diff] [blame] | 4564 | /* allocate the cgroup and its ID, 0 is reserved for the root */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4565 | cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4566 | if (!cgrp) { |
| 4567 | ret = -ENOMEM; |
| 4568 | goto out_unlock; |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 4569 | } |
| 4570 | |
Tejun Heo | 2aad2a8 | 2014-09-24 13:31:50 -0400 | [diff] [blame] | 4571 | ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4572 | if (ret) |
| 4573 | goto out_free_cgrp; |
| 4574 | |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 4575 | /* |
| 4576 | * Temporarily set the pointer to NULL, so idr_find() won't return |
| 4577 | * a half-baked cgroup. |
| 4578 | */ |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4579 | cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_NOWAIT); |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 4580 | if (cgrp->id < 0) { |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4581 | ret = -ENOMEM; |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4582 | goto out_cancel_ref; |
Tejun Heo | 976c06b | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4583 | } |
| 4584 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4585 | init_cgroup_housekeeping(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4586 | |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 4587 | cgrp->self.parent = &parent->self; |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4588 | cgrp->root = root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4589 | |
Li Zefan | b6abdb0 | 2008-03-04 14:28:19 -0800 | [diff] [blame] | 4590 | if (notify_on_release(parent)) |
| 4591 | set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
| 4592 | |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4593 | if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags)) |
| 4594 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4595 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4596 | /* create the directory */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4597 | kn = kernfs_create_dir(parent->kn, name, mode, cgrp); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4598 | if (IS_ERR(kn)) { |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4599 | ret = PTR_ERR(kn); |
| 4600 | goto out_free_id; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4601 | } |
| 4602 | cgrp->kn = kn; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4603 | |
Tejun Heo | 6f30558 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4604 | /* |
| 4605 | * This extra ref will be put in cgroup_free_fn() and guarantees |
| 4606 | * that @cgrp->kn is always accessible. |
| 4607 | */ |
| 4608 | kernfs_get(kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4609 | |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4610 | cgrp->self.serial_nr = css_serial_nr_next++; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 4611 | |
Tejun Heo | 4e139af | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4612 | /* allocation complete, commit to creation */ |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4613 | list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4614 | atomic_inc(&root->nr_cgrps); |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4615 | cgroup_get(parent); |
Li Zefan | 415cf07 | 2013-04-08 14:35:02 +0800 | [diff] [blame] | 4616 | |
Tejun Heo | 0d80255 | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4617 | /* |
| 4618 | * @cgrp is now fully operational. If something fails after this |
| 4619 | * point, it'll be released via the normal destruction path. |
| 4620 | */ |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4621 | cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id); |
Li Zefan | 4e96ee8e | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 4622 | |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4623 | ret = cgroup_kn_set_ugid(kn); |
| 4624 | if (ret) |
| 4625 | goto out_destroy; |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 4626 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4627 | if (cgroup_on_dfl(cgrp)) |
| 4628 | base_files = cgroup_dfl_base_files; |
| 4629 | else |
| 4630 | base_files = cgroup_legacy_base_files; |
| 4631 | |
| 4632 | ret = cgroup_addrm_files(cgrp, base_files, true); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4633 | if (ret) |
| 4634 | goto out_destroy; |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4635 | |
Tejun Heo | 9d403e9 | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4636 | /* let's create and online css's */ |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 4637 | for_each_subsys(ss, ssid) { |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4638 | if (parent->child_subsys_mask & (1 << ssid)) { |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4639 | ret = create_css(cgrp, ss, |
| 4640 | parent->subtree_control & (1 << ssid)); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4641 | if (ret) |
| 4642 | goto out_destroy; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 4643 | } |
Tejun Heo | a863803 | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 4644 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4645 | |
Tejun Heo | bd53d61 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4646 | /* |
| 4647 | * On the default hierarchy, a child doesn't automatically inherit |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 4648 | * subtree_control from the parent. Each is configured manually. |
Tejun Heo | bd53d61 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4649 | */ |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 4650 | if (!cgroup_on_dfl(cgrp)) { |
| 4651 | cgrp->subtree_control = parent->subtree_control; |
| 4652 | cgroup_refresh_child_subsys_mask(cgrp); |
| 4653 | } |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4654 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4655 | kernfs_activate(kn); |
| 4656 | |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4657 | ret = 0; |
| 4658 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4659 | |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4660 | out_free_id: |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4661 | cgroup_idr_remove(&root->cgroup_idr, cgrp->id); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4662 | out_cancel_ref: |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 4663 | percpu_ref_exit(&cgrp->self.refcnt); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4664 | out_free_cgrp: |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4665 | kfree(cgrp); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4666 | out_unlock: |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4667 | cgroup_kn_unlock(parent_kn); |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 4668 | return ret; |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4669 | |
| 4670 | out_destroy: |
| 4671 | cgroup_destroy_locked(cgrp); |
| 4672 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4673 | } |
| 4674 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4675 | /* |
| 4676 | * This is called when the refcnt of a css is confirmed to be killed. |
Tejun Heo | 249f346 | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 4677 | * css_tryget_online() is now guaranteed to fail. Tell the subsystem to |
| 4678 | * initate destruction and put the css ref from kill_css(). |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4679 | */ |
| 4680 | static void css_killed_work_fn(struct work_struct *work) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4681 | { |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4682 | struct cgroup_subsys_state *css = |
| 4683 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4684 | |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4685 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4686 | offline_css(css); |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4687 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4688 | |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4689 | css_put(css); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4690 | } |
| 4691 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4692 | /* css kill confirmation processing requires process context, bounce */ |
| 4693 | static void css_killed_ref_fn(struct percpu_ref *ref) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4694 | { |
| 4695 | struct cgroup_subsys_state *css = |
| 4696 | container_of(ref, struct cgroup_subsys_state, refcnt); |
| 4697 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4698 | INIT_WORK(&css->destroy_work, css_killed_work_fn); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4699 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4700 | } |
| 4701 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4702 | /** |
| 4703 | * kill_css - destroy a css |
| 4704 | * @css: css to destroy |
| 4705 | * |
| 4706 | * This function initiates destruction of @css by removing cgroup interface |
| 4707 | * files and putting its base reference. ->css_offline() will be invoked |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4708 | * asynchronously once css_tryget_online() is guaranteed to fail and when |
| 4709 | * the reference count reaches zero, @css will be released. |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4710 | */ |
| 4711 | static void kill_css(struct cgroup_subsys_state *css) |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4712 | { |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 4713 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | 9441962 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4714 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4715 | /* |
| 4716 | * This must happen before css is disassociated with its cgroup. |
| 4717 | * See seq_css() for details. |
| 4718 | */ |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4719 | cgroup_clear_dir(css->cgroup, 1 << css->ss->id); |
Tejun Heo | 3c14f8b | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4720 | |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4721 | /* |
| 4722 | * Killing would put the base ref, but we need to keep it alive |
| 4723 | * until after ->css_offline(). |
| 4724 | */ |
| 4725 | css_get(css); |
| 4726 | |
| 4727 | /* |
| 4728 | * cgroup core guarantees that, by the time ->css_offline() is |
| 4729 | * invoked, no new css reference will be given out via |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4730 | * css_tryget_online(). We can't simply call percpu_ref_kill() and |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4731 | * proceed to offlining css's because percpu_ref_kill() doesn't |
| 4732 | * guarantee that the ref is seen as killed on all CPUs on return. |
| 4733 | * |
| 4734 | * Use percpu_ref_kill_and_confirm() to get notifications as each |
| 4735 | * css is confirmed to be seen as killed on all CPUs. |
| 4736 | */ |
| 4737 | percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4738 | } |
| 4739 | |
| 4740 | /** |
| 4741 | * cgroup_destroy_locked - the first stage of cgroup destruction |
| 4742 | * @cgrp: cgroup to be destroyed |
| 4743 | * |
| 4744 | * css's make use of percpu refcnts whose killing latency shouldn't be |
| 4745 | * exposed to userland and are RCU protected. Also, cgroup core needs to |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4746 | * guarantee that css_tryget_online() won't succeed by the time |
| 4747 | * ->css_offline() is invoked. To satisfy all the requirements, |
| 4748 | * destruction is implemented in the following two steps. |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4749 | * |
| 4750 | * s1. Verify @cgrp can be destroyed and mark it dying. Remove all |
| 4751 | * userland visible parts and start killing the percpu refcnts of |
| 4752 | * css's. Set up so that the next stage will be kicked off once all |
| 4753 | * the percpu refcnts are confirmed to be killed. |
| 4754 | * |
| 4755 | * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the |
| 4756 | * rest of destruction. Once all cgroup references are gone, the |
| 4757 | * cgroup is RCU-freed. |
| 4758 | * |
| 4759 | * This function implements s1. After this step, @cgrp is gone as far as |
| 4760 | * the userland is concerned and a new cgroup with the same name may be |
| 4761 | * created. As cgroup doesn't care about the names internally, this |
| 4762 | * doesn't cause any problem. |
| 4763 | */ |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4764 | static int cgroup_destroy_locked(struct cgroup *cgrp) |
| 4765 | __releases(&cgroup_mutex) __acquires(&cgroup_mutex) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4766 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4767 | struct cgroup_subsys_state *css; |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4768 | bool empty; |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4769 | int ssid; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4770 | |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4771 | lockdep_assert_held(&cgroup_mutex); |
| 4772 | |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4773 | /* |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4774 | * css_set_rwsem synchronizes access to ->cset_links and prevents |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4775 | * @cgrp from being removed while put_css_set() is in progress. |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4776 | */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4777 | down_read(&css_set_rwsem); |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 4778 | empty = list_empty(&cgrp->cset_links); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4779 | up_read(&css_set_rwsem); |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4780 | if (!empty) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4781 | return -EBUSY; |
Tejun Heo | ed957793 | 2012-11-05 09:16:58 -0800 | [diff] [blame] | 4782 | |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4783 | /* |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4784 | * Make sure there's no live children. We can't test emptiness of |
| 4785 | * ->self.children as dead children linger on it while being |
| 4786 | * drained; otherwise, "rmdir parent/child parent" may fail. |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 4787 | */ |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 4788 | if (css_has_online_children(&cgrp->self)) |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 4789 | return -EBUSY; |
| 4790 | |
| 4791 | /* |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4792 | * Mark @cgrp dead. This prevents further task migration and child |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4793 | * creation by disabling cgroup_lock_live_group(). |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4794 | */ |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 4795 | cgrp->self.flags &= ~CSS_ONLINE; |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4796 | |
Tejun Heo | 249f346 | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 4797 | /* initiate massacre of all css's */ |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4798 | for_each_css(css, ssid, cgrp) |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4799 | kill_css(css); |
| 4800 | |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4801 | /* |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 4802 | * Remove @cgrp directory along with the base files. @cgrp has an |
| 4803 | * extra ref on its kn. |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4804 | */ |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 4805 | kernfs_remove(cgrp->kn); |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4806 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4807 | check_for_release(cgroup_parent(cgrp)); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4808 | |
Tejun Heo | 249f346 | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 4809 | /* put the base reference */ |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4810 | percpu_ref_kill(&cgrp->self.refcnt); |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4811 | |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 4812 | return 0; |
| 4813 | }; |
| 4814 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4815 | static int cgroup_rmdir(struct kernfs_node *kn) |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4816 | { |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4817 | struct cgroup *cgrp; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4818 | int ret = 0; |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4819 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4820 | cgrp = cgroup_kn_lock_live(kn); |
| 4821 | if (!cgrp) |
| 4822 | return 0; |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4823 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4824 | ret = cgroup_destroy_locked(cgrp); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4825 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4826 | cgroup_kn_unlock(kn); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4827 | return ret; |
| 4828 | } |
| 4829 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4830 | static struct kernfs_syscall_ops cgroup_kf_syscall_ops = { |
| 4831 | .remount_fs = cgroup_remount, |
| 4832 | .show_options = cgroup_show_options, |
| 4833 | .mkdir = cgroup_mkdir, |
| 4834 | .rmdir = cgroup_rmdir, |
| 4835 | .rename = cgroup_rename, |
| 4836 | }; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4837 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4838 | static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4839 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4840 | struct cgroup_subsys_state *css; |
Diego Calleja | cfe36bd | 2007-11-14 16:58:54 -0800 | [diff] [blame] | 4841 | |
| 4842 | printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4843 | |
Tejun Heo | 648bb56 | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4844 | mutex_lock(&cgroup_mutex); |
| 4845 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4846 | idr_init(&ss->css_idr); |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4847 | INIT_LIST_HEAD(&ss->cfts); |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4848 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4849 | /* Create the root cgroup state for this subsystem */ |
| 4850 | ss->root = &cgrp_dfl_root; |
| 4851 | css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4852 | /* We don't handle early failures gracefully */ |
| 4853 | BUG_ON(IS_ERR(css)); |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4854 | init_and_link_css(css, ss, &cgrp_dfl_root.cgrp); |
Tejun Heo | 3b514d2 | 2014-05-16 13:22:47 -0400 | [diff] [blame] | 4855 | |
| 4856 | /* |
| 4857 | * Root csses are never destroyed and we can't initialize |
| 4858 | * percpu_ref during early init. Disable refcnting. |
| 4859 | */ |
| 4860 | css->flags |= CSS_NO_REF; |
| 4861 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4862 | if (early) { |
Tejun Heo | 9395a45 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4863 | /* allocation can't be done safely during early init */ |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4864 | css->id = 1; |
| 4865 | } else { |
| 4866 | css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL); |
| 4867 | BUG_ON(css->id < 0); |
| 4868 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4869 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4870 | /* Update the init_css_set to contain a subsys |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4871 | * pointer to this state - since the subsystem is |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4872 | * newly registered, all tasks and hence the |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4873 | * init_css_set is in the subsystem's root cgroup. */ |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4874 | init_css_set.subsys[ss->id] = css; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4875 | |
| 4876 | need_forkexit_callback |= ss->fork || ss->exit; |
| 4877 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4878 | /* At system boot, before all subsystems have been |
| 4879 | * registered, no tasks have been forked, so we don't |
| 4880 | * need to invoke fork callbacks here. */ |
| 4881 | BUG_ON(!list_empty(&init_task.tasks)); |
| 4882 | |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4883 | BUG_ON(online_css(css)); |
Tejun Heo | a863803 | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 4884 | |
Tejun Heo | 648bb56 | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4885 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4886 | } |
| 4887 | |
| 4888 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4889 | * cgroup_init_early - cgroup initialization at system boot |
| 4890 | * |
| 4891 | * Initialize cgroups at system boot, and initialize any |
| 4892 | * subsystems that request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4893 | */ |
| 4894 | int __init cgroup_init_early(void) |
| 4895 | { |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 4896 | static struct cgroup_sb_opts __initdata opts; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4897 | struct cgroup_subsys *ss; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4898 | int i; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4899 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4900 | init_cgroup_root(&cgrp_dfl_root, &opts); |
Tejun Heo | 3b514d2 | 2014-05-16 13:22:47 -0400 | [diff] [blame] | 4901 | cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF; |
| 4902 | |
Tejun Heo | a4ea1cc | 2013-06-21 15:52:33 -0700 | [diff] [blame] | 4903 | RCU_INIT_POINTER(init_task.cgroups, &init_css_set); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4904 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4905 | for_each_subsys(ss, i) { |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4906 | WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id, |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4907 | "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n", |
| 4908 | i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free, |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4909 | ss->id, ss->name); |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4910 | WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN, |
| 4911 | "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4912 | |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4913 | ss->id = i; |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4914 | ss->name = cgroup_subsys_name[i]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4915 | |
| 4916 | if (ss->early_init) |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4917 | cgroup_init_subsys(ss, true); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4918 | } |
| 4919 | return 0; |
| 4920 | } |
| 4921 | |
| 4922 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4923 | * cgroup_init - cgroup initialization |
| 4924 | * |
| 4925 | * Register cgroup filesystem and /proc file, and initialize |
| 4926 | * any subsystems that didn't request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4927 | */ |
| 4928 | int __init cgroup_init(void) |
| 4929 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4930 | struct cgroup_subsys *ss; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 4931 | unsigned long key; |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4932 | int ssid, err; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4933 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4934 | BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files)); |
| 4935 | BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4936 | |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4937 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4938 | |
Tejun Heo | 82fe9b0 | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4939 | /* Add init_css_set to the hash table */ |
| 4940 | key = css_set_hash(init_css_set.subsys); |
| 4941 | hash_add(css_set_table, &init_css_set.hlist, key); |
| 4942 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4943 | BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0)); |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4944 | |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4945 | mutex_unlock(&cgroup_mutex); |
| 4946 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4947 | for_each_subsys(ss, ssid) { |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4948 | if (ss->early_init) { |
| 4949 | struct cgroup_subsys_state *css = |
| 4950 | init_css_set.subsys[ss->id]; |
| 4951 | |
| 4952 | css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, |
| 4953 | GFP_KERNEL); |
| 4954 | BUG_ON(css->id < 0); |
| 4955 | } else { |
| 4956 | cgroup_init_subsys(ss, false); |
| 4957 | } |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4958 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 4959 | list_add_tail(&init_css_set.e_cset_node[ssid], |
| 4960 | &cgrp_dfl_root.cgrp.e_csets[ssid]); |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4961 | |
| 4962 | /* |
Li Zefan | c731ae1 | 2014-06-05 17:16:30 +0800 | [diff] [blame] | 4963 | * Setting dfl_root subsys_mask needs to consider the |
| 4964 | * disabled flag and cftype registration needs kmalloc, |
| 4965 | * both of which aren't available during early_init. |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4966 | */ |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 4967 | if (ss->disabled) |
| 4968 | continue; |
| 4969 | |
| 4970 | cgrp_dfl_root.subsys_mask |= 1 << ss->id; |
| 4971 | |
| 4972 | if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes) |
| 4973 | ss->dfl_cftypes = ss->legacy_cftypes; |
| 4974 | |
Tejun Heo | 5de4fa1 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 4975 | if (!ss->dfl_cftypes) |
| 4976 | cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id; |
| 4977 | |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 4978 | if (ss->dfl_cftypes == ss->legacy_cftypes) { |
| 4979 | WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes)); |
| 4980 | } else { |
| 4981 | WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes)); |
| 4982 | WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes)); |
Li Zefan | c731ae1 | 2014-06-05 17:16:30 +0800 | [diff] [blame] | 4983 | } |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4984 | } |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4985 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4986 | cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4987 | if (!cgroup_kobj) |
| 4988 | return -ENOMEM; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4989 | |
| 4990 | err = register_filesystem(&cgroup_fs_type); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4991 | if (err < 0) { |
| 4992 | kobject_put(cgroup_kobj); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4993 | return err; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4994 | } |
| 4995 | |
| 4996 | proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4997 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4998 | } |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 4999 | |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5000 | static int __init cgroup_wq_init(void) |
| 5001 | { |
| 5002 | /* |
| 5003 | * There isn't much point in executing destruction path in |
| 5004 | * parallel. Good chunk is serialized with cgroup_mutex anyway. |
Tejun Heo | 1a11533 | 2014-02-12 19:06:19 -0500 | [diff] [blame] | 5005 | * Use 1 for @max_active. |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5006 | * |
| 5007 | * We would prefer to do this in cgroup_init() above, but that |
| 5008 | * is called before init_workqueues(): so leave this until after. |
| 5009 | */ |
Tejun Heo | 1a11533 | 2014-02-12 19:06:19 -0500 | [diff] [blame] | 5010 | cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5011 | BUG_ON(!cgroup_destroy_wq); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 5012 | |
| 5013 | /* |
| 5014 | * Used to destroy pidlists and separate to serve as flush domain. |
| 5015 | * Cap @max_active to 1 too. |
| 5016 | */ |
| 5017 | cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy", |
| 5018 | 0, 1); |
| 5019 | BUG_ON(!cgroup_pidlist_destroy_wq); |
| 5020 | |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5021 | return 0; |
| 5022 | } |
| 5023 | core_initcall(cgroup_wq_init); |
| 5024 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5025 | /* |
| 5026 | * proc_cgroup_show() |
| 5027 | * - Print task's cgroup paths into seq_file, one line for each hierarchy |
| 5028 | * - Used for /proc/<pid>/cgroup. |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5029 | */ |
Zefan Li | 006f4ac | 2014-09-18 16:03:15 +0800 | [diff] [blame] | 5030 | int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns, |
| 5031 | struct pid *pid, struct task_struct *tsk) |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5032 | { |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5033 | char *buf, *path; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5034 | int retval; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 5035 | struct cgroup_root *root; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5036 | |
| 5037 | retval = -ENOMEM; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5038 | buf = kmalloc(PATH_MAX, GFP_KERNEL); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5039 | if (!buf) |
| 5040 | goto out; |
| 5041 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5042 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5043 | down_read(&css_set_rwsem); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5044 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5045 | for_each_root(root) { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5046 | struct cgroup_subsys *ss; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 5047 | struct cgroup *cgrp; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 5048 | int ssid, count = 0; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5049 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 5050 | if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible) |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5051 | continue; |
| 5052 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5053 | seq_printf(m, "%d:", root->hierarchy_id); |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 5054 | for_each_subsys(ss, ssid) |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 5055 | if (root->subsys_mask & (1 << ssid)) |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 5056 | seq_printf(m, "%s%s", count++ ? "," : "", ss->name); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 5057 | if (strlen(root->name)) |
| 5058 | seq_printf(m, "%sname=%s", count ? "," : "", |
| 5059 | root->name); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5060 | seq_putc(m, ':'); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5061 | cgrp = task_cgroup_from_root(tsk, root); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5062 | path = cgroup_path(cgrp, buf, PATH_MAX); |
| 5063 | if (!path) { |
| 5064 | retval = -ENAMETOOLONG; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5065 | goto out_unlock; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5066 | } |
| 5067 | seq_puts(m, path); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5068 | seq_putc(m, '\n'); |
| 5069 | } |
| 5070 | |
Zefan Li | 006f4ac | 2014-09-18 16:03:15 +0800 | [diff] [blame] | 5071 | retval = 0; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5072 | out_unlock: |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5073 | up_read(&css_set_rwsem); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5074 | mutex_unlock(&cgroup_mutex); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5075 | kfree(buf); |
| 5076 | out: |
| 5077 | return retval; |
| 5078 | } |
| 5079 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5080 | /* Display information about each subsystem and each hierarchy */ |
| 5081 | static int proc_cgroupstats_show(struct seq_file *m, void *v) |
| 5082 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5083 | struct cgroup_subsys *ss; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5084 | int i; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5085 | |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5086 | seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n"); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 5087 | /* |
| 5088 | * ideally we don't want subsystems moving around while we do this. |
| 5089 | * cgroup_mutex is also necessary to guarantee an atomic snapshot of |
| 5090 | * subsys/hierarchy state. |
| 5091 | */ |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5092 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5093 | |
| 5094 | for_each_subsys(ss, i) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5095 | seq_printf(m, "%s\t%d\t%d\t%d\n", |
| 5096 | ss->name, ss->root->hierarchy_id, |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5097 | atomic_read(&ss->root->nr_cgrps), !ss->disabled); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5098 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5099 | mutex_unlock(&cgroup_mutex); |
| 5100 | return 0; |
| 5101 | } |
| 5102 | |
| 5103 | static int cgroupstats_open(struct inode *inode, struct file *file) |
| 5104 | { |
Al Viro | 9dce07f | 2008-03-29 03:07:28 +0000 | [diff] [blame] | 5105 | return single_open(file, proc_cgroupstats_show, NULL); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5106 | } |
| 5107 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 5108 | static const struct file_operations proc_cgroupstats_operations = { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5109 | .open = cgroupstats_open, |
| 5110 | .read = seq_read, |
| 5111 | .llseek = seq_lseek, |
| 5112 | .release = single_release, |
| 5113 | }; |
| 5114 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5115 | /** |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5116 | * cgroup_fork - initialize cgroup related fields during copy_process() |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 5117 | * @child: pointer to task_struct of forking parent process. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5118 | * |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5119 | * A task is associated with the init_css_set until cgroup_post_fork() |
| 5120 | * attaches it to the parent's css_set. Empty cg_list indicates that |
| 5121 | * @child isn't holding reference to its css_set. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5122 | */ |
| 5123 | void cgroup_fork(struct task_struct *child) |
| 5124 | { |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5125 | RCU_INIT_POINTER(child->cgroups, &init_css_set); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5126 | INIT_LIST_HEAD(&child->cg_list); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5127 | } |
| 5128 | |
| 5129 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 5130 | * cgroup_post_fork - called on a new task after adding it to the task list |
| 5131 | * @child: the task in question |
| 5132 | * |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5133 | * Adds the task to the list running through its css_set if necessary and |
| 5134 | * call the subsystem fork() callbacks. Has to be after the task is |
| 5135 | * visible on the task list in case we race with the first call to |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 5136 | * cgroup_task_iter_start() - to guarantee that the new task ends up on its |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5137 | * list. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 5138 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5139 | void cgroup_post_fork(struct task_struct *child) |
| 5140 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5141 | struct cgroup_subsys *ss; |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5142 | int i; |
| 5143 | |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 5144 | /* |
Dongsheng Yang | 251f8c0 | 2014-08-25 19:27:52 +0800 | [diff] [blame] | 5145 | * This may race against cgroup_enable_task_cg_lists(). As that |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5146 | * function sets use_task_css_set_links before grabbing |
| 5147 | * tasklist_lock and we just went through tasklist_lock to add |
| 5148 | * @child, it's guaranteed that either we see the set |
| 5149 | * use_task_css_set_links or cgroup_enable_task_cg_lists() sees |
| 5150 | * @child during its iteration. |
| 5151 | * |
| 5152 | * If we won the race, @child is associated with %current's |
| 5153 | * css_set. Grabbing css_set_rwsem guarantees both that the |
| 5154 | * association is stable, and, on completion of the parent's |
| 5155 | * migration, @child is visible in the source of migration or |
| 5156 | * already in the destination cgroup. This guarantee is necessary |
| 5157 | * when implementing operations which need to migrate all tasks of |
| 5158 | * a cgroup to another. |
| 5159 | * |
Dongsheng Yang | 251f8c0 | 2014-08-25 19:27:52 +0800 | [diff] [blame] | 5160 | * Note that if we lose to cgroup_enable_task_cg_lists(), @child |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5161 | * will remain in init_css_set. This is safe because all tasks are |
| 5162 | * in the init_css_set before cg_links is enabled and there's no |
| 5163 | * operation which transfers all tasks out of init_css_set. |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 5164 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5165 | if (use_task_css_set_links) { |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5166 | struct css_set *cset; |
| 5167 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5168 | down_write(&css_set_rwsem); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5169 | cset = task_css_set(current); |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5170 | if (list_empty(&child->cg_list)) { |
| 5171 | rcu_assign_pointer(child->cgroups, cset); |
| 5172 | list_add(&child->cg_list, &cset->tasks); |
| 5173 | get_css_set(cset); |
| 5174 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5175 | up_write(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5176 | } |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5177 | |
| 5178 | /* |
| 5179 | * Call ss->fork(). This must happen after @child is linked on |
| 5180 | * css_set; otherwise, @child might change state between ->fork() |
| 5181 | * and addition to css_set. |
| 5182 | */ |
| 5183 | if (need_forkexit_callback) { |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5184 | for_each_subsys(ss, i) |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5185 | if (ss->fork) |
| 5186 | ss->fork(child); |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5187 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5188 | } |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5189 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5190 | /** |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5191 | * cgroup_exit - detach cgroup from exiting task |
| 5192 | * @tsk: pointer to task_struct of exiting process |
| 5193 | * |
| 5194 | * Description: Detach cgroup from @tsk and release it. |
| 5195 | * |
| 5196 | * Note that cgroups marked notify_on_release force every task in |
| 5197 | * them to take the global cgroup_mutex mutex when exiting. |
| 5198 | * This could impact scaling on very large systems. Be reluctant to |
| 5199 | * use notify_on_release cgroups where very high task exit scaling |
| 5200 | * is required on large systems. |
| 5201 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5202 | * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We |
| 5203 | * call cgroup_exit() while the task is still competent to handle |
| 5204 | * notify_on_release(), then leave the task attached to the root cgroup in |
| 5205 | * each hierarchy for the remainder of its exit. No need to bother with |
| 5206 | * init_css_set refcnting. init_css_set never goes away and we can't race |
Li Zefan | e8604cb | 2014-03-28 15:18:27 +0800 | [diff] [blame] | 5207 | * with migration path - PF_EXITING is visible to migration path. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5208 | */ |
Li Zefan | 1ec4183 | 2014-03-28 15:22:19 +0800 | [diff] [blame] | 5209 | void cgroup_exit(struct task_struct *tsk) |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5210 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5211 | struct cgroup_subsys *ss; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5212 | struct css_set *cset; |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5213 | bool put_cset = false; |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5214 | int i; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5215 | |
| 5216 | /* |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5217 | * Unlink from @tsk from its css_set. As migration path can't race |
| 5218 | * with us, we can check cg_list without grabbing css_set_rwsem. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5219 | */ |
| 5220 | if (!list_empty(&tsk->cg_list)) { |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5221 | down_write(&css_set_rwsem); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5222 | list_del_init(&tsk->cg_list); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5223 | up_write(&css_set_rwsem); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5224 | put_cset = true; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5225 | } |
| 5226 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5227 | /* Reassign the task to the init_css_set. */ |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 5228 | cset = task_css_set(tsk); |
| 5229 | RCU_INIT_POINTER(tsk->cgroups, &init_css_set); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5230 | |
Li Zefan | 1ec4183 | 2014-03-28 15:22:19 +0800 | [diff] [blame] | 5231 | if (need_forkexit_callback) { |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5232 | /* see cgroup_post_fork() for details */ |
| 5233 | for_each_subsys(ss, i) { |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5234 | if (ss->exit) { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5235 | struct cgroup_subsys_state *old_css = cset->subsys[i]; |
| 5236 | struct cgroup_subsys_state *css = task_css(tsk, i); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5237 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5238 | ss->exit(css, old_css, tsk); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5239 | } |
| 5240 | } |
| 5241 | } |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5242 | |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5243 | if (put_cset) |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 5244 | put_css_set(cset); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5245 | } |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 5246 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 5247 | static void check_for_release(struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5248 | { |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 5249 | if (notify_on_release(cgrp) && !cgroup_has_tasks(cgrp) && |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5250 | !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp)) |
| 5251 | schedule_work(&cgrp->release_agent_work); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5252 | } |
| 5253 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5254 | /* |
| 5255 | * Notify userspace when a cgroup is released, by running the |
| 5256 | * configured release agent with the name of the cgroup (path |
| 5257 | * relative to the root of cgroup file system) as the argument. |
| 5258 | * |
| 5259 | * Most likely, this user command will try to rmdir this cgroup. |
| 5260 | * |
| 5261 | * This races with the possibility that some other task will be |
| 5262 | * attached to this cgroup before it is removed, or that some other |
| 5263 | * user task will 'mkdir' a child cgroup of this cgroup. That's ok. |
| 5264 | * The presumed 'rmdir' will fail quietly if this cgroup is no longer |
| 5265 | * unused, and this cgroup will be reprieved from its death sentence, |
| 5266 | * to continue to serve a useful existence. Next time it's released, |
| 5267 | * we will get notified again, if it still has 'notify_on_release' set. |
| 5268 | * |
| 5269 | * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which |
| 5270 | * means only wait until the task is successfully execve()'d. The |
| 5271 | * separate release agent task is forked by call_usermodehelper(), |
| 5272 | * then control in this thread returns here, without waiting for the |
| 5273 | * release agent task. We don't bother to wait because the caller of |
| 5274 | * this routine has no use for the exit status of the release agent |
| 5275 | * task, so no sense holding our caller up for that. |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5276 | */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5277 | static void cgroup_release_agent(struct work_struct *work) |
| 5278 | { |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5279 | struct cgroup *cgrp = |
| 5280 | container_of(work, struct cgroup, release_agent_work); |
| 5281 | char *pathbuf = NULL, *agentbuf = NULL, *path; |
| 5282 | char *argv[3], *envp[3]; |
| 5283 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5284 | mutex_lock(&cgroup_mutex); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5285 | |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5286 | pathbuf = kmalloc(PATH_MAX, GFP_KERNEL); |
| 5287 | agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL); |
| 5288 | if (!pathbuf || !agentbuf) |
| 5289 | goto out; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5290 | |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5291 | path = cgroup_path(cgrp, pathbuf, PATH_MAX); |
| 5292 | if (!path) |
| 5293 | goto out; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5294 | |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5295 | argv[0] = agentbuf; |
| 5296 | argv[1] = path; |
| 5297 | argv[2] = NULL; |
| 5298 | |
| 5299 | /* minimal command environment */ |
| 5300 | envp[0] = "HOME=/"; |
| 5301 | envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin"; |
| 5302 | envp[2] = NULL; |
| 5303 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5304 | mutex_unlock(&cgroup_mutex); |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5305 | call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC); |
Zefan Li | 3e2cd91 | 2014-09-20 14:35:43 +0800 | [diff] [blame] | 5306 | goto out_free; |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5307 | out: |
Zefan Li | 3e2cd91 | 2014-09-20 14:35:43 +0800 | [diff] [blame] | 5308 | mutex_unlock(&cgroup_mutex); |
| 5309 | out_free: |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5310 | kfree(agentbuf); |
| 5311 | kfree(pathbuf); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5312 | } |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5313 | |
| 5314 | static int __init cgroup_disable(char *str) |
| 5315 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5316 | struct cgroup_subsys *ss; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5317 | char *token; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5318 | int i; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5319 | |
| 5320 | while ((token = strsep(&str, ",")) != NULL) { |
| 5321 | if (!*token) |
| 5322 | continue; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5323 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5324 | for_each_subsys(ss, i) { |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5325 | if (!strcmp(token, ss->name)) { |
| 5326 | ss->disabled = 1; |
| 5327 | printk(KERN_INFO "Disabling %s control group" |
| 5328 | " subsystem\n", ss->name); |
| 5329 | break; |
| 5330 | } |
| 5331 | } |
| 5332 | } |
| 5333 | return 1; |
| 5334 | } |
| 5335 | __setup("cgroup_disable=", cgroup_disable); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5336 | |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 5337 | static int __init cgroup_set_legacy_files_on_dfl(char *str) |
| 5338 | { |
| 5339 | printk("cgroup: using legacy files on the default hierarchy\n"); |
| 5340 | cgroup_legacy_files_on_dfl = true; |
| 5341 | return 0; |
| 5342 | } |
| 5343 | __setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl); |
| 5344 | |
Tejun Heo | b77d7b6 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 5345 | /** |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 5346 | * css_tryget_online_from_dir - get corresponding css from a cgroup dentry |
Tejun Heo | 35cf083 | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 5347 | * @dentry: directory dentry of interest |
| 5348 | * @ss: subsystem of interest |
Tejun Heo | b77d7b6 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 5349 | * |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5350 | * If @dentry is a directory for a cgroup which has @ss enabled on it, try |
| 5351 | * to get the corresponding css and return it. If such css doesn't exist |
| 5352 | * or can't be pinned, an ERR_PTR value is returned. |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5353 | */ |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 5354 | struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry, |
| 5355 | struct cgroup_subsys *ss) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5356 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5357 | struct kernfs_node *kn = kernfs_node_from_dentry(dentry); |
| 5358 | struct cgroup_subsys_state *css = NULL; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5359 | struct cgroup *cgrp; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5360 | |
Tejun Heo | 35cf083 | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 5361 | /* is @dentry a cgroup dir? */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5362 | if (dentry->d_sb->s_type != &cgroup_fs_type || !kn || |
| 5363 | kernfs_type(kn) != KERNFS_DIR) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5364 | return ERR_PTR(-EBADF); |
| 5365 | |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5366 | rcu_read_lock(); |
| 5367 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5368 | /* |
| 5369 | * This path doesn't originate from kernfs and @kn could already |
| 5370 | * have been or be removed at any point. @kn->priv is RCU |
Li Zefan | a418948 | 2014-09-04 14:43:07 +0800 | [diff] [blame] | 5371 | * protected for this access. See css_release_work_fn() for details. |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5372 | */ |
| 5373 | cgrp = rcu_dereference(kn->priv); |
| 5374 | if (cgrp) |
| 5375 | css = cgroup_css(cgrp, ss); |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5376 | |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 5377 | if (!css || !css_tryget_online(css)) |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5378 | css = ERR_PTR(-ENOENT); |
| 5379 | |
| 5380 | rcu_read_unlock(); |
| 5381 | return css; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5382 | } |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5383 | |
Li Zefan | 1cb650b | 2013-08-19 10:05:24 +0800 | [diff] [blame] | 5384 | /** |
| 5385 | * css_from_id - lookup css by id |
| 5386 | * @id: the cgroup id |
| 5387 | * @ss: cgroup subsys to be looked into |
| 5388 | * |
| 5389 | * Returns the css if there's valid one with @id, otherwise returns NULL. |
| 5390 | * Should be called under rcu_read_lock(). |
| 5391 | */ |
| 5392 | struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss) |
| 5393 | { |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 5394 | WARN_ON_ONCE(!rcu_read_lock_held()); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 5395 | return idr_find(&ss->css_idr, id); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5396 | } |
| 5397 | |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5398 | #ifdef CONFIG_CGROUP_DEBUG |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5399 | static struct cgroup_subsys_state * |
| 5400 | debug_css_alloc(struct cgroup_subsys_state *parent_css) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5401 | { |
| 5402 | struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL); |
| 5403 | |
| 5404 | if (!css) |
| 5405 | return ERR_PTR(-ENOMEM); |
| 5406 | |
| 5407 | return css; |
| 5408 | } |
| 5409 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5410 | static void debug_css_free(struct cgroup_subsys_state *css) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5411 | { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5412 | kfree(css); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5413 | } |
| 5414 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5415 | static u64 debug_taskcount_read(struct cgroup_subsys_state *css, |
| 5416 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5417 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5418 | return cgroup_task_count(css->cgroup); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5419 | } |
| 5420 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5421 | static u64 current_css_set_read(struct cgroup_subsys_state *css, |
| 5422 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5423 | { |
| 5424 | return (u64)(unsigned long)current->cgroups; |
| 5425 | } |
| 5426 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5427 | static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css, |
Li Zefan | 03c78cb | 2013-06-14 11:17:19 +0800 | [diff] [blame] | 5428 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5429 | { |
| 5430 | u64 count; |
| 5431 | |
| 5432 | rcu_read_lock(); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 5433 | count = atomic_read(&task_css_set(current)->refcount); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5434 | rcu_read_unlock(); |
| 5435 | return count; |
| 5436 | } |
| 5437 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5438 | static int current_css_set_cg_links_read(struct seq_file *seq, void *v) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5439 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5440 | struct cgrp_cset_link *link; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5441 | struct css_set *cset; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5442 | char *name_buf; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5443 | |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5444 | name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL); |
| 5445 | if (!name_buf) |
| 5446 | return -ENOMEM; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5447 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5448 | down_read(&css_set_rwsem); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5449 | rcu_read_lock(); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5450 | cset = rcu_dereference(current->cgroups); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5451 | list_for_each_entry(link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5452 | struct cgroup *c = link->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5453 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 5454 | cgroup_name(c, name_buf, NAME_MAX + 1); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5455 | seq_printf(seq, "Root %d group %s\n", |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 5456 | c->root->hierarchy_id, name_buf); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5457 | } |
| 5458 | rcu_read_unlock(); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5459 | up_read(&css_set_rwsem); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5460 | kfree(name_buf); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5461 | return 0; |
| 5462 | } |
| 5463 | |
| 5464 | #define MAX_TASKS_SHOWN_PER_CSS 25 |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5465 | static int cgroup_css_links_read(struct seq_file *seq, void *v) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5466 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5467 | struct cgroup_subsys_state *css = seq_css(seq); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5468 | struct cgrp_cset_link *link; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5469 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5470 | down_read(&css_set_rwsem); |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5471 | list_for_each_entry(link, &css->cgroup->cset_links, cset_link) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5472 | struct css_set *cset = link->cset; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5473 | struct task_struct *task; |
| 5474 | int count = 0; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5475 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5476 | seq_printf(seq, "css_set %p\n", cset); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5477 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5478 | list_for_each_entry(task, &cset->tasks, cg_list) { |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5479 | if (count++ > MAX_TASKS_SHOWN_PER_CSS) |
| 5480 | goto overflow; |
| 5481 | seq_printf(seq, " task %d\n", task_pid_vnr(task)); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5482 | } |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5483 | |
| 5484 | list_for_each_entry(task, &cset->mg_tasks, cg_list) { |
| 5485 | if (count++ > MAX_TASKS_SHOWN_PER_CSS) |
| 5486 | goto overflow; |
| 5487 | seq_printf(seq, " task %d\n", task_pid_vnr(task)); |
| 5488 | } |
| 5489 | continue; |
| 5490 | overflow: |
| 5491 | seq_puts(seq, " ...\n"); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5492 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5493 | up_read(&css_set_rwsem); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5494 | return 0; |
| 5495 | } |
| 5496 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5497 | static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5498 | { |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 5499 | return (!cgroup_has_tasks(css->cgroup) && |
| 5500 | !css_has_online_children(&css->cgroup->self)); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5501 | } |
| 5502 | |
| 5503 | static struct cftype debug_files[] = { |
| 5504 | { |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5505 | .name = "taskcount", |
| 5506 | .read_u64 = debug_taskcount_read, |
| 5507 | }, |
| 5508 | |
| 5509 | { |
| 5510 | .name = "current_css_set", |
| 5511 | .read_u64 = current_css_set_read, |
| 5512 | }, |
| 5513 | |
| 5514 | { |
| 5515 | .name = "current_css_set_refcount", |
| 5516 | .read_u64 = current_css_set_refcount_read, |
| 5517 | }, |
| 5518 | |
| 5519 | { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5520 | .name = "current_css_set_cg_links", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5521 | .seq_show = current_css_set_cg_links_read, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5522 | }, |
| 5523 | |
| 5524 | { |
| 5525 | .name = "cgroup_css_links", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5526 | .seq_show = cgroup_css_links_read, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5527 | }, |
| 5528 | |
| 5529 | { |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5530 | .name = "releasable", |
| 5531 | .read_u64 = releasable_read, |
| 5532 | }, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5533 | |
Tejun Heo | 4baf6e3 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 5534 | { } /* terminate */ |
| 5535 | }; |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5536 | |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5537 | struct cgroup_subsys debug_cgrp_subsys = { |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 5538 | .css_alloc = debug_css_alloc, |
| 5539 | .css_free = debug_css_free, |
Tejun Heo | 5577964 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 5540 | .legacy_cftypes = debug_files, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5541 | }; |
| 5542 | #endif /* CONFIG_CGROUP_DEBUG */ |