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> |
Tejun Heo | d59cfc0 | 2015-05-13 16:35:17 -0400 | [diff] [blame] | 49 | #include <linux/percpu-rwsem.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 50 | #include <linux/string.h> |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 51 | #include <linux/sort.h> |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 52 | #include <linux/kmod.h> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 53 | #include <linux/delayacct.h> |
| 54 | #include <linux/cgroupstats.h> |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 55 | #include <linux/hashtable.h> |
Li Zefan | 096b7fe | 2009-07-29 15:04:04 -0700 | [diff] [blame] | 56 | #include <linux/pid_namespace.h> |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 57 | #include <linux/idr.h> |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 58 | #include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */ |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 59 | #include <linux/kthread.h> |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 60 | #include <linux/delay.h> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 61 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 62 | #include <linux/atomic.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 63 | |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 64 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 65 | * pidlists linger the following amount before being destroyed. The goal |
| 66 | * is avoiding frequent destruction in the middle of consecutive read calls |
| 67 | * Expiring in the middle is a performance problem not a correctness one. |
| 68 | * 1 sec should be enough. |
| 69 | */ |
| 70 | #define CGROUP_PIDLIST_DESTROY_DELAY HZ |
| 71 | |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 72 | #define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \ |
| 73 | MAX_CFTYPE_NAME + 2) |
| 74 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 75 | /* |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 76 | * cgroup_mutex is the master lock. Any modification to cgroup or its |
| 77 | * hierarchy must be performed while holding it. |
| 78 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 79 | * css_set_rwsem protects task->cgroups pointer, the list of css_set |
| 80 | * objects, and the chain of tasks off each css_set. |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 81 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 82 | * These locks are exported if CONFIG_PROVE_RCU so that accessors in |
| 83 | * cgroup.h can use them for lockdep annotations. |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 84 | */ |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 85 | #ifdef CONFIG_PROVE_RCU |
| 86 | DEFINE_MUTEX(cgroup_mutex); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 87 | DECLARE_RWSEM(css_set_rwsem); |
| 88 | EXPORT_SYMBOL_GPL(cgroup_mutex); |
| 89 | EXPORT_SYMBOL_GPL(css_set_rwsem); |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 90 | #else |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 91 | static DEFINE_MUTEX(cgroup_mutex); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 92 | static DECLARE_RWSEM(css_set_rwsem); |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 93 | #endif |
| 94 | |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 95 | /* |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 96 | * Protects cgroup_idr and css_idr so that IDs can be released without |
| 97 | * grabbing cgroup_mutex. |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 98 | */ |
| 99 | static DEFINE_SPINLOCK(cgroup_idr_lock); |
| 100 | |
| 101 | /* |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 102 | * Protects cgroup_subsys->release_agent_path. Modifying it also requires |
| 103 | * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock. |
| 104 | */ |
| 105 | static DEFINE_SPINLOCK(release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 106 | |
Tejun Heo | d59cfc0 | 2015-05-13 16:35:17 -0400 | [diff] [blame] | 107 | struct percpu_rw_semaphore cgroup_threadgroup_rwsem; |
| 108 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 109 | #define cgroup_assert_mutex_or_rcu_locked() \ |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 110 | rcu_lockdep_assert(rcu_read_lock_held() || \ |
| 111 | lockdep_is_held(&cgroup_mutex), \ |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 112 | "cgroup_mutex or RCU read lock required"); |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 113 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 114 | /* |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 115 | * cgroup destruction makes heavy use of work items and there can be a lot |
| 116 | * of concurrent destructions. Use a separate workqueue so that cgroup |
| 117 | * destruction work items don't end up filling up max_active of system_wq |
| 118 | * which may lead to deadlock. |
| 119 | */ |
| 120 | static struct workqueue_struct *cgroup_destroy_wq; |
| 121 | |
| 122 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 123 | * pidlist destructions need to be flushed on cgroup destruction. Use a |
| 124 | * separate workqueue as flush domain. |
| 125 | */ |
| 126 | static struct workqueue_struct *cgroup_pidlist_destroy_wq; |
| 127 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 128 | /* generate an array of cgroup subsystem pointers */ |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 129 | #define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys, |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 130 | static struct cgroup_subsys *cgroup_subsys[] = { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 131 | #include <linux/cgroup_subsys.h> |
| 132 | }; |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 133 | #undef SUBSYS |
| 134 | |
| 135 | /* array of cgroup subsystem names */ |
| 136 | #define SUBSYS(_x) [_x ## _cgrp_id] = #_x, |
| 137 | static const char *cgroup_subsys_name[] = { |
| 138 | #include <linux/cgroup_subsys.h> |
| 139 | }; |
| 140 | #undef SUBSYS |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 141 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 142 | /* |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 143 | * The default hierarchy, reserved for the subsystems that are otherwise |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 144 | * unattached - it never has more than a single cgroup, and all tasks are |
| 145 | * part of that cgroup. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 146 | */ |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 147 | struct cgroup_root cgrp_dfl_root; |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 148 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 149 | /* |
| 150 | * The default hierarchy always exists but is hidden until mounted for the |
| 151 | * first time. This is for backward compatibility. |
| 152 | */ |
| 153 | static bool cgrp_dfl_root_visible; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 154 | |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 155 | /* |
| 156 | * Set by the boot param of the same name and makes subsystems with NULL |
| 157 | * ->dfl_files to use ->legacy_files on the default hierarchy. |
| 158 | */ |
| 159 | static bool cgroup_legacy_files_on_dfl; |
| 160 | |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 161 | /* some controllers are not supported in the default hierarchy */ |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 162 | static unsigned long cgrp_dfl_root_inhibit_ss_mask; |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 163 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 164 | /* The list of hierarchy roots */ |
| 165 | |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 166 | static LIST_HEAD(cgroup_roots); |
| 167 | static int cgroup_root_count; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 168 | |
Tejun Heo | 3417ae1 | 2014-02-08 10:37:01 -0500 | [diff] [blame] | 169 | /* hierarchy ID allocation and mapping, protected by cgroup_mutex */ |
Tejun Heo | 1a57423 | 2013-04-14 11:36:58 -0700 | [diff] [blame] | 170 | static DEFINE_IDR(cgroup_hierarchy_idr); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 171 | |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 172 | /* |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 173 | * Assign a monotonically increasing serial number to csses. It guarantees |
| 174 | * cgroups with bigger numbers are newer than those with smaller numbers. |
| 175 | * Also, as csses are always appended to the parent's ->children list, it |
| 176 | * guarantees that sibling csses are always sorted in the ascending serial |
| 177 | * number order on the list. Protected by cgroup_mutex. |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 178 | */ |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 179 | static u64 css_serial_nr_next = 1; |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 180 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 181 | /* This flag indicates whether tasks in the fork and exit paths should |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 182 | * check for fork/exit handlers to call. This avoids us having to do |
| 183 | * extra work in the fork/exit path if none of the subsystems need to |
| 184 | * be called. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 185 | */ |
Li Zefan | 8947f9d | 2008-07-25 01:46:56 -0700 | [diff] [blame] | 186 | static int need_forkexit_callback __read_mostly; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 187 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 188 | static struct cftype cgroup_dfl_base_files[]; |
| 189 | static struct cftype cgroup_legacy_base_files[]; |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 190 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 191 | static int rebind_subsystems(struct cgroup_root *dst_root, |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 192 | unsigned long ss_mask); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 193 | static int cgroup_destroy_locked(struct cgroup *cgrp); |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 194 | static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss, |
| 195 | bool visible); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 196 | static void css_release(struct percpu_ref *ref); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 197 | static void kill_css(struct cgroup_subsys_state *css); |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 198 | static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[], |
| 199 | bool is_add); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 200 | |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 201 | /* IDR wrappers which synchronize using cgroup_idr_lock */ |
| 202 | static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end, |
| 203 | gfp_t gfp_mask) |
| 204 | { |
| 205 | int ret; |
| 206 | |
| 207 | idr_preload(gfp_mask); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 208 | spin_lock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 209 | ret = idr_alloc(idr, ptr, start, end, gfp_mask); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 210 | spin_unlock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 211 | idr_preload_end(); |
| 212 | return ret; |
| 213 | } |
| 214 | |
| 215 | static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id) |
| 216 | { |
| 217 | void *ret; |
| 218 | |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 219 | spin_lock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 220 | ret = idr_replace(idr, ptr, id); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 221 | spin_unlock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 222 | return ret; |
| 223 | } |
| 224 | |
| 225 | static void cgroup_idr_remove(struct idr *idr, int id) |
| 226 | { |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 227 | spin_lock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 228 | idr_remove(idr, id); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 229 | spin_unlock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 230 | } |
| 231 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 232 | static struct cgroup *cgroup_parent(struct cgroup *cgrp) |
| 233 | { |
| 234 | struct cgroup_subsys_state *parent_css = cgrp->self.parent; |
| 235 | |
| 236 | if (parent_css) |
| 237 | return container_of(parent_css, struct cgroup, self); |
| 238 | return NULL; |
| 239 | } |
| 240 | |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 241 | /** |
| 242 | * cgroup_css - obtain a cgroup's css for the specified subsystem |
| 243 | * @cgrp: the cgroup of interest |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 244 | * @ss: the subsystem of interest (%NULL returns @cgrp->self) |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 245 | * |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 246 | * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This |
| 247 | * function must be called either under cgroup_mutex or rcu_read_lock() and |
| 248 | * the caller is responsible for pinning the returned css if it wants to |
| 249 | * keep accessing it outside the said locks. This function may return |
| 250 | * %NULL if @cgrp doesn't have @subsys_id enabled. |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 251 | */ |
| 252 | static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp, |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 253 | struct cgroup_subsys *ss) |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 254 | { |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 255 | if (ss) |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 256 | return rcu_dereference_check(cgrp->subsys[ss->id], |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 257 | lockdep_is_held(&cgroup_mutex)); |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 258 | else |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 259 | return &cgrp->self; |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 260 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 261 | |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 262 | /** |
| 263 | * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem |
| 264 | * @cgrp: the cgroup of interest |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 265 | * @ss: the subsystem of interest (%NULL returns @cgrp->self) |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 266 | * |
Chen Hanxiao | d0f702e | 2015-04-23 07:57:33 -0400 | [diff] [blame] | 267 | * Similar to cgroup_css() but returns the effective css, which is defined |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 268 | * as the matching css of the nearest ancestor including self which has @ss |
| 269 | * enabled. If @ss is associated with the hierarchy @cgrp is on, this |
| 270 | * function is guaranteed to return non-NULL css. |
| 271 | */ |
| 272 | static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp, |
| 273 | struct cgroup_subsys *ss) |
| 274 | { |
| 275 | lockdep_assert_held(&cgroup_mutex); |
| 276 | |
| 277 | if (!ss) |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 278 | return &cgrp->self; |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 279 | |
| 280 | if (!(cgrp->root->subsys_mask & (1 << ss->id))) |
| 281 | return NULL; |
| 282 | |
Tejun Heo | eeecbd1 | 2014-11-18 02:49:52 -0500 | [diff] [blame] | 283 | /* |
| 284 | * This function is used while updating css associations and thus |
| 285 | * can't test the csses directly. Use ->child_subsys_mask. |
| 286 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 287 | while (cgroup_parent(cgrp) && |
| 288 | !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id))) |
| 289 | cgrp = cgroup_parent(cgrp); |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 290 | |
| 291 | return cgroup_css(cgrp, ss); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 292 | } |
| 293 | |
Tejun Heo | eeecbd1 | 2014-11-18 02:49:52 -0500 | [diff] [blame] | 294 | /** |
| 295 | * cgroup_get_e_css - get a cgroup's effective css for the specified subsystem |
| 296 | * @cgrp: the cgroup of interest |
| 297 | * @ss: the subsystem of interest |
| 298 | * |
| 299 | * Find and get the effective css of @cgrp for @ss. The effective css is |
| 300 | * defined as the matching css of the nearest ancestor including self which |
| 301 | * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on, |
| 302 | * the root css is returned, so this function always returns a valid css. |
| 303 | * The returned css must be put using css_put(). |
| 304 | */ |
| 305 | struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgrp, |
| 306 | struct cgroup_subsys *ss) |
| 307 | { |
| 308 | struct cgroup_subsys_state *css; |
| 309 | |
| 310 | rcu_read_lock(); |
| 311 | |
| 312 | do { |
| 313 | css = cgroup_css(cgrp, ss); |
| 314 | |
| 315 | if (css && css_tryget_online(css)) |
| 316 | goto out_unlock; |
| 317 | cgrp = cgroup_parent(cgrp); |
| 318 | } while (cgrp); |
| 319 | |
| 320 | css = init_css_set.subsys[ss->id]; |
| 321 | css_get(css); |
| 322 | out_unlock: |
| 323 | rcu_read_unlock(); |
| 324 | return css; |
| 325 | } |
| 326 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 327 | /* convenient tests for these bits */ |
Tejun Heo | 54766d4 | 2013-06-12 21:04:53 -0700 | [diff] [blame] | 328 | static inline bool cgroup_is_dead(const struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 329 | { |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 330 | return !(cgrp->self.flags & CSS_ONLINE); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 331 | } |
| 332 | |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 333 | struct cgroup_subsys_state *of_css(struct kernfs_open_file *of) |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 334 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 335 | struct cgroup *cgrp = of->kn->parent->priv; |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 336 | struct cftype *cft = of_cft(of); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 337 | |
| 338 | /* |
| 339 | * This is open and unprotected implementation of cgroup_css(). |
| 340 | * seq_css() is only called from a kernfs file operation which has |
| 341 | * an active reference on the file. Because all the subsystem |
| 342 | * files are drained before a css is disassociated with a cgroup, |
| 343 | * the matching css from the cgroup's subsys table is guaranteed to |
| 344 | * be and stay valid until the enclosing operation is complete. |
| 345 | */ |
| 346 | if (cft->ss) |
| 347 | return rcu_dereference_raw(cgrp->subsys[cft->ss->id]); |
| 348 | else |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 349 | return &cgrp->self; |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 350 | } |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 351 | EXPORT_SYMBOL_GPL(of_css); |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 352 | |
Li Zefan | 78574cf | 2013-04-08 19:00:38 -0700 | [diff] [blame] | 353 | /** |
| 354 | * cgroup_is_descendant - test ancestry |
| 355 | * @cgrp: the cgroup to be tested |
| 356 | * @ancestor: possible ancestor of @cgrp |
| 357 | * |
| 358 | * Test whether @cgrp is a descendant of @ancestor. It also returns %true |
| 359 | * if @cgrp == @ancestor. This function is safe to call as long as @cgrp |
| 360 | * and @ancestor are accessible. |
| 361 | */ |
| 362 | bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor) |
| 363 | { |
| 364 | while (cgrp) { |
| 365 | if (cgrp == ancestor) |
| 366 | return true; |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 367 | cgrp = cgroup_parent(cgrp); |
Li Zefan | 78574cf | 2013-04-08 19:00:38 -0700 | [diff] [blame] | 368 | } |
| 369 | return false; |
| 370 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 371 | |
Adrian Bunk | e9685a0 | 2008-02-07 00:13:46 -0800 | [diff] [blame] | 372 | static int notify_on_release(const struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 373 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 374 | return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 375 | } |
| 376 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 377 | /** |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 378 | * for_each_css - iterate all css's of a cgroup |
| 379 | * @css: the iteration cursor |
| 380 | * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end |
| 381 | * @cgrp: the target cgroup to iterate css's of |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 382 | * |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 383 | * Should be called under cgroup_[tree_]mutex. |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 384 | */ |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 385 | #define for_each_css(css, ssid, cgrp) \ |
| 386 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \ |
| 387 | if (!((css) = rcu_dereference_check( \ |
| 388 | (cgrp)->subsys[(ssid)], \ |
| 389 | lockdep_is_held(&cgroup_mutex)))) { } \ |
| 390 | else |
| 391 | |
| 392 | /** |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 393 | * for_each_e_css - iterate all effective css's of a cgroup |
| 394 | * @css: the iteration cursor |
| 395 | * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end |
| 396 | * @cgrp: the target cgroup to iterate css's of |
| 397 | * |
| 398 | * Should be called under cgroup_[tree_]mutex. |
| 399 | */ |
| 400 | #define for_each_e_css(css, ssid, cgrp) \ |
| 401 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \ |
| 402 | if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \ |
| 403 | ; \ |
| 404 | else |
| 405 | |
| 406 | /** |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 407 | * for_each_subsys - iterate all enabled cgroup subsystems |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 408 | * @ss: the iteration cursor |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 409 | * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 410 | */ |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 411 | #define for_each_subsys(ss, ssid) \ |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 412 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \ |
| 413 | (((ss) = cgroup_subsys[ssid]) || true); (ssid)++) |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 414 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 415 | /* iterate across the hierarchies */ |
| 416 | #define for_each_root(root) \ |
Tejun Heo | 5549c49 | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 417 | list_for_each_entry((root), &cgroup_roots, root_list) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 418 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 419 | /* iterate over child cgrps, lock should be held throughout iteration */ |
| 420 | #define cgroup_for_each_live_child(child, cgrp) \ |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 421 | list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \ |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 422 | if (({ lockdep_assert_held(&cgroup_mutex); \ |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 423 | cgroup_is_dead(child); })) \ |
| 424 | ; \ |
| 425 | else |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 426 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 427 | static void cgroup_release_agent(struct work_struct *work); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 428 | static void check_for_release(struct cgroup *cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 429 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 430 | /* |
| 431 | * A cgroup can be associated with multiple css_sets as different tasks may |
| 432 | * belong to different cgroups on different hierarchies. In the other |
| 433 | * direction, a css_set is naturally associated with multiple cgroups. |
| 434 | * This M:N relationship is represented by the following link structure |
| 435 | * which exists for each association and allows traversing the associations |
| 436 | * from both sides. |
| 437 | */ |
| 438 | struct cgrp_cset_link { |
| 439 | /* the cgroup and css_set this link associates */ |
| 440 | struct cgroup *cgrp; |
| 441 | struct css_set *cset; |
| 442 | |
| 443 | /* list of cgrp_cset_links anchored at cgrp->cset_links */ |
| 444 | struct list_head cset_link; |
| 445 | |
| 446 | /* list of cgrp_cset_links anchored at css_set->cgrp_links */ |
| 447 | struct list_head cgrp_link; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 448 | }; |
| 449 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 450 | /* |
| 451 | * 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] | 452 | * hierarchies being mounted. It contains a pointer to the root state |
| 453 | * for each subsystem. Also used to anchor the list of css_sets. Not |
| 454 | * reference-counted, to improve performance when child cgroups |
| 455 | * haven't been created. |
| 456 | */ |
Tejun Heo | 5024ae2 | 2014-05-07 21:31:17 -0400 | [diff] [blame] | 457 | struct css_set init_css_set = { |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 458 | .refcount = ATOMIC_INIT(1), |
| 459 | .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links), |
| 460 | .tasks = LIST_HEAD_INIT(init_css_set.tasks), |
| 461 | .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks), |
| 462 | .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node), |
| 463 | .mg_node = LIST_HEAD_INIT(init_css_set.mg_node), |
| 464 | }; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 465 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 466 | static int css_set_count = 1; /* 1 for init_css_set */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 467 | |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 468 | /** |
| 469 | * cgroup_update_populated - updated populated count of a cgroup |
| 470 | * @cgrp: the target cgroup |
| 471 | * @populated: inc or dec populated count |
| 472 | * |
| 473 | * @cgrp is either getting the first task (css_set) or losing the last. |
| 474 | * Update @cgrp->populated_cnt accordingly. The count is propagated |
| 475 | * towards root so that a given cgroup's populated_cnt is zero iff the |
| 476 | * cgroup and all its descendants are empty. |
| 477 | * |
| 478 | * @cgrp's interface file "cgroup.populated" is zero if |
| 479 | * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt |
| 480 | * changes from or to zero, userland is notified that the content of the |
| 481 | * interface file has changed. This can be used to detect when @cgrp and |
| 482 | * its descendants become populated or empty. |
| 483 | */ |
| 484 | static void cgroup_update_populated(struct cgroup *cgrp, bool populated) |
| 485 | { |
| 486 | lockdep_assert_held(&css_set_rwsem); |
| 487 | |
| 488 | do { |
| 489 | bool trigger; |
| 490 | |
| 491 | if (populated) |
| 492 | trigger = !cgrp->populated_cnt++; |
| 493 | else |
| 494 | trigger = !--cgrp->populated_cnt; |
| 495 | |
| 496 | if (!trigger) |
| 497 | break; |
| 498 | |
| 499 | if (cgrp->populated_kn) |
| 500 | kernfs_notify(cgrp->populated_kn); |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 501 | cgrp = cgroup_parent(cgrp); |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 502 | } while (cgrp); |
| 503 | } |
| 504 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 505 | /* |
| 506 | * hash table for cgroup groups. This improves the performance to find |
| 507 | * an existing css_set. This hash doesn't (currently) take into |
| 508 | * account cgroups in empty hierarchies. |
| 509 | */ |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 510 | #define CSS_SET_HASH_BITS 7 |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 511 | static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 512 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 513 | static unsigned long css_set_hash(struct cgroup_subsys_state *css[]) |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 514 | { |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 515 | unsigned long key = 0UL; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 516 | struct cgroup_subsys *ss; |
| 517 | int i; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 518 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 519 | for_each_subsys(ss, i) |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 520 | key += (unsigned long)css[i]; |
| 521 | key = (key >> 16) ^ key; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 522 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 523 | return key; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 524 | } |
| 525 | |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 526 | static void put_css_set_locked(struct css_set *cset) |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 527 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 528 | struct cgrp_cset_link *link, *tmp_link; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 529 | struct cgroup_subsys *ss; |
| 530 | int ssid; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 531 | |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 532 | lockdep_assert_held(&css_set_rwsem); |
| 533 | |
| 534 | if (!atomic_dec_and_test(&cset->refcount)) |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 535 | return; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 536 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 537 | /* This css_set is dead. unlink it and release cgroup refcounts */ |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 538 | for_each_subsys(ss, ssid) |
| 539 | list_del(&cset->e_cset_node[ssid]); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 540 | hash_del(&cset->hlist); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 541 | css_set_count--; |
| 542 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 543 | 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] | 544 | struct cgroup *cgrp = link->cgrp; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 545 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 546 | list_del(&link->cset_link); |
| 547 | list_del(&link->cgrp_link); |
Li Zefan | 71b5707 | 2013-01-24 14:43:28 +0800 | [diff] [blame] | 548 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 549 | /* @cgrp can't go away while we're holding css_set_rwsem */ |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 550 | if (list_empty(&cgrp->cset_links)) { |
| 551 | cgroup_update_populated(cgrp, false); |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 552 | check_for_release(cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 553 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 554 | |
| 555 | kfree(link); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 556 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 557 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 558 | kfree_rcu(cset, rcu_head); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 559 | } |
| 560 | |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 561 | static void put_css_set(struct css_set *cset) |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 562 | { |
| 563 | /* |
| 564 | * Ensure that the refcount doesn't hit zero while any readers |
| 565 | * can see it. Similar to atomic_dec_and_lock(), but for an |
| 566 | * rwlock |
| 567 | */ |
| 568 | if (atomic_add_unless(&cset->refcount, -1, 1)) |
| 569 | return; |
| 570 | |
| 571 | down_write(&css_set_rwsem); |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 572 | put_css_set_locked(cset); |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 573 | up_write(&css_set_rwsem); |
| 574 | } |
| 575 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 576 | /* |
| 577 | * refcounted get/put for css_set objects |
| 578 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 579 | static inline void get_css_set(struct css_set *cset) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 580 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 581 | atomic_inc(&cset->refcount); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 582 | } |
| 583 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 584 | /** |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 585 | * compare_css_sets - helper function for find_existing_css_set(). |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 586 | * @cset: candidate css_set being tested |
| 587 | * @old_cset: existing css_set for a task |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 588 | * @new_cgrp: cgroup that's being entered by the task |
| 589 | * @template: desired set of css pointers in css_set (pre-calculated) |
| 590 | * |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 591 | * Returns true if "cset" matches "old_cset" except for the hierarchy |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 592 | * which "new_cgrp" belongs to, for which it should match "new_cgrp". |
| 593 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 594 | static bool compare_css_sets(struct css_set *cset, |
| 595 | struct css_set *old_cset, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 596 | struct cgroup *new_cgrp, |
| 597 | struct cgroup_subsys_state *template[]) |
| 598 | { |
| 599 | struct list_head *l1, *l2; |
| 600 | |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 601 | /* |
| 602 | * On the default hierarchy, there can be csets which are |
| 603 | * associated with the same set of cgroups but different csses. |
| 604 | * Let's first ensure that csses match. |
| 605 | */ |
| 606 | if (memcmp(template, cset->subsys, sizeof(cset->subsys))) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 607 | return false; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 608 | |
| 609 | /* |
| 610 | * Compare cgroup pointers in order to distinguish between |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 611 | * different cgroups in hierarchies. As different cgroups may |
| 612 | * share the same effective css, this comparison is always |
| 613 | * necessary. |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 614 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 615 | l1 = &cset->cgrp_links; |
| 616 | l2 = &old_cset->cgrp_links; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 617 | while (1) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 618 | struct cgrp_cset_link *link1, *link2; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 619 | struct cgroup *cgrp1, *cgrp2; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 620 | |
| 621 | l1 = l1->next; |
| 622 | l2 = l2->next; |
| 623 | /* See if we reached the end - both lists are equal length. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 624 | if (l1 == &cset->cgrp_links) { |
| 625 | BUG_ON(l2 != &old_cset->cgrp_links); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 626 | break; |
| 627 | } else { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 628 | BUG_ON(l2 == &old_cset->cgrp_links); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 629 | } |
| 630 | /* Locate the cgroups associated with these links. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 631 | link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link); |
| 632 | link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link); |
| 633 | cgrp1 = link1->cgrp; |
| 634 | cgrp2 = link2->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 635 | /* Hierarchies should be linked in the same order. */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 636 | BUG_ON(cgrp1->root != cgrp2->root); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 637 | |
| 638 | /* |
| 639 | * If this hierarchy is the hierarchy of the cgroup |
| 640 | * that's changing, then we need to check that this |
| 641 | * css_set points to the new cgroup; if it's any other |
| 642 | * hierarchy, then this css_set should point to the |
| 643 | * same cgroup as the old css_set. |
| 644 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 645 | if (cgrp1->root == new_cgrp->root) { |
| 646 | if (cgrp1 != new_cgrp) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 647 | return false; |
| 648 | } else { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 649 | if (cgrp1 != cgrp2) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 650 | return false; |
| 651 | } |
| 652 | } |
| 653 | return true; |
| 654 | } |
| 655 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 656 | /** |
| 657 | * find_existing_css_set - init css array and find the matching css_set |
| 658 | * @old_cset: the css_set that we're using before the cgroup transition |
| 659 | * @cgrp: the cgroup that we're moving into |
| 660 | * @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] | 661 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 662 | static struct css_set *find_existing_css_set(struct css_set *old_cset, |
| 663 | struct cgroup *cgrp, |
| 664 | struct cgroup_subsys_state *template[]) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 665 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 666 | struct cgroup_root *root = cgrp->root; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 667 | struct cgroup_subsys *ss; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 668 | struct css_set *cset; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 669 | unsigned long key; |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 670 | int i; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 671 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 672 | /* |
| 673 | * Build the set of subsystem state objects that we want to see in the |
| 674 | * new css_set. while subsystems can change globally, the entries here |
| 675 | * won't change, so no need for locking. |
| 676 | */ |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 677 | for_each_subsys(ss, i) { |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 678 | if (root->subsys_mask & (1UL << i)) { |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 679 | /* |
| 680 | * @ss is in this hierarchy, so we want the |
| 681 | * effective css from @cgrp. |
| 682 | */ |
| 683 | template[i] = cgroup_e_css(cgrp, ss); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 684 | } else { |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 685 | /* |
| 686 | * @ss is not in this hierarchy, so we don't want |
| 687 | * to change the css. |
| 688 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 689 | template[i] = old_cset->subsys[i]; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 690 | } |
| 691 | } |
| 692 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 693 | key = css_set_hash(template); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 694 | hash_for_each_possible(css_set_table, cset, hlist, key) { |
| 695 | if (!compare_css_sets(cset, old_cset, cgrp, template)) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 696 | continue; |
| 697 | |
| 698 | /* This css_set matches what we need */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 699 | return cset; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 700 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 701 | |
| 702 | /* No existing cgroup group matched */ |
| 703 | return NULL; |
| 704 | } |
| 705 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 706 | static void free_cgrp_cset_links(struct list_head *links_to_free) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 707 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 708 | struct cgrp_cset_link *link, *tmp_link; |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 709 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 710 | list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) { |
| 711 | list_del(&link->cset_link); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 712 | kfree(link); |
| 713 | } |
| 714 | } |
| 715 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 716 | /** |
| 717 | * allocate_cgrp_cset_links - allocate cgrp_cset_links |
| 718 | * @count: the number of links to allocate |
| 719 | * @tmp_links: list_head the allocated links are put on |
| 720 | * |
| 721 | * Allocate @count cgrp_cset_link structures and chain them on @tmp_links |
| 722 | * through ->cset_link. Returns 0 on success or -errno. |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 723 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 724 | 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] | 725 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 726 | struct cgrp_cset_link *link; |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 727 | int i; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 728 | |
| 729 | INIT_LIST_HEAD(tmp_links); |
| 730 | |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 731 | for (i = 0; i < count; i++) { |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 732 | link = kzalloc(sizeof(*link), GFP_KERNEL); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 733 | if (!link) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 734 | free_cgrp_cset_links(tmp_links); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 735 | return -ENOMEM; |
| 736 | } |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 737 | list_add(&link->cset_link, tmp_links); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 738 | } |
| 739 | return 0; |
| 740 | } |
| 741 | |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 742 | /** |
| 743 | * 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] | 744 | * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links() |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 745 | * @cset: the css_set to be linked |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 746 | * @cgrp: the destination cgroup |
| 747 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 748 | static void link_css_set(struct list_head *tmp_links, struct css_set *cset, |
| 749 | struct cgroup *cgrp) |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 750 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 751 | struct cgrp_cset_link *link; |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 752 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 753 | BUG_ON(list_empty(tmp_links)); |
Tejun Heo | 6803c00 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 754 | |
| 755 | if (cgroup_on_dfl(cgrp)) |
| 756 | cset->dfl_cgrp = cgrp; |
| 757 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 758 | link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link); |
| 759 | link->cset = cset; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 760 | link->cgrp = cgrp; |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 761 | |
| 762 | if (list_empty(&cgrp->cset_links)) |
| 763 | cgroup_update_populated(cgrp, true); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 764 | list_move(&link->cset_link, &cgrp->cset_links); |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 765 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 766 | /* |
| 767 | * Always add links to the tail of the list so that the list |
| 768 | * is sorted by order of hierarchy creation |
| 769 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 770 | list_add_tail(&link->cgrp_link, &cset->cgrp_links); |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 771 | } |
| 772 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 773 | /** |
| 774 | * find_css_set - return a new css_set with one cgroup updated |
| 775 | * @old_cset: the baseline css_set |
| 776 | * @cgrp: the cgroup to be updated |
| 777 | * |
| 778 | * Return a new css_set that's equivalent to @old_cset, but with @cgrp |
| 779 | * substituted into the appropriate hierarchy. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 780 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 781 | static struct css_set *find_css_set(struct css_set *old_cset, |
| 782 | struct cgroup *cgrp) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 783 | { |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 784 | struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { }; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 785 | struct css_set *cset; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 786 | struct list_head tmp_links; |
| 787 | struct cgrp_cset_link *link; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 788 | struct cgroup_subsys *ss; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 789 | unsigned long key; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 790 | int ssid; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 791 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 792 | lockdep_assert_held(&cgroup_mutex); |
| 793 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 794 | /* First see if we already have a cgroup group that matches |
| 795 | * the desired set */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 796 | down_read(&css_set_rwsem); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 797 | cset = find_existing_css_set(old_cset, cgrp, template); |
| 798 | if (cset) |
| 799 | get_css_set(cset); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 800 | up_read(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 801 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 802 | if (cset) |
| 803 | return cset; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 804 | |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 805 | cset = kzalloc(sizeof(*cset), GFP_KERNEL); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 806 | if (!cset) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 807 | return NULL; |
| 808 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 809 | /* Allocate all the cgrp_cset_link objects that we'll need */ |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 810 | if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 811 | kfree(cset); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 812 | return NULL; |
| 813 | } |
| 814 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 815 | atomic_set(&cset->refcount, 1); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 816 | INIT_LIST_HEAD(&cset->cgrp_links); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 817 | INIT_LIST_HEAD(&cset->tasks); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 818 | INIT_LIST_HEAD(&cset->mg_tasks); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 819 | INIT_LIST_HEAD(&cset->mg_preload_node); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 820 | INIT_LIST_HEAD(&cset->mg_node); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 821 | INIT_HLIST_NODE(&cset->hlist); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 822 | |
| 823 | /* Copy the set of subsystem state objects generated in |
| 824 | * find_existing_css_set() */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 825 | memcpy(cset->subsys, template, sizeof(cset->subsys)); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 826 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 827 | down_write(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 828 | /* Add reference counts and links from the new css_set. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 829 | list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 830 | struct cgroup *c = link->cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 831 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 832 | if (c->root == cgrp->root) |
| 833 | c = cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 834 | link_css_set(&tmp_links, cset, c); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 835 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 836 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 837 | BUG_ON(!list_empty(&tmp_links)); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 838 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 839 | css_set_count++; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 840 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 841 | /* Add @cset to the hash table */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 842 | key = css_set_hash(cset->subsys); |
| 843 | hash_add(css_set_table, &cset->hlist, key); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 844 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 845 | for_each_subsys(ss, ssid) |
| 846 | list_add_tail(&cset->e_cset_node[ssid], |
| 847 | &cset->subsys[ssid]->cgroup->e_csets[ssid]); |
| 848 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 849 | up_write(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 850 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 851 | return cset; |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 852 | } |
| 853 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 854 | 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] | 855 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 856 | struct cgroup *root_cgrp = kf_root->kn->priv; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 857 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 858 | return root_cgrp->root; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 859 | } |
| 860 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 861 | static int cgroup_init_root_id(struct cgroup_root *root) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 862 | { |
| 863 | int id; |
| 864 | |
| 865 | lockdep_assert_held(&cgroup_mutex); |
| 866 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 867 | id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 868 | if (id < 0) |
| 869 | return id; |
| 870 | |
| 871 | root->hierarchy_id = id; |
| 872 | return 0; |
| 873 | } |
| 874 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 875 | static void cgroup_exit_root_id(struct cgroup_root *root) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 876 | { |
| 877 | lockdep_assert_held(&cgroup_mutex); |
| 878 | |
| 879 | if (root->hierarchy_id) { |
| 880 | idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id); |
| 881 | root->hierarchy_id = 0; |
| 882 | } |
| 883 | } |
| 884 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 885 | static void cgroup_free_root(struct cgroup_root *root) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 886 | { |
| 887 | if (root) { |
Chen Hanxiao | d0f702e | 2015-04-23 07:57:33 -0400 | [diff] [blame] | 888 | /* hierarchy ID should already have been released */ |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 889 | WARN_ON_ONCE(root->hierarchy_id); |
| 890 | |
| 891 | idr_destroy(&root->cgroup_idr); |
| 892 | kfree(root); |
| 893 | } |
| 894 | } |
| 895 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 896 | static void cgroup_destroy_root(struct cgroup_root *root) |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 897 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 898 | struct cgroup *cgrp = &root->cgrp; |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 899 | struct cgrp_cset_link *link, *tmp_link; |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 900 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 901 | mutex_lock(&cgroup_mutex); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 902 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 903 | BUG_ON(atomic_read(&root->nr_cgrps)); |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 904 | BUG_ON(!list_empty(&cgrp->self.children)); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 905 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 906 | /* Rebind all subsystems back to the default hierarchy */ |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 907 | rebind_subsystems(&cgrp_dfl_root, root->subsys_mask); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 908 | |
| 909 | /* |
| 910 | * Release all the links from cset_links to this hierarchy's |
| 911 | * root cgroup |
| 912 | */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 913 | down_write(&css_set_rwsem); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 914 | |
| 915 | list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) { |
| 916 | list_del(&link->cset_link); |
| 917 | list_del(&link->cgrp_link); |
| 918 | kfree(link); |
| 919 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 920 | up_write(&css_set_rwsem); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 921 | |
| 922 | if (!list_empty(&root->root_list)) { |
| 923 | list_del(&root->root_list); |
| 924 | cgroup_root_count--; |
| 925 | } |
| 926 | |
| 927 | cgroup_exit_root_id(root); |
| 928 | |
| 929 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 930 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 931 | kernfs_destroy_root(root->kf_root); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 932 | cgroup_free_root(root); |
| 933 | } |
| 934 | |
Tejun Heo | ceb6a08 | 2014-02-25 10:04:02 -0500 | [diff] [blame] | 935 | /* look up cgroup associated with given css_set on the specified hierarchy */ |
| 936 | static struct cgroup *cset_cgroup_from_root(struct css_set *cset, |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 937 | struct cgroup_root *root) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 938 | { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 939 | struct cgroup *res = NULL; |
| 940 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 941 | lockdep_assert_held(&cgroup_mutex); |
| 942 | lockdep_assert_held(&css_set_rwsem); |
| 943 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 944 | if (cset == &init_css_set) { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 945 | res = &root->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 946 | } else { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 947 | struct cgrp_cset_link *link; |
| 948 | |
| 949 | list_for_each_entry(link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 950 | struct cgroup *c = link->cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 951 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 952 | if (c->root == root) { |
| 953 | res = c; |
| 954 | break; |
| 955 | } |
| 956 | } |
| 957 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 958 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 959 | BUG_ON(!res); |
| 960 | return res; |
| 961 | } |
| 962 | |
| 963 | /* |
Tejun Heo | ceb6a08 | 2014-02-25 10:04:02 -0500 | [diff] [blame] | 964 | * Return the cgroup for "task" from the given hierarchy. Must be |
| 965 | * called with cgroup_mutex and css_set_rwsem held. |
| 966 | */ |
| 967 | static struct cgroup *task_cgroup_from_root(struct task_struct *task, |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 968 | struct cgroup_root *root) |
Tejun Heo | ceb6a08 | 2014-02-25 10:04:02 -0500 | [diff] [blame] | 969 | { |
| 970 | /* |
| 971 | * No need to lock the task - since we hold cgroup_mutex the |
| 972 | * task can't change groups, so the only thing that can happen |
| 973 | * is that it exits and its css is set back to init_css_set. |
| 974 | */ |
| 975 | return cset_cgroup_from_root(task_css_set(task), root); |
| 976 | } |
| 977 | |
| 978 | /* |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 979 | * A task must hold cgroup_mutex to modify cgroups. |
| 980 | * |
| 981 | * Any task can increment and decrement the count field without lock. |
| 982 | * So in general, code holding cgroup_mutex can't rely on the count |
| 983 | * field not changing. However, if the count goes to zero, then only |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 984 | * cgroup_attach_task() can increment it again. Because a count of zero |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 985 | * means that no tasks are currently attached, therefore there is no |
| 986 | * way a task attached to that cgroup can fork (the other way to |
| 987 | * increment the count). So code holding cgroup_mutex can safely |
| 988 | * assume that if the count is zero, it will stay zero. Similarly, if |
| 989 | * a task holds cgroup_mutex on a cgroup with zero count, it |
| 990 | * knows that the cgroup won't be removed, as cgroup_rmdir() |
| 991 | * needs that mutex. |
| 992 | * |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 993 | * A cgroup can only be deleted if both its 'count' of using tasks |
| 994 | * is zero, and its list of 'children' cgroups is empty. Since all |
| 995 | * 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] | 996 | * least one task in the system (init, pid == 1), therefore, root cgroup |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 997 | * 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] | 998 | * need a special hack to ensure that root cgroup cannot be deleted. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 999 | * |
| 1000 | * P.S. One more locking exception. RCU is used to guard the |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 1001 | * update of a tasks cgroup pointer by cgroup_attach_task() |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1002 | */ |
| 1003 | |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1004 | static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1005 | static struct kernfs_syscall_ops cgroup_kf_syscall_ops; |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 1006 | static const struct file_operations proc_cgroupstats_operations; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 1007 | |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1008 | static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft, |
| 1009 | char *buf) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1010 | { |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1011 | if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) && |
| 1012 | !(cgrp->root->flags & CGRP_ROOT_NOPREFIX)) |
| 1013 | snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s", |
| 1014 | cft->ss->name, cft->name); |
| 1015 | else |
| 1016 | strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX); |
| 1017 | return buf; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1018 | } |
| 1019 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1020 | /** |
| 1021 | * cgroup_file_mode - deduce file mode of a control file |
| 1022 | * @cft: the control file in question |
| 1023 | * |
| 1024 | * returns cft->mode if ->mode is not 0 |
| 1025 | * returns S_IRUGO|S_IWUSR if it has both a read and a write handler |
| 1026 | * returns S_IRUGO if it has only a read handler |
| 1027 | * returns S_IWUSR if it has only a write hander |
| 1028 | */ |
| 1029 | static umode_t cgroup_file_mode(const struct cftype *cft) |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 1030 | { |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1031 | umode_t mode = 0; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 1032 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1033 | if (cft->mode) |
| 1034 | return cft->mode; |
| 1035 | |
| 1036 | if (cft->read_u64 || cft->read_s64 || cft->seq_show) |
| 1037 | mode |= S_IRUGO; |
| 1038 | |
Tejun Heo | 6770c64 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1039 | if (cft->write_u64 || cft->write_s64 || cft->write) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1040 | mode |= S_IWUSR; |
| 1041 | |
| 1042 | return mode; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 1043 | } |
| 1044 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1045 | static void cgroup_get(struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1046 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1047 | WARN_ON_ONCE(cgroup_is_dead(cgrp)); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1048 | css_get(&cgrp->self); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1049 | } |
| 1050 | |
Li Zefan | aa32362 | 2014-09-04 14:43:38 +0800 | [diff] [blame] | 1051 | static bool cgroup_tryget(struct cgroup *cgrp) |
| 1052 | { |
| 1053 | return css_tryget(&cgrp->self); |
| 1054 | } |
| 1055 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1056 | static void cgroup_put(struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1057 | { |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1058 | css_put(&cgrp->self); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1059 | } |
| 1060 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1061 | /** |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1062 | * cgroup_calc_child_subsys_mask - calculate child_subsys_mask |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1063 | * @cgrp: the target cgroup |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1064 | * @subtree_control: the new subtree_control mask to consider |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1065 | * |
| 1066 | * On the default hierarchy, a subsystem may request other subsystems to be |
| 1067 | * enabled together through its ->depends_on mask. In such cases, more |
| 1068 | * subsystems than specified in "cgroup.subtree_control" may be enabled. |
| 1069 | * |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1070 | * This function calculates which subsystems need to be enabled if |
| 1071 | * @subtree_control is to be applied to @cgrp. The returned mask is always |
| 1072 | * a superset of @subtree_control and follows the usual hierarchy rules. |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1073 | */ |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1074 | static unsigned long cgroup_calc_child_subsys_mask(struct cgroup *cgrp, |
| 1075 | unsigned long subtree_control) |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1076 | { |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1077 | struct cgroup *parent = cgroup_parent(cgrp); |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1078 | unsigned long cur_ss_mask = subtree_control; |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1079 | struct cgroup_subsys *ss; |
| 1080 | int ssid; |
| 1081 | |
| 1082 | lockdep_assert_held(&cgroup_mutex); |
| 1083 | |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1084 | if (!cgroup_on_dfl(cgrp)) |
| 1085 | return cur_ss_mask; |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1086 | |
| 1087 | while (true) { |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1088 | unsigned long new_ss_mask = cur_ss_mask; |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1089 | |
| 1090 | for_each_subsys(ss, ssid) |
| 1091 | if (cur_ss_mask & (1 << ssid)) |
| 1092 | new_ss_mask |= ss->depends_on; |
| 1093 | |
| 1094 | /* |
| 1095 | * Mask out subsystems which aren't available. This can |
| 1096 | * happen only if some depended-upon subsystems were bound |
| 1097 | * to non-default hierarchies. |
| 1098 | */ |
| 1099 | if (parent) |
| 1100 | new_ss_mask &= parent->child_subsys_mask; |
| 1101 | else |
| 1102 | new_ss_mask &= cgrp->root->subsys_mask; |
| 1103 | |
| 1104 | if (new_ss_mask == cur_ss_mask) |
| 1105 | break; |
| 1106 | cur_ss_mask = new_ss_mask; |
| 1107 | } |
| 1108 | |
Tejun Heo | 0f060de | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 1109 | return cur_ss_mask; |
| 1110 | } |
| 1111 | |
| 1112 | /** |
| 1113 | * cgroup_refresh_child_subsys_mask - update child_subsys_mask |
| 1114 | * @cgrp: the target cgroup |
| 1115 | * |
| 1116 | * Update @cgrp->child_subsys_mask according to the current |
| 1117 | * @cgrp->subtree_control using cgroup_calc_child_subsys_mask(). |
| 1118 | */ |
| 1119 | static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp) |
| 1120 | { |
| 1121 | cgrp->child_subsys_mask = |
| 1122 | cgroup_calc_child_subsys_mask(cgrp, cgrp->subtree_control); |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1123 | } |
| 1124 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1125 | /** |
| 1126 | * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods |
| 1127 | * @kn: the kernfs_node being serviced |
| 1128 | * |
| 1129 | * This helper undoes cgroup_kn_lock_live() and should be invoked before |
| 1130 | * the method finishes if locking succeeded. Note that once this function |
| 1131 | * returns the cgroup returned by cgroup_kn_lock_live() may become |
| 1132 | * inaccessible any time. If the caller intends to continue to access the |
| 1133 | * cgroup, it should pin it before invoking this function. |
| 1134 | */ |
| 1135 | static void cgroup_kn_unlock(struct kernfs_node *kn) |
| 1136 | { |
| 1137 | struct cgroup *cgrp; |
| 1138 | |
| 1139 | if (kernfs_type(kn) == KERNFS_DIR) |
| 1140 | cgrp = kn->priv; |
| 1141 | else |
| 1142 | cgrp = kn->parent->priv; |
| 1143 | |
| 1144 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1145 | |
| 1146 | kernfs_unbreak_active_protection(kn); |
| 1147 | cgroup_put(cgrp); |
| 1148 | } |
| 1149 | |
| 1150 | /** |
| 1151 | * cgroup_kn_lock_live - locking helper for cgroup kernfs methods |
| 1152 | * @kn: the kernfs_node being serviced |
| 1153 | * |
| 1154 | * This helper is to be used by a cgroup kernfs method currently servicing |
| 1155 | * @kn. It breaks the active protection, performs cgroup locking and |
| 1156 | * verifies that the associated cgroup is alive. Returns the cgroup if |
| 1157 | * alive; otherwise, %NULL. A successful return should be undone by a |
| 1158 | * matching cgroup_kn_unlock() invocation. |
| 1159 | * |
| 1160 | * Any cgroup kernfs method implementation which requires locking the |
| 1161 | * associated cgroup should use this helper. It avoids nesting cgroup |
| 1162 | * locking under kernfs active protection and allows all kernfs operations |
| 1163 | * including self-removal. |
| 1164 | */ |
| 1165 | static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn) |
| 1166 | { |
| 1167 | struct cgroup *cgrp; |
| 1168 | |
| 1169 | if (kernfs_type(kn) == KERNFS_DIR) |
| 1170 | cgrp = kn->priv; |
| 1171 | else |
| 1172 | cgrp = kn->parent->priv; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1173 | |
| 1174 | /* |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 1175 | * We're gonna grab cgroup_mutex which nests outside kernfs |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1176 | * active_ref. cgroup liveliness check alone provides enough |
| 1177 | * protection against removal. Ensure @cgrp stays accessible and |
| 1178 | * break the active_ref protection. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1179 | */ |
Li Zefan | aa32362 | 2014-09-04 14:43:38 +0800 | [diff] [blame] | 1180 | if (!cgroup_tryget(cgrp)) |
| 1181 | return NULL; |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1182 | kernfs_break_active_protection(kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1183 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1184 | mutex_lock(&cgroup_mutex); |
| 1185 | |
| 1186 | if (!cgroup_is_dead(cgrp)) |
| 1187 | return cgrp; |
| 1188 | |
| 1189 | cgroup_kn_unlock(kn); |
| 1190 | return NULL; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1191 | } |
| 1192 | |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 1193 | static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1194 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1195 | char name[CGROUP_FILE_NAME_MAX]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1196 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 1197 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1198 | kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name)); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1199 | } |
| 1200 | |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1201 | /** |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 1202 | * cgroup_clear_dir - remove subsys files in a cgroup directory |
Tejun Heo | 8f89140 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 1203 | * @cgrp: target cgroup |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1204 | * @subsys_mask: mask of the subsystem ids whose files should be removed |
| 1205 | */ |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1206 | static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask) |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1207 | { |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1208 | struct cgroup_subsys *ss; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 1209 | int i; |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1210 | |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 1211 | for_each_subsys(ss, i) { |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 1212 | struct cftype *cfts; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 1213 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1214 | if (!(subsys_mask & (1 << i))) |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1215 | continue; |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 1216 | list_for_each_entry(cfts, &ss->cfts, node) |
| 1217 | cgroup_addrm_files(cgrp, cfts, false); |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1218 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1219 | } |
| 1220 | |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1221 | static int rebind_subsystems(struct cgroup_root *dst_root, |
| 1222 | unsigned long ss_mask) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1223 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1224 | struct cgroup_subsys *ss; |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1225 | unsigned long tmp_ss_mask; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1226 | int ssid, i, ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1227 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 1228 | lockdep_assert_held(&cgroup_mutex); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1229 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1230 | for_each_subsys(ss, ssid) { |
| 1231 | if (!(ss_mask & (1 << ssid))) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1232 | continue; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1233 | |
Tejun Heo | 7fd8c56 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1234 | /* if @ss has non-root csses attached to it, can't move */ |
| 1235 | if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss))) |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1236 | return -EBUSY; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1237 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1238 | /* can't move between two non-dummy roots either */ |
Tejun Heo | 7fd8c56 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1239 | if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root) |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1240 | return -EBUSY; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1241 | } |
| 1242 | |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 1243 | /* skip creating root files on dfl_root for inhibited subsystems */ |
| 1244 | tmp_ss_mask = ss_mask; |
| 1245 | if (dst_root == &cgrp_dfl_root) |
| 1246 | tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask; |
| 1247 | |
| 1248 | ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask); |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1249 | if (ret) { |
| 1250 | if (dst_root != &cgrp_dfl_root) |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1251 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1252 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1253 | /* |
| 1254 | * Rebinding back to the default root is not allowed to |
| 1255 | * fail. Using both default and non-default roots should |
| 1256 | * be rare. Moving subsystems back and forth even more so. |
| 1257 | * Just warn about it and continue. |
| 1258 | */ |
| 1259 | if (cgrp_dfl_root_visible) { |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1260 | pr_warn("failed to create files (%d) while rebinding 0x%lx to default root\n", |
Jianyu Zhan | a2a1f9e | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1261 | ret, ss_mask); |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1262 | 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] | 1263 | } |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1264 | } |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1265 | |
| 1266 | /* |
| 1267 | * Nothing can fail from this point on. Remove files for the |
| 1268 | * removed subsystems and rebind each subsystem. |
| 1269 | */ |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1270 | for_each_subsys(ss, ssid) |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1271 | if (ss_mask & (1 << ssid)) |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1272 | cgroup_clear_dir(&ss->root->cgrp, 1 << ssid); |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1273 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1274 | for_each_subsys(ss, ssid) { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1275 | struct cgroup_root *src_root; |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1276 | struct cgroup_subsys_state *css; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1277 | struct css_set *cset; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1278 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1279 | if (!(ss_mask & (1 << ssid))) |
| 1280 | continue; |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1281 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1282 | src_root = ss->root; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1283 | css = cgroup_css(&src_root->cgrp, ss); |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1284 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1285 | WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss)); |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1286 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1287 | RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL); |
| 1288 | rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css); |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1289 | ss->root = dst_root; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1290 | css->cgroup = &dst_root->cgrp; |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1291 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1292 | down_write(&css_set_rwsem); |
| 1293 | hash_for_each(css_set_table, i, cset, hlist) |
| 1294 | list_move_tail(&cset->e_cset_node[ss->id], |
| 1295 | &dst_root->cgrp.e_csets[ss->id]); |
| 1296 | up_write(&css_set_rwsem); |
| 1297 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1298 | src_root->subsys_mask &= ~(1 << ssid); |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1299 | src_root->cgrp.subtree_control &= ~(1 << ssid); |
| 1300 | cgroup_refresh_child_subsys_mask(&src_root->cgrp); |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1301 | |
Tejun Heo | bd53d61 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1302 | /* default hierarchy doesn't enable controllers by default */ |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1303 | dst_root->subsys_mask |= 1 << ssid; |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1304 | if (dst_root != &cgrp_dfl_root) { |
| 1305 | dst_root->cgrp.subtree_control |= 1 << ssid; |
| 1306 | cgroup_refresh_child_subsys_mask(&dst_root->cgrp); |
| 1307 | } |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1308 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1309 | if (ss->bind) |
| 1310 | ss->bind(css); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1311 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1312 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1313 | kernfs_activate(dst_root->cgrp.kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1314 | return 0; |
| 1315 | } |
| 1316 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1317 | static int cgroup_show_options(struct seq_file *seq, |
| 1318 | struct kernfs_root *kf_root) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1319 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1320 | struct cgroup_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1321 | struct cgroup_subsys *ss; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1322 | int ssid; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1323 | |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1324 | for_each_subsys(ss, ssid) |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1325 | if (root->subsys_mask & (1 << ssid)) |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1326 | seq_printf(seq, ",%s", ss->name); |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1327 | if (root->flags & CGRP_ROOT_NOPREFIX) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1328 | seq_puts(seq, ",noprefix"); |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1329 | if (root->flags & CGRP_ROOT_XATTR) |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1330 | seq_puts(seq, ",xattr"); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1331 | |
| 1332 | spin_lock(&release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1333 | if (strlen(root->release_agent_path)) |
| 1334 | seq_printf(seq, ",release_agent=%s", root->release_agent_path); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1335 | spin_unlock(&release_agent_path_lock); |
| 1336 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1337 | if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags)) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 1338 | seq_puts(seq, ",clone_children"); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1339 | if (strlen(root->name)) |
| 1340 | seq_printf(seq, ",name=%s", root->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1341 | return 0; |
| 1342 | } |
| 1343 | |
| 1344 | struct cgroup_sb_opts { |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1345 | unsigned long subsys_mask; |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1346 | unsigned int flags; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1347 | char *release_agent; |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1348 | bool cpuset_clone_children; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1349 | char *name; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1350 | /* User explicitly requested empty subsystem */ |
| 1351 | bool none; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1352 | }; |
| 1353 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1354 | static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1355 | { |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1356 | char *token, *o = data; |
| 1357 | bool all_ss = false, one_ss = false; |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1358 | unsigned long mask = -1UL; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1359 | struct cgroup_subsys *ss; |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1360 | int nr_opts = 0; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1361 | int i; |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1362 | |
| 1363 | #ifdef CONFIG_CPUSETS |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1364 | mask = ~(1U << cpuset_cgrp_id); |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1365 | #endif |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1366 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1367 | memset(opts, 0, sizeof(*opts)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1368 | |
| 1369 | while ((token = strsep(&o, ",")) != NULL) { |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1370 | nr_opts++; |
| 1371 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1372 | if (!*token) |
| 1373 | return -EINVAL; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1374 | if (!strcmp(token, "none")) { |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1375 | /* Explicitly have no subsystems */ |
| 1376 | opts->none = true; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1377 | continue; |
| 1378 | } |
| 1379 | if (!strcmp(token, "all")) { |
| 1380 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1381 | if (one_ss) |
| 1382 | return -EINVAL; |
| 1383 | all_ss = true; |
| 1384 | continue; |
| 1385 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1386 | if (!strcmp(token, "__DEVEL__sane_behavior")) { |
| 1387 | opts->flags |= CGRP_ROOT_SANE_BEHAVIOR; |
| 1388 | continue; |
| 1389 | } |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1390 | if (!strcmp(token, "noprefix")) { |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1391 | opts->flags |= CGRP_ROOT_NOPREFIX; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1392 | continue; |
| 1393 | } |
| 1394 | if (!strcmp(token, "clone_children")) { |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1395 | opts->cpuset_clone_children = true; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1396 | continue; |
| 1397 | } |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1398 | if (!strcmp(token, "xattr")) { |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1399 | opts->flags |= CGRP_ROOT_XATTR; |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1400 | continue; |
| 1401 | } |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1402 | if (!strncmp(token, "release_agent=", 14)) { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1403 | /* Specifying two release agents is forbidden */ |
| 1404 | if (opts->release_agent) |
| 1405 | return -EINVAL; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1406 | opts->release_agent = |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1407 | kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1408 | if (!opts->release_agent) |
| 1409 | return -ENOMEM; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1410 | continue; |
| 1411 | } |
| 1412 | if (!strncmp(token, "name=", 5)) { |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1413 | const char *name = token + 5; |
| 1414 | /* Can't specify an empty name */ |
| 1415 | if (!strlen(name)) |
| 1416 | return -EINVAL; |
| 1417 | /* Must match [\w.-]+ */ |
| 1418 | for (i = 0; i < strlen(name); i++) { |
| 1419 | char c = name[i]; |
| 1420 | if (isalnum(c)) |
| 1421 | continue; |
| 1422 | if ((c == '.') || (c == '-') || (c == '_')) |
| 1423 | continue; |
| 1424 | return -EINVAL; |
| 1425 | } |
| 1426 | /* Specifying two names is forbidden */ |
| 1427 | if (opts->name) |
| 1428 | return -EINVAL; |
| 1429 | opts->name = kstrndup(name, |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1430 | MAX_CGROUP_ROOT_NAMELEN - 1, |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1431 | GFP_KERNEL); |
| 1432 | if (!opts->name) |
| 1433 | return -ENOMEM; |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1434 | |
| 1435 | continue; |
| 1436 | } |
| 1437 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1438 | for_each_subsys(ss, i) { |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1439 | if (strcmp(token, ss->name)) |
| 1440 | continue; |
| 1441 | if (ss->disabled) |
| 1442 | continue; |
| 1443 | |
| 1444 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1445 | if (all_ss) |
| 1446 | return -EINVAL; |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1447 | opts->subsys_mask |= (1 << i); |
Daniel Lezcano | 32a8cf23 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1448 | one_ss = true; |
| 1449 | |
| 1450 | break; |
| 1451 | } |
| 1452 | if (i == CGROUP_SUBSYS_COUNT) |
| 1453 | return -ENOENT; |
| 1454 | } |
| 1455 | |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1456 | if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) { |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1457 | 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] | 1458 | if (nr_opts != 1) { |
| 1459 | pr_err("sane_behavior: no other mount options allowed\n"); |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1460 | return -EINVAL; |
| 1461 | } |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1462 | return 0; |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1463 | } |
| 1464 | |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1465 | /* |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1466 | * If the 'all' option was specified select all the subsystems, |
| 1467 | * otherwise if 'none', 'name=' and a subsystem name options were |
| 1468 | * not specified, let's default to 'all' |
| 1469 | */ |
| 1470 | if (all_ss || (!one_ss && !opts->none && !opts->name)) |
| 1471 | for_each_subsys(ss, i) |
| 1472 | if (!ss->disabled) |
| 1473 | opts->subsys_mask |= (1 << i); |
| 1474 | |
| 1475 | /* |
| 1476 | * We either have to specify by name or by subsystems. (So all |
| 1477 | * empty hierarchies must have a name). |
| 1478 | */ |
| 1479 | if (!opts->subsys_mask && !opts->name) |
| 1480 | return -EINVAL; |
| 1481 | |
| 1482 | /* |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1483 | * Option noprefix was introduced just for backward compatibility |
| 1484 | * with the old cpuset, so we allow noprefix only if mounting just |
| 1485 | * the cpuset subsystem. |
| 1486 | */ |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1487 | if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask)) |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1488 | return -EINVAL; |
| 1489 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1490 | /* Can't specify "none" and some subsystems */ |
Aristeu Rozanski | a1a71b4 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1491 | if (opts->subsys_mask && opts->none) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1492 | return -EINVAL; |
| 1493 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1494 | return 0; |
| 1495 | } |
| 1496 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1497 | 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] | 1498 | { |
| 1499 | int ret = 0; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1500 | struct cgroup_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1501 | struct cgroup_sb_opts opts; |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1502 | unsigned long added_mask, removed_mask; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1503 | |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1504 | if (root == &cgrp_dfl_root) { |
| 1505 | pr_err("remount is not allowed\n"); |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1506 | return -EINVAL; |
| 1507 | } |
| 1508 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1509 | mutex_lock(&cgroup_mutex); |
| 1510 | |
| 1511 | /* See what subsystems are wanted */ |
| 1512 | ret = parse_cgroupfs_options(data, &opts); |
| 1513 | if (ret) |
| 1514 | goto out_unlock; |
| 1515 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1516 | if (opts.subsys_mask != root->subsys_mask || opts.release_agent) |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1517 | 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] | 1518 | task_tgid_nr(current), current->comm); |
Tejun Heo | 8b5a5a9 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1519 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1520 | added_mask = opts.subsys_mask & ~root->subsys_mask; |
| 1521 | removed_mask = root->subsys_mask & ~opts.subsys_mask; |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1522 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1523 | /* Don't allow flags or name to change at remount */ |
Tejun Heo | 7450e90 | 2014-07-09 10:08:07 -0400 | [diff] [blame] | 1524 | if ((opts.flags ^ root->flags) || |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1525 | (opts.name && strcmp(opts.name, root->name))) { |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1526 | 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] | 1527 | opts.flags, opts.name ?: "", root->flags, root->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1528 | ret = -EINVAL; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1529 | goto out_unlock; |
| 1530 | } |
| 1531 | |
Tejun Heo | f172e67 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1532 | /* remounting is not allowed for populated hierarchies */ |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 1533 | if (!list_empty(&root->cgrp.self.children)) { |
Tejun Heo | f172e67 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1534 | ret = -EBUSY; |
Li Zefan | 0670e08 | 2009-04-02 16:57:30 -0700 | [diff] [blame] | 1535 | goto out_unlock; |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1536 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1537 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1538 | ret = rebind_subsystems(root, added_mask); |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1539 | if (ret) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1540 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1541 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1542 | rebind_subsystems(&cgrp_dfl_root, removed_mask); |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1543 | |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1544 | if (opts.release_agent) { |
| 1545 | spin_lock(&release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1546 | strcpy(root->release_agent_path, opts.release_agent); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1547 | spin_unlock(&release_agent_path_lock); |
| 1548 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1549 | out_unlock: |
Jesper Juhl | 66bdc9c | 2009-04-02 16:57:27 -0700 | [diff] [blame] | 1550 | kfree(opts.release_agent); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1551 | kfree(opts.name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1552 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1553 | return ret; |
| 1554 | } |
| 1555 | |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1556 | /* |
| 1557 | * To reduce the fork() overhead for systems that are not actually using |
| 1558 | * their cgroups capability, we don't maintain the lists running through |
| 1559 | * each css_set to its tasks until we see the list actually used - in other |
| 1560 | * words after the first mount. |
| 1561 | */ |
| 1562 | static bool use_task_css_set_links __read_mostly; |
| 1563 | |
| 1564 | static void cgroup_enable_task_cg_lists(void) |
| 1565 | { |
| 1566 | struct task_struct *p, *g; |
| 1567 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1568 | down_write(&css_set_rwsem); |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1569 | |
| 1570 | if (use_task_css_set_links) |
| 1571 | goto out_unlock; |
| 1572 | |
| 1573 | use_task_css_set_links = true; |
| 1574 | |
| 1575 | /* |
| 1576 | * We need tasklist_lock because RCU is not safe against |
| 1577 | * while_each_thread(). Besides, a forking task that has passed |
| 1578 | * cgroup_post_fork() without seeing use_task_css_set_links = 1 |
| 1579 | * is not guaranteed to have its child immediately visible in the |
| 1580 | * tasklist if we walk through it with RCU. |
| 1581 | */ |
| 1582 | read_lock(&tasklist_lock); |
| 1583 | do_each_thread(g, p) { |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1584 | WARN_ON_ONCE(!list_empty(&p->cg_list) || |
| 1585 | task_css_set(p) != &init_css_set); |
| 1586 | |
| 1587 | /* |
| 1588 | * We should check if the process is exiting, otherwise |
| 1589 | * it will race with cgroup_exit() in that the list |
| 1590 | * entry won't be deleted though the process has exited. |
Tejun Heo | f153ad1 | 2014-02-25 09:56:49 -0500 | [diff] [blame] | 1591 | * Do it while holding siglock so that we don't end up |
| 1592 | * racing against cgroup_exit(). |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1593 | */ |
Tejun Heo | f153ad1 | 2014-02-25 09:56:49 -0500 | [diff] [blame] | 1594 | spin_lock_irq(&p->sighand->siglock); |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 1595 | if (!(p->flags & PF_EXITING)) { |
| 1596 | struct css_set *cset = task_css_set(p); |
| 1597 | |
| 1598 | list_add(&p->cg_list, &cset->tasks); |
| 1599 | get_css_set(cset); |
| 1600 | } |
Tejun Heo | f153ad1 | 2014-02-25 09:56:49 -0500 | [diff] [blame] | 1601 | spin_unlock_irq(&p->sighand->siglock); |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1602 | } while_each_thread(g, p); |
| 1603 | read_unlock(&tasklist_lock); |
| 1604 | out_unlock: |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1605 | up_write(&css_set_rwsem); |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1606 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1607 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1608 | static void init_cgroup_housekeeping(struct cgroup *cgrp) |
| 1609 | { |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1610 | struct cgroup_subsys *ss; |
| 1611 | int ssid; |
| 1612 | |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 1613 | INIT_LIST_HEAD(&cgrp->self.sibling); |
| 1614 | INIT_LIST_HEAD(&cgrp->self.children); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 1615 | INIT_LIST_HEAD(&cgrp->cset_links); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 1616 | INIT_LIST_HEAD(&cgrp->pidlists); |
| 1617 | mutex_init(&cgrp->pidlist_mutex); |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1618 | cgrp->self.cgroup = cgrp; |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 1619 | cgrp->self.flags |= CSS_ONLINE; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1620 | |
| 1621 | for_each_subsys(ss, ssid) |
| 1622 | INIT_LIST_HEAD(&cgrp->e_csets[ssid]); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1623 | |
| 1624 | init_waitqueue_head(&cgrp->offline_waitq); |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 1625 | INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1626 | } |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1627 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1628 | static void init_cgroup_root(struct cgroup_root *root, |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1629 | struct cgroup_sb_opts *opts) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1630 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1631 | struct cgroup *cgrp = &root->cgrp; |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1632 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1633 | INIT_LIST_HEAD(&root->root_list); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1634 | atomic_set(&root->nr_cgrps, 1); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1635 | cgrp->root = root; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1636 | init_cgroup_housekeeping(cgrp); |
Li Zefan | 4e96ee8e | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 1637 | idr_init(&root->cgroup_idr); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1638 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1639 | root->flags = opts->flags; |
| 1640 | if (opts->release_agent) |
| 1641 | strcpy(root->release_agent_path, opts->release_agent); |
| 1642 | if (opts->name) |
| 1643 | strcpy(root->name, opts->name); |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1644 | if (opts->cpuset_clone_children) |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1645 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1646 | } |
| 1647 | |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 1648 | static int cgroup_setup_root(struct cgroup_root *root, unsigned long ss_mask) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1649 | { |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1650 | LIST_HEAD(tmp_links); |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1651 | struct cgroup *root_cgrp = &root->cgrp; |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 1652 | struct cftype *base_files; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1653 | struct css_set *cset; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1654 | int i, ret; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1655 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1656 | lockdep_assert_held(&cgroup_mutex); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1657 | |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1658 | 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] | 1659 | if (ret < 0) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1660 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1661 | root_cgrp->id = ret; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1662 | |
Tejun Heo | 2aad2a8 | 2014-09-24 13:31:50 -0400 | [diff] [blame] | 1663 | ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0, |
| 1664 | GFP_KERNEL); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1665 | if (ret) |
| 1666 | goto out; |
| 1667 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1668 | /* |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1669 | * We're accessing css_set_count without locking css_set_rwsem here, |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1670 | * but that's OK - it can only be increased by someone holding |
| 1671 | * cgroup_lock, and that's us. The worst that can happen is that we |
| 1672 | * have some link structures left over |
| 1673 | */ |
| 1674 | ret = allocate_cgrp_cset_links(css_set_count, &tmp_links); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1675 | if (ret) |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1676 | goto cancel_ref; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1677 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1678 | ret = cgroup_init_root_id(root); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1679 | if (ret) |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1680 | goto cancel_ref; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1681 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1682 | root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops, |
| 1683 | KERNFS_ROOT_CREATE_DEACTIVATED, |
| 1684 | root_cgrp); |
| 1685 | if (IS_ERR(root->kf_root)) { |
| 1686 | ret = PTR_ERR(root->kf_root); |
| 1687 | goto exit_root_id; |
| 1688 | } |
| 1689 | root_cgrp->kn = root->kf_root->kn; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1690 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 1691 | if (root == &cgrp_dfl_root) |
| 1692 | base_files = cgroup_dfl_base_files; |
| 1693 | else |
| 1694 | base_files = cgroup_legacy_base_files; |
| 1695 | |
| 1696 | ret = cgroup_addrm_files(root_cgrp, base_files, true); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1697 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1698 | goto destroy_root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1699 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1700 | ret = rebind_subsystems(root, ss_mask); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1701 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1702 | goto destroy_root; |
Al Viro | 0df6a63 | 2010-12-21 13:29:29 -0500 | [diff] [blame] | 1703 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1704 | /* |
| 1705 | * There must be no failure case after here, since rebinding takes |
| 1706 | * care of subsystems' refcounts, which are explicitly dropped in |
| 1707 | * the failure exit path. |
| 1708 | */ |
| 1709 | list_add(&root->root_list, &cgroup_roots); |
| 1710 | cgroup_root_count++; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1711 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1712 | /* |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1713 | * Link the root cgroup in this hierarchy into all the css_set |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1714 | * objects. |
| 1715 | */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1716 | down_write(&css_set_rwsem); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1717 | hash_for_each(css_set_table, i, cset, hlist) |
| 1718 | link_css_set(&tmp_links, cset, root_cgrp); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1719 | up_write(&css_set_rwsem); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1720 | |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 1721 | BUG_ON(!list_empty(&root_cgrp->self.children)); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1722 | BUG_ON(atomic_read(&root->nr_cgrps) != 1); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1723 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1724 | kernfs_activate(root_cgrp->kn); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1725 | ret = 0; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1726 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1727 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1728 | destroy_root: |
| 1729 | kernfs_destroy_root(root->kf_root); |
| 1730 | root->kf_root = NULL; |
| 1731 | exit_root_id: |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1732 | cgroup_exit_root_id(root); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1733 | cancel_ref: |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 1734 | percpu_ref_exit(&root_cgrp->self.refcnt); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1735 | out: |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1736 | free_cgrp_cset_links(&tmp_links); |
| 1737 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1738 | } |
| 1739 | |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1740 | static struct dentry *cgroup_mount(struct file_system_type *fs_type, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1741 | int flags, const char *unused_dev_name, |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1742 | void *data) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1743 | { |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1744 | struct super_block *pinned_sb = NULL; |
Li Zefan | 970317a | 2014-06-30 11:49:58 +0800 | [diff] [blame] | 1745 | struct cgroup_subsys *ss; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1746 | struct cgroup_root *root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1747 | struct cgroup_sb_opts opts; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1748 | struct dentry *dentry; |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1749 | int ret; |
Li Zefan | 970317a | 2014-06-30 11:49:58 +0800 | [diff] [blame] | 1750 | int i; |
Li Zefan | c6b3d5b | 2014-04-04 17:14:41 +0800 | [diff] [blame] | 1751 | bool new_sb; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1752 | |
| 1753 | /* |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1754 | * The first time anyone tries to mount a cgroup, enable the list |
| 1755 | * 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] | 1756 | */ |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1757 | if (!use_task_css_set_links) |
| 1758 | cgroup_enable_task_cg_lists(); |
Li Zefan | e37a06f | 2014-04-17 13:53:08 +0800 | [diff] [blame] | 1759 | |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1760 | mutex_lock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1761 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1762 | /* First find the desired set of subsystems */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1763 | ret = parse_cgroupfs_options(data, &opts); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1764 | if (ret) |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1765 | goto out_unlock; |
Tejun Heo | a015edd | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1766 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1767 | /* look for a matching existing root */ |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1768 | if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) { |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1769 | cgrp_dfl_root_visible = true; |
| 1770 | root = &cgrp_dfl_root; |
| 1771 | cgroup_get(&root->cgrp); |
| 1772 | ret = 0; |
| 1773 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1774 | } |
| 1775 | |
Li Zefan | 970317a | 2014-06-30 11:49:58 +0800 | [diff] [blame] | 1776 | /* |
| 1777 | * Destruction of cgroup root is asynchronous, so subsystems may |
| 1778 | * still be dying after the previous unmount. Let's drain the |
| 1779 | * dying subsystems. We just need to ensure that the ones |
| 1780 | * unmounted previously finish dying and don't care about new ones |
| 1781 | * starting. Testing ref liveliness is good enough. |
| 1782 | */ |
| 1783 | for_each_subsys(ss, i) { |
| 1784 | if (!(opts.subsys_mask & (1 << i)) || |
| 1785 | ss->root == &cgrp_dfl_root) |
| 1786 | continue; |
| 1787 | |
| 1788 | if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) { |
| 1789 | mutex_unlock(&cgroup_mutex); |
| 1790 | msleep(10); |
| 1791 | ret = restart_syscall(); |
| 1792 | goto out_free; |
| 1793 | } |
| 1794 | cgroup_put(&ss->root->cgrp); |
| 1795 | } |
| 1796 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1797 | for_each_root(root) { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1798 | bool name_match = false; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1799 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1800 | if (root == &cgrp_dfl_root) |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1801 | continue; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1802 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1803 | /* |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1804 | * If we asked for a name then it must match. Also, if |
| 1805 | * name matches but sybsys_mask doesn't, we should fail. |
| 1806 | * Remember whether name matched. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1807 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1808 | if (opts.name) { |
| 1809 | if (strcmp(opts.name, root->name)) |
| 1810 | continue; |
| 1811 | name_match = true; |
| 1812 | } |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1813 | |
| 1814 | /* |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1815 | * If we asked for subsystems (or explicitly for no |
| 1816 | * subsystems) then they must match. |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1817 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1818 | if ((opts.subsys_mask || opts.none) && |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1819 | (opts.subsys_mask != root->subsys_mask)) { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1820 | if (!name_match) |
| 1821 | continue; |
| 1822 | ret = -EBUSY; |
| 1823 | goto out_unlock; |
| 1824 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1825 | |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1826 | if (root->flags ^ opts.flags) |
| 1827 | 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] | 1828 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1829 | /* |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1830 | * We want to reuse @root whose lifetime is governed by its |
| 1831 | * ->cgrp. Let's check whether @root is alive and keep it |
| 1832 | * that way. As cgroup_kill_sb() can happen anytime, we |
| 1833 | * want to block it by pinning the sb so that @root doesn't |
| 1834 | * get killed before mount is complete. |
| 1835 | * |
| 1836 | * With the sb pinned, tryget_live can reliably indicate |
| 1837 | * whether @root can be reused. If it's being killed, |
| 1838 | * drain it. We can use wait_queue for the wait but this |
| 1839 | * path is super cold. Let's just sleep a bit and retry. |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1840 | */ |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1841 | pinned_sb = kernfs_pin_sb(root->kf_root, NULL); |
| 1842 | if (IS_ERR(pinned_sb) || |
| 1843 | !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) { |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1844 | mutex_unlock(&cgroup_mutex); |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1845 | if (!IS_ERR_OR_NULL(pinned_sb)) |
| 1846 | deactivate_super(pinned_sb); |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1847 | msleep(10); |
Tejun Heo | a015edd | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1848 | ret = restart_syscall(); |
| 1849 | goto out_free; |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1850 | } |
| 1851 | |
| 1852 | ret = 0; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1853 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1854 | } |
| 1855 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1856 | /* |
| 1857 | * No such thing, create a new one. name= matching without subsys |
| 1858 | * specification is allowed for already existing hierarchies but we |
| 1859 | * can't create new one without subsys specification. |
| 1860 | */ |
| 1861 | if (!opts.subsys_mask && !opts.none) { |
| 1862 | ret = -EINVAL; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1863 | goto out_unlock; |
| 1864 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1865 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1866 | root = kzalloc(sizeof(*root), GFP_KERNEL); |
| 1867 | if (!root) { |
| 1868 | ret = -ENOMEM; |
| 1869 | goto out_unlock; |
| 1870 | } |
| 1871 | |
| 1872 | init_cgroup_root(root, &opts); |
| 1873 | |
Tejun Heo | 3558557 | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1874 | ret = cgroup_setup_root(root, opts.subsys_mask); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1875 | if (ret) |
| 1876 | cgroup_free_root(root); |
| 1877 | |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1878 | out_unlock: |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1879 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | a015edd | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1880 | out_free: |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1881 | kfree(opts.release_agent); |
| 1882 | kfree(opts.name); |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1883 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1884 | if (ret) |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1885 | return ERR_PTR(ret); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1886 | |
Jianyu Zhan | c9482a5 | 2014-04-26 15:40:28 +0800 | [diff] [blame] | 1887 | dentry = kernfs_mount(fs_type, flags, root->kf_root, |
| 1888 | CGROUP_SUPER_MAGIC, &new_sb); |
Li Zefan | c6b3d5b | 2014-04-04 17:14:41 +0800 | [diff] [blame] | 1889 | if (IS_ERR(dentry) || !new_sb) |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1890 | cgroup_put(&root->cgrp); |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1891 | |
| 1892 | /* |
| 1893 | * If @pinned_sb, we're reusing an existing root and holding an |
| 1894 | * extra ref on its sb. Mount is complete. Put the extra ref. |
| 1895 | */ |
| 1896 | if (pinned_sb) { |
| 1897 | WARN_ON(new_sb); |
| 1898 | deactivate_super(pinned_sb); |
| 1899 | } |
| 1900 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1901 | return dentry; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1902 | } |
| 1903 | |
SeongJae Park | dd4b0a4 | 2014-01-18 16:56:47 +0900 | [diff] [blame] | 1904 | static void cgroup_kill_sb(struct super_block *sb) |
| 1905 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1906 | struct kernfs_root *kf_root = kernfs_root_from_sb(sb); |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1907 | struct cgroup_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1908 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1909 | /* |
| 1910 | * If @root doesn't have any mounts or children, start killing it. |
| 1911 | * This prevents new mounts by disabling percpu_ref_tryget_live(). |
| 1912 | * cgroup_mount() may wait for @root's release. |
Li Zefan | 1f779fb | 2014-06-04 16:48:15 +0800 | [diff] [blame] | 1913 | * |
| 1914 | * And don't kill the default root. |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1915 | */ |
Johannes Weiner | 3c606d3 | 2015-01-22 10:19:43 -0500 | [diff] [blame] | 1916 | if (!list_empty(&root->cgrp.self.children) || |
Li Zefan | 1f779fb | 2014-06-04 16:48:15 +0800 | [diff] [blame] | 1917 | root == &cgrp_dfl_root) |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1918 | cgroup_put(&root->cgrp); |
| 1919 | else |
| 1920 | percpu_ref_kill(&root->cgrp.self.refcnt); |
| 1921 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1922 | kernfs_kill_sb(sb); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1923 | } |
| 1924 | |
| 1925 | static struct file_system_type cgroup_fs_type = { |
| 1926 | .name = "cgroup", |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1927 | .mount = cgroup_mount, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1928 | .kill_sb = cgroup_kill_sb, |
| 1929 | }; |
| 1930 | |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 1931 | static struct kobject *cgroup_kobj; |
| 1932 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 1933 | /** |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1934 | * 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] | 1935 | * @task: target task |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1936 | * @buf: the buffer to write the path into |
| 1937 | * @buflen: the length of the buffer |
| 1938 | * |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1939 | * Determine @task's cgroup on the first (the one with the lowest non-zero |
| 1940 | * hierarchy_id) cgroup hierarchy and copy its path into @buf. This |
| 1941 | * function grabs cgroup_mutex and shouldn't be used inside locks used by |
| 1942 | * cgroup controller callbacks. |
| 1943 | * |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1944 | * Return value is the same as kernfs_path(). |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1945 | */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1946 | 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] | 1947 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1948 | struct cgroup_root *root; |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1949 | struct cgroup *cgrp; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1950 | int hierarchy_id = 1; |
| 1951 | char *path = NULL; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1952 | |
| 1953 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1954 | down_read(&css_set_rwsem); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1955 | |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1956 | root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id); |
| 1957 | |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1958 | if (root) { |
| 1959 | cgrp = task_cgroup_from_root(task, root); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1960 | path = cgroup_path(cgrp, buf, buflen); |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1961 | } else { |
| 1962 | /* if no hierarchy exists, everyone is in "/" */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1963 | if (strlcpy(buf, "/", buflen) < buflen) |
| 1964 | path = buf; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1965 | } |
| 1966 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1967 | up_read(&css_set_rwsem); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1968 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1969 | return path; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1970 | } |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1971 | EXPORT_SYMBOL_GPL(task_cgroup_path); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1972 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1973 | /* used to track tasks and other necessary states during migration */ |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1974 | struct cgroup_taskset { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1975 | /* the src and dst cset list running through cset->mg_node */ |
| 1976 | struct list_head src_csets; |
| 1977 | struct list_head dst_csets; |
| 1978 | |
| 1979 | /* |
| 1980 | * Fields for cgroup_taskset_*() iteration. |
| 1981 | * |
| 1982 | * Before migration is committed, the target migration tasks are on |
| 1983 | * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of |
| 1984 | * the csets on ->dst_csets. ->csets point to either ->src_csets |
| 1985 | * or ->dst_csets depending on whether migration is committed. |
| 1986 | * |
| 1987 | * ->cur_csets and ->cur_task point to the current task position |
| 1988 | * during iteration. |
| 1989 | */ |
| 1990 | struct list_head *csets; |
| 1991 | struct css_set *cur_cset; |
| 1992 | struct task_struct *cur_task; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1993 | }; |
| 1994 | |
| 1995 | /** |
| 1996 | * cgroup_taskset_first - reset taskset and return the first task |
| 1997 | * @tset: taskset of interest |
| 1998 | * |
| 1999 | * @tset iteration is initialized and the first task is returned. |
| 2000 | */ |
| 2001 | struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset) |
| 2002 | { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2003 | tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node); |
| 2004 | tset->cur_task = NULL; |
| 2005 | |
| 2006 | return cgroup_taskset_next(tset); |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2007 | } |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2008 | |
| 2009 | /** |
| 2010 | * cgroup_taskset_next - iterate to the next task in taskset |
| 2011 | * @tset: taskset of interest |
| 2012 | * |
| 2013 | * Return the next task in @tset. Iteration must have been initialized |
| 2014 | * with cgroup_taskset_first(). |
| 2015 | */ |
| 2016 | struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset) |
| 2017 | { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2018 | struct css_set *cset = tset->cur_cset; |
| 2019 | struct task_struct *task = tset->cur_task; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2020 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2021 | while (&cset->mg_node != tset->csets) { |
| 2022 | if (!task) |
| 2023 | task = list_first_entry(&cset->mg_tasks, |
| 2024 | struct task_struct, cg_list); |
| 2025 | else |
| 2026 | task = list_next_entry(task, cg_list); |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2027 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2028 | if (&task->cg_list != &cset->mg_tasks) { |
| 2029 | tset->cur_cset = cset; |
| 2030 | tset->cur_task = task; |
| 2031 | return task; |
| 2032 | } |
| 2033 | |
| 2034 | cset = list_next_entry(cset, mg_node); |
| 2035 | task = NULL; |
| 2036 | } |
| 2037 | |
| 2038 | return NULL; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2039 | } |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2040 | |
| 2041 | /** |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2042 | * cgroup_task_migrate - move a task from one cgroup to another. |
Fabian Frederick | 6010694 | 2014-05-05 20:08:13 +0200 | [diff] [blame] | 2043 | * @old_cgrp: the cgroup @tsk is being migrated from |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2044 | * @tsk: the task being migrated |
| 2045 | * @new_cset: the new css_set @tsk is being attached to |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2046 | * |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2047 | * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2048 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2049 | static void cgroup_task_migrate(struct cgroup *old_cgrp, |
| 2050 | struct task_struct *tsk, |
| 2051 | struct css_set *new_cset) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2052 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2053 | struct css_set *old_cset; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2054 | |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2055 | lockdep_assert_held(&cgroup_mutex); |
| 2056 | lockdep_assert_held(&css_set_rwsem); |
| 2057 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2058 | /* |
Tejun Heo | d59cfc0 | 2015-05-13 16:35:17 -0400 | [diff] [blame] | 2059 | * We are synchronized through cgroup_threadgroup_rwsem against |
| 2060 | * PF_EXITING setting such that we can't race against cgroup_exit() |
| 2061 | * changing the css_set to init_css_set and dropping the old one. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2062 | */ |
Frederic Weisbecker | c84cdf7 | 2011-12-21 20:03:18 +0100 | [diff] [blame] | 2063 | WARN_ON_ONCE(tsk->flags & PF_EXITING); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 2064 | old_cset = task_css_set(tsk); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2065 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2066 | get_css_set(new_cset); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2067 | rcu_assign_pointer(tsk->cgroups, new_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2068 | |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2069 | /* |
| 2070 | * Use move_tail so that cgroup_taskset_first() still returns the |
| 2071 | * leader after migration. This works because cgroup_migrate() |
| 2072 | * ensures that the dst_cset of the leader is the first on the |
| 2073 | * tset's dst_csets list. |
| 2074 | */ |
| 2075 | list_move_tail(&tsk->cg_list, &new_cset->mg_tasks); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2076 | |
| 2077 | /* |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2078 | * We just gained a reference on old_cset by taking it from the |
| 2079 | * task. As trading it for new_cset is protected by cgroup_mutex, |
| 2080 | * 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] | 2081 | */ |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 2082 | put_css_set_locked(old_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2083 | } |
| 2084 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 2085 | /** |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2086 | * cgroup_migrate_finish - cleanup after attach |
| 2087 | * @preloaded_csets: list of preloaded css_sets |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2088 | * |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2089 | * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See |
| 2090 | * those functions for details. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2091 | */ |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2092 | static void cgroup_migrate_finish(struct list_head *preloaded_csets) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2093 | { |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2094 | struct css_set *cset, *tmp_cset; |
| 2095 | |
| 2096 | lockdep_assert_held(&cgroup_mutex); |
| 2097 | |
| 2098 | down_write(&css_set_rwsem); |
| 2099 | list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) { |
| 2100 | cset->mg_src_cgrp = NULL; |
| 2101 | cset->mg_dst_cset = NULL; |
| 2102 | list_del_init(&cset->mg_preload_node); |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 2103 | put_css_set_locked(cset); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2104 | } |
| 2105 | up_write(&css_set_rwsem); |
| 2106 | } |
| 2107 | |
| 2108 | /** |
| 2109 | * cgroup_migrate_add_src - add a migration source css_set |
| 2110 | * @src_cset: the source css_set to add |
| 2111 | * @dst_cgrp: the destination cgroup |
| 2112 | * @preloaded_csets: list of preloaded css_sets |
| 2113 | * |
| 2114 | * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin |
| 2115 | * @src_cset and add it to @preloaded_csets, which should later be cleaned |
| 2116 | * up by cgroup_migrate_finish(). |
| 2117 | * |
Tejun Heo | d59cfc0 | 2015-05-13 16:35:17 -0400 | [diff] [blame] | 2118 | * This function may be called without holding cgroup_threadgroup_rwsem |
| 2119 | * even if the target is a process. Threads may be created and destroyed |
| 2120 | * but as long as cgroup_mutex is not dropped, no new css_set can be put |
| 2121 | * into play and the preloaded css_sets are guaranteed to cover all |
| 2122 | * migrations. |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2123 | */ |
| 2124 | static void cgroup_migrate_add_src(struct css_set *src_cset, |
| 2125 | struct cgroup *dst_cgrp, |
| 2126 | struct list_head *preloaded_csets) |
| 2127 | { |
| 2128 | struct cgroup *src_cgrp; |
| 2129 | |
| 2130 | lockdep_assert_held(&cgroup_mutex); |
| 2131 | lockdep_assert_held(&css_set_rwsem); |
| 2132 | |
| 2133 | src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root); |
| 2134 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2135 | if (!list_empty(&src_cset->mg_preload_node)) |
| 2136 | return; |
| 2137 | |
| 2138 | WARN_ON(src_cset->mg_src_cgrp); |
| 2139 | WARN_ON(!list_empty(&src_cset->mg_tasks)); |
| 2140 | WARN_ON(!list_empty(&src_cset->mg_node)); |
| 2141 | |
| 2142 | src_cset->mg_src_cgrp = src_cgrp; |
| 2143 | get_css_set(src_cset); |
| 2144 | list_add(&src_cset->mg_preload_node, preloaded_csets); |
| 2145 | } |
| 2146 | |
| 2147 | /** |
| 2148 | * cgroup_migrate_prepare_dst - prepare destination css_sets for migration |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2149 | * @dst_cgrp: the destination cgroup (may be %NULL) |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2150 | * @preloaded_csets: list of preloaded source css_sets |
| 2151 | * |
| 2152 | * Tasks are about to be moved to @dst_cgrp and all the source css_sets |
| 2153 | * have been preloaded to @preloaded_csets. This function looks up and |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2154 | * pins all destination css_sets, links each to its source, and append them |
| 2155 | * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each |
| 2156 | * 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] | 2157 | * |
| 2158 | * This function must be called after cgroup_migrate_add_src() has been |
| 2159 | * called on each migration source css_set. After migration is performed |
| 2160 | * using cgroup_migrate(), cgroup_migrate_finish() must be called on |
| 2161 | * @preloaded_csets. |
| 2162 | */ |
| 2163 | static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp, |
| 2164 | struct list_head *preloaded_csets) |
| 2165 | { |
| 2166 | LIST_HEAD(csets); |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2167 | struct css_set *src_cset, *tmp_cset; |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2168 | |
| 2169 | lockdep_assert_held(&cgroup_mutex); |
| 2170 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2171 | /* |
| 2172 | * Except for the root, child_subsys_mask must be zero for a cgroup |
| 2173 | * with tasks so that child cgroups don't compete against tasks. |
| 2174 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 2175 | if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) && |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2176 | dst_cgrp->child_subsys_mask) |
| 2177 | return -EBUSY; |
| 2178 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2179 | /* 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] | 2180 | 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] | 2181 | struct css_set *dst_cset; |
| 2182 | |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2183 | dst_cset = find_css_set(src_cset, |
| 2184 | dst_cgrp ?: src_cset->dfl_cgrp); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2185 | if (!dst_cset) |
| 2186 | goto err; |
| 2187 | |
| 2188 | 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] | 2189 | |
| 2190 | /* |
| 2191 | * If src cset equals dst, it's noop. Drop the src. |
| 2192 | * cgroup_migrate() will skip the cset too. Note that we |
| 2193 | * can't handle src == dst as some nodes are used by both. |
| 2194 | */ |
| 2195 | if (src_cset == dst_cset) { |
| 2196 | src_cset->mg_src_cgrp = NULL; |
| 2197 | list_del_init(&src_cset->mg_preload_node); |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 2198 | put_css_set(src_cset); |
| 2199 | put_css_set(dst_cset); |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2200 | continue; |
| 2201 | } |
| 2202 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2203 | src_cset->mg_dst_cset = dst_cset; |
| 2204 | |
| 2205 | if (list_empty(&dst_cset->mg_preload_node)) |
| 2206 | list_add(&dst_cset->mg_preload_node, &csets); |
| 2207 | else |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 2208 | put_css_set(dst_cset); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2209 | } |
| 2210 | |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2211 | list_splice_tail(&csets, preloaded_csets); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2212 | return 0; |
| 2213 | err: |
| 2214 | cgroup_migrate_finish(&csets); |
| 2215 | return -ENOMEM; |
| 2216 | } |
| 2217 | |
| 2218 | /** |
| 2219 | * cgroup_migrate - migrate a process or task to a cgroup |
| 2220 | * @cgrp: the destination cgroup |
| 2221 | * @leader: the leader of the process or the task to migrate |
| 2222 | * @threadgroup: whether @leader points to the whole process or a single task |
| 2223 | * |
| 2224 | * Migrate a process or task denoted by @leader to @cgrp. If migrating a |
Tejun Heo | d59cfc0 | 2015-05-13 16:35:17 -0400 | [diff] [blame] | 2225 | * process, the caller must be holding cgroup_threadgroup_rwsem. The |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2226 | * caller is also responsible for invoking cgroup_migrate_add_src() and |
| 2227 | * cgroup_migrate_prepare_dst() on the targets before invoking this |
| 2228 | * function and following up with cgroup_migrate_finish(). |
| 2229 | * |
| 2230 | * As long as a controller's ->can_attach() doesn't fail, this function is |
| 2231 | * guaranteed to succeed. This means that, excluding ->can_attach() |
| 2232 | * failure, when migrating multiple targets, the success or failure can be |
| 2233 | * decided for all targets by invoking group_migrate_prepare_dst() before |
| 2234 | * actually starting migrating. |
| 2235 | */ |
| 2236 | static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader, |
| 2237 | bool threadgroup) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2238 | { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2239 | struct cgroup_taskset tset = { |
| 2240 | .src_csets = LIST_HEAD_INIT(tset.src_csets), |
| 2241 | .dst_csets = LIST_HEAD_INIT(tset.dst_csets), |
| 2242 | .csets = &tset.src_csets, |
| 2243 | }; |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2244 | struct cgroup_subsys_state *css, *failed_css = NULL; |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2245 | struct css_set *cset, *tmp_cset; |
| 2246 | struct task_struct *task, *tmp_task; |
| 2247 | int i, ret; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2248 | |
| 2249 | /* |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2250 | * Prevent freeing of tasks while we take a snapshot. Tasks that are |
| 2251 | * already PF_EXITING could be freed from underneath us unless we |
| 2252 | * take an rcu_read_lock. |
| 2253 | */ |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2254 | down_write(&css_set_rwsem); |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2255 | rcu_read_lock(); |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2256 | task = leader; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2257 | do { |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2258 | /* @task either already exited or can't exit until the end */ |
| 2259 | if (task->flags & PF_EXITING) |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 2260 | goto next; |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2261 | |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2262 | /* leave @task alone if post_fork() hasn't linked it yet */ |
| 2263 | if (list_empty(&task->cg_list)) |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 2264 | goto next; |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2265 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2266 | cset = task_css_set(task); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2267 | if (!cset->mg_src_cgrp) |
Mandeep Singh Baines | 892a2b9 | 2011-12-21 20:18:37 -0800 | [diff] [blame] | 2268 | goto next; |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2269 | |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2270 | /* |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2271 | * cgroup_taskset_first() must always return the leader. |
| 2272 | * Take care to avoid disturbing the ordering. |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2273 | */ |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2274 | list_move_tail(&task->cg_list, &cset->mg_tasks); |
| 2275 | if (list_empty(&cset->mg_node)) |
| 2276 | list_add_tail(&cset->mg_node, &tset.src_csets); |
| 2277 | if (list_empty(&cset->mg_dst_cset->mg_node)) |
| 2278 | list_move_tail(&cset->mg_dst_cset->mg_node, |
| 2279 | &tset.dst_csets); |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 2280 | next: |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 2281 | if (!threadgroup) |
| 2282 | break; |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2283 | } while_each_thread(leader, task); |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2284 | rcu_read_unlock(); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2285 | up_write(&css_set_rwsem); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2286 | |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2287 | /* methods shouldn't be called if no task is actually migrating */ |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2288 | if (list_empty(&tset.src_csets)) |
| 2289 | return 0; |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2290 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2291 | /* check that we can legitimately attach to the cgroup */ |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 2292 | for_each_e_css(css, i, cgrp) { |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2293 | if (css->ss->can_attach) { |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2294 | ret = css->ss->can_attach(css, &tset); |
| 2295 | if (ret) { |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2296 | failed_css = css; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2297 | goto out_cancel_attach; |
| 2298 | } |
| 2299 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2300 | } |
| 2301 | |
| 2302 | /* |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2303 | * Now that we're guaranteed success, proceed to move all tasks to |
| 2304 | * the new cgroup. There are no failure cases after here, so this |
| 2305 | * is the commit point. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2306 | */ |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2307 | down_write(&css_set_rwsem); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2308 | list_for_each_entry(cset, &tset.src_csets, mg_node) { |
| 2309 | list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) |
| 2310 | cgroup_task_migrate(cset->mg_src_cgrp, task, |
| 2311 | cset->mg_dst_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2312 | } |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2313 | up_write(&css_set_rwsem); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2314 | |
| 2315 | /* |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2316 | * Migration is committed, all target tasks are now on dst_csets. |
| 2317 | * Nothing is sensitive to fork() after this point. Notify |
| 2318 | * controllers that migration is complete. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2319 | */ |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2320 | tset.csets = &tset.dst_csets; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2321 | |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 2322 | for_each_e_css(css, i, cgrp) |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2323 | if (css->ss->attach) |
| 2324 | css->ss->attach(css, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2325 | |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2326 | ret = 0; |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2327 | goto out_release_tset; |
| 2328 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2329 | out_cancel_attach: |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 2330 | for_each_e_css(css, i, cgrp) { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2331 | if (css == failed_css) |
| 2332 | break; |
| 2333 | if (css->ss->cancel_attach) |
| 2334 | css->ss->cancel_attach(css, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2335 | } |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2336 | out_release_tset: |
| 2337 | down_write(&css_set_rwsem); |
| 2338 | list_splice_init(&tset.dst_csets, &tset.src_csets); |
| 2339 | 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] | 2340 | list_splice_tail_init(&cset->mg_tasks, &cset->tasks); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2341 | list_del_init(&cset->mg_node); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2342 | } |
| 2343 | up_write(&css_set_rwsem); |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2344 | return ret; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2345 | } |
| 2346 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2347 | /** |
| 2348 | * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup |
| 2349 | * @dst_cgrp: the cgroup to attach to |
| 2350 | * @leader: the task or the leader of the threadgroup to be attached |
| 2351 | * @threadgroup: attach the whole threadgroup? |
| 2352 | * |
Tejun Heo | d59cfc0 | 2015-05-13 16:35:17 -0400 | [diff] [blame] | 2353 | * Call holding cgroup_mutex and cgroup_threadgroup_rwsem. |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2354 | */ |
| 2355 | static int cgroup_attach_task(struct cgroup *dst_cgrp, |
| 2356 | struct task_struct *leader, bool threadgroup) |
| 2357 | { |
| 2358 | LIST_HEAD(preloaded_csets); |
| 2359 | struct task_struct *task; |
| 2360 | int ret; |
| 2361 | |
| 2362 | /* look up all src csets */ |
| 2363 | down_read(&css_set_rwsem); |
| 2364 | rcu_read_lock(); |
| 2365 | task = leader; |
| 2366 | do { |
| 2367 | cgroup_migrate_add_src(task_css_set(task), dst_cgrp, |
| 2368 | &preloaded_csets); |
| 2369 | if (!threadgroup) |
| 2370 | break; |
| 2371 | } while_each_thread(leader, task); |
| 2372 | rcu_read_unlock(); |
| 2373 | up_read(&css_set_rwsem); |
| 2374 | |
| 2375 | /* prepare dst csets and commit */ |
| 2376 | ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets); |
| 2377 | if (!ret) |
| 2378 | ret = cgroup_migrate(dst_cgrp, leader, threadgroup); |
| 2379 | |
| 2380 | cgroup_migrate_finish(&preloaded_csets); |
| 2381 | return ret; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2382 | } |
| 2383 | |
| 2384 | /* |
| 2385 | * 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] | 2386 | * 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] | 2387 | * cgroup_mutex and threadgroup. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2388 | */ |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2389 | static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf, |
| 2390 | size_t nbytes, loff_t off, bool threadgroup) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2391 | { |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2392 | struct task_struct *tsk; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2393 | const struct cred *cred = current_cred(), *tcred; |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2394 | struct cgroup *cgrp; |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2395 | pid_t pid; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2396 | int ret; |
| 2397 | |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2398 | if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0) |
| 2399 | return -EINVAL; |
| 2400 | |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2401 | cgrp = cgroup_kn_lock_live(of->kn); |
| 2402 | if (!cgrp) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2403 | return -ENODEV; |
| 2404 | |
Tejun Heo | b5ba75b | 2015-05-13 16:35:18 -0400 | [diff] [blame^] | 2405 | percpu_down_write(&cgroup_threadgroup_rwsem); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2406 | rcu_read_lock(); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2407 | if (pid) { |
Pavel Emelyanov | 73507f3 | 2008-02-07 00:14:47 -0800 | [diff] [blame] | 2408 | tsk = find_task_by_vpid(pid); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2409 | if (!tsk) { |
SeongJae Park | dd4b0a4 | 2014-01-18 16:56:47 +0900 | [diff] [blame] | 2410 | ret = -ESRCH; |
Tejun Heo | b5ba75b | 2015-05-13 16:35:18 -0400 | [diff] [blame^] | 2411 | goto out_unlock_rcu; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2412 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2413 | /* |
| 2414 | * even if we're attaching all tasks in the thread group, we |
| 2415 | * only need to check permissions on one of them. |
| 2416 | */ |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2417 | tcred = __task_cred(tsk); |
Eric W. Biederman | 14a590c | 2012-03-12 15:44:39 -0700 | [diff] [blame] | 2418 | if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) && |
| 2419 | !uid_eq(cred->euid, tcred->uid) && |
| 2420 | !uid_eq(cred->euid, tcred->suid)) { |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2421 | ret = -EACCES; |
Tejun Heo | b5ba75b | 2015-05-13 16:35:18 -0400 | [diff] [blame^] | 2422 | goto out_unlock_rcu; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2423 | } |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2424 | } else |
| 2425 | tsk = current; |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2426 | |
| 2427 | if (threadgroup) |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2428 | tsk = tsk->group_leader; |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2429 | |
| 2430 | /* |
Tejun Heo | 14a40ff | 2013-03-19 13:45:20 -0700 | [diff] [blame] | 2431 | * Workqueue threads may acquire PF_NO_SETAFFINITY and become |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2432 | * trapped in a cpuset, or RT worker may be born in a cgroup |
| 2433 | * with no rt_runtime allocated. Just say no. |
| 2434 | */ |
Tejun Heo | 14a40ff | 2013-03-19 13:45:20 -0700 | [diff] [blame] | 2435 | if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) { |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2436 | ret = -EINVAL; |
Tejun Heo | b5ba75b | 2015-05-13 16:35:18 -0400 | [diff] [blame^] | 2437 | goto out_unlock_rcu; |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2438 | } |
| 2439 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2440 | get_task_struct(tsk); |
| 2441 | rcu_read_unlock(); |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2442 | |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 2443 | ret = cgroup_attach_task(cgrp, tsk, threadgroup); |
| 2444 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2445 | put_task_struct(tsk); |
Tejun Heo | b5ba75b | 2015-05-13 16:35:18 -0400 | [diff] [blame^] | 2446 | goto out_unlock_threadgroup; |
| 2447 | |
| 2448 | out_unlock_rcu: |
| 2449 | rcu_read_unlock(); |
| 2450 | out_unlock_threadgroup: |
| 2451 | percpu_up_write(&cgroup_threadgroup_rwsem); |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2452 | cgroup_kn_unlock(of->kn); |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2453 | return ret ?: nbytes; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2454 | } |
| 2455 | |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2456 | /** |
| 2457 | * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from' |
| 2458 | * @from: attach to all cgroups of a given task |
| 2459 | * @tsk: the task to be attached |
| 2460 | */ |
| 2461 | int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk) |
| 2462 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 2463 | struct cgroup_root *root; |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2464 | int retval = 0; |
| 2465 | |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2466 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 2467 | for_each_root(root) { |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 2468 | struct cgroup *from_cgrp; |
| 2469 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 2470 | if (root == &cgrp_dfl_root) |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 2471 | continue; |
| 2472 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 2473 | down_read(&css_set_rwsem); |
| 2474 | from_cgrp = task_cgroup_from_root(from, root); |
| 2475 | up_read(&css_set_rwsem); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2476 | |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 2477 | retval = cgroup_attach_task(from_cgrp, tsk, false); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2478 | if (retval) |
| 2479 | break; |
| 2480 | } |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2481 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2482 | |
| 2483 | return retval; |
| 2484 | } |
| 2485 | EXPORT_SYMBOL_GPL(cgroup_attach_task_all); |
| 2486 | |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2487 | static ssize_t cgroup_tasks_write(struct kernfs_open_file *of, |
| 2488 | char *buf, size_t nbytes, loff_t off) |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2489 | { |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2490 | return __cgroup_procs_write(of, buf, nbytes, off, false); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2491 | } |
| 2492 | |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2493 | static ssize_t cgroup_procs_write(struct kernfs_open_file *of, |
| 2494 | char *buf, size_t nbytes, loff_t off) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2495 | { |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2496 | return __cgroup_procs_write(of, buf, nbytes, off, true); |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2497 | } |
| 2498 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2499 | static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of, |
| 2500 | char *buf, size_t nbytes, loff_t off) |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2501 | { |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2502 | struct cgroup *cgrp; |
Tejun Heo | 5f46990 | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2503 | |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2504 | BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX); |
| 2505 | |
| 2506 | cgrp = cgroup_kn_lock_live(of->kn); |
| 2507 | if (!cgrp) |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2508 | return -ENODEV; |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 2509 | spin_lock(&release_agent_path_lock); |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2510 | strlcpy(cgrp->root->release_agent_path, strstrip(buf), |
| 2511 | sizeof(cgrp->root->release_agent_path)); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 2512 | spin_unlock(&release_agent_path_lock); |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2513 | cgroup_kn_unlock(of->kn); |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2514 | return nbytes; |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2515 | } |
| 2516 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2517 | static int cgroup_release_agent_show(struct seq_file *seq, void *v) |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2518 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2519 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2520 | |
Tejun Heo | 46cfeb0 | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2521 | spin_lock(&release_agent_path_lock); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2522 | seq_puts(seq, cgrp->root->release_agent_path); |
Tejun Heo | 46cfeb0 | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2523 | spin_unlock(&release_agent_path_lock); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2524 | seq_putc(seq, '\n'); |
Paul Menage | e788e066 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2525 | return 0; |
| 2526 | } |
| 2527 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2528 | static int cgroup_sane_behavior_show(struct seq_file *seq, void *v) |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 2529 | { |
Tejun Heo | c1d5d42 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 2530 | seq_puts(seq, "0\n"); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 2531 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2532 | } |
| 2533 | |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 2534 | static void cgroup_print_ss_mask(struct seq_file *seq, unsigned long ss_mask) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2535 | { |
| 2536 | struct cgroup_subsys *ss; |
| 2537 | bool printed = false; |
| 2538 | int ssid; |
| 2539 | |
| 2540 | for_each_subsys(ss, ssid) { |
| 2541 | if (ss_mask & (1 << ssid)) { |
| 2542 | if (printed) |
| 2543 | seq_putc(seq, ' '); |
| 2544 | seq_printf(seq, "%s", ss->name); |
| 2545 | printed = true; |
| 2546 | } |
| 2547 | } |
| 2548 | if (printed) |
| 2549 | seq_putc(seq, '\n'); |
| 2550 | } |
| 2551 | |
| 2552 | /* show controllers which are currently attached to the default hierarchy */ |
| 2553 | static int cgroup_root_controllers_show(struct seq_file *seq, void *v) |
| 2554 | { |
| 2555 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2556 | |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 2557 | cgroup_print_ss_mask(seq, cgrp->root->subsys_mask & |
| 2558 | ~cgrp_dfl_root_inhibit_ss_mask); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2559 | return 0; |
| 2560 | } |
| 2561 | |
| 2562 | /* show controllers which are enabled from the parent */ |
| 2563 | static int cgroup_controllers_show(struct seq_file *seq, void *v) |
| 2564 | { |
| 2565 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2566 | |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2567 | cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2568 | return 0; |
| 2569 | } |
| 2570 | |
| 2571 | /* show controllers which are enabled for a given cgroup's children */ |
| 2572 | static int cgroup_subtree_control_show(struct seq_file *seq, void *v) |
| 2573 | { |
| 2574 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2575 | |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2576 | cgroup_print_ss_mask(seq, cgrp->subtree_control); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2577 | return 0; |
| 2578 | } |
| 2579 | |
| 2580 | /** |
| 2581 | * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy |
| 2582 | * @cgrp: root of the subtree to update csses for |
| 2583 | * |
| 2584 | * @cgrp's child_subsys_mask has changed and its subtree's (self excluded) |
| 2585 | * css associations need to be updated accordingly. This function looks up |
| 2586 | * all css_sets which are attached to the subtree, creates the matching |
| 2587 | * updated css_sets and migrates the tasks to the new ones. |
| 2588 | */ |
| 2589 | static int cgroup_update_dfl_csses(struct cgroup *cgrp) |
| 2590 | { |
| 2591 | LIST_HEAD(preloaded_csets); |
| 2592 | struct cgroup_subsys_state *css; |
| 2593 | struct css_set *src_cset; |
| 2594 | int ret; |
| 2595 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2596 | lockdep_assert_held(&cgroup_mutex); |
| 2597 | |
Tejun Heo | b5ba75b | 2015-05-13 16:35:18 -0400 | [diff] [blame^] | 2598 | percpu_down_write(&cgroup_threadgroup_rwsem); |
| 2599 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2600 | /* look up all csses currently attached to @cgrp's subtree */ |
| 2601 | down_read(&css_set_rwsem); |
| 2602 | css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) { |
| 2603 | struct cgrp_cset_link *link; |
| 2604 | |
| 2605 | /* self is not affected by child_subsys_mask change */ |
| 2606 | if (css->cgroup == cgrp) |
| 2607 | continue; |
| 2608 | |
| 2609 | list_for_each_entry(link, &css->cgroup->cset_links, cset_link) |
| 2610 | cgroup_migrate_add_src(link->cset, cgrp, |
| 2611 | &preloaded_csets); |
| 2612 | } |
| 2613 | up_read(&css_set_rwsem); |
| 2614 | |
| 2615 | /* NULL dst indicates self on default hierarchy */ |
| 2616 | ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets); |
| 2617 | if (ret) |
| 2618 | goto out_finish; |
| 2619 | |
| 2620 | list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) { |
| 2621 | struct task_struct *last_task = NULL, *task; |
| 2622 | |
| 2623 | /* src_csets precede dst_csets, break on the first dst_cset */ |
| 2624 | if (!src_cset->mg_src_cgrp) |
| 2625 | break; |
| 2626 | |
| 2627 | /* |
| 2628 | * All tasks in src_cset need to be migrated to the |
| 2629 | * matching dst_cset. Empty it process by process. We |
| 2630 | * walk tasks but migrate processes. The leader might even |
| 2631 | * belong to a different cset but such src_cset would also |
| 2632 | * be among the target src_csets because the default |
| 2633 | * hierarchy enforces per-process membership. |
| 2634 | */ |
| 2635 | while (true) { |
| 2636 | down_read(&css_set_rwsem); |
| 2637 | task = list_first_entry_or_null(&src_cset->tasks, |
| 2638 | struct task_struct, cg_list); |
| 2639 | if (task) { |
| 2640 | task = task->group_leader; |
| 2641 | WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp); |
| 2642 | get_task_struct(task); |
| 2643 | } |
| 2644 | up_read(&css_set_rwsem); |
| 2645 | |
| 2646 | if (!task) |
| 2647 | break; |
| 2648 | |
| 2649 | /* guard against possible infinite loop */ |
| 2650 | if (WARN(last_task == task, |
| 2651 | "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n")) |
| 2652 | goto out_finish; |
| 2653 | last_task = task; |
| 2654 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2655 | ret = cgroup_migrate(src_cset->dfl_cgrp, task, true); |
| 2656 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2657 | put_task_struct(task); |
| 2658 | |
| 2659 | if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret)) |
| 2660 | goto out_finish; |
| 2661 | } |
| 2662 | } |
| 2663 | |
| 2664 | out_finish: |
| 2665 | cgroup_migrate_finish(&preloaded_csets); |
Tejun Heo | b5ba75b | 2015-05-13 16:35:18 -0400 | [diff] [blame^] | 2666 | percpu_up_write(&cgroup_threadgroup_rwsem); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2667 | return ret; |
| 2668 | } |
| 2669 | |
| 2670 | /* change the enabled child controllers for a cgroup in the default hierarchy */ |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2671 | static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of, |
| 2672 | char *buf, size_t nbytes, |
| 2673 | loff_t off) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2674 | { |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 2675 | unsigned long enable = 0, disable = 0; |
| 2676 | unsigned long css_enable, css_disable, old_sc, new_sc, old_ss, new_ss; |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2677 | struct cgroup *cgrp, *child; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2678 | struct cgroup_subsys *ss; |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2679 | char *tok; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2680 | int ssid, ret; |
| 2681 | |
| 2682 | /* |
Tejun Heo | d37167a | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2683 | * Parse input - space separated list of subsystem names prefixed |
| 2684 | * with either + or -. |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2685 | */ |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2686 | buf = strstrip(buf); |
| 2687 | while ((tok = strsep(&buf, " "))) { |
Tejun Heo | d37167a | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2688 | if (tok[0] == '\0') |
| 2689 | continue; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2690 | for_each_subsys(ss, ssid) { |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 2691 | if (ss->disabled || strcmp(tok + 1, ss->name) || |
| 2692 | ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask)) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2693 | continue; |
| 2694 | |
| 2695 | if (*tok == '+') { |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2696 | enable |= 1 << ssid; |
| 2697 | disable &= ~(1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2698 | } else if (*tok == '-') { |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2699 | disable |= 1 << ssid; |
| 2700 | enable &= ~(1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2701 | } else { |
| 2702 | return -EINVAL; |
| 2703 | } |
| 2704 | break; |
| 2705 | } |
| 2706 | if (ssid == CGROUP_SUBSYS_COUNT) |
| 2707 | return -EINVAL; |
| 2708 | } |
| 2709 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2710 | cgrp = cgroup_kn_lock_live(of->kn); |
| 2711 | if (!cgrp) |
| 2712 | return -ENODEV; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2713 | |
| 2714 | for_each_subsys(ss, ssid) { |
| 2715 | if (enable & (1 << ssid)) { |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2716 | if (cgrp->subtree_control & (1 << ssid)) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2717 | enable &= ~(1 << ssid); |
| 2718 | continue; |
| 2719 | } |
| 2720 | |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2721 | /* unavailable or not enabled on the parent? */ |
| 2722 | if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) || |
| 2723 | (cgroup_parent(cgrp) && |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2724 | !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) { |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2725 | ret = -ENOENT; |
| 2726 | goto out_unlock; |
| 2727 | } |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2728 | } else if (disable & (1 << ssid)) { |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2729 | if (!(cgrp->subtree_control & (1 << ssid))) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2730 | disable &= ~(1 << ssid); |
| 2731 | continue; |
| 2732 | } |
| 2733 | |
| 2734 | /* a child has it enabled? */ |
| 2735 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2736 | if (child->subtree_control & (1 << ssid)) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2737 | ret = -EBUSY; |
Tejun Heo | ddab2b6 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2738 | goto out_unlock; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2739 | } |
| 2740 | } |
| 2741 | } |
| 2742 | } |
| 2743 | |
| 2744 | if (!enable && !disable) { |
| 2745 | ret = 0; |
Tejun Heo | ddab2b6 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2746 | goto out_unlock; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2747 | } |
| 2748 | |
| 2749 | /* |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2750 | * Except for the root, subtree_control must be zero for a cgroup |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2751 | * with tasks so that child cgroups don't compete against tasks. |
| 2752 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 2753 | if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2754 | ret = -EBUSY; |
| 2755 | goto out_unlock; |
| 2756 | } |
| 2757 | |
| 2758 | /* |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2759 | * Update subsys masks and calculate what needs to be done. More |
| 2760 | * subsystems than specified may need to be enabled or disabled |
| 2761 | * depending on subsystem dependencies. |
| 2762 | */ |
Tejun Heo | 755bf5e | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 2763 | old_sc = cgrp->subtree_control; |
| 2764 | old_ss = cgrp->child_subsys_mask; |
| 2765 | new_sc = (old_sc | enable) & ~disable; |
| 2766 | new_ss = cgroup_calc_child_subsys_mask(cgrp, new_sc); |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2767 | |
Tejun Heo | 755bf5e | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 2768 | css_enable = ~old_ss & new_ss; |
| 2769 | css_disable = old_ss & ~new_ss; |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2770 | enable |= css_enable; |
| 2771 | disable |= css_disable; |
| 2772 | |
Tejun Heo | db6e305 | 2014-11-18 02:49:51 -0500 | [diff] [blame] | 2773 | /* |
| 2774 | * Because css offlining is asynchronous, userland might try to |
| 2775 | * re-enable the same controller while the previous instance is |
| 2776 | * still around. In such cases, wait till it's gone using |
| 2777 | * offline_waitq. |
| 2778 | */ |
| 2779 | for_each_subsys(ss, ssid) { |
| 2780 | if (!(css_enable & (1 << ssid))) |
| 2781 | continue; |
| 2782 | |
| 2783 | cgroup_for_each_live_child(child, cgrp) { |
| 2784 | DEFINE_WAIT(wait); |
| 2785 | |
| 2786 | if (!cgroup_css(child, ss)) |
| 2787 | continue; |
| 2788 | |
| 2789 | cgroup_get(child); |
| 2790 | prepare_to_wait(&child->offline_waitq, &wait, |
| 2791 | TASK_UNINTERRUPTIBLE); |
| 2792 | cgroup_kn_unlock(of->kn); |
| 2793 | schedule(); |
| 2794 | finish_wait(&child->offline_waitq, &wait); |
| 2795 | cgroup_put(child); |
| 2796 | |
| 2797 | return restart_syscall(); |
| 2798 | } |
| 2799 | } |
| 2800 | |
Tejun Heo | 755bf5e | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 2801 | cgrp->subtree_control = new_sc; |
| 2802 | cgrp->child_subsys_mask = new_ss; |
| 2803 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2804 | /* |
| 2805 | * Create new csses or make the existing ones visible. A css is |
| 2806 | * created invisible if it's being implicitly enabled through |
| 2807 | * dependency. An invisible css is made visible when the userland |
| 2808 | * explicitly enables it. |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2809 | */ |
| 2810 | for_each_subsys(ss, ssid) { |
| 2811 | if (!(enable & (1 << ssid))) |
| 2812 | continue; |
| 2813 | |
| 2814 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2815 | if (css_enable & (1 << ssid)) |
| 2816 | ret = create_css(child, ss, |
| 2817 | cgrp->subtree_control & (1 << ssid)); |
| 2818 | else |
| 2819 | ret = cgroup_populate_dir(child, 1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2820 | if (ret) |
| 2821 | goto err_undo_css; |
| 2822 | } |
| 2823 | } |
| 2824 | |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2825 | /* |
| 2826 | * At this point, cgroup_e_css() results reflect the new csses |
| 2827 | * making the following cgroup_update_dfl_csses() properly update |
| 2828 | * css associations of all tasks in the subtree. |
| 2829 | */ |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2830 | ret = cgroup_update_dfl_csses(cgrp); |
| 2831 | if (ret) |
| 2832 | goto err_undo_css; |
| 2833 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2834 | /* |
| 2835 | * All tasks are migrated out of disabled csses. Kill or hide |
| 2836 | * them. A css is hidden when the userland requests it to be |
Tejun Heo | b4536f0ca | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2837 | * disabled while other subsystems are still depending on it. The |
| 2838 | * css must not actively control resources and be in the vanilla |
| 2839 | * state if it's made visible again later. Controllers which may |
| 2840 | * be depended upon should provide ->css_reset() for this purpose. |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2841 | */ |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2842 | for_each_subsys(ss, ssid) { |
| 2843 | if (!(disable & (1 << ssid))) |
| 2844 | continue; |
| 2845 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2846 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | b4536f0ca | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2847 | struct cgroup_subsys_state *css = cgroup_css(child, ss); |
| 2848 | |
| 2849 | if (css_disable & (1 << ssid)) { |
| 2850 | kill_css(css); |
| 2851 | } else { |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2852 | cgroup_clear_dir(child, 1 << ssid); |
Tejun Heo | b4536f0ca | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2853 | if (ss->css_reset) |
| 2854 | ss->css_reset(css); |
| 2855 | } |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2856 | } |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2857 | } |
| 2858 | |
Tejun Heo | 56c807b | 2014-11-18 02:49:51 -0500 | [diff] [blame] | 2859 | /* |
| 2860 | * The effective csses of all the descendants (excluding @cgrp) may |
| 2861 | * have changed. Subsystems can optionally subscribe to this event |
| 2862 | * by implementing ->css_e_css_changed() which is invoked if any of |
| 2863 | * the effective csses seen from the css's cgroup may have changed. |
| 2864 | */ |
| 2865 | for_each_subsys(ss, ssid) { |
| 2866 | struct cgroup_subsys_state *this_css = cgroup_css(cgrp, ss); |
| 2867 | struct cgroup_subsys_state *css; |
| 2868 | |
| 2869 | if (!ss->css_e_css_changed || !this_css) |
| 2870 | continue; |
| 2871 | |
| 2872 | css_for_each_descendant_pre(css, this_css) |
| 2873 | if (css != this_css) |
| 2874 | ss->css_e_css_changed(css); |
| 2875 | } |
| 2876 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2877 | kernfs_activate(cgrp->kn); |
| 2878 | ret = 0; |
| 2879 | out_unlock: |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2880 | cgroup_kn_unlock(of->kn); |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2881 | return ret ?: nbytes; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2882 | |
| 2883 | err_undo_css: |
Tejun Heo | 755bf5e | 2014-11-18 02:49:50 -0500 | [diff] [blame] | 2884 | cgrp->subtree_control = old_sc; |
| 2885 | cgrp->child_subsys_mask = old_ss; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2886 | |
| 2887 | for_each_subsys(ss, ssid) { |
| 2888 | if (!(enable & (1 << ssid))) |
| 2889 | continue; |
| 2890 | |
| 2891 | cgroup_for_each_live_child(child, cgrp) { |
| 2892 | struct cgroup_subsys_state *css = cgroup_css(child, ss); |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2893 | |
| 2894 | if (!css) |
| 2895 | continue; |
| 2896 | |
| 2897 | if (css_enable & (1 << ssid)) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2898 | kill_css(css); |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2899 | else |
| 2900 | cgroup_clear_dir(child, 1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2901 | } |
| 2902 | } |
| 2903 | goto out_unlock; |
| 2904 | } |
| 2905 | |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 2906 | static int cgroup_populated_show(struct seq_file *seq, void *v) |
| 2907 | { |
| 2908 | seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt); |
| 2909 | return 0; |
| 2910 | } |
| 2911 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2912 | static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf, |
| 2913 | size_t nbytes, loff_t off) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2914 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2915 | struct cgroup *cgrp = of->kn->parent->priv; |
| 2916 | struct cftype *cft = of->kn->priv; |
| 2917 | struct cgroup_subsys_state *css; |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2918 | int ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2919 | |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2920 | if (cft->write) |
| 2921 | return cft->write(of, buf, nbytes, off); |
| 2922 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2923 | /* |
| 2924 | * kernfs guarantees that a file isn't deleted with operations in |
| 2925 | * flight, which means that the matching css is and stays alive and |
| 2926 | * doesn't need to be pinned. The RCU locking is not necessary |
| 2927 | * either. It's just for the convenience of using cgroup_css(). |
| 2928 | */ |
| 2929 | rcu_read_lock(); |
| 2930 | css = cgroup_css(cgrp, cft->ss); |
| 2931 | rcu_read_unlock(); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2932 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2933 | if (cft->write_u64) { |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2934 | unsigned long long v; |
| 2935 | ret = kstrtoull(buf, 0, &v); |
| 2936 | if (!ret) |
| 2937 | ret = cft->write_u64(css, cft, v); |
| 2938 | } else if (cft->write_s64) { |
| 2939 | long long v; |
| 2940 | ret = kstrtoll(buf, 0, &v); |
| 2941 | if (!ret) |
| 2942 | ret = cft->write_s64(css, cft, v); |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2943 | } else { |
| 2944 | ret = -EINVAL; |
| 2945 | } |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2946 | |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2947 | return ret ?: nbytes; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2948 | } |
| 2949 | |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2950 | static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos) |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2951 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2952 | return seq_cft(seq)->seq_start(seq, ppos); |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2953 | } |
| 2954 | |
| 2955 | static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos) |
| 2956 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2957 | return seq_cft(seq)->seq_next(seq, v, ppos); |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2958 | } |
| 2959 | |
| 2960 | static void cgroup_seqfile_stop(struct seq_file *seq, void *v) |
| 2961 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2962 | seq_cft(seq)->seq_stop(seq, v); |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2963 | } |
| 2964 | |
| 2965 | static int cgroup_seqfile_show(struct seq_file *m, void *arg) |
| 2966 | { |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2967 | struct cftype *cft = seq_cft(m); |
| 2968 | struct cgroup_subsys_state *css = seq_css(m); |
Li Zefan | e0798ce | 2013-07-31 17:36:25 +0800 | [diff] [blame] | 2969 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2970 | if (cft->seq_show) |
| 2971 | return cft->seq_show(m, arg); |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2972 | |
Tejun Heo | 896f519 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2973 | if (cft->read_u64) |
| 2974 | seq_printf(m, "%llu\n", cft->read_u64(css, cft)); |
| 2975 | else if (cft->read_s64) |
| 2976 | seq_printf(m, "%lld\n", cft->read_s64(css, cft)); |
| 2977 | else |
| 2978 | return -EINVAL; |
| 2979 | return 0; |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2980 | } |
| 2981 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2982 | static struct kernfs_ops cgroup_kf_single_ops = { |
| 2983 | .atomic_write_len = PAGE_SIZE, |
| 2984 | .write = cgroup_file_write, |
| 2985 | .seq_show = cgroup_seqfile_show, |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2986 | }; |
| 2987 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2988 | static struct kernfs_ops cgroup_kf_ops = { |
| 2989 | .atomic_write_len = PAGE_SIZE, |
| 2990 | .write = cgroup_file_write, |
| 2991 | .seq_start = cgroup_seqfile_start, |
| 2992 | .seq_next = cgroup_seqfile_next, |
| 2993 | .seq_stop = cgroup_seqfile_stop, |
| 2994 | .seq_show = cgroup_seqfile_show, |
| 2995 | }; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2996 | |
| 2997 | /* |
| 2998 | * cgroup_rename - Only allow simple rename of directories in place. |
| 2999 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3000 | static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent, |
| 3001 | const char *new_name_str) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3002 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3003 | struct cgroup *cgrp = kn->priv; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 3004 | int ret; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 3005 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3006 | if (kernfs_type(kn) != KERNFS_DIR) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3007 | return -ENOTDIR; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3008 | if (kn->parent != new_parent) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3009 | return -EIO; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 3010 | |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 3011 | /* |
| 3012 | * This isn't a proper migration and its usefulness is very |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3013 | * limited. Disallow on the default hierarchy. |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 3014 | */ |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3015 | if (cgroup_on_dfl(cgrp)) |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 3016 | return -EPERM; |
| 3017 | |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 3018 | /* |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3019 | * We're gonna grab cgroup_mutex which nests outside kernfs |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 3020 | * active_ref. kernfs_rename() doesn't require active_ref |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3021 | * protection. Break them before grabbing cgroup_mutex. |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 3022 | */ |
| 3023 | kernfs_break_active_protection(new_parent); |
| 3024 | kernfs_break_active_protection(kn); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 3025 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3026 | mutex_lock(&cgroup_mutex); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 3027 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3028 | ret = kernfs_rename(kn, new_parent, new_name_str); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 3029 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3030 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3031 | |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 3032 | kernfs_unbreak_active_protection(kn); |
| 3033 | kernfs_unbreak_active_protection(new_parent); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3034 | return ret; |
Li Zefan | 099fca3 | 2009-04-02 16:57:29 -0700 | [diff] [blame] | 3035 | } |
| 3036 | |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3037 | /* set uid and gid of cgroup dirs and files to that of the creator */ |
| 3038 | static int cgroup_kn_set_ugid(struct kernfs_node *kn) |
| 3039 | { |
| 3040 | struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID, |
| 3041 | .ia_uid = current_fsuid(), |
| 3042 | .ia_gid = current_fsgid(), }; |
| 3043 | |
| 3044 | if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) && |
| 3045 | gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID)) |
| 3046 | return 0; |
| 3047 | |
| 3048 | return kernfs_setattr(kn, &iattr); |
| 3049 | } |
| 3050 | |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3051 | static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3052 | { |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3053 | char name[CGROUP_FILE_NAME_MAX]; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3054 | struct kernfs_node *kn; |
| 3055 | struct lock_class_key *key = NULL; |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3056 | int ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3057 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3058 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 3059 | key = &cft->lockdep_key; |
| 3060 | #endif |
| 3061 | kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name), |
| 3062 | cgroup_file_mode(cft), 0, cft->kf_ops, cft, |
Tejun Heo | dfeb0750 | 2015-02-13 14:36:31 -0800 | [diff] [blame] | 3063 | NULL, key); |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3064 | if (IS_ERR(kn)) |
| 3065 | return PTR_ERR(kn); |
| 3066 | |
| 3067 | ret = cgroup_kn_set_ugid(kn); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 3068 | if (ret) { |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3069 | kernfs_remove(kn); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 3070 | return ret; |
| 3071 | } |
| 3072 | |
Tejun Heo | b7fc5ad | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 3073 | if (cft->seq_show == cgroup_populated_show) |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 3074 | cgrp->populated_kn = kn; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 3075 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3076 | } |
| 3077 | |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3078 | /** |
| 3079 | * cgroup_addrm_files - add or remove files to a cgroup directory |
| 3080 | * @cgrp: the target cgroup |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3081 | * @cfts: array of cftypes to be added |
| 3082 | * @is_add: whether to add or remove |
| 3083 | * |
| 3084 | * 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] | 3085 | * For removals, this function never fails. If addition fails, this |
| 3086 | * function doesn't remove files already added. The caller is responsible |
| 3087 | * for cleaning up. |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3088 | */ |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3089 | static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[], |
| 3090 | bool is_add) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3091 | { |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 3092 | struct cftype *cft; |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3093 | int ret; |
| 3094 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3095 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3096 | |
| 3097 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 3098 | /* does cft->flags tell us to skip this file on @cgrp? */ |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3099 | if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp)) |
Tejun Heo | 8cbbf2c | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 3100 | continue; |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3101 | if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp)) |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 3102 | continue; |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3103 | if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp)) |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 3104 | continue; |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3105 | if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp)) |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 3106 | continue; |
| 3107 | |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 3108 | if (is_add) { |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3109 | ret = cgroup_add_file(cgrp, cft); |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3110 | if (ret) { |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 3111 | pr_warn("%s: failed to add %s, err=%d\n", |
| 3112 | __func__, cft->name, ret); |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3113 | return ret; |
| 3114 | } |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 3115 | } else { |
| 3116 | cgroup_rm_file(cgrp, cft); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3117 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3118 | } |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3119 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3120 | } |
| 3121 | |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3122 | static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add) |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3123 | { |
| 3124 | LIST_HEAD(pending); |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3125 | struct cgroup_subsys *ss = cfts[0].ss; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 3126 | struct cgroup *root = &ss->root->cgrp; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3127 | struct cgroup_subsys_state *css; |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3128 | int ret = 0; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3129 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3130 | lockdep_assert_held(&cgroup_mutex); |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 3131 | |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 3132 | /* add/rm files for all cgroups created before */ |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 3133 | css_for_each_descendant_pre(css, cgroup_css(root, ss)) { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3134 | struct cgroup *cgrp = css->cgroup; |
| 3135 | |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 3136 | if (cgroup_is_dead(cgrp)) |
| 3137 | continue; |
| 3138 | |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3139 | ret = cgroup_addrm_files(cgrp, cfts, is_add); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3140 | if (ret) |
| 3141 | break; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3142 | } |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3143 | |
| 3144 | if (is_add && !ret) |
| 3145 | kernfs_activate(root->kn); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3146 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3147 | } |
| 3148 | |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3149 | static void cgroup_exit_cftypes(struct cftype *cfts) |
| 3150 | { |
| 3151 | struct cftype *cft; |
| 3152 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3153 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
| 3154 | /* free copy for custom atomic_write_len, see init_cftypes() */ |
| 3155 | if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) |
| 3156 | kfree(cft->kf_ops); |
| 3157 | cft->kf_ops = NULL; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3158 | cft->ss = NULL; |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3159 | |
| 3160 | /* revert flags set by cgroup core while adding @cfts */ |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3161 | cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3162 | } |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3163 | } |
| 3164 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3165 | static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3166 | { |
| 3167 | struct cftype *cft; |
| 3168 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3169 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
| 3170 | struct kernfs_ops *kf_ops; |
| 3171 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3172 | WARN_ON(cft->ss || cft->kf_ops); |
| 3173 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3174 | if (cft->seq_start) |
| 3175 | kf_ops = &cgroup_kf_ops; |
| 3176 | else |
| 3177 | kf_ops = &cgroup_kf_single_ops; |
| 3178 | |
| 3179 | /* |
| 3180 | * Ugh... if @cft wants a custom max_write_len, we need to |
| 3181 | * make a copy of kf_ops to set its atomic_write_len. |
| 3182 | */ |
| 3183 | if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) { |
| 3184 | kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL); |
| 3185 | if (!kf_ops) { |
| 3186 | cgroup_exit_cftypes(cfts); |
| 3187 | return -ENOMEM; |
| 3188 | } |
| 3189 | kf_ops->atomic_write_len = cft->max_write_len; |
| 3190 | } |
| 3191 | |
| 3192 | cft->kf_ops = kf_ops; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3193 | cft->ss = ss; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3194 | } |
| 3195 | |
| 3196 | return 0; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3197 | } |
| 3198 | |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3199 | static int cgroup_rm_cftypes_locked(struct cftype *cfts) |
| 3200 | { |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3201 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3202 | |
| 3203 | if (!cfts || !cfts[0].ss) |
| 3204 | return -ENOENT; |
| 3205 | |
| 3206 | list_del(&cfts->node); |
| 3207 | cgroup_apply_cftypes(cfts, false); |
| 3208 | cgroup_exit_cftypes(cfts); |
| 3209 | return 0; |
| 3210 | } |
| 3211 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3212 | /** |
Tejun Heo | 80b1358 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3213 | * cgroup_rm_cftypes - remove an array of cftypes from a subsystem |
| 3214 | * @cfts: zero-length name terminated array of cftypes |
| 3215 | * |
| 3216 | * Unregister @cfts. Files described by @cfts are removed from all |
| 3217 | * existing cgroups and all future cgroups won't have them either. This |
| 3218 | * function can be called anytime whether @cfts' subsys is attached or not. |
| 3219 | * |
| 3220 | * Returns 0 on successful unregistration, -ENOENT if @cfts is not |
| 3221 | * registered. |
| 3222 | */ |
| 3223 | int cgroup_rm_cftypes(struct cftype *cfts) |
| 3224 | { |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3225 | int ret; |
Tejun Heo | 80b1358 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3226 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3227 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3228 | ret = cgroup_rm_cftypes_locked(cfts); |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3229 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3230 | return ret; |
| 3231 | } |
| 3232 | |
| 3233 | /** |
| 3234 | * cgroup_add_cftypes - add an array of cftypes to a subsystem |
| 3235 | * @ss: target cgroup subsystem |
| 3236 | * @cfts: zero-length name terminated array of cftypes |
| 3237 | * |
| 3238 | * Register @cfts to @ss. Files described by @cfts are created for all |
| 3239 | * existing cgroups to which @ss is attached and all future cgroups will |
| 3240 | * have them too. This function can be called anytime whether @ss is |
| 3241 | * attached or not. |
| 3242 | * |
| 3243 | * Returns 0 on successful registration, -errno on failure. Note that this |
| 3244 | * function currently returns 0 as long as @cfts registration is successful |
| 3245 | * even if some file creation attempts on existing cgroups fail. |
| 3246 | */ |
Tejun Heo | 2cf669a | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 3247 | static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3248 | { |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3249 | int ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3250 | |
Li Zefan | c731ae1 | 2014-06-05 17:16:30 +0800 | [diff] [blame] | 3251 | if (ss->disabled) |
| 3252 | return 0; |
| 3253 | |
Li Zefan | dc5736e | 2014-02-17 10:41:50 +0800 | [diff] [blame] | 3254 | if (!cfts || cfts[0].name[0] == '\0') |
| 3255 | return 0; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3256 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3257 | ret = cgroup_init_cftypes(ss, cfts); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3258 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3259 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3260 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3261 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3262 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3263 | list_add_tail(&cfts->node, &ss->cfts); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3264 | ret = cgroup_apply_cftypes(cfts, true); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3265 | if (ret) |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3266 | cgroup_rm_cftypes_locked(cfts); |
| 3267 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3268 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3269 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3270 | } |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3271 | |
| 3272 | /** |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3273 | * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy |
| 3274 | * @ss: target cgroup subsystem |
| 3275 | * @cfts: zero-length name terminated array of cftypes |
| 3276 | * |
| 3277 | * Similar to cgroup_add_cftypes() but the added files are only used for |
| 3278 | * the default hierarchy. |
| 3279 | */ |
| 3280 | int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
| 3281 | { |
| 3282 | struct cftype *cft; |
| 3283 | |
| 3284 | for (cft = cfts; cft && cft->name[0] != '\0'; cft++) |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3285 | cft->flags |= __CFTYPE_ONLY_ON_DFL; |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3286 | return cgroup_add_cftypes(ss, cfts); |
| 3287 | } |
| 3288 | |
| 3289 | /** |
| 3290 | * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies |
| 3291 | * @ss: target cgroup subsystem |
| 3292 | * @cfts: zero-length name terminated array of cftypes |
| 3293 | * |
| 3294 | * Similar to cgroup_add_cftypes() but the added files are only used for |
| 3295 | * the legacy hierarchies. |
| 3296 | */ |
Tejun Heo | 2cf669a | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 3297 | int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
| 3298 | { |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3299 | struct cftype *cft; |
| 3300 | |
Vivek Goyal | fa8137b | 2014-08-08 11:44:03 -0400 | [diff] [blame] | 3301 | /* |
| 3302 | * If legacy_flies_on_dfl, we want to show the legacy files on the |
| 3303 | * dfl hierarchy but iff the target subsystem hasn't been updated |
| 3304 | * for the dfl hierarchy yet. |
| 3305 | */ |
| 3306 | if (!cgroup_legacy_files_on_dfl || |
| 3307 | ss->dfl_cftypes != ss->legacy_cftypes) { |
| 3308 | for (cft = cfts; cft && cft->name[0] != '\0'; cft++) |
| 3309 | cft->flags |= __CFTYPE_NOT_ON_DFL; |
| 3310 | } |
| 3311 | |
Tejun Heo | 2cf669a | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 3312 | return cgroup_add_cftypes(ss, cfts); |
| 3313 | } |
| 3314 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3315 | /** |
| 3316 | * cgroup_task_count - count the number of tasks in a cgroup. |
| 3317 | * @cgrp: the cgroup in question |
| 3318 | * |
| 3319 | * Return the number of tasks in the cgroup. |
| 3320 | */ |
Tejun Heo | 07bc356 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3321 | static int cgroup_task_count(const struct cgroup *cgrp) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3322 | { |
| 3323 | int count = 0; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 3324 | struct cgrp_cset_link *link; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3325 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3326 | down_read(&css_set_rwsem); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 3327 | list_for_each_entry(link, &cgrp->cset_links, cset_link) |
| 3328 | count += atomic_read(&link->cset->refcount); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3329 | up_read(&css_set_rwsem); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3330 | return count; |
| 3331 | } |
| 3332 | |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3333 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3334 | * css_next_child - find the next child of a given css |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3335 | * @pos: the current position (%NULL to initiate traversal) |
| 3336 | * @parent: css whose children to walk |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3337 | * |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3338 | * This function returns the next child of @parent and should be called |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3339 | * under either cgroup_mutex or RCU read lock. The only requirement is |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3340 | * that @parent and @pos are accessible. The next sibling is guaranteed to |
| 3341 | * be returned regardless of their states. |
| 3342 | * |
| 3343 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 3344 | * css which finished ->css_online() is guaranteed to be visible in the |
| 3345 | * future iterations and will stay visible until the last reference is put. |
| 3346 | * A css which hasn't finished ->css_online() or already finished |
| 3347 | * ->css_offline() may show up during traversal. It's each subsystem's |
| 3348 | * responsibility to synchronize against on/offlining. |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3349 | */ |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3350 | struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos, |
| 3351 | struct cgroup_subsys_state *parent) |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3352 | { |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3353 | struct cgroup_subsys_state *next; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3354 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3355 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3356 | |
| 3357 | /* |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 3358 | * @pos could already have been unlinked from the sibling list. |
| 3359 | * Once a cgroup is removed, its ->sibling.next is no longer |
| 3360 | * updated when its next sibling changes. CSS_RELEASED is set when |
| 3361 | * @pos is taken off list, at which time its next pointer is valid, |
| 3362 | * and, as releases are serialized, the one pointed to by the next |
| 3363 | * pointer is guaranteed to not have started release yet. This |
| 3364 | * implies that if we observe !CSS_RELEASED on @pos in this RCU |
| 3365 | * critical section, the one pointed to by its next pointer is |
| 3366 | * guaranteed to not have finished its RCU grace period even if we |
| 3367 | * have dropped rcu_read_lock() inbetween iterations. |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3368 | * |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 3369 | * If @pos has CSS_RELEASED set, its next pointer can't be |
| 3370 | * dereferenced; however, as each css is given a monotonically |
| 3371 | * increasing unique serial number and always appended to the |
| 3372 | * sibling list, the next one can be found by walking the parent's |
| 3373 | * children until the first css with higher serial number than |
| 3374 | * @pos's. While this path can be slower, it happens iff iteration |
| 3375 | * races against release and the race window is very small. |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3376 | */ |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3377 | if (!pos) { |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3378 | next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling); |
| 3379 | } else if (likely(!(pos->flags & CSS_RELEASED))) { |
| 3380 | next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling); |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3381 | } else { |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3382 | list_for_each_entry_rcu(next, &parent->children, sibling) |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3383 | if (next->serial_nr > pos->serial_nr) |
| 3384 | break; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3385 | } |
| 3386 | |
Tejun Heo | 3b281af | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3387 | /* |
| 3388 | * @next, if not pointing to the head, can be dereferenced and is |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3389 | * the next sibling. |
Tejun Heo | 3b281af | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3390 | */ |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3391 | if (&next->sibling != &parent->children) |
| 3392 | return next; |
Tejun Heo | 3b281af | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3393 | return NULL; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3394 | } |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3395 | |
| 3396 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3397 | * css_next_descendant_pre - find the next descendant for pre-order walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3398 | * @pos: the current position (%NULL to initiate traversal) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3399 | * @root: css whose descendants to walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3400 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3401 | * 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] | 3402 | * to visit for pre-order traversal of @root's descendants. @root is |
| 3403 | * included in the iteration and the first node to be visited. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3404 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3405 | * While this function requires cgroup_mutex or RCU read locking, it |
| 3406 | * doesn't require the whole traversal to be contained in a single critical |
| 3407 | * section. This function will return the correct next descendant as long |
| 3408 | * 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] | 3409 | * |
| 3410 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 3411 | * css which finished ->css_online() is guaranteed to be visible in the |
| 3412 | * future iterations and will stay visible until the last reference is put. |
| 3413 | * A css which hasn't finished ->css_online() or already finished |
| 3414 | * ->css_offline() may show up during traversal. It's each subsystem's |
| 3415 | * responsibility to synchronize against on/offlining. |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3416 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3417 | struct cgroup_subsys_state * |
| 3418 | css_next_descendant_pre(struct cgroup_subsys_state *pos, |
| 3419 | struct cgroup_subsys_state *root) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3420 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3421 | struct cgroup_subsys_state *next; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3422 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3423 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3424 | |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3425 | /* if first iteration, visit @root */ |
Tejun Heo | 7805d00 | 2013-05-24 10:50:24 +0900 | [diff] [blame] | 3426 | if (!pos) |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3427 | return root; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3428 | |
| 3429 | /* visit the first child if exists */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3430 | next = css_next_child(NULL, pos); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3431 | if (next) |
| 3432 | return next; |
| 3433 | |
| 3434 | /* no child, visit my or the closest ancestor's next sibling */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3435 | while (pos != root) { |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3436 | next = css_next_child(pos, pos->parent); |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3437 | if (next) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3438 | return next; |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3439 | pos = pos->parent; |
Tejun Heo | 7805d00 | 2013-05-24 10:50:24 +0900 | [diff] [blame] | 3440 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3441 | |
| 3442 | return NULL; |
| 3443 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3444 | |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3445 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3446 | * css_rightmost_descendant - return the rightmost descendant of a css |
| 3447 | * @pos: css of interest |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3448 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3449 | * Return the rightmost descendant of @pos. If there's no descendant, @pos |
| 3450 | * is returned. This can be used during pre-order traversal to skip |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3451 | * subtree of @pos. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3452 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3453 | * While this function requires cgroup_mutex or RCU read locking, it |
| 3454 | * doesn't require the whole traversal to be contained in a single critical |
| 3455 | * section. This function will return the correct rightmost descendant as |
| 3456 | * long as @pos is accessible. |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3457 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3458 | struct cgroup_subsys_state * |
| 3459 | css_rightmost_descendant(struct cgroup_subsys_state *pos) |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3460 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3461 | struct cgroup_subsys_state *last, *tmp; |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3462 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3463 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3464 | |
| 3465 | do { |
| 3466 | last = pos; |
| 3467 | /* ->prev isn't RCU safe, walk ->next till the end */ |
| 3468 | pos = NULL; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3469 | css_for_each_child(tmp, last) |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3470 | pos = tmp; |
| 3471 | } while (pos); |
| 3472 | |
| 3473 | return last; |
| 3474 | } |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3475 | |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3476 | static struct cgroup_subsys_state * |
| 3477 | css_leftmost_descendant(struct cgroup_subsys_state *pos) |
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 *last; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3480 | |
| 3481 | do { |
| 3482 | last = pos; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3483 | pos = css_next_child(NULL, pos); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3484 | } while (pos); |
| 3485 | |
| 3486 | return last; |
| 3487 | } |
| 3488 | |
| 3489 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3490 | * css_next_descendant_post - find the next descendant for post-order walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3491 | * @pos: the current position (%NULL to initiate traversal) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3492 | * @root: css whose descendants to walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3493 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3494 | * 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] | 3495 | * to visit for post-order traversal of @root's descendants. @root is |
| 3496 | * included in the iteration and the last node to be visited. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3497 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3498 | * While this function requires cgroup_mutex or RCU read locking, it |
| 3499 | * doesn't require the whole traversal to be contained in a single critical |
| 3500 | * section. This function will return the correct next descendant as long |
| 3501 | * as both @pos and @cgroup are accessible and @pos is a descendant of |
| 3502 | * @cgroup. |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3503 | * |
| 3504 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 3505 | * css which finished ->css_online() is guaranteed to be visible in the |
| 3506 | * future iterations and will stay visible until the last reference is put. |
| 3507 | * A css which hasn't finished ->css_online() or already finished |
| 3508 | * ->css_offline() may show up during traversal. It's each subsystem's |
| 3509 | * responsibility to synchronize against on/offlining. |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3510 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3511 | struct cgroup_subsys_state * |
| 3512 | css_next_descendant_post(struct cgroup_subsys_state *pos, |
| 3513 | struct cgroup_subsys_state *root) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3514 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3515 | struct cgroup_subsys_state *next; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3516 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3517 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3518 | |
Tejun Heo | 58b79a9 | 2013-09-06 15:31:08 -0400 | [diff] [blame] | 3519 | /* if first iteration, visit leftmost descendant which may be @root */ |
| 3520 | if (!pos) |
| 3521 | return css_leftmost_descendant(root); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3522 | |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3523 | /* if we visited @root, we're done */ |
| 3524 | if (pos == root) |
| 3525 | return NULL; |
| 3526 | |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3527 | /* if there's an unvisited sibling, visit its leftmost descendant */ |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3528 | next = css_next_child(pos, pos->parent); |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3529 | if (next) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3530 | return css_leftmost_descendant(next); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3531 | |
| 3532 | /* no sibling left, visit parent */ |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3533 | return pos->parent; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3534 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3535 | |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3536 | /** |
| 3537 | * css_has_online_children - does a css have online children |
| 3538 | * @css: the target css |
| 3539 | * |
| 3540 | * Returns %true if @css has any online children; otherwise, %false. This |
| 3541 | * function can be called from any context but the caller is responsible |
| 3542 | * for synchronizing against on/offlining as necessary. |
| 3543 | */ |
| 3544 | bool css_has_online_children(struct cgroup_subsys_state *css) |
Tejun Heo | cbc125e | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 3545 | { |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3546 | struct cgroup_subsys_state *child; |
| 3547 | bool ret = false; |
Tejun Heo | cbc125e | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 3548 | |
| 3549 | rcu_read_lock(); |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3550 | css_for_each_child(child, css) { |
Li Zefan | 99bae5f | 2014-06-12 14:31:31 +0800 | [diff] [blame] | 3551 | if (child->flags & CSS_ONLINE) { |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3552 | ret = true; |
| 3553 | break; |
Tejun Heo | cbc125e | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 3554 | } |
| 3555 | } |
| 3556 | rcu_read_unlock(); |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3557 | return ret; |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 3558 | } |
| 3559 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3560 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3561 | * 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] | 3562 | * @it: the iterator to advance |
| 3563 | * |
| 3564 | * Advance @it to the next css_set to walk. |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3565 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3566 | static void css_advance_task_iter(struct css_task_iter *it) |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3567 | { |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3568 | struct list_head *l = it->cset_pos; |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3569 | struct cgrp_cset_link *link; |
| 3570 | struct css_set *cset; |
| 3571 | |
| 3572 | /* Advance to the next non-empty css_set */ |
| 3573 | do { |
| 3574 | l = l->next; |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3575 | if (l == it->cset_head) { |
| 3576 | it->cset_pos = NULL; |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3577 | return; |
| 3578 | } |
Tejun Heo | 3ebb2b6 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3579 | |
| 3580 | if (it->ss) { |
| 3581 | cset = container_of(l, struct css_set, |
| 3582 | e_cset_node[it->ss->id]); |
| 3583 | } else { |
| 3584 | link = list_entry(l, struct cgrp_cset_link, cset_link); |
| 3585 | cset = link->cset; |
| 3586 | } |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3587 | } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks)); |
| 3588 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3589 | it->cset_pos = l; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3590 | |
| 3591 | if (!list_empty(&cset->tasks)) |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3592 | it->task_pos = cset->tasks.next; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3593 | else |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3594 | it->task_pos = cset->mg_tasks.next; |
| 3595 | |
| 3596 | it->tasks_head = &cset->tasks; |
| 3597 | it->mg_tasks_head = &cset->mg_tasks; |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3598 | } |
| 3599 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3600 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3601 | * css_task_iter_start - initiate task iteration |
| 3602 | * @css: the css to walk tasks of |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3603 | * @it: the task iterator to use |
| 3604 | * |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3605 | * Initiate iteration through the tasks of @css. The caller can call |
| 3606 | * css_task_iter_next() to walk through the tasks until the function |
| 3607 | * returns NULL. On completion of iteration, css_task_iter_end() must be |
| 3608 | * called. |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3609 | * |
| 3610 | * Note that this function acquires a lock which is released when the |
| 3611 | * iteration finishes. The caller can't sleep while iteration is in |
| 3612 | * progress. |
| 3613 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3614 | void css_task_iter_start(struct cgroup_subsys_state *css, |
| 3615 | struct css_task_iter *it) |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3616 | __acquires(css_set_rwsem) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3617 | { |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 3618 | /* no one should try to iterate before mounting cgroups */ |
| 3619 | WARN_ON_ONCE(!use_task_css_set_links); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3620 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3621 | down_read(&css_set_rwsem); |
Tejun Heo | c59cd3d | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3622 | |
Tejun Heo | 3ebb2b6 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3623 | it->ss = css->ss; |
| 3624 | |
| 3625 | if (it->ss) |
| 3626 | it->cset_pos = &css->cgroup->e_csets[css->ss->id]; |
| 3627 | else |
| 3628 | it->cset_pos = &css->cgroup->cset_links; |
| 3629 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3630 | it->cset_head = it->cset_pos; |
Tejun Heo | c59cd3d | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3631 | |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3632 | css_advance_task_iter(it); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3633 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 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_next - return the next task for the iterator |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3637 | * @it: the task iterator being iterated |
| 3638 | * |
| 3639 | * The "next" function for task iteration. @it should have been |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3640 | * initialized via css_task_iter_start(). Returns NULL when the iteration |
| 3641 | * reaches the end. |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3642 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3643 | struct task_struct *css_task_iter_next(struct css_task_iter *it) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3644 | { |
| 3645 | struct task_struct *res; |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3646 | struct list_head *l = it->task_pos; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3647 | |
| 3648 | /* If the iterator cg is NULL, we have no tasks */ |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3649 | if (!it->cset_pos) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3650 | return NULL; |
| 3651 | res = list_entry(l, struct task_struct, cg_list); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3652 | |
| 3653 | /* |
| 3654 | * Advance iterator to find next entry. cset->tasks is consumed |
| 3655 | * first and then ->mg_tasks. After ->mg_tasks, we move onto the |
| 3656 | * next cset. |
| 3657 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3658 | l = l->next; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3659 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3660 | if (l == it->tasks_head) |
| 3661 | l = it->mg_tasks_head->next; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3662 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3663 | if (l == it->mg_tasks_head) |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3664 | css_advance_task_iter(it); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3665 | else |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3666 | it->task_pos = l; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3667 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3668 | return res; |
| 3669 | } |
| 3670 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3671 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3672 | * css_task_iter_end - finish task iteration |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3673 | * @it: the task iterator to finish |
| 3674 | * |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3675 | * Finish task iteration started by css_task_iter_start(). |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3676 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3677 | void css_task_iter_end(struct css_task_iter *it) |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3678 | __releases(css_set_rwsem) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3679 | { |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3680 | up_read(&css_set_rwsem); |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 3681 | } |
| 3682 | |
| 3683 | /** |
| 3684 | * cgroup_trasnsfer_tasks - move tasks from one cgroup to another |
| 3685 | * @to: cgroup to which the tasks will be moved |
| 3686 | * @from: cgroup in which the tasks currently reside |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3687 | * |
| 3688 | * Locking rules between cgroup_post_fork() and the migration path |
| 3689 | * guarantee that, if a task is forking while being migrated, the new child |
| 3690 | * is guaranteed to be either visible in the source cgroup after the |
| 3691 | * parent's migration is complete or put into the target cgroup. No task |
| 3692 | * can slip out of migration through forking. |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 3693 | */ |
| 3694 | int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from) |
| 3695 | { |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3696 | LIST_HEAD(preloaded_csets); |
| 3697 | struct cgrp_cset_link *link; |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3698 | struct css_task_iter it; |
| 3699 | struct task_struct *task; |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3700 | int ret; |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3701 | |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3702 | mutex_lock(&cgroup_mutex); |
| 3703 | |
| 3704 | /* all tasks in @from are being moved, all csets are source */ |
| 3705 | down_read(&css_set_rwsem); |
| 3706 | list_for_each_entry(link, &from->cset_links, cset_link) |
| 3707 | cgroup_migrate_add_src(link->cset, to, &preloaded_csets); |
| 3708 | up_read(&css_set_rwsem); |
| 3709 | |
| 3710 | ret = cgroup_migrate_prepare_dst(to, &preloaded_csets); |
| 3711 | if (ret) |
| 3712 | goto out_err; |
| 3713 | |
| 3714 | /* |
| 3715 | * Migrate tasks one-by-one until @form is empty. This fails iff |
| 3716 | * ->can_attach() fails. |
| 3717 | */ |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3718 | do { |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 3719 | css_task_iter_start(&from->self, &it); |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3720 | task = css_task_iter_next(&it); |
| 3721 | if (task) |
| 3722 | get_task_struct(task); |
| 3723 | css_task_iter_end(&it); |
| 3724 | |
| 3725 | if (task) { |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3726 | ret = cgroup_migrate(to, task, false); |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3727 | put_task_struct(task); |
| 3728 | } |
| 3729 | } while (task && !ret); |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3730 | out_err: |
| 3731 | cgroup_migrate_finish(&preloaded_csets); |
| 3732 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3733 | return ret; |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 3734 | } |
| 3735 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3736 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3737 | * Stuff for reading the 'tasks'/'procs' files. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3738 | * |
| 3739 | * Reading this file can return large amounts of data if a cgroup has |
| 3740 | * *lots* of attached tasks. So it may need several calls to read(), |
| 3741 | * but we cannot guarantee that the information we produce is correct |
| 3742 | * unless we produce it entirely atomically. |
| 3743 | * |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3744 | */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3745 | |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3746 | /* which pidlist file are we talking about? */ |
| 3747 | enum cgroup_filetype { |
| 3748 | CGROUP_FILE_PROCS, |
| 3749 | CGROUP_FILE_TASKS, |
| 3750 | }; |
| 3751 | |
| 3752 | /* |
| 3753 | * A pidlist is a list of pids that virtually represents the contents of one |
| 3754 | * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists, |
| 3755 | * a pair (one each for procs, tasks) for each pid namespace that's relevant |
| 3756 | * to the cgroup. |
| 3757 | */ |
| 3758 | struct cgroup_pidlist { |
| 3759 | /* |
| 3760 | * used to find which pidlist is wanted. doesn't change as long as |
| 3761 | * this particular list stays in the list. |
| 3762 | */ |
| 3763 | struct { enum cgroup_filetype type; struct pid_namespace *ns; } key; |
| 3764 | /* array of xids */ |
| 3765 | pid_t *list; |
| 3766 | /* how many elements the above list has */ |
| 3767 | int length; |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3768 | /* each of these stored in a list by its cgroup */ |
| 3769 | struct list_head links; |
| 3770 | /* pointer to the cgroup we belong to, for list removal purposes */ |
| 3771 | struct cgroup *owner; |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3772 | /* for delayed destruction */ |
| 3773 | struct delayed_work destroy_dwork; |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3774 | }; |
| 3775 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3776 | /* |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3777 | * The following two functions "fix" the issue where there are more pids |
| 3778 | * than kmalloc will give memory for; in such cases, we use vmalloc/vfree. |
| 3779 | * TODO: replace with a kernel-wide solution to this problem |
| 3780 | */ |
| 3781 | #define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2)) |
| 3782 | static void *pidlist_allocate(int count) |
| 3783 | { |
| 3784 | if (PIDLIST_TOO_LARGE(count)) |
| 3785 | return vmalloc(count * sizeof(pid_t)); |
| 3786 | else |
| 3787 | return kmalloc(count * sizeof(pid_t), GFP_KERNEL); |
| 3788 | } |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3789 | |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3790 | static void pidlist_free(void *p) |
| 3791 | { |
Bandan Das | 5879451 | 2015-03-02 17:51:10 -0500 | [diff] [blame] | 3792 | kvfree(p); |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3793 | } |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3794 | |
| 3795 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3796 | * Used to destroy all pidlists lingering waiting for destroy timer. None |
| 3797 | * should be left afterwards. |
| 3798 | */ |
| 3799 | static void cgroup_pidlist_destroy_all(struct cgroup *cgrp) |
| 3800 | { |
| 3801 | struct cgroup_pidlist *l, *tmp_l; |
| 3802 | |
| 3803 | mutex_lock(&cgrp->pidlist_mutex); |
| 3804 | list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links) |
| 3805 | mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0); |
| 3806 | mutex_unlock(&cgrp->pidlist_mutex); |
| 3807 | |
| 3808 | flush_workqueue(cgroup_pidlist_destroy_wq); |
| 3809 | BUG_ON(!list_empty(&cgrp->pidlists)); |
| 3810 | } |
| 3811 | |
| 3812 | static void cgroup_pidlist_destroy_work_fn(struct work_struct *work) |
| 3813 | { |
| 3814 | struct delayed_work *dwork = to_delayed_work(work); |
| 3815 | struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist, |
| 3816 | destroy_dwork); |
| 3817 | struct cgroup_pidlist *tofree = NULL; |
| 3818 | |
| 3819 | mutex_lock(&l->owner->pidlist_mutex); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3820 | |
| 3821 | /* |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3822 | * Destroy iff we didn't get queued again. The state won't change |
| 3823 | * as destroy_dwork can only be queued while locked. |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3824 | */ |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3825 | if (!delayed_work_pending(dwork)) { |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3826 | list_del(&l->links); |
| 3827 | pidlist_free(l->list); |
| 3828 | put_pid_ns(l->key.ns); |
| 3829 | tofree = l; |
| 3830 | } |
| 3831 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3832 | mutex_unlock(&l->owner->pidlist_mutex); |
| 3833 | kfree(tofree); |
| 3834 | } |
| 3835 | |
| 3836 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3837 | * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 3838 | * Returns the number of unique elements. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3839 | */ |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 3840 | static int pidlist_uniq(pid_t *list, int length) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3841 | { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3842 | int src, dest = 1; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3843 | |
| 3844 | /* |
| 3845 | * we presume the 0th element is unique, so i starts at 1. trivial |
| 3846 | * edge cases first; no work needs to be done for either |
| 3847 | */ |
| 3848 | if (length == 0 || length == 1) |
| 3849 | return length; |
| 3850 | /* src and dest walk down the list; dest counts unique elements */ |
| 3851 | for (src = 1; src < length; src++) { |
| 3852 | /* find next unique element */ |
| 3853 | while (list[src] == list[src-1]) { |
| 3854 | src++; |
| 3855 | if (src == length) |
| 3856 | goto after; |
| 3857 | } |
| 3858 | /* dest always points to where the next unique element goes */ |
| 3859 | list[dest] = list[src]; |
| 3860 | dest++; |
| 3861 | } |
| 3862 | after: |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3863 | return dest; |
| 3864 | } |
| 3865 | |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3866 | /* |
| 3867 | * The two pid files - task and cgroup.procs - guaranteed that the result |
| 3868 | * is sorted, which forced this whole pidlist fiasco. As pid order is |
| 3869 | * different per namespace, each namespace needs differently sorted list, |
| 3870 | * making it impossible to use, for example, single rbtree of member tasks |
| 3871 | * sorted by task pointer. As pidlists can be fairly large, allocating one |
| 3872 | * per open file is dangerous, so cgroup had to implement shared pool of |
| 3873 | * pidlists keyed by cgroup and namespace. |
| 3874 | * |
| 3875 | * All this extra complexity was caused by the original implementation |
| 3876 | * committing to an entirely unnecessary property. In the long term, we |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3877 | * want to do away with it. Explicitly scramble sort order if on the |
| 3878 | * default hierarchy so that no such expectation exists in the new |
| 3879 | * interface. |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3880 | * |
| 3881 | * Scrambling is done by swapping every two consecutive bits, which is |
| 3882 | * non-identity one-to-one mapping which disturbs sort order sufficiently. |
| 3883 | */ |
| 3884 | static pid_t pid_fry(pid_t pid) |
| 3885 | { |
| 3886 | unsigned a = pid & 0x55555555; |
| 3887 | unsigned b = pid & 0xAAAAAAAA; |
| 3888 | |
| 3889 | return (a << 1) | (b >> 1); |
| 3890 | } |
| 3891 | |
| 3892 | static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid) |
| 3893 | { |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3894 | if (cgroup_on_dfl(cgrp)) |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3895 | return pid_fry(pid); |
| 3896 | else |
| 3897 | return pid; |
| 3898 | } |
| 3899 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3900 | static int cmppid(const void *a, const void *b) |
| 3901 | { |
| 3902 | return *(pid_t *)a - *(pid_t *)b; |
| 3903 | } |
| 3904 | |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3905 | static int fried_cmppid(const void *a, const void *b) |
| 3906 | { |
| 3907 | return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b); |
| 3908 | } |
| 3909 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3910 | static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp, |
| 3911 | enum cgroup_filetype type) |
| 3912 | { |
| 3913 | struct cgroup_pidlist *l; |
| 3914 | /* don't need task_nsproxy() if we're looking at ourself */ |
Eric W. Biederman | 17cf22c | 2010-03-02 14:51:53 -0800 | [diff] [blame] | 3915 | struct pid_namespace *ns = task_active_pid_ns(current); |
Li Zefan | b70cc5f | 2010-03-10 15:22:12 -0800 | [diff] [blame] | 3916 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3917 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3918 | |
| 3919 | list_for_each_entry(l, &cgrp->pidlists, links) |
| 3920 | if (l->key.type == type && l->key.ns == ns) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3921 | return l; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3922 | return NULL; |
| 3923 | } |
| 3924 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3925 | /* |
| 3926 | * find the appropriate pidlist for our purpose (given procs vs tasks) |
| 3927 | * returns with the lock on that pidlist already held, and takes care |
| 3928 | * of the use count, or returns NULL with no locks held if we're out of |
| 3929 | * memory. |
| 3930 | */ |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3931 | static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp, |
| 3932 | enum cgroup_filetype type) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3933 | { |
| 3934 | struct cgroup_pidlist *l; |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3935 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3936 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3937 | |
| 3938 | l = cgroup_pidlist_find(cgrp, type); |
| 3939 | if (l) |
| 3940 | return l; |
| 3941 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3942 | /* entry not found; create a new one */ |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 3943 | l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL); |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3944 | if (!l) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3945 | return l; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3946 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3947 | INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3948 | l->key.type = type; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3949 | /* don't need task_nsproxy() if we're looking at ourself */ |
| 3950 | l->key.ns = get_pid_ns(task_active_pid_ns(current)); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3951 | l->owner = cgrp; |
| 3952 | list_add(&l->links, &cgrp->pidlists); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3953 | return l; |
| 3954 | } |
| 3955 | |
| 3956 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3957 | * Load a cgroup's pidarray with either procs' tgids or tasks' pids |
| 3958 | */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3959 | static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type, |
| 3960 | struct cgroup_pidlist **lp) |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3961 | { |
| 3962 | pid_t *array; |
| 3963 | int length; |
| 3964 | int pid, n = 0; /* used for populating the array */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3965 | struct css_task_iter it; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3966 | struct task_struct *tsk; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3967 | struct cgroup_pidlist *l; |
| 3968 | |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3969 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3970 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3971 | /* |
| 3972 | * If cgroup gets more users after we read count, we won't have |
| 3973 | * enough space - tough. This race is indistinguishable to the |
| 3974 | * caller from the case that the additional cgroup users didn't |
| 3975 | * show up until sometime later on. |
| 3976 | */ |
| 3977 | length = cgroup_task_count(cgrp); |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3978 | array = pidlist_allocate(length); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3979 | if (!array) |
| 3980 | return -ENOMEM; |
| 3981 | /* now, populate the array */ |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 3982 | css_task_iter_start(&cgrp->self, &it); |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3983 | while ((tsk = css_task_iter_next(&it))) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3984 | if (unlikely(n == length)) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3985 | break; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3986 | /* get tgid or pid for procs or tasks file respectively */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3987 | if (type == CGROUP_FILE_PROCS) |
| 3988 | pid = task_tgid_vnr(tsk); |
| 3989 | else |
| 3990 | pid = task_pid_vnr(tsk); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3991 | if (pid > 0) /* make sure to only use valid results */ |
| 3992 | array[n++] = pid; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3993 | } |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3994 | css_task_iter_end(&it); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3995 | length = n; |
| 3996 | /* now sort & (if procs) strip out duplicates */ |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3997 | if (cgroup_on_dfl(cgrp)) |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3998 | sort(array, length, sizeof(pid_t), fried_cmppid, NULL); |
| 3999 | else |
| 4000 | sort(array, length, sizeof(pid_t), cmppid, NULL); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 4001 | if (type == CGROUP_FILE_PROCS) |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 4002 | length = pidlist_uniq(array, length); |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4003 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4004 | l = cgroup_pidlist_find_create(cgrp, type); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 4005 | if (!l) { |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 4006 | pidlist_free(array); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 4007 | return -ENOMEM; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4008 | } |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4009 | |
| 4010 | /* store array, freeing old if necessary */ |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 4011 | pidlist_free(l->list); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4012 | l->list = array; |
| 4013 | l->length = length; |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 4014 | *lp = l; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4015 | return 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4016 | } |
| 4017 | |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4018 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4019 | * cgroupstats_build - build and fill cgroupstats |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4020 | * @stats: cgroupstats to fill information into |
| 4021 | * @dentry: A dentry entry belonging to the cgroup for which stats have |
| 4022 | * been requested. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4023 | * |
| 4024 | * Build and fill cgroupstats so that taskstats can export it to user |
| 4025 | * space. |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4026 | */ |
| 4027 | int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry) |
| 4028 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4029 | struct kernfs_node *kn = kernfs_node_from_dentry(dentry); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4030 | struct cgroup *cgrp; |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 4031 | struct css_task_iter it; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4032 | struct task_struct *tsk; |
Li Zefan | 33d283b | 2008-11-19 15:36:48 -0800 | [diff] [blame] | 4033 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4034 | /* it should be kernfs_node belonging to cgroupfs and is a directory */ |
| 4035 | if (dentry->d_sb->s_type != &cgroup_fs_type || !kn || |
| 4036 | kernfs_type(kn) != KERNFS_DIR) |
| 4037 | return -EINVAL; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4038 | |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4039 | mutex_lock(&cgroup_mutex); |
| 4040 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4041 | /* |
| 4042 | * 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] | 4043 | * @kn->priv's validity. For this and css_tryget_online_from_dir(), |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4044 | * @kn->priv is RCU safe. Let's do the RCU dancing. |
| 4045 | */ |
| 4046 | rcu_read_lock(); |
| 4047 | cgrp = rcu_dereference(kn->priv); |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4048 | if (!cgrp || cgroup_is_dead(cgrp)) { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4049 | rcu_read_unlock(); |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4050 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4051 | return -ENOENT; |
| 4052 | } |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4053 | rcu_read_unlock(); |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4054 | |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 4055 | css_task_iter_start(&cgrp->self, &it); |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 4056 | while ((tsk = css_task_iter_next(&it))) { |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4057 | switch (tsk->state) { |
| 4058 | case TASK_RUNNING: |
| 4059 | stats->nr_running++; |
| 4060 | break; |
| 4061 | case TASK_INTERRUPTIBLE: |
| 4062 | stats->nr_sleeping++; |
| 4063 | break; |
| 4064 | case TASK_UNINTERRUPTIBLE: |
| 4065 | stats->nr_uninterruptible++; |
| 4066 | break; |
| 4067 | case TASK_STOPPED: |
| 4068 | stats->nr_stopped++; |
| 4069 | break; |
| 4070 | default: |
| 4071 | if (delayacct_is_task_waiting_on_io(tsk)) |
| 4072 | stats->nr_io_wait++; |
| 4073 | break; |
| 4074 | } |
| 4075 | } |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 4076 | css_task_iter_end(&it); |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4077 | |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4078 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4079 | return 0; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4080 | } |
| 4081 | |
Paul Menage | 8f3ff20 | 2009-09-23 15:56:25 -0700 | [diff] [blame] | 4082 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4083 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4084 | * 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] | 4085 | * 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] | 4086 | * in the cgroup->l->list array. |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4087 | */ |
| 4088 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4089 | static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4090 | { |
| 4091 | /* |
| 4092 | * Initially we receive a position value that corresponds to |
| 4093 | * one more than the last pid shown (or 0 on the first call or |
| 4094 | * after a seek to the start). Use a binary-search to find the |
| 4095 | * next pid to display, if any |
| 4096 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4097 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4098 | struct cgroup *cgrp = seq_css(s)->cgroup; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4099 | struct cgroup_pidlist *l; |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4100 | enum cgroup_filetype type = seq_cft(s)->private; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4101 | int index = 0, pid = *pos; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4102 | int *iter, ret; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4103 | |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4104 | mutex_lock(&cgrp->pidlist_mutex); |
| 4105 | |
| 4106 | /* |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4107 | * !NULL @of->priv indicates that this isn't the first start() |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4108 | * after open. If the matching pidlist is around, we can use that. |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4109 | * 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] | 4110 | * could already have been destroyed. |
| 4111 | */ |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4112 | if (of->priv) |
| 4113 | of->priv = cgroup_pidlist_find(cgrp, type); |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4114 | |
| 4115 | /* |
| 4116 | * Either this is the first start() after open or the matching |
| 4117 | * pidlist has been destroyed inbetween. Create a new one. |
| 4118 | */ |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4119 | if (!of->priv) { |
| 4120 | ret = pidlist_array_load(cgrp, type, |
| 4121 | (struct cgroup_pidlist **)&of->priv); |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4122 | if (ret) |
| 4123 | return ERR_PTR(ret); |
| 4124 | } |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4125 | l = of->priv; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4126 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4127 | if (pid) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4128 | int end = l->length; |
Stephen Rothwell | 2077776 | 2008-10-21 16:11:20 +1100 | [diff] [blame] | 4129 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4130 | while (index < end) { |
| 4131 | int mid = (index + end) / 2; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4132 | if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) { |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4133 | index = mid; |
| 4134 | break; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4135 | } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4136 | index = mid + 1; |
| 4137 | else |
| 4138 | end = mid; |
| 4139 | } |
| 4140 | } |
| 4141 | /* If we're off the end of the array, we're done */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4142 | if (index >= l->length) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4143 | return NULL; |
| 4144 | /* Update the abstract position to be the actual pid that we found */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4145 | iter = l->list + index; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4146 | *pos = cgroup_pid_fry(cgrp, *iter); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4147 | return iter; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4148 | } |
| 4149 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4150 | static void cgroup_pidlist_stop(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4151 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4152 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4153 | struct cgroup_pidlist *l = of->priv; |
Tejun Heo | 6223685 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 4154 | |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4155 | if (l) |
| 4156 | mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4157 | CGROUP_PIDLIST_DESTROY_DELAY); |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4158 | mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4159 | } |
| 4160 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4161 | 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] | 4162 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4163 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4164 | struct cgroup_pidlist *l = of->priv; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4165 | pid_t *p = v; |
| 4166 | pid_t *end = l->list + l->length; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4167 | /* |
| 4168 | * Advance to the next pid in the array. If this goes off the |
| 4169 | * end, we're done |
| 4170 | */ |
| 4171 | p++; |
| 4172 | if (p >= end) { |
| 4173 | return NULL; |
| 4174 | } else { |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4175 | *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4176 | return p; |
| 4177 | } |
| 4178 | } |
| 4179 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4180 | static int cgroup_pidlist_show(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4181 | { |
Joe Perches | 94ff212 | 2015-04-15 16:18:20 -0700 | [diff] [blame] | 4182 | seq_printf(s, "%d\n", *(int *)v); |
| 4183 | |
| 4184 | return 0; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4185 | } |
| 4186 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4187 | static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css, |
| 4188 | struct cftype *cft) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4189 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4190 | return notify_on_release(css->cgroup); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4191 | } |
| 4192 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4193 | static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css, |
| 4194 | struct cftype *cft, u64 val) |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4195 | { |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4196 | if (val) |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4197 | set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4198 | else |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4199 | clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4200 | return 0; |
| 4201 | } |
| 4202 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4203 | static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css, |
| 4204 | struct cftype *cft) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4205 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4206 | return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4207 | } |
| 4208 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4209 | static int cgroup_clone_children_write(struct cgroup_subsys_state *css, |
| 4210 | struct cftype *cft, u64 val) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4211 | { |
| 4212 | if (val) |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4213 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4214 | else |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4215 | clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4216 | return 0; |
| 4217 | } |
| 4218 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4219 | /* cgroup core interface files for the default hierarchy */ |
| 4220 | static struct cftype cgroup_dfl_base_files[] = { |
| 4221 | { |
| 4222 | .name = "cgroup.procs", |
| 4223 | .seq_start = cgroup_pidlist_start, |
| 4224 | .seq_next = cgroup_pidlist_next, |
| 4225 | .seq_stop = cgroup_pidlist_stop, |
| 4226 | .seq_show = cgroup_pidlist_show, |
| 4227 | .private = CGROUP_FILE_PROCS, |
| 4228 | .write = cgroup_procs_write, |
| 4229 | .mode = S_IRUGO | S_IWUSR, |
| 4230 | }, |
| 4231 | { |
| 4232 | .name = "cgroup.controllers", |
| 4233 | .flags = CFTYPE_ONLY_ON_ROOT, |
| 4234 | .seq_show = cgroup_root_controllers_show, |
| 4235 | }, |
| 4236 | { |
| 4237 | .name = "cgroup.controllers", |
| 4238 | .flags = CFTYPE_NOT_ON_ROOT, |
| 4239 | .seq_show = cgroup_controllers_show, |
| 4240 | }, |
| 4241 | { |
| 4242 | .name = "cgroup.subtree_control", |
| 4243 | .seq_show = cgroup_subtree_control_show, |
| 4244 | .write = cgroup_subtree_control_write, |
| 4245 | }, |
| 4246 | { |
| 4247 | .name = "cgroup.populated", |
| 4248 | .flags = CFTYPE_NOT_ON_ROOT, |
| 4249 | .seq_show = cgroup_populated_show, |
| 4250 | }, |
| 4251 | { } /* terminate */ |
| 4252 | }; |
| 4253 | |
| 4254 | /* cgroup core interface files for the legacy hierarchies */ |
| 4255 | static struct cftype cgroup_legacy_base_files[] = { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4256 | { |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4257 | .name = "cgroup.procs", |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4258 | .seq_start = cgroup_pidlist_start, |
| 4259 | .seq_next = cgroup_pidlist_next, |
| 4260 | .seq_stop = cgroup_pidlist_stop, |
| 4261 | .seq_show = cgroup_pidlist_show, |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4262 | .private = CGROUP_FILE_PROCS, |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 4263 | .write = cgroup_procs_write, |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 4264 | .mode = S_IRUGO | S_IWUSR, |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4265 | }, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4266 | { |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4267 | .name = "cgroup.clone_children", |
| 4268 | .read_u64 = cgroup_clone_children_read, |
| 4269 | .write_u64 = cgroup_clone_children_write, |
| 4270 | }, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4271 | { |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 4272 | .name = "cgroup.sane_behavior", |
| 4273 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4274 | .seq_show = cgroup_sane_behavior_show, |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 4275 | }, |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4276 | { |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4277 | .name = "tasks", |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4278 | .seq_start = cgroup_pidlist_start, |
| 4279 | .seq_next = cgroup_pidlist_next, |
| 4280 | .seq_stop = cgroup_pidlist_stop, |
| 4281 | .seq_show = cgroup_pidlist_show, |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4282 | .private = CGROUP_FILE_TASKS, |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 4283 | .write = cgroup_tasks_write, |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4284 | .mode = S_IRUGO | S_IWUSR, |
| 4285 | }, |
| 4286 | { |
| 4287 | .name = "notify_on_release", |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4288 | .read_u64 = cgroup_read_notify_on_release, |
| 4289 | .write_u64 = cgroup_write_notify_on_release, |
| 4290 | }, |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 4291 | { |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4292 | .name = "release_agent", |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4293 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4294 | .seq_show = cgroup_release_agent_show, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 4295 | .write = cgroup_release_agent_write, |
Tejun Heo | 5f46990 | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 4296 | .max_write_len = PATH_MAX - 1, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4297 | }, |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4298 | { } /* terminate */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4299 | }; |
| 4300 | |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4301 | /** |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4302 | * cgroup_populate_dir - create subsys files in a cgroup directory |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4303 | * @cgrp: target cgroup |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4304 | * @subsys_mask: mask of the subsystem ids whose files should be added |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4305 | * |
| 4306 | * On failure, no file is added. |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4307 | */ |
Aleksa Sarai | 8ab456a | 2015-05-19 00:51:00 +1000 | [diff] [blame] | 4308 | static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4309 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4310 | struct cgroup_subsys *ss; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 4311 | int i, ret = 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4312 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4313 | /* process cftsets of each subsystem */ |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 4314 | for_each_subsys(ss, i) { |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4315 | struct cftype *cfts; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 4316 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4317 | if (!(subsys_mask & (1 << i))) |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4318 | continue; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4319 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4320 | list_for_each_entry(cfts, &ss->cfts, node) { |
| 4321 | ret = cgroup_addrm_files(cgrp, cfts, true); |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4322 | if (ret < 0) |
| 4323 | goto err; |
| 4324 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4325 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4326 | return 0; |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4327 | err: |
| 4328 | cgroup_clear_dir(cgrp, subsys_mask); |
| 4329 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4330 | } |
| 4331 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4332 | /* |
| 4333 | * css destruction is four-stage process. |
| 4334 | * |
| 4335 | * 1. Destruction starts. Killing of the percpu_ref is initiated. |
| 4336 | * Implemented in kill_css(). |
| 4337 | * |
| 4338 | * 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] | 4339 | * and thus css_tryget_online() is guaranteed to fail, the css can be |
| 4340 | * offlined by invoking offline_css(). After offlining, the base ref is |
| 4341 | * put. Implemented in css_killed_work_fn(). |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4342 | * |
| 4343 | * 3. When the percpu_ref reaches zero, the only possible remaining |
| 4344 | * accessors are inside RCU read sections. css_release() schedules the |
| 4345 | * RCU callback. |
| 4346 | * |
| 4347 | * 4. After the grace period, the css can be freed. Implemented in |
| 4348 | * css_free_work_fn(). |
| 4349 | * |
| 4350 | * It is actually hairier because both step 2 and 4 require process context |
| 4351 | * and thus involve punting to css->destroy_work adding two additional |
| 4352 | * steps to the already complex sequence. |
| 4353 | */ |
Tejun Heo | 35ef10d | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4354 | static void css_free_work_fn(struct work_struct *work) |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4355 | { |
| 4356 | struct cgroup_subsys_state *css = |
Tejun Heo | 35ef10d | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4357 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Vladimir Davydov | 01e5865 | 2015-02-12 14:59:26 -0800 | [diff] [blame] | 4358 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4359 | struct cgroup *cgrp = css->cgroup; |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4360 | |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 4361 | percpu_ref_exit(&css->refcnt); |
| 4362 | |
Vladimir Davydov | 01e5865 | 2015-02-12 14:59:26 -0800 | [diff] [blame] | 4363 | if (ss) { |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4364 | /* css free path */ |
Vladimir Davydov | 01e5865 | 2015-02-12 14:59:26 -0800 | [diff] [blame] | 4365 | int id = css->id; |
| 4366 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4367 | if (css->parent) |
| 4368 | css_put(css->parent); |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4369 | |
Vladimir Davydov | 01e5865 | 2015-02-12 14:59:26 -0800 | [diff] [blame] | 4370 | ss->css_free(css); |
| 4371 | cgroup_idr_remove(&ss->css_idr, id); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4372 | cgroup_put(cgrp); |
| 4373 | } else { |
| 4374 | /* cgroup free path */ |
| 4375 | atomic_dec(&cgrp->root->nr_cgrps); |
| 4376 | cgroup_pidlist_destroy_all(cgrp); |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 4377 | cancel_work_sync(&cgrp->release_agent_work); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4378 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4379 | if (cgroup_parent(cgrp)) { |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4380 | /* |
| 4381 | * We get a ref to the parent, and put the ref when |
| 4382 | * this cgroup is being freed, so it's guaranteed |
| 4383 | * that the parent won't be destroyed before its |
| 4384 | * children. |
| 4385 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4386 | cgroup_put(cgroup_parent(cgrp)); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4387 | kernfs_put(cgrp->kn); |
| 4388 | kfree(cgrp); |
| 4389 | } else { |
| 4390 | /* |
| 4391 | * This is root cgroup's refcnt reaching zero, |
| 4392 | * which indicates that the root should be |
| 4393 | * released. |
| 4394 | */ |
| 4395 | cgroup_destroy_root(cgrp->root); |
| 4396 | } |
| 4397 | } |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4398 | } |
| 4399 | |
| 4400 | static void css_free_rcu_fn(struct rcu_head *rcu_head) |
| 4401 | { |
| 4402 | struct cgroup_subsys_state *css = |
| 4403 | container_of(rcu_head, struct cgroup_subsys_state, rcu_head); |
| 4404 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4405 | INIT_WORK(&css->destroy_work, css_free_work_fn); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4406 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4407 | } |
| 4408 | |
Tejun Heo | 25e15d8 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4409 | static void css_release_work_fn(struct work_struct *work) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4410 | { |
| 4411 | struct cgroup_subsys_state *css = |
Tejun Heo | 25e15d8 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4412 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4413 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4414 | struct cgroup *cgrp = css->cgroup; |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4415 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4416 | mutex_lock(&cgroup_mutex); |
| 4417 | |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4418 | css->flags |= CSS_RELEASED; |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4419 | list_del_rcu(&css->sibling); |
| 4420 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4421 | if (ss) { |
| 4422 | /* css release path */ |
Vladimir Davydov | 01e5865 | 2015-02-12 14:59:26 -0800 | [diff] [blame] | 4423 | cgroup_idr_replace(&ss->css_idr, NULL, css->id); |
Tejun Heo | 7d172cc | 2014-11-18 02:49:51 -0500 | [diff] [blame] | 4424 | if (ss->css_released) |
| 4425 | ss->css_released(css); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4426 | } else { |
| 4427 | /* cgroup release path */ |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4428 | cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id); |
| 4429 | cgrp->id = -1; |
Li Zefan | a418948 | 2014-09-04 14:43:07 +0800 | [diff] [blame] | 4430 | |
| 4431 | /* |
| 4432 | * There are two control paths which try to determine |
| 4433 | * cgroup from dentry without going through kernfs - |
| 4434 | * cgroupstats_build() and css_tryget_online_from_dir(). |
| 4435 | * Those are supported by RCU protecting clearing of |
| 4436 | * cgrp->kn->priv backpointer. |
| 4437 | */ |
| 4438 | RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4439 | } |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4440 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4441 | mutex_unlock(&cgroup_mutex); |
| 4442 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4443 | call_rcu(&css->rcu_head, css_free_rcu_fn); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4444 | } |
| 4445 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4446 | static void css_release(struct percpu_ref *ref) |
| 4447 | { |
| 4448 | struct cgroup_subsys_state *css = |
| 4449 | container_of(ref, struct cgroup_subsys_state, refcnt); |
| 4450 | |
Tejun Heo | 25e15d8 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4451 | INIT_WORK(&css->destroy_work, css_release_work_fn); |
| 4452 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4453 | } |
| 4454 | |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4455 | static void init_and_link_css(struct cgroup_subsys_state *css, |
| 4456 | struct cgroup_subsys *ss, struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4457 | { |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4458 | lockdep_assert_held(&cgroup_mutex); |
| 4459 | |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4460 | cgroup_get(cgrp); |
| 4461 | |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4462 | memset(css, 0, sizeof(*css)); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4463 | css->cgroup = cgrp; |
Tejun Heo | 72c97e5 | 2013-08-08 20:11:22 -0400 | [diff] [blame] | 4464 | css->ss = ss; |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4465 | INIT_LIST_HEAD(&css->sibling); |
| 4466 | INIT_LIST_HEAD(&css->children); |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4467 | css->serial_nr = css_serial_nr_next++; |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4468 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4469 | if (cgroup_parent(cgrp)) { |
| 4470 | css->parent = cgroup_css(cgroup_parent(cgrp), ss); |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4471 | css_get(css->parent); |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4472 | } |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4473 | |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 4474 | BUG_ON(cgroup_css(cgrp, ss)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4475 | } |
| 4476 | |
Li Zefan | 2a4ac63 | 2013-07-31 16:16:40 +0800 | [diff] [blame] | 4477 | /* 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] | 4478 | static int online_css(struct cgroup_subsys_state *css) |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4479 | { |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 4480 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | b1929db | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4481 | int ret = 0; |
| 4482 | |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4483 | lockdep_assert_held(&cgroup_mutex); |
| 4484 | |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4485 | if (ss->css_online) |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4486 | ret = ss->css_online(css); |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4487 | if (!ret) { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4488 | css->flags |= CSS_ONLINE; |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4489 | rcu_assign_pointer(css->cgroup->subsys[ss->id], css); |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4490 | } |
Tejun Heo | b1929db | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4491 | return ret; |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4492 | } |
| 4493 | |
Li Zefan | 2a4ac63 | 2013-07-31 16:16:40 +0800 | [diff] [blame] | 4494 | /* 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] | 4495 | static void offline_css(struct cgroup_subsys_state *css) |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4496 | { |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 4497 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4498 | |
| 4499 | lockdep_assert_held(&cgroup_mutex); |
| 4500 | |
| 4501 | if (!(css->flags & CSS_ONLINE)) |
| 4502 | return; |
| 4503 | |
Li Zefan | d7eeac1 | 2013-03-12 15:35:59 -0700 | [diff] [blame] | 4504 | if (ss->css_offline) |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4505 | ss->css_offline(css); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4506 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4507 | css->flags &= ~CSS_ONLINE; |
Tejun Heo | e329780 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 4508 | RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4509 | |
| 4510 | wake_up_all(&css->cgroup->offline_waitq); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4511 | } |
| 4512 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4513 | /** |
| 4514 | * create_css - create a cgroup_subsys_state |
| 4515 | * @cgrp: the cgroup new css will be associated with |
| 4516 | * @ss: the subsys of new css |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4517 | * @visible: whether to create control knobs for the new css or not |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4518 | * |
| 4519 | * 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] | 4520 | * css is online and installed in @cgrp with all interface files created if |
| 4521 | * @visible. Returns 0 on success, -errno on failure. |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4522 | */ |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4523 | static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss, |
| 4524 | bool visible) |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4525 | { |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4526 | struct cgroup *parent = cgroup_parent(cgrp); |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4527 | struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4528 | struct cgroup_subsys_state *css; |
| 4529 | int err; |
| 4530 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4531 | lockdep_assert_held(&cgroup_mutex); |
| 4532 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4533 | css = ss->css_alloc(parent_css); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4534 | if (IS_ERR(css)) |
| 4535 | return PTR_ERR(css); |
| 4536 | |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4537 | init_and_link_css(css, ss, cgrp); |
Tejun Heo | a2bed82 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4538 | |
Tejun Heo | 2aad2a8 | 2014-09-24 13:31:50 -0400 | [diff] [blame] | 4539 | err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4540 | if (err) |
Li Zefan | 3eb59ec | 2014-03-18 17:02:36 +0800 | [diff] [blame] | 4541 | goto err_free_css; |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4542 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4543 | err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT); |
| 4544 | if (err < 0) |
| 4545 | goto err_free_percpu_ref; |
| 4546 | css->id = err; |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4547 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4548 | if (visible) { |
| 4549 | err = cgroup_populate_dir(cgrp, 1 << ss->id); |
| 4550 | if (err) |
| 4551 | goto err_free_id; |
| 4552 | } |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4553 | |
| 4554 | /* @css is ready to be brought online now, make it visible */ |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4555 | list_add_tail_rcu(&css->sibling, &parent_css->children); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4556 | cgroup_idr_replace(&ss->css_idr, css, css->id); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4557 | |
| 4558 | err = online_css(css); |
| 4559 | if (err) |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4560 | goto err_list_del; |
Tejun Heo | 9441962 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4561 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4562 | if (ss->broken_hierarchy && !ss->warned_broken_hierarchy && |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4563 | cgroup_parent(parent)) { |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 4564 | 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] | 4565 | current->comm, current->pid, ss->name); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4566 | if (!strcmp(ss->name, "memory")) |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 4567 | 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] | 4568 | ss->warned_broken_hierarchy = true; |
| 4569 | } |
| 4570 | |
| 4571 | return 0; |
| 4572 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4573 | err_list_del: |
| 4574 | list_del_rcu(&css->sibling); |
Linus Torvalds | 32d01dc | 2014-04-03 13:05:42 -0700 | [diff] [blame] | 4575 | cgroup_clear_dir(css->cgroup, 1 << css->ss->id); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4576 | err_free_id: |
| 4577 | cgroup_idr_remove(&ss->css_idr, css->id); |
Li Zefan | 3eb59ec | 2014-03-18 17:02:36 +0800 | [diff] [blame] | 4578 | err_free_percpu_ref: |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 4579 | percpu_ref_exit(&css->refcnt); |
Li Zefan | 3eb59ec | 2014-03-18 17:02:36 +0800 | [diff] [blame] | 4580 | err_free_css: |
Tejun Heo | a2bed82 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4581 | call_rcu(&css->rcu_head, css_free_rcu_fn); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4582 | return err; |
| 4583 | } |
| 4584 | |
Tejun Heo | b3bfd98 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4585 | static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name, |
| 4586 | umode_t mode) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4587 | { |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4588 | struct cgroup *parent, *cgrp; |
| 4589 | struct cgroup_root *root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4590 | struct cgroup_subsys *ss; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4591 | struct kernfs_node *kn; |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4592 | struct cftype *base_files; |
Tejun Heo | b3bfd98 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4593 | int ssid, ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4594 | |
Alban Crequy | 71b1fb5 | 2014-08-18 12:20:20 +0100 | [diff] [blame] | 4595 | /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable. |
| 4596 | */ |
| 4597 | if (strchr(name, '\n')) |
| 4598 | return -EINVAL; |
| 4599 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4600 | parent = cgroup_kn_lock_live(parent_kn); |
| 4601 | if (!parent) |
| 4602 | return -ENODEV; |
| 4603 | root = parent->root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4604 | |
Tejun Heo | 0a950f6 | 2012-11-19 09:02:12 -0800 | [diff] [blame] | 4605 | /* allocate the cgroup and its ID, 0 is reserved for the root */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4606 | cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4607 | if (!cgrp) { |
| 4608 | ret = -ENOMEM; |
| 4609 | goto out_unlock; |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 4610 | } |
| 4611 | |
Tejun Heo | 2aad2a8 | 2014-09-24 13:31:50 -0400 | [diff] [blame] | 4612 | ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4613 | if (ret) |
| 4614 | goto out_free_cgrp; |
| 4615 | |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 4616 | /* |
| 4617 | * Temporarily set the pointer to NULL, so idr_find() won't return |
| 4618 | * a half-baked cgroup. |
| 4619 | */ |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4620 | 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] | 4621 | if (cgrp->id < 0) { |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4622 | ret = -ENOMEM; |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4623 | goto out_cancel_ref; |
Tejun Heo | 976c06b | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4624 | } |
| 4625 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4626 | init_cgroup_housekeeping(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4627 | |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 4628 | cgrp->self.parent = &parent->self; |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4629 | cgrp->root = root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4630 | |
Li Zefan | b6abdb0 | 2008-03-04 14:28:19 -0800 | [diff] [blame] | 4631 | if (notify_on_release(parent)) |
| 4632 | set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
| 4633 | |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4634 | if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags)) |
| 4635 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4636 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4637 | /* create the directory */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4638 | kn = kernfs_create_dir(parent->kn, name, mode, cgrp); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4639 | if (IS_ERR(kn)) { |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4640 | ret = PTR_ERR(kn); |
| 4641 | goto out_free_id; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4642 | } |
| 4643 | cgrp->kn = kn; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4644 | |
Tejun Heo | 6f30558 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4645 | /* |
| 4646 | * This extra ref will be put in cgroup_free_fn() and guarantees |
| 4647 | * that @cgrp->kn is always accessible. |
| 4648 | */ |
| 4649 | kernfs_get(kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4650 | |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4651 | cgrp->self.serial_nr = css_serial_nr_next++; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 4652 | |
Tejun Heo | 4e139af | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4653 | /* allocation complete, commit to creation */ |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4654 | list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4655 | atomic_inc(&root->nr_cgrps); |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4656 | cgroup_get(parent); |
Li Zefan | 415cf07 | 2013-04-08 14:35:02 +0800 | [diff] [blame] | 4657 | |
Tejun Heo | 0d80255 | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4658 | /* |
| 4659 | * @cgrp is now fully operational. If something fails after this |
| 4660 | * point, it'll be released via the normal destruction path. |
| 4661 | */ |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4662 | cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id); |
Li Zefan | 4e96ee8e | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 4663 | |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4664 | ret = cgroup_kn_set_ugid(kn); |
| 4665 | if (ret) |
| 4666 | goto out_destroy; |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 4667 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4668 | if (cgroup_on_dfl(cgrp)) |
| 4669 | base_files = cgroup_dfl_base_files; |
| 4670 | else |
| 4671 | base_files = cgroup_legacy_base_files; |
| 4672 | |
| 4673 | ret = cgroup_addrm_files(cgrp, base_files, true); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4674 | if (ret) |
| 4675 | goto out_destroy; |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4676 | |
Tejun Heo | 9d403e9 | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4677 | /* let's create and online css's */ |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 4678 | for_each_subsys(ss, ssid) { |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4679 | if (parent->child_subsys_mask & (1 << ssid)) { |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4680 | ret = create_css(cgrp, ss, |
| 4681 | parent->subtree_control & (1 << ssid)); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4682 | if (ret) |
| 4683 | goto out_destroy; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 4684 | } |
Tejun Heo | a863803 | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 4685 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4686 | |
Tejun Heo | bd53d61 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4687 | /* |
| 4688 | * On the default hierarchy, a child doesn't automatically inherit |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 4689 | * subtree_control from the parent. Each is configured manually. |
Tejun Heo | bd53d61 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4690 | */ |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 4691 | if (!cgroup_on_dfl(cgrp)) { |
| 4692 | cgrp->subtree_control = parent->subtree_control; |
| 4693 | cgroup_refresh_child_subsys_mask(cgrp); |
| 4694 | } |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4695 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4696 | kernfs_activate(kn); |
| 4697 | |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4698 | ret = 0; |
| 4699 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4700 | |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4701 | out_free_id: |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4702 | cgroup_idr_remove(&root->cgroup_idr, cgrp->id); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4703 | out_cancel_ref: |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 4704 | percpu_ref_exit(&cgrp->self.refcnt); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4705 | out_free_cgrp: |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4706 | kfree(cgrp); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4707 | out_unlock: |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4708 | cgroup_kn_unlock(parent_kn); |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 4709 | return ret; |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4710 | |
| 4711 | out_destroy: |
| 4712 | cgroup_destroy_locked(cgrp); |
| 4713 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4714 | } |
| 4715 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4716 | /* |
| 4717 | * 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] | 4718 | * css_tryget_online() is now guaranteed to fail. Tell the subsystem to |
| 4719 | * initate destruction and put the css ref from kill_css(). |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4720 | */ |
| 4721 | static void css_killed_work_fn(struct work_struct *work) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4722 | { |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4723 | struct cgroup_subsys_state *css = |
| 4724 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4725 | |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4726 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4727 | offline_css(css); |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4728 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4729 | |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4730 | css_put(css); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4731 | } |
| 4732 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4733 | /* css kill confirmation processing requires process context, bounce */ |
| 4734 | static void css_killed_ref_fn(struct percpu_ref *ref) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4735 | { |
| 4736 | struct cgroup_subsys_state *css = |
| 4737 | container_of(ref, struct cgroup_subsys_state, refcnt); |
| 4738 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4739 | INIT_WORK(&css->destroy_work, css_killed_work_fn); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4740 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4741 | } |
| 4742 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4743 | /** |
| 4744 | * kill_css - destroy a css |
| 4745 | * @css: css to destroy |
| 4746 | * |
| 4747 | * This function initiates destruction of @css by removing cgroup interface |
| 4748 | * files and putting its base reference. ->css_offline() will be invoked |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4749 | * asynchronously once css_tryget_online() is guaranteed to fail and when |
| 4750 | * the reference count reaches zero, @css will be released. |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4751 | */ |
| 4752 | static void kill_css(struct cgroup_subsys_state *css) |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4753 | { |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 4754 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | 9441962 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4755 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4756 | /* |
| 4757 | * This must happen before css is disassociated with its cgroup. |
| 4758 | * See seq_css() for details. |
| 4759 | */ |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4760 | cgroup_clear_dir(css->cgroup, 1 << css->ss->id); |
Tejun Heo | 3c14f8b | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4761 | |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4762 | /* |
| 4763 | * Killing would put the base ref, but we need to keep it alive |
| 4764 | * until after ->css_offline(). |
| 4765 | */ |
| 4766 | css_get(css); |
| 4767 | |
| 4768 | /* |
| 4769 | * cgroup core guarantees that, by the time ->css_offline() is |
| 4770 | * invoked, no new css reference will be given out via |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4771 | * css_tryget_online(). We can't simply call percpu_ref_kill() and |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4772 | * proceed to offlining css's because percpu_ref_kill() doesn't |
| 4773 | * guarantee that the ref is seen as killed on all CPUs on return. |
| 4774 | * |
| 4775 | * Use percpu_ref_kill_and_confirm() to get notifications as each |
| 4776 | * css is confirmed to be seen as killed on all CPUs. |
| 4777 | */ |
| 4778 | percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4779 | } |
| 4780 | |
| 4781 | /** |
| 4782 | * cgroup_destroy_locked - the first stage of cgroup destruction |
| 4783 | * @cgrp: cgroup to be destroyed |
| 4784 | * |
| 4785 | * css's make use of percpu refcnts whose killing latency shouldn't be |
| 4786 | * exposed to userland and are RCU protected. Also, cgroup core needs to |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4787 | * guarantee that css_tryget_online() won't succeed by the time |
| 4788 | * ->css_offline() is invoked. To satisfy all the requirements, |
| 4789 | * destruction is implemented in the following two steps. |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4790 | * |
| 4791 | * s1. Verify @cgrp can be destroyed and mark it dying. Remove all |
| 4792 | * userland visible parts and start killing the percpu refcnts of |
| 4793 | * css's. Set up so that the next stage will be kicked off once all |
| 4794 | * the percpu refcnts are confirmed to be killed. |
| 4795 | * |
| 4796 | * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the |
| 4797 | * rest of destruction. Once all cgroup references are gone, the |
| 4798 | * cgroup is RCU-freed. |
| 4799 | * |
| 4800 | * This function implements s1. After this step, @cgrp is gone as far as |
| 4801 | * the userland is concerned and a new cgroup with the same name may be |
| 4802 | * created. As cgroup doesn't care about the names internally, this |
| 4803 | * doesn't cause any problem. |
| 4804 | */ |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4805 | static int cgroup_destroy_locked(struct cgroup *cgrp) |
| 4806 | __releases(&cgroup_mutex) __acquires(&cgroup_mutex) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4807 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4808 | struct cgroup_subsys_state *css; |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4809 | bool empty; |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4810 | int ssid; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4811 | |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4812 | lockdep_assert_held(&cgroup_mutex); |
| 4813 | |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4814 | /* |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4815 | * css_set_rwsem synchronizes access to ->cset_links and prevents |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4816 | * @cgrp from being removed while put_css_set() is in progress. |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4817 | */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4818 | down_read(&css_set_rwsem); |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 4819 | empty = list_empty(&cgrp->cset_links); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4820 | up_read(&css_set_rwsem); |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4821 | if (!empty) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4822 | return -EBUSY; |
Tejun Heo | ed957793 | 2012-11-05 09:16:58 -0800 | [diff] [blame] | 4823 | |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4824 | /* |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4825 | * Make sure there's no live children. We can't test emptiness of |
| 4826 | * ->self.children as dead children linger on it while being |
| 4827 | * drained; otherwise, "rmdir parent/child parent" may fail. |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 4828 | */ |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 4829 | if (css_has_online_children(&cgrp->self)) |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 4830 | return -EBUSY; |
| 4831 | |
| 4832 | /* |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4833 | * Mark @cgrp dead. This prevents further task migration and child |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4834 | * creation by disabling cgroup_lock_live_group(). |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4835 | */ |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 4836 | cgrp->self.flags &= ~CSS_ONLINE; |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4837 | |
Tejun Heo | 249f346 | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 4838 | /* initiate massacre of all css's */ |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4839 | for_each_css(css, ssid, cgrp) |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4840 | kill_css(css); |
| 4841 | |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4842 | /* |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 4843 | * Remove @cgrp directory along with the base files. @cgrp has an |
| 4844 | * extra ref on its kn. |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4845 | */ |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 4846 | kernfs_remove(cgrp->kn); |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4847 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4848 | check_for_release(cgroup_parent(cgrp)); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4849 | |
Tejun Heo | 249f346 | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 4850 | /* put the base reference */ |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4851 | percpu_ref_kill(&cgrp->self.refcnt); |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4852 | |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 4853 | return 0; |
| 4854 | }; |
| 4855 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4856 | static int cgroup_rmdir(struct kernfs_node *kn) |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4857 | { |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4858 | struct cgroup *cgrp; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4859 | int ret = 0; |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4860 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4861 | cgrp = cgroup_kn_lock_live(kn); |
| 4862 | if (!cgrp) |
| 4863 | return 0; |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4864 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4865 | ret = cgroup_destroy_locked(cgrp); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4866 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4867 | cgroup_kn_unlock(kn); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4868 | return ret; |
| 4869 | } |
| 4870 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4871 | static struct kernfs_syscall_ops cgroup_kf_syscall_ops = { |
| 4872 | .remount_fs = cgroup_remount, |
| 4873 | .show_options = cgroup_show_options, |
| 4874 | .mkdir = cgroup_mkdir, |
| 4875 | .rmdir = cgroup_rmdir, |
| 4876 | .rename = cgroup_rename, |
| 4877 | }; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4878 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4879 | static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4880 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4881 | struct cgroup_subsys_state *css; |
Diego Calleja | cfe36bd | 2007-11-14 16:58:54 -0800 | [diff] [blame] | 4882 | |
| 4883 | printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4884 | |
Tejun Heo | 648bb56 | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4885 | mutex_lock(&cgroup_mutex); |
| 4886 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4887 | idr_init(&ss->css_idr); |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4888 | INIT_LIST_HEAD(&ss->cfts); |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4889 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4890 | /* Create the root cgroup state for this subsystem */ |
| 4891 | ss->root = &cgrp_dfl_root; |
| 4892 | css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4893 | /* We don't handle early failures gracefully */ |
| 4894 | BUG_ON(IS_ERR(css)); |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4895 | init_and_link_css(css, ss, &cgrp_dfl_root.cgrp); |
Tejun Heo | 3b514d2 | 2014-05-16 13:22:47 -0400 | [diff] [blame] | 4896 | |
| 4897 | /* |
| 4898 | * Root csses are never destroyed and we can't initialize |
| 4899 | * percpu_ref during early init. Disable refcnting. |
| 4900 | */ |
| 4901 | css->flags |= CSS_NO_REF; |
| 4902 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4903 | if (early) { |
Tejun Heo | 9395a45 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4904 | /* allocation can't be done safely during early init */ |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4905 | css->id = 1; |
| 4906 | } else { |
| 4907 | css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL); |
| 4908 | BUG_ON(css->id < 0); |
| 4909 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4910 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4911 | /* Update the init_css_set to contain a subsys |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4912 | * pointer to this state - since the subsystem is |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4913 | * newly registered, all tasks and hence the |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4914 | * init_css_set is in the subsystem's root cgroup. */ |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4915 | init_css_set.subsys[ss->id] = css; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4916 | |
| 4917 | need_forkexit_callback |= ss->fork || ss->exit; |
| 4918 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4919 | /* At system boot, before all subsystems have been |
| 4920 | * registered, no tasks have been forked, so we don't |
| 4921 | * need to invoke fork callbacks here. */ |
| 4922 | BUG_ON(!list_empty(&init_task.tasks)); |
| 4923 | |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4924 | BUG_ON(online_css(css)); |
Tejun Heo | a863803 | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 4925 | |
Tejun Heo | 648bb56 | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4926 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4927 | } |
| 4928 | |
| 4929 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4930 | * cgroup_init_early - cgroup initialization at system boot |
| 4931 | * |
| 4932 | * Initialize cgroups at system boot, and initialize any |
| 4933 | * subsystems that request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4934 | */ |
| 4935 | int __init cgroup_init_early(void) |
| 4936 | { |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 4937 | static struct cgroup_sb_opts __initdata opts; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4938 | struct cgroup_subsys *ss; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4939 | int i; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4940 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4941 | init_cgroup_root(&cgrp_dfl_root, &opts); |
Tejun Heo | 3b514d2 | 2014-05-16 13:22:47 -0400 | [diff] [blame] | 4942 | cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF; |
| 4943 | |
Tejun Heo | a4ea1cc | 2013-06-21 15:52:33 -0700 | [diff] [blame] | 4944 | RCU_INIT_POINTER(init_task.cgroups, &init_css_set); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4945 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4946 | for_each_subsys(ss, i) { |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4947 | WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id, |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4948 | "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n", |
| 4949 | i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free, |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4950 | ss->id, ss->name); |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4951 | WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN, |
| 4952 | "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4953 | |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4954 | ss->id = i; |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4955 | ss->name = cgroup_subsys_name[i]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4956 | |
| 4957 | if (ss->early_init) |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4958 | cgroup_init_subsys(ss, true); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4959 | } |
| 4960 | return 0; |
| 4961 | } |
| 4962 | |
| 4963 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4964 | * cgroup_init - cgroup initialization |
| 4965 | * |
| 4966 | * Register cgroup filesystem and /proc file, and initialize |
| 4967 | * any subsystems that didn't request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4968 | */ |
| 4969 | int __init cgroup_init(void) |
| 4970 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4971 | struct cgroup_subsys *ss; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 4972 | unsigned long key; |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4973 | int ssid, err; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4974 | |
Tejun Heo | d59cfc0 | 2015-05-13 16:35:17 -0400 | [diff] [blame] | 4975 | BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem)); |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4976 | BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files)); |
| 4977 | BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4978 | |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4979 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4980 | |
Tejun Heo | 82fe9b0 | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4981 | /* Add init_css_set to the hash table */ |
| 4982 | key = css_set_hash(init_css_set.subsys); |
| 4983 | hash_add(css_set_table, &init_css_set.hlist, key); |
| 4984 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4985 | BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0)); |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4986 | |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4987 | mutex_unlock(&cgroup_mutex); |
| 4988 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4989 | for_each_subsys(ss, ssid) { |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4990 | if (ss->early_init) { |
| 4991 | struct cgroup_subsys_state *css = |
| 4992 | init_css_set.subsys[ss->id]; |
| 4993 | |
| 4994 | css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, |
| 4995 | GFP_KERNEL); |
| 4996 | BUG_ON(css->id < 0); |
| 4997 | } else { |
| 4998 | cgroup_init_subsys(ss, false); |
| 4999 | } |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5000 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 5001 | list_add_tail(&init_css_set.e_cset_node[ssid], |
| 5002 | &cgrp_dfl_root.cgrp.e_csets[ssid]); |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5003 | |
| 5004 | /* |
Li Zefan | c731ae1 | 2014-06-05 17:16:30 +0800 | [diff] [blame] | 5005 | * Setting dfl_root subsys_mask needs to consider the |
| 5006 | * disabled flag and cftype registration needs kmalloc, |
| 5007 | * both of which aren't available during early_init. |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5008 | */ |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 5009 | if (ss->disabled) |
| 5010 | continue; |
| 5011 | |
| 5012 | cgrp_dfl_root.subsys_mask |= 1 << ss->id; |
| 5013 | |
| 5014 | if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes) |
| 5015 | ss->dfl_cftypes = ss->legacy_cftypes; |
| 5016 | |
Tejun Heo | 5de4fa1 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 5017 | if (!ss->dfl_cftypes) |
| 5018 | cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id; |
| 5019 | |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 5020 | if (ss->dfl_cftypes == ss->legacy_cftypes) { |
| 5021 | WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes)); |
| 5022 | } else { |
| 5023 | WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes)); |
| 5024 | WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes)); |
Li Zefan | c731ae1 | 2014-06-05 17:16:30 +0800 | [diff] [blame] | 5025 | } |
Vladimir Davydov | 295458e | 2015-02-19 17:34:46 +0300 | [diff] [blame] | 5026 | |
| 5027 | if (ss->bind) |
| 5028 | ss->bind(init_css_set.subsys[ssid]); |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5029 | } |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 5030 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 5031 | cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5032 | if (!cgroup_kobj) |
| 5033 | return -ENOMEM; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5034 | |
| 5035 | err = register_filesystem(&cgroup_fs_type); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 5036 | if (err < 0) { |
| 5037 | kobject_put(cgroup_kobj); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5038 | return err; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5039 | } |
| 5040 | |
| 5041 | proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5042 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 5043 | } |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5044 | |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5045 | static int __init cgroup_wq_init(void) |
| 5046 | { |
| 5047 | /* |
| 5048 | * There isn't much point in executing destruction path in |
| 5049 | * parallel. Good chunk is serialized with cgroup_mutex anyway. |
Tejun Heo | 1a11533 | 2014-02-12 19:06:19 -0500 | [diff] [blame] | 5050 | * Use 1 for @max_active. |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5051 | * |
| 5052 | * We would prefer to do this in cgroup_init() above, but that |
| 5053 | * is called before init_workqueues(): so leave this until after. |
| 5054 | */ |
Tejun Heo | 1a11533 | 2014-02-12 19:06:19 -0500 | [diff] [blame] | 5055 | cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5056 | BUG_ON(!cgroup_destroy_wq); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 5057 | |
| 5058 | /* |
| 5059 | * Used to destroy pidlists and separate to serve as flush domain. |
| 5060 | * Cap @max_active to 1 too. |
| 5061 | */ |
| 5062 | cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy", |
| 5063 | 0, 1); |
| 5064 | BUG_ON(!cgroup_pidlist_destroy_wq); |
| 5065 | |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5066 | return 0; |
| 5067 | } |
| 5068 | core_initcall(cgroup_wq_init); |
| 5069 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5070 | /* |
| 5071 | * proc_cgroup_show() |
| 5072 | * - Print task's cgroup paths into seq_file, one line for each hierarchy |
| 5073 | * - Used for /proc/<pid>/cgroup. |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5074 | */ |
Zefan Li | 006f4ac | 2014-09-18 16:03:15 +0800 | [diff] [blame] | 5075 | int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns, |
| 5076 | struct pid *pid, struct task_struct *tsk) |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5077 | { |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5078 | char *buf, *path; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5079 | int retval; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 5080 | struct cgroup_root *root; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5081 | |
| 5082 | retval = -ENOMEM; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5083 | buf = kmalloc(PATH_MAX, GFP_KERNEL); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5084 | if (!buf) |
| 5085 | goto out; |
| 5086 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5087 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5088 | down_read(&css_set_rwsem); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5089 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5090 | for_each_root(root) { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5091 | struct cgroup_subsys *ss; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 5092 | struct cgroup *cgrp; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 5093 | int ssid, count = 0; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5094 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 5095 | if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible) |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5096 | continue; |
| 5097 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5098 | seq_printf(m, "%d:", root->hierarchy_id); |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 5099 | for_each_subsys(ss, ssid) |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 5100 | if (root->subsys_mask & (1 << ssid)) |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 5101 | seq_printf(m, "%s%s", count++ ? "," : "", ss->name); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 5102 | if (strlen(root->name)) |
| 5103 | seq_printf(m, "%sname=%s", count ? "," : "", |
| 5104 | root->name); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5105 | seq_putc(m, ':'); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5106 | cgrp = task_cgroup_from_root(tsk, root); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5107 | path = cgroup_path(cgrp, buf, PATH_MAX); |
| 5108 | if (!path) { |
| 5109 | retval = -ENAMETOOLONG; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5110 | goto out_unlock; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5111 | } |
| 5112 | seq_puts(m, path); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5113 | seq_putc(m, '\n'); |
| 5114 | } |
| 5115 | |
Zefan Li | 006f4ac | 2014-09-18 16:03:15 +0800 | [diff] [blame] | 5116 | retval = 0; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5117 | out_unlock: |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5118 | up_read(&css_set_rwsem); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5119 | mutex_unlock(&cgroup_mutex); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5120 | kfree(buf); |
| 5121 | out: |
| 5122 | return retval; |
| 5123 | } |
| 5124 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5125 | /* Display information about each subsystem and each hierarchy */ |
| 5126 | static int proc_cgroupstats_show(struct seq_file *m, void *v) |
| 5127 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5128 | struct cgroup_subsys *ss; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5129 | int i; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5130 | |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5131 | seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n"); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 5132 | /* |
| 5133 | * ideally we don't want subsystems moving around while we do this. |
| 5134 | * cgroup_mutex is also necessary to guarantee an atomic snapshot of |
| 5135 | * subsys/hierarchy state. |
| 5136 | */ |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5137 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5138 | |
| 5139 | for_each_subsys(ss, i) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5140 | seq_printf(m, "%s\t%d\t%d\t%d\n", |
| 5141 | ss->name, ss->root->hierarchy_id, |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5142 | atomic_read(&ss->root->nr_cgrps), !ss->disabled); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5143 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5144 | mutex_unlock(&cgroup_mutex); |
| 5145 | return 0; |
| 5146 | } |
| 5147 | |
| 5148 | static int cgroupstats_open(struct inode *inode, struct file *file) |
| 5149 | { |
Al Viro | 9dce07f | 2008-03-29 03:07:28 +0000 | [diff] [blame] | 5150 | return single_open(file, proc_cgroupstats_show, NULL); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5151 | } |
| 5152 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 5153 | static const struct file_operations proc_cgroupstats_operations = { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5154 | .open = cgroupstats_open, |
| 5155 | .read = seq_read, |
| 5156 | .llseek = seq_lseek, |
| 5157 | .release = single_release, |
| 5158 | }; |
| 5159 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5160 | /** |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5161 | * cgroup_fork - initialize cgroup related fields during copy_process() |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 5162 | * @child: pointer to task_struct of forking parent process. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5163 | * |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5164 | * A task is associated with the init_css_set until cgroup_post_fork() |
| 5165 | * attaches it to the parent's css_set. Empty cg_list indicates that |
| 5166 | * @child isn't holding reference to its css_set. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5167 | */ |
| 5168 | void cgroup_fork(struct task_struct *child) |
| 5169 | { |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5170 | RCU_INIT_POINTER(child->cgroups, &init_css_set); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5171 | INIT_LIST_HEAD(&child->cg_list); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5172 | } |
| 5173 | |
| 5174 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 5175 | * cgroup_post_fork - called on a new task after adding it to the task list |
| 5176 | * @child: the task in question |
| 5177 | * |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5178 | * Adds the task to the list running through its css_set if necessary and |
| 5179 | * call the subsystem fork() callbacks. Has to be after the task is |
| 5180 | * 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] | 5181 | * 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] | 5182 | * list. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 5183 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5184 | void cgroup_post_fork(struct task_struct *child) |
| 5185 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5186 | struct cgroup_subsys *ss; |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5187 | int i; |
| 5188 | |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 5189 | /* |
Dongsheng Yang | 251f8c0 | 2014-08-25 19:27:52 +0800 | [diff] [blame] | 5190 | * This may race against cgroup_enable_task_cg_lists(). As that |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5191 | * function sets use_task_css_set_links before grabbing |
| 5192 | * tasklist_lock and we just went through tasklist_lock to add |
| 5193 | * @child, it's guaranteed that either we see the set |
| 5194 | * use_task_css_set_links or cgroup_enable_task_cg_lists() sees |
| 5195 | * @child during its iteration. |
| 5196 | * |
| 5197 | * If we won the race, @child is associated with %current's |
| 5198 | * css_set. Grabbing css_set_rwsem guarantees both that the |
| 5199 | * association is stable, and, on completion of the parent's |
| 5200 | * migration, @child is visible in the source of migration or |
| 5201 | * already in the destination cgroup. This guarantee is necessary |
| 5202 | * when implementing operations which need to migrate all tasks of |
| 5203 | * a cgroup to another. |
| 5204 | * |
Dongsheng Yang | 251f8c0 | 2014-08-25 19:27:52 +0800 | [diff] [blame] | 5205 | * Note that if we lose to cgroup_enable_task_cg_lists(), @child |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5206 | * will remain in init_css_set. This is safe because all tasks are |
| 5207 | * in the init_css_set before cg_links is enabled and there's no |
| 5208 | * operation which transfers all tasks out of init_css_set. |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 5209 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5210 | if (use_task_css_set_links) { |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5211 | struct css_set *cset; |
| 5212 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5213 | down_write(&css_set_rwsem); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5214 | cset = task_css_set(current); |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5215 | if (list_empty(&child->cg_list)) { |
| 5216 | rcu_assign_pointer(child->cgroups, cset); |
| 5217 | list_add(&child->cg_list, &cset->tasks); |
| 5218 | get_css_set(cset); |
| 5219 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5220 | up_write(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5221 | } |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5222 | |
| 5223 | /* |
| 5224 | * Call ss->fork(). This must happen after @child is linked on |
| 5225 | * css_set; otherwise, @child might change state between ->fork() |
| 5226 | * and addition to css_set. |
| 5227 | */ |
| 5228 | if (need_forkexit_callback) { |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5229 | for_each_subsys(ss, i) |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5230 | if (ss->fork) |
| 5231 | ss->fork(child); |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5232 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5233 | } |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5234 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5235 | /** |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5236 | * cgroup_exit - detach cgroup from exiting task |
| 5237 | * @tsk: pointer to task_struct of exiting process |
| 5238 | * |
| 5239 | * Description: Detach cgroup from @tsk and release it. |
| 5240 | * |
| 5241 | * Note that cgroups marked notify_on_release force every task in |
| 5242 | * them to take the global cgroup_mutex mutex when exiting. |
| 5243 | * This could impact scaling on very large systems. Be reluctant to |
| 5244 | * use notify_on_release cgroups where very high task exit scaling |
| 5245 | * is required on large systems. |
| 5246 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5247 | * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We |
| 5248 | * call cgroup_exit() while the task is still competent to handle |
| 5249 | * notify_on_release(), then leave the task attached to the root cgroup in |
| 5250 | * each hierarchy for the remainder of its exit. No need to bother with |
| 5251 | * 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] | 5252 | * with migration path - PF_EXITING is visible to migration path. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5253 | */ |
Li Zefan | 1ec4183 | 2014-03-28 15:22:19 +0800 | [diff] [blame] | 5254 | void cgroup_exit(struct task_struct *tsk) |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5255 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5256 | struct cgroup_subsys *ss; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5257 | struct css_set *cset; |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5258 | bool put_cset = false; |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5259 | int i; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5260 | |
| 5261 | /* |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5262 | * Unlink from @tsk from its css_set. As migration path can't race |
| 5263 | * with us, we can check cg_list without grabbing css_set_rwsem. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5264 | */ |
| 5265 | if (!list_empty(&tsk->cg_list)) { |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5266 | down_write(&css_set_rwsem); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5267 | list_del_init(&tsk->cg_list); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5268 | up_write(&css_set_rwsem); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5269 | put_cset = true; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5270 | } |
| 5271 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5272 | /* Reassign the task to the init_css_set. */ |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 5273 | cset = task_css_set(tsk); |
| 5274 | RCU_INIT_POINTER(tsk->cgroups, &init_css_set); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5275 | |
Li Zefan | 1ec4183 | 2014-03-28 15:22:19 +0800 | [diff] [blame] | 5276 | if (need_forkexit_callback) { |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5277 | /* see cgroup_post_fork() for details */ |
| 5278 | for_each_subsys(ss, i) { |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5279 | if (ss->exit) { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5280 | struct cgroup_subsys_state *old_css = cset->subsys[i]; |
| 5281 | struct cgroup_subsys_state *css = task_css(tsk, i); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5282 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5283 | ss->exit(css, old_css, tsk); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5284 | } |
| 5285 | } |
| 5286 | } |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5287 | |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5288 | if (put_cset) |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 5289 | put_css_set(cset); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5290 | } |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 5291 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 5292 | static void check_for_release(struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5293 | { |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 5294 | if (notify_on_release(cgrp) && !cgroup_has_tasks(cgrp) && |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5295 | !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp)) |
| 5296 | schedule_work(&cgrp->release_agent_work); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5297 | } |
| 5298 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5299 | /* |
| 5300 | * Notify userspace when a cgroup is released, by running the |
| 5301 | * configured release agent with the name of the cgroup (path |
| 5302 | * relative to the root of cgroup file system) as the argument. |
| 5303 | * |
| 5304 | * Most likely, this user command will try to rmdir this cgroup. |
| 5305 | * |
| 5306 | * This races with the possibility that some other task will be |
| 5307 | * attached to this cgroup before it is removed, or that some other |
| 5308 | * user task will 'mkdir' a child cgroup of this cgroup. That's ok. |
| 5309 | * The presumed 'rmdir' will fail quietly if this cgroup is no longer |
| 5310 | * unused, and this cgroup will be reprieved from its death sentence, |
| 5311 | * to continue to serve a useful existence. Next time it's released, |
| 5312 | * we will get notified again, if it still has 'notify_on_release' set. |
| 5313 | * |
| 5314 | * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which |
| 5315 | * means only wait until the task is successfully execve()'d. The |
| 5316 | * separate release agent task is forked by call_usermodehelper(), |
| 5317 | * then control in this thread returns here, without waiting for the |
| 5318 | * release agent task. We don't bother to wait because the caller of |
| 5319 | * this routine has no use for the exit status of the release agent |
| 5320 | * task, so no sense holding our caller up for that. |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5321 | */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5322 | static void cgroup_release_agent(struct work_struct *work) |
| 5323 | { |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5324 | struct cgroup *cgrp = |
| 5325 | container_of(work, struct cgroup, release_agent_work); |
| 5326 | char *pathbuf = NULL, *agentbuf = NULL, *path; |
| 5327 | char *argv[3], *envp[3]; |
| 5328 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5329 | mutex_lock(&cgroup_mutex); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5330 | |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5331 | pathbuf = kmalloc(PATH_MAX, GFP_KERNEL); |
| 5332 | agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL); |
| 5333 | if (!pathbuf || !agentbuf) |
| 5334 | goto out; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5335 | |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5336 | path = cgroup_path(cgrp, pathbuf, PATH_MAX); |
| 5337 | if (!path) |
| 5338 | goto out; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5339 | |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5340 | argv[0] = agentbuf; |
| 5341 | argv[1] = path; |
| 5342 | argv[2] = NULL; |
| 5343 | |
| 5344 | /* minimal command environment */ |
| 5345 | envp[0] = "HOME=/"; |
| 5346 | envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin"; |
| 5347 | envp[2] = NULL; |
| 5348 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5349 | mutex_unlock(&cgroup_mutex); |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5350 | call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC); |
Zefan Li | 3e2cd91 | 2014-09-20 14:35:43 +0800 | [diff] [blame] | 5351 | goto out_free; |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5352 | out: |
Zefan Li | 3e2cd91 | 2014-09-20 14:35:43 +0800 | [diff] [blame] | 5353 | mutex_unlock(&cgroup_mutex); |
| 5354 | out_free: |
Zefan Li | 971ff49 | 2014-09-18 16:06:19 +0800 | [diff] [blame] | 5355 | kfree(agentbuf); |
| 5356 | kfree(pathbuf); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5357 | } |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5358 | |
| 5359 | static int __init cgroup_disable(char *str) |
| 5360 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5361 | struct cgroup_subsys *ss; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5362 | char *token; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5363 | int i; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5364 | |
| 5365 | while ((token = strsep(&str, ",")) != NULL) { |
| 5366 | if (!*token) |
| 5367 | continue; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5368 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5369 | for_each_subsys(ss, i) { |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5370 | if (!strcmp(token, ss->name)) { |
| 5371 | ss->disabled = 1; |
| 5372 | printk(KERN_INFO "Disabling %s control group" |
| 5373 | " subsystem\n", ss->name); |
| 5374 | break; |
| 5375 | } |
| 5376 | } |
| 5377 | } |
| 5378 | return 1; |
| 5379 | } |
| 5380 | __setup("cgroup_disable=", cgroup_disable); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5381 | |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 5382 | static int __init cgroup_set_legacy_files_on_dfl(char *str) |
| 5383 | { |
| 5384 | printk("cgroup: using legacy files on the default hierarchy\n"); |
| 5385 | cgroup_legacy_files_on_dfl = true; |
| 5386 | return 0; |
| 5387 | } |
| 5388 | __setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl); |
| 5389 | |
Tejun Heo | b77d7b6 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 5390 | /** |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 5391 | * css_tryget_online_from_dir - get corresponding css from a cgroup dentry |
Tejun Heo | 35cf083 | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 5392 | * @dentry: directory dentry of interest |
| 5393 | * @ss: subsystem of interest |
Tejun Heo | b77d7b6 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 5394 | * |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5395 | * If @dentry is a directory for a cgroup which has @ss enabled on it, try |
| 5396 | * to get the corresponding css and return it. If such css doesn't exist |
| 5397 | * or can't be pinned, an ERR_PTR value is returned. |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5398 | */ |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 5399 | struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry, |
| 5400 | struct cgroup_subsys *ss) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5401 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5402 | struct kernfs_node *kn = kernfs_node_from_dentry(dentry); |
| 5403 | struct cgroup_subsys_state *css = NULL; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5404 | struct cgroup *cgrp; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5405 | |
Tejun Heo | 35cf083 | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 5406 | /* is @dentry a cgroup dir? */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5407 | if (dentry->d_sb->s_type != &cgroup_fs_type || !kn || |
| 5408 | kernfs_type(kn) != KERNFS_DIR) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5409 | return ERR_PTR(-EBADF); |
| 5410 | |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5411 | rcu_read_lock(); |
| 5412 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5413 | /* |
| 5414 | * This path doesn't originate from kernfs and @kn could already |
| 5415 | * have been or be removed at any point. @kn->priv is RCU |
Li Zefan | a418948 | 2014-09-04 14:43:07 +0800 | [diff] [blame] | 5416 | * protected for this access. See css_release_work_fn() for details. |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5417 | */ |
| 5418 | cgrp = rcu_dereference(kn->priv); |
| 5419 | if (cgrp) |
| 5420 | css = cgroup_css(cgrp, ss); |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5421 | |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 5422 | if (!css || !css_tryget_online(css)) |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5423 | css = ERR_PTR(-ENOENT); |
| 5424 | |
| 5425 | rcu_read_unlock(); |
| 5426 | return css; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5427 | } |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5428 | |
Li Zefan | 1cb650b | 2013-08-19 10:05:24 +0800 | [diff] [blame] | 5429 | /** |
| 5430 | * css_from_id - lookup css by id |
| 5431 | * @id: the cgroup id |
| 5432 | * @ss: cgroup subsys to be looked into |
| 5433 | * |
| 5434 | * Returns the css if there's valid one with @id, otherwise returns NULL. |
| 5435 | * Should be called under rcu_read_lock(). |
| 5436 | */ |
| 5437 | struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss) |
| 5438 | { |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 5439 | WARN_ON_ONCE(!rcu_read_lock_held()); |
Vladimir Davydov | adbe427 | 2015-04-15 16:13:00 -0700 | [diff] [blame] | 5440 | return id > 0 ? idr_find(&ss->css_idr, id) : NULL; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5441 | } |
| 5442 | |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5443 | #ifdef CONFIG_CGROUP_DEBUG |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5444 | static struct cgroup_subsys_state * |
| 5445 | debug_css_alloc(struct cgroup_subsys_state *parent_css) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5446 | { |
| 5447 | struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL); |
| 5448 | |
| 5449 | if (!css) |
| 5450 | return ERR_PTR(-ENOMEM); |
| 5451 | |
| 5452 | return css; |
| 5453 | } |
| 5454 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5455 | static void debug_css_free(struct cgroup_subsys_state *css) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5456 | { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5457 | kfree(css); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5458 | } |
| 5459 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5460 | static u64 debug_taskcount_read(struct cgroup_subsys_state *css, |
| 5461 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5462 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5463 | return cgroup_task_count(css->cgroup); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5464 | } |
| 5465 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5466 | static u64 current_css_set_read(struct cgroup_subsys_state *css, |
| 5467 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5468 | { |
| 5469 | return (u64)(unsigned long)current->cgroups; |
| 5470 | } |
| 5471 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5472 | static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css, |
Li Zefan | 03c78cb | 2013-06-14 11:17:19 +0800 | [diff] [blame] | 5473 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5474 | { |
| 5475 | u64 count; |
| 5476 | |
| 5477 | rcu_read_lock(); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 5478 | count = atomic_read(&task_css_set(current)->refcount); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5479 | rcu_read_unlock(); |
| 5480 | return count; |
| 5481 | } |
| 5482 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5483 | 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] | 5484 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5485 | struct cgrp_cset_link *link; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5486 | struct css_set *cset; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5487 | char *name_buf; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5488 | |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5489 | name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL); |
| 5490 | if (!name_buf) |
| 5491 | return -ENOMEM; |
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 | down_read(&css_set_rwsem); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5494 | rcu_read_lock(); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5495 | cset = rcu_dereference(current->cgroups); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5496 | list_for_each_entry(link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5497 | struct cgroup *c = link->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5498 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 5499 | cgroup_name(c, name_buf, NAME_MAX + 1); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5500 | seq_printf(seq, "Root %d group %s\n", |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 5501 | c->root->hierarchy_id, name_buf); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5502 | } |
| 5503 | rcu_read_unlock(); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5504 | up_read(&css_set_rwsem); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5505 | kfree(name_buf); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5506 | return 0; |
| 5507 | } |
| 5508 | |
| 5509 | #define MAX_TASKS_SHOWN_PER_CSS 25 |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5510 | static int cgroup_css_links_read(struct seq_file *seq, void *v) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5511 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5512 | struct cgroup_subsys_state *css = seq_css(seq); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5513 | struct cgrp_cset_link *link; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5514 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5515 | down_read(&css_set_rwsem); |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5516 | list_for_each_entry(link, &css->cgroup->cset_links, cset_link) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5517 | struct css_set *cset = link->cset; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5518 | struct task_struct *task; |
| 5519 | int count = 0; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5520 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5521 | seq_printf(seq, "css_set %p\n", cset); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5522 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5523 | list_for_each_entry(task, &cset->tasks, cg_list) { |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5524 | if (count++ > MAX_TASKS_SHOWN_PER_CSS) |
| 5525 | goto overflow; |
| 5526 | seq_printf(seq, " task %d\n", task_pid_vnr(task)); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5527 | } |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5528 | |
| 5529 | list_for_each_entry(task, &cset->mg_tasks, cg_list) { |
| 5530 | if (count++ > MAX_TASKS_SHOWN_PER_CSS) |
| 5531 | goto overflow; |
| 5532 | seq_printf(seq, " task %d\n", task_pid_vnr(task)); |
| 5533 | } |
| 5534 | continue; |
| 5535 | overflow: |
| 5536 | seq_puts(seq, " ...\n"); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5537 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5538 | up_read(&css_set_rwsem); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5539 | return 0; |
| 5540 | } |
| 5541 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5542 | static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5543 | { |
Zefan Li | a25eb52 | 2014-09-19 16:51:00 +0800 | [diff] [blame] | 5544 | return (!cgroup_has_tasks(css->cgroup) && |
| 5545 | !css_has_online_children(&css->cgroup->self)); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5546 | } |
| 5547 | |
| 5548 | static struct cftype debug_files[] = { |
| 5549 | { |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5550 | .name = "taskcount", |
| 5551 | .read_u64 = debug_taskcount_read, |
| 5552 | }, |
| 5553 | |
| 5554 | { |
| 5555 | .name = "current_css_set", |
| 5556 | .read_u64 = current_css_set_read, |
| 5557 | }, |
| 5558 | |
| 5559 | { |
| 5560 | .name = "current_css_set_refcount", |
| 5561 | .read_u64 = current_css_set_refcount_read, |
| 5562 | }, |
| 5563 | |
| 5564 | { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5565 | .name = "current_css_set_cg_links", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5566 | .seq_show = current_css_set_cg_links_read, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5567 | }, |
| 5568 | |
| 5569 | { |
| 5570 | .name = "cgroup_css_links", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5571 | .seq_show = cgroup_css_links_read, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5572 | }, |
| 5573 | |
| 5574 | { |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5575 | .name = "releasable", |
| 5576 | .read_u64 = releasable_read, |
| 5577 | }, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5578 | |
Tejun Heo | 4baf6e3 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 5579 | { } /* terminate */ |
| 5580 | }; |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5581 | |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5582 | struct cgroup_subsys debug_cgrp_subsys = { |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 5583 | .css_alloc = debug_css_alloc, |
| 5584 | .css_free = debug_css_free, |
Tejun Heo | 5577964 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 5585 | .legacy_cftypes = debug_files, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5586 | }; |
| 5587 | #endif /* CONFIG_CGROUP_DEBUG */ |