Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1 | /* |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2 | * Generic process-grouping system. |
| 3 | * |
| 4 | * Based originally on the cpuset system, extracted by Paul Menage |
| 5 | * Copyright (C) 2006 Google, Inc |
| 6 | * |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 7 | * Notifications support |
| 8 | * Copyright (C) 2009 Nokia Corporation |
| 9 | * Author: Kirill A. Shutemov |
| 10 | * |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 11 | * Copyright notices from the original cpuset code: |
| 12 | * -------------------------------------------------- |
| 13 | * Copyright (C) 2003 BULL SA. |
| 14 | * Copyright (C) 2004-2006 Silicon Graphics, Inc. |
| 15 | * |
| 16 | * Portions derived from Patrick Mochel's sysfs code. |
| 17 | * sysfs is Copyright (c) 2001-3 Patrick Mochel |
| 18 | * |
| 19 | * 2003-10-10 Written by Simon Derr. |
| 20 | * 2003-10-22 Updates by Stephen Hemminger. |
| 21 | * 2004 May-July Rework by Paul Jackson. |
| 22 | * --------------------------------------------------- |
| 23 | * |
| 24 | * This file is subject to the terms and conditions of the GNU General Public |
| 25 | * License. See the file COPYING in the main directory of the Linux |
| 26 | * distribution for more details. |
| 27 | */ |
| 28 | |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 29 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 30 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 31 | #include <linux/cgroup.h> |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 32 | #include <linux/cred.h> |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 33 | #include <linux/ctype.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 34 | #include <linux/errno.h> |
eparis@redhat | 2ce9738 | 2011-06-02 21:20:51 +1000 | [diff] [blame] | 35 | #include <linux/init_task.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 36 | #include <linux/kernel.h> |
| 37 | #include <linux/list.h> |
Jianyu Zhan | c9482a5 | 2014-04-26 15:40:28 +0800 | [diff] [blame] | 38 | #include <linux/magic.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 39 | #include <linux/mm.h> |
| 40 | #include <linux/mutex.h> |
| 41 | #include <linux/mount.h> |
| 42 | #include <linux/pagemap.h> |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 43 | #include <linux/proc_fs.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 44 | #include <linux/rcupdate.h> |
| 45 | #include <linux/sched.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 46 | #include <linux/slab.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 47 | #include <linux/spinlock.h> |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 48 | #include <linux/rwsem.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 49 | #include <linux/string.h> |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 50 | #include <linux/sort.h> |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 51 | #include <linux/kmod.h> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 52 | #include <linux/delayacct.h> |
| 53 | #include <linux/cgroupstats.h> |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 54 | #include <linux/hashtable.h> |
Li Zefan | 096b7fe | 2009-07-29 15:04:04 -0700 | [diff] [blame] | 55 | #include <linux/pid_namespace.h> |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 56 | #include <linux/idr.h> |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 57 | #include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */ |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 58 | #include <linux/kthread.h> |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 59 | #include <linux/delay.h> |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 60 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 61 | #include <linux/atomic.h> |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 62 | |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 63 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 64 | * pidlists linger the following amount before being destroyed. The goal |
| 65 | * is avoiding frequent destruction in the middle of consecutive read calls |
| 66 | * Expiring in the middle is a performance problem not a correctness one. |
| 67 | * 1 sec should be enough. |
| 68 | */ |
| 69 | #define CGROUP_PIDLIST_DESTROY_DELAY HZ |
| 70 | |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 71 | #define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \ |
| 72 | MAX_CFTYPE_NAME + 2) |
| 73 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 74 | /* |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 75 | * cgroup_mutex is the master lock. Any modification to cgroup or its |
| 76 | * hierarchy must be performed while holding it. |
| 77 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 78 | * css_set_rwsem protects task->cgroups pointer, the list of css_set |
| 79 | * objects, and the chain of tasks off each css_set. |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 80 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 81 | * These locks are exported if CONFIG_PROVE_RCU so that accessors in |
| 82 | * cgroup.h can use them for lockdep annotations. |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 83 | */ |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 84 | #ifdef CONFIG_PROVE_RCU |
| 85 | DEFINE_MUTEX(cgroup_mutex); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 86 | DECLARE_RWSEM(css_set_rwsem); |
| 87 | EXPORT_SYMBOL_GPL(cgroup_mutex); |
| 88 | EXPORT_SYMBOL_GPL(css_set_rwsem); |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 89 | #else |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 90 | static DEFINE_MUTEX(cgroup_mutex); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 91 | static DECLARE_RWSEM(css_set_rwsem); |
Tejun Heo | 2219449 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 92 | #endif |
| 93 | |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 94 | /* |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 95 | * Protects cgroup_idr and css_idr so that IDs can be released without |
| 96 | * grabbing cgroup_mutex. |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 97 | */ |
| 98 | static DEFINE_SPINLOCK(cgroup_idr_lock); |
| 99 | |
| 100 | /* |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 101 | * Protects cgroup_subsys->release_agent_path. Modifying it also requires |
| 102 | * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock. |
| 103 | */ |
| 104 | static DEFINE_SPINLOCK(release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 105 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 106 | #define cgroup_assert_mutex_or_rcu_locked() \ |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 107 | rcu_lockdep_assert(rcu_read_lock_held() || \ |
| 108 | lockdep_is_held(&cgroup_mutex), \ |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 109 | "cgroup_mutex or RCU read lock required"); |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 110 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 111 | /* |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 112 | * cgroup destruction makes heavy use of work items and there can be a lot |
| 113 | * of concurrent destructions. Use a separate workqueue so that cgroup |
| 114 | * destruction work items don't end up filling up max_active of system_wq |
| 115 | * which may lead to deadlock. |
| 116 | */ |
| 117 | static struct workqueue_struct *cgroup_destroy_wq; |
| 118 | |
| 119 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 120 | * pidlist destructions need to be flushed on cgroup destruction. Use a |
| 121 | * separate workqueue as flush domain. |
| 122 | */ |
| 123 | static struct workqueue_struct *cgroup_pidlist_destroy_wq; |
| 124 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 125 | /* generate an array of cgroup subsystem pointers */ |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 126 | #define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys, |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 127 | static struct cgroup_subsys *cgroup_subsys[] = { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 128 | #include <linux/cgroup_subsys.h> |
| 129 | }; |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 130 | #undef SUBSYS |
| 131 | |
| 132 | /* array of cgroup subsystem names */ |
| 133 | #define SUBSYS(_x) [_x ## _cgrp_id] = #_x, |
| 134 | static const char *cgroup_subsys_name[] = { |
| 135 | #include <linux/cgroup_subsys.h> |
| 136 | }; |
| 137 | #undef SUBSYS |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 138 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 139 | /* |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 140 | * The default hierarchy, reserved for the subsystems that are otherwise |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 141 | * unattached - it never has more than a single cgroup, and all tasks are |
| 142 | * part of that cgroup. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 143 | */ |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 144 | struct cgroup_root cgrp_dfl_root; |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 145 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 146 | /* |
| 147 | * The default hierarchy always exists but is hidden until mounted for the |
| 148 | * first time. This is for backward compatibility. |
| 149 | */ |
| 150 | static bool cgrp_dfl_root_visible; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 151 | |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 152 | /* |
| 153 | * Set by the boot param of the same name and makes subsystems with NULL |
| 154 | * ->dfl_files to use ->legacy_files on the default hierarchy. |
| 155 | */ |
| 156 | static bool cgroup_legacy_files_on_dfl; |
| 157 | |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 158 | /* some controllers are not supported in the default hierarchy */ |
Tejun Heo | 5de4fa1 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 159 | static unsigned int cgrp_dfl_root_inhibit_ss_mask; |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 160 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 161 | /* The list of hierarchy roots */ |
| 162 | |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 163 | static LIST_HEAD(cgroup_roots); |
| 164 | static int cgroup_root_count; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 165 | |
Tejun Heo | 3417ae1 | 2014-02-08 10:37:01 -0500 | [diff] [blame] | 166 | /* hierarchy ID allocation and mapping, protected by cgroup_mutex */ |
Tejun Heo | 1a57423 | 2013-04-14 11:36:58 -0700 | [diff] [blame] | 167 | static DEFINE_IDR(cgroup_hierarchy_idr); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 168 | |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 169 | /* |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 170 | * Assign a monotonically increasing serial number to csses. It guarantees |
| 171 | * cgroups with bigger numbers are newer than those with smaller numbers. |
| 172 | * Also, as csses are always appended to the parent's ->children list, it |
| 173 | * guarantees that sibling csses are always sorted in the ascending serial |
| 174 | * number order on the list. Protected by cgroup_mutex. |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 175 | */ |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 176 | static u64 css_serial_nr_next = 1; |
Li Zefan | 794611a | 2013-06-18 18:53:53 +0800 | [diff] [blame] | 177 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 178 | /* This flag indicates whether tasks in the fork and exit paths should |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 179 | * check for fork/exit handlers to call. This avoids us having to do |
| 180 | * extra work in the fork/exit path if none of the subsystems need to |
| 181 | * be called. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 182 | */ |
Li Zefan | 8947f9d | 2008-07-25 01:46:56 -0700 | [diff] [blame] | 183 | static int need_forkexit_callback __read_mostly; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 184 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 185 | static struct cftype cgroup_dfl_base_files[]; |
| 186 | static struct cftype cgroup_legacy_base_files[]; |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 187 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 188 | static void cgroup_put(struct cgroup *cgrp); |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 189 | static int rebind_subsystems(struct cgroup_root *dst_root, |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 190 | unsigned int ss_mask); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 191 | static int cgroup_destroy_locked(struct cgroup *cgrp); |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 192 | static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss, |
| 193 | bool visible); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 194 | static void css_release(struct percpu_ref *ref); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 195 | static void kill_css(struct cgroup_subsys_state *css); |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 196 | static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[], |
| 197 | bool is_add); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 198 | static void cgroup_pidlist_destroy_all(struct cgroup *cgrp); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 199 | |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 200 | /* IDR wrappers which synchronize using cgroup_idr_lock */ |
| 201 | static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end, |
| 202 | gfp_t gfp_mask) |
| 203 | { |
| 204 | int ret; |
| 205 | |
| 206 | idr_preload(gfp_mask); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 207 | spin_lock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 208 | ret = idr_alloc(idr, ptr, start, end, gfp_mask); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 209 | spin_unlock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 210 | idr_preload_end(); |
| 211 | return ret; |
| 212 | } |
| 213 | |
| 214 | static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id) |
| 215 | { |
| 216 | void *ret; |
| 217 | |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 218 | spin_lock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 219 | ret = idr_replace(idr, ptr, id); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 220 | spin_unlock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 221 | return ret; |
| 222 | } |
| 223 | |
| 224 | static void cgroup_idr_remove(struct idr *idr, int id) |
| 225 | { |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 226 | spin_lock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 227 | idr_remove(idr, id); |
Tejun Heo | 54504e9 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 228 | spin_unlock_bh(&cgroup_idr_lock); |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 229 | } |
| 230 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 231 | static struct cgroup *cgroup_parent(struct cgroup *cgrp) |
| 232 | { |
| 233 | struct cgroup_subsys_state *parent_css = cgrp->self.parent; |
| 234 | |
| 235 | if (parent_css) |
| 236 | return container_of(parent_css, struct cgroup, self); |
| 237 | return NULL; |
| 238 | } |
| 239 | |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 240 | /** |
| 241 | * cgroup_css - obtain a cgroup's css for the specified subsystem |
| 242 | * @cgrp: the cgroup of interest |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 243 | * @ss: the subsystem of interest (%NULL returns @cgrp->self) |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 244 | * |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 245 | * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This |
| 246 | * function must be called either under cgroup_mutex or rcu_read_lock() and |
| 247 | * the caller is responsible for pinning the returned css if it wants to |
| 248 | * keep accessing it outside the said locks. This function may return |
| 249 | * %NULL if @cgrp doesn't have @subsys_id enabled. |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 250 | */ |
| 251 | static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp, |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 252 | struct cgroup_subsys *ss) |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 253 | { |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 254 | if (ss) |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 255 | return rcu_dereference_check(cgrp->subsys[ss->id], |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 256 | lockdep_is_held(&cgroup_mutex)); |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 257 | else |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 258 | return &cgrp->self; |
Tejun Heo | 95109b6 | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 259 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 260 | |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 261 | /** |
| 262 | * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem |
| 263 | * @cgrp: the cgroup of interest |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 264 | * @ss: the subsystem of interest (%NULL returns @cgrp->self) |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 265 | * |
| 266 | * Similar to cgroup_css() but returns the effctive css, which is defined |
| 267 | * as the matching css of the nearest ancestor including self which has @ss |
| 268 | * enabled. If @ss is associated with the hierarchy @cgrp is on, this |
| 269 | * function is guaranteed to return non-NULL css. |
| 270 | */ |
| 271 | static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp, |
| 272 | struct cgroup_subsys *ss) |
| 273 | { |
| 274 | lockdep_assert_held(&cgroup_mutex); |
| 275 | |
| 276 | if (!ss) |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 277 | return &cgrp->self; |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 278 | |
| 279 | if (!(cgrp->root->subsys_mask & (1 << ss->id))) |
| 280 | return NULL; |
| 281 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 282 | while (cgroup_parent(cgrp) && |
| 283 | !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id))) |
| 284 | cgrp = cgroup_parent(cgrp); |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 285 | |
| 286 | return cgroup_css(cgrp, ss); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 287 | } |
| 288 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 289 | /* convenient tests for these bits */ |
Tejun Heo | 54766d4 | 2013-06-12 21:04:53 -0700 | [diff] [blame] | 290 | static inline bool cgroup_is_dead(const struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 291 | { |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 292 | return !(cgrp->self.flags & CSS_ONLINE); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 293 | } |
| 294 | |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 295 | struct cgroup_subsys_state *of_css(struct kernfs_open_file *of) |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 296 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 297 | struct cgroup *cgrp = of->kn->parent->priv; |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 298 | struct cftype *cft = of_cft(of); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 299 | |
| 300 | /* |
| 301 | * This is open and unprotected implementation of cgroup_css(). |
| 302 | * seq_css() is only called from a kernfs file operation which has |
| 303 | * an active reference on the file. Because all the subsystem |
| 304 | * files are drained before a css is disassociated with a cgroup, |
| 305 | * the matching css from the cgroup's subsys table is guaranteed to |
| 306 | * be and stay valid until the enclosing operation is complete. |
| 307 | */ |
| 308 | if (cft->ss) |
| 309 | return rcu_dereference_raw(cgrp->subsys[cft->ss->id]); |
| 310 | else |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 311 | return &cgrp->self; |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 312 | } |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 313 | EXPORT_SYMBOL_GPL(of_css); |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 314 | |
Li Zefan | 78574cf | 2013-04-08 19:00:38 -0700 | [diff] [blame] | 315 | /** |
| 316 | * cgroup_is_descendant - test ancestry |
| 317 | * @cgrp: the cgroup to be tested |
| 318 | * @ancestor: possible ancestor of @cgrp |
| 319 | * |
| 320 | * Test whether @cgrp is a descendant of @ancestor. It also returns %true |
| 321 | * if @cgrp == @ancestor. This function is safe to call as long as @cgrp |
| 322 | * and @ancestor are accessible. |
| 323 | */ |
| 324 | bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor) |
| 325 | { |
| 326 | while (cgrp) { |
| 327 | if (cgrp == ancestor) |
| 328 | return true; |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 329 | cgrp = cgroup_parent(cgrp); |
Li Zefan | 78574cf | 2013-04-08 19:00:38 -0700 | [diff] [blame] | 330 | } |
| 331 | return false; |
| 332 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 333 | |
Adrian Bunk | e9685a0 | 2008-02-07 00:13:46 -0800 | [diff] [blame] | 334 | static int cgroup_is_releasable(const struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 335 | { |
| 336 | const int bits = |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 337 | (1 << CGRP_RELEASABLE) | |
| 338 | (1 << CGRP_NOTIFY_ON_RELEASE); |
| 339 | return (cgrp->flags & bits) == bits; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 340 | } |
| 341 | |
Adrian Bunk | e9685a0 | 2008-02-07 00:13:46 -0800 | [diff] [blame] | 342 | static int notify_on_release(const struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 343 | { |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 344 | return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 345 | } |
| 346 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 347 | /** |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 348 | * for_each_css - iterate all css's of a cgroup |
| 349 | * @css: the iteration cursor |
| 350 | * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end |
| 351 | * @cgrp: the target cgroup to iterate css's of |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 352 | * |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 353 | * Should be called under cgroup_[tree_]mutex. |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 354 | */ |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 355 | #define for_each_css(css, ssid, cgrp) \ |
| 356 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \ |
| 357 | if (!((css) = rcu_dereference_check( \ |
| 358 | (cgrp)->subsys[(ssid)], \ |
| 359 | lockdep_is_held(&cgroup_mutex)))) { } \ |
| 360 | else |
| 361 | |
| 362 | /** |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 363 | * for_each_e_css - iterate all effective css's of a cgroup |
| 364 | * @css: the iteration cursor |
| 365 | * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end |
| 366 | * @cgrp: the target cgroup to iterate css's of |
| 367 | * |
| 368 | * Should be called under cgroup_[tree_]mutex. |
| 369 | */ |
| 370 | #define for_each_e_css(css, ssid, cgrp) \ |
| 371 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \ |
| 372 | if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \ |
| 373 | ; \ |
| 374 | else |
| 375 | |
| 376 | /** |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 377 | * for_each_subsys - iterate all enabled cgroup subsystems |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 378 | * @ss: the iteration cursor |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 379 | * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 380 | */ |
Tejun Heo | 780cd8b | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 381 | #define for_each_subsys(ss, ssid) \ |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 382 | for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \ |
| 383 | (((ss) = cgroup_subsys[ssid]) || true); (ssid)++) |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 384 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 385 | /* iterate across the hierarchies */ |
| 386 | #define for_each_root(root) \ |
Tejun Heo | 5549c49 | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 387 | list_for_each_entry((root), &cgroup_roots, root_list) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 388 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 389 | /* iterate over child cgrps, lock should be held throughout iteration */ |
| 390 | #define cgroup_for_each_live_child(child, cgrp) \ |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 391 | list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \ |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 392 | if (({ lockdep_assert_held(&cgroup_mutex); \ |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 393 | cgroup_is_dead(child); })) \ |
| 394 | ; \ |
| 395 | else |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 396 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 397 | /* the list of cgroups eligible for automatic release. Protected by |
| 398 | * release_list_lock */ |
| 399 | static LIST_HEAD(release_list); |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 400 | static DEFINE_RAW_SPINLOCK(release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 401 | static void cgroup_release_agent(struct work_struct *work); |
| 402 | static DECLARE_WORK(release_agent_work, cgroup_release_agent); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 403 | static void check_for_release(struct cgroup *cgrp); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 404 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 405 | /* |
| 406 | * A cgroup can be associated with multiple css_sets as different tasks may |
| 407 | * belong to different cgroups on different hierarchies. In the other |
| 408 | * direction, a css_set is naturally associated with multiple cgroups. |
| 409 | * This M:N relationship is represented by the following link structure |
| 410 | * which exists for each association and allows traversing the associations |
| 411 | * from both sides. |
| 412 | */ |
| 413 | struct cgrp_cset_link { |
| 414 | /* the cgroup and css_set this link associates */ |
| 415 | struct cgroup *cgrp; |
| 416 | struct css_set *cset; |
| 417 | |
| 418 | /* list of cgrp_cset_links anchored at cgrp->cset_links */ |
| 419 | struct list_head cset_link; |
| 420 | |
| 421 | /* list of cgrp_cset_links anchored at css_set->cgrp_links */ |
| 422 | struct list_head cgrp_link; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 423 | }; |
| 424 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 425 | /* |
| 426 | * 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] | 427 | * hierarchies being mounted. It contains a pointer to the root state |
| 428 | * for each subsystem. Also used to anchor the list of css_sets. Not |
| 429 | * reference-counted, to improve performance when child cgroups |
| 430 | * haven't been created. |
| 431 | */ |
Tejun Heo | 5024ae2 | 2014-05-07 21:31:17 -0400 | [diff] [blame] | 432 | struct css_set init_css_set = { |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 433 | .refcount = ATOMIC_INIT(1), |
| 434 | .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links), |
| 435 | .tasks = LIST_HEAD_INIT(init_css_set.tasks), |
| 436 | .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks), |
| 437 | .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node), |
| 438 | .mg_node = LIST_HEAD_INIT(init_css_set.mg_node), |
| 439 | }; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 440 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 441 | static int css_set_count = 1; /* 1 for init_css_set */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 442 | |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 443 | /** |
| 444 | * cgroup_update_populated - updated populated count of a cgroup |
| 445 | * @cgrp: the target cgroup |
| 446 | * @populated: inc or dec populated count |
| 447 | * |
| 448 | * @cgrp is either getting the first task (css_set) or losing the last. |
| 449 | * Update @cgrp->populated_cnt accordingly. The count is propagated |
| 450 | * towards root so that a given cgroup's populated_cnt is zero iff the |
| 451 | * cgroup and all its descendants are empty. |
| 452 | * |
| 453 | * @cgrp's interface file "cgroup.populated" is zero if |
| 454 | * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt |
| 455 | * changes from or to zero, userland is notified that the content of the |
| 456 | * interface file has changed. This can be used to detect when @cgrp and |
| 457 | * its descendants become populated or empty. |
| 458 | */ |
| 459 | static void cgroup_update_populated(struct cgroup *cgrp, bool populated) |
| 460 | { |
| 461 | lockdep_assert_held(&css_set_rwsem); |
| 462 | |
| 463 | do { |
| 464 | bool trigger; |
| 465 | |
| 466 | if (populated) |
| 467 | trigger = !cgrp->populated_cnt++; |
| 468 | else |
| 469 | trigger = !--cgrp->populated_cnt; |
| 470 | |
| 471 | if (!trigger) |
| 472 | break; |
| 473 | |
| 474 | if (cgrp->populated_kn) |
| 475 | kernfs_notify(cgrp->populated_kn); |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 476 | cgrp = cgroup_parent(cgrp); |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 477 | } while (cgrp); |
| 478 | } |
| 479 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 480 | /* |
| 481 | * hash table for cgroup groups. This improves the performance to find |
| 482 | * an existing css_set. This hash doesn't (currently) take into |
| 483 | * account cgroups in empty hierarchies. |
| 484 | */ |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 485 | #define CSS_SET_HASH_BITS 7 |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 486 | static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 487 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 488 | static unsigned long css_set_hash(struct cgroup_subsys_state *css[]) |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 489 | { |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 490 | unsigned long key = 0UL; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 491 | struct cgroup_subsys *ss; |
| 492 | int i; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 493 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 494 | for_each_subsys(ss, i) |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 495 | key += (unsigned long)css[i]; |
| 496 | key = (key >> 16) ^ key; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 497 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 498 | return key; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 499 | } |
| 500 | |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 501 | static void put_css_set_locked(struct css_set *cset, bool taskexit) |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 502 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 503 | struct cgrp_cset_link *link, *tmp_link; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 504 | struct cgroup_subsys *ss; |
| 505 | int ssid; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 506 | |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 507 | lockdep_assert_held(&css_set_rwsem); |
| 508 | |
| 509 | if (!atomic_dec_and_test(&cset->refcount)) |
Lai Jiangshan | 146aa1b | 2008-10-18 20:28:03 -0700 | [diff] [blame] | 510 | return; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 511 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 512 | /* This css_set is dead. unlink it and release cgroup refcounts */ |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 513 | for_each_subsys(ss, ssid) |
| 514 | list_del(&cset->e_cset_node[ssid]); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 515 | hash_del(&cset->hlist); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 516 | css_set_count--; |
| 517 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 518 | 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] | 519 | struct cgroup *cgrp = link->cgrp; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 520 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 521 | list_del(&link->cset_link); |
| 522 | list_del(&link->cgrp_link); |
Li Zefan | 71b5707 | 2013-01-24 14:43:28 +0800 | [diff] [blame] | 523 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 524 | /* @cgrp can't go away while we're holding css_set_rwsem */ |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 525 | if (list_empty(&cgrp->cset_links)) { |
| 526 | cgroup_update_populated(cgrp, false); |
| 527 | if (notify_on_release(cgrp)) { |
| 528 | if (taskexit) |
| 529 | set_bit(CGRP_RELEASABLE, &cgrp->flags); |
| 530 | check_for_release(cgrp); |
| 531 | } |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 532 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 533 | |
| 534 | kfree(link); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 535 | } |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 536 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 537 | kfree_rcu(cset, rcu_head); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 540 | static void put_css_set(struct css_set *cset, bool taskexit) |
| 541 | { |
| 542 | /* |
| 543 | * Ensure that the refcount doesn't hit zero while any readers |
| 544 | * can see it. Similar to atomic_dec_and_lock(), but for an |
| 545 | * rwlock |
| 546 | */ |
| 547 | if (atomic_add_unless(&cset->refcount, -1, 1)) |
| 548 | return; |
| 549 | |
| 550 | down_write(&css_set_rwsem); |
| 551 | put_css_set_locked(cset, taskexit); |
| 552 | up_write(&css_set_rwsem); |
| 553 | } |
| 554 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 555 | /* |
| 556 | * refcounted get/put for css_set objects |
| 557 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 558 | static inline void get_css_set(struct css_set *cset) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 559 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 560 | atomic_inc(&cset->refcount); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 561 | } |
| 562 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 563 | /** |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 564 | * compare_css_sets - helper function for find_existing_css_set(). |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 565 | * @cset: candidate css_set being tested |
| 566 | * @old_cset: existing css_set for a task |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 567 | * @new_cgrp: cgroup that's being entered by the task |
| 568 | * @template: desired set of css pointers in css_set (pre-calculated) |
| 569 | * |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 570 | * Returns true if "cset" matches "old_cset" except for the hierarchy |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 571 | * which "new_cgrp" belongs to, for which it should match "new_cgrp". |
| 572 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 573 | static bool compare_css_sets(struct css_set *cset, |
| 574 | struct css_set *old_cset, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 575 | struct cgroup *new_cgrp, |
| 576 | struct cgroup_subsys_state *template[]) |
| 577 | { |
| 578 | struct list_head *l1, *l2; |
| 579 | |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 580 | /* |
| 581 | * On the default hierarchy, there can be csets which are |
| 582 | * associated with the same set of cgroups but different csses. |
| 583 | * Let's first ensure that csses match. |
| 584 | */ |
| 585 | if (memcmp(template, cset->subsys, sizeof(cset->subsys))) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 586 | return false; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 587 | |
| 588 | /* |
| 589 | * Compare cgroup pointers in order to distinguish between |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 590 | * different cgroups in hierarchies. As different cgroups may |
| 591 | * share the same effective css, this comparison is always |
| 592 | * necessary. |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 593 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 594 | l1 = &cset->cgrp_links; |
| 595 | l2 = &old_cset->cgrp_links; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 596 | while (1) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 597 | struct cgrp_cset_link *link1, *link2; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 598 | struct cgroup *cgrp1, *cgrp2; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 599 | |
| 600 | l1 = l1->next; |
| 601 | l2 = l2->next; |
| 602 | /* See if we reached the end - both lists are equal length. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 603 | if (l1 == &cset->cgrp_links) { |
| 604 | BUG_ON(l2 != &old_cset->cgrp_links); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 605 | break; |
| 606 | } else { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 607 | BUG_ON(l2 == &old_cset->cgrp_links); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 608 | } |
| 609 | /* Locate the cgroups associated with these links. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 610 | link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link); |
| 611 | link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link); |
| 612 | cgrp1 = link1->cgrp; |
| 613 | cgrp2 = link2->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 614 | /* Hierarchies should be linked in the same order. */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 615 | BUG_ON(cgrp1->root != cgrp2->root); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 616 | |
| 617 | /* |
| 618 | * If this hierarchy is the hierarchy of the cgroup |
| 619 | * that's changing, then we need to check that this |
| 620 | * css_set points to the new cgroup; if it's any other |
| 621 | * hierarchy, then this css_set should point to the |
| 622 | * same cgroup as the old css_set. |
| 623 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 624 | if (cgrp1->root == new_cgrp->root) { |
| 625 | if (cgrp1 != new_cgrp) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 626 | return false; |
| 627 | } else { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 628 | if (cgrp1 != cgrp2) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 629 | return false; |
| 630 | } |
| 631 | } |
| 632 | return true; |
| 633 | } |
| 634 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 635 | /** |
| 636 | * find_existing_css_set - init css array and find the matching css_set |
| 637 | * @old_cset: the css_set that we're using before the cgroup transition |
| 638 | * @cgrp: the cgroup that we're moving into |
| 639 | * @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] | 640 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 641 | static struct css_set *find_existing_css_set(struct css_set *old_cset, |
| 642 | struct cgroup *cgrp, |
| 643 | struct cgroup_subsys_state *template[]) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 644 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 645 | struct cgroup_root *root = cgrp->root; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 646 | struct cgroup_subsys *ss; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 647 | struct css_set *cset; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 648 | unsigned long key; |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 649 | int i; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 650 | |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 651 | /* |
| 652 | * Build the set of subsystem state objects that we want to see in the |
| 653 | * new css_set. while subsystems can change globally, the entries here |
| 654 | * won't change, so no need for locking. |
| 655 | */ |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 656 | for_each_subsys(ss, i) { |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 657 | if (root->subsys_mask & (1UL << i)) { |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 658 | /* |
| 659 | * @ss is in this hierarchy, so we want the |
| 660 | * effective css from @cgrp. |
| 661 | */ |
| 662 | template[i] = cgroup_e_css(cgrp, ss); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 663 | } else { |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 664 | /* |
| 665 | * @ss is not in this hierarchy, so we don't want |
| 666 | * to change the css. |
| 667 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 668 | template[i] = old_cset->subsys[i]; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 669 | } |
| 670 | } |
| 671 | |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 672 | key = css_set_hash(template); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 673 | hash_for_each_possible(css_set_table, cset, hlist, key) { |
| 674 | if (!compare_css_sets(cset, old_cset, cgrp, template)) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 675 | continue; |
| 676 | |
| 677 | /* This css_set matches what we need */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 678 | return cset; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 679 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 680 | |
| 681 | /* No existing cgroup group matched */ |
| 682 | return NULL; |
| 683 | } |
| 684 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 685 | static void free_cgrp_cset_links(struct list_head *links_to_free) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 686 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 687 | struct cgrp_cset_link *link, *tmp_link; |
KOSAKI Motohiro | 71cbb94 | 2008-07-25 01:46:55 -0700 | [diff] [blame] | 688 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 689 | list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) { |
| 690 | list_del(&link->cset_link); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 691 | kfree(link); |
| 692 | } |
| 693 | } |
| 694 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 695 | /** |
| 696 | * allocate_cgrp_cset_links - allocate cgrp_cset_links |
| 697 | * @count: the number of links to allocate |
| 698 | * @tmp_links: list_head the allocated links are put on |
| 699 | * |
| 700 | * Allocate @count cgrp_cset_link structures and chain them on @tmp_links |
| 701 | * through ->cset_link. Returns 0 on success or -errno. |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 702 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 703 | 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] | 704 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 705 | struct cgrp_cset_link *link; |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 706 | int i; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 707 | |
| 708 | INIT_LIST_HEAD(tmp_links); |
| 709 | |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 710 | for (i = 0; i < count; i++) { |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 711 | link = kzalloc(sizeof(*link), GFP_KERNEL); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 712 | if (!link) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 713 | free_cgrp_cset_links(tmp_links); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 714 | return -ENOMEM; |
| 715 | } |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 716 | list_add(&link->cset_link, tmp_links); |
Li Zefan | 3655343 | 2008-07-29 22:33:19 -0700 | [diff] [blame] | 717 | } |
| 718 | return 0; |
| 719 | } |
| 720 | |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 721 | /** |
| 722 | * 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] | 723 | * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links() |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 724 | * @cset: the css_set to be linked |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 725 | * @cgrp: the destination cgroup |
| 726 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 727 | static void link_css_set(struct list_head *tmp_links, struct css_set *cset, |
| 728 | struct cgroup *cgrp) |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 729 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 730 | struct cgrp_cset_link *link; |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 731 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 732 | BUG_ON(list_empty(tmp_links)); |
Tejun Heo | 6803c00 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 733 | |
| 734 | if (cgroup_on_dfl(cgrp)) |
| 735 | cset->dfl_cgrp = cgrp; |
| 736 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 737 | link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link); |
| 738 | link->cset = cset; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 739 | link->cgrp = cgrp; |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 740 | |
| 741 | if (list_empty(&cgrp->cset_links)) |
| 742 | cgroup_update_populated(cgrp, true); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 743 | list_move(&link->cset_link, &cgrp->cset_links); |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 744 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 745 | /* |
| 746 | * Always add links to the tail of the list so that the list |
| 747 | * is sorted by order of hierarchy creation |
| 748 | */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 749 | list_add_tail(&link->cgrp_link, &cset->cgrp_links); |
Li Zefan | c12f65d | 2009-01-07 18:07:42 -0800 | [diff] [blame] | 750 | } |
| 751 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 752 | /** |
| 753 | * find_css_set - return a new css_set with one cgroup updated |
| 754 | * @old_cset: the baseline css_set |
| 755 | * @cgrp: the cgroup to be updated |
| 756 | * |
| 757 | * Return a new css_set that's equivalent to @old_cset, but with @cgrp |
| 758 | * substituted into the appropriate hierarchy. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 759 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 760 | static struct css_set *find_css_set(struct css_set *old_cset, |
| 761 | struct cgroup *cgrp) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 762 | { |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 763 | struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { }; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 764 | struct css_set *cset; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 765 | struct list_head tmp_links; |
| 766 | struct cgrp_cset_link *link; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 767 | struct cgroup_subsys *ss; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 768 | unsigned long key; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 769 | int ssid; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 770 | |
Tejun Heo | b326f9d | 2013-06-24 15:21:48 -0700 | [diff] [blame] | 771 | lockdep_assert_held(&cgroup_mutex); |
| 772 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 773 | /* First see if we already have a cgroup group that matches |
| 774 | * the desired set */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 775 | down_read(&css_set_rwsem); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 776 | cset = find_existing_css_set(old_cset, cgrp, template); |
| 777 | if (cset) |
| 778 | get_css_set(cset); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 779 | up_read(&css_set_rwsem); |
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 | if (cset) |
| 782 | return cset; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 783 | |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 784 | cset = kzalloc(sizeof(*cset), GFP_KERNEL); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 785 | if (!cset) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 786 | return NULL; |
| 787 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 788 | /* Allocate all the cgrp_cset_link objects that we'll need */ |
Tejun Heo | 9871bf9 | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 789 | if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 790 | kfree(cset); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 791 | return NULL; |
| 792 | } |
| 793 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 794 | atomic_set(&cset->refcount, 1); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 795 | INIT_LIST_HEAD(&cset->cgrp_links); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 796 | INIT_LIST_HEAD(&cset->tasks); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 797 | INIT_LIST_HEAD(&cset->mg_tasks); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 798 | INIT_LIST_HEAD(&cset->mg_preload_node); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 799 | INIT_LIST_HEAD(&cset->mg_node); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 800 | INIT_HLIST_NODE(&cset->hlist); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 801 | |
| 802 | /* Copy the set of subsystem state objects generated in |
| 803 | * find_existing_css_set() */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 804 | memcpy(cset->subsys, template, sizeof(cset->subsys)); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 805 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 806 | down_write(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 807 | /* Add reference counts and links from the new css_set. */ |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 808 | list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 809 | struct cgroup *c = link->cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 810 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 811 | if (c->root == cgrp->root) |
| 812 | c = cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 813 | link_css_set(&tmp_links, cset, c); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 814 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 815 | |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 816 | BUG_ON(!list_empty(&tmp_links)); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 817 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 818 | css_set_count++; |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 819 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 820 | /* Add @cset to the hash table */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 821 | key = css_set_hash(cset->subsys); |
| 822 | hash_add(css_set_table, &cset->hlist, key); |
Li Zefan | 472b105 | 2008-04-29 01:00:11 -0700 | [diff] [blame] | 823 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 824 | for_each_subsys(ss, ssid) |
| 825 | list_add_tail(&cset->e_cset_node[ssid], |
| 826 | &cset->subsys[ssid]->cgroup->e_csets[ssid]); |
| 827 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 828 | up_write(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 829 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 830 | return cset; |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 831 | } |
| 832 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 833 | 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] | 834 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 835 | struct cgroup *root_cgrp = kf_root->kn->priv; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 836 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 837 | return root_cgrp->root; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 838 | } |
| 839 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 840 | static int cgroup_init_root_id(struct cgroup_root *root) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 841 | { |
| 842 | int id; |
| 843 | |
| 844 | lockdep_assert_held(&cgroup_mutex); |
| 845 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 846 | id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 847 | if (id < 0) |
| 848 | return id; |
| 849 | |
| 850 | root->hierarchy_id = id; |
| 851 | return 0; |
| 852 | } |
| 853 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 854 | static void cgroup_exit_root_id(struct cgroup_root *root) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 855 | { |
| 856 | lockdep_assert_held(&cgroup_mutex); |
| 857 | |
| 858 | if (root->hierarchy_id) { |
| 859 | idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id); |
| 860 | root->hierarchy_id = 0; |
| 861 | } |
| 862 | } |
| 863 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 864 | static void cgroup_free_root(struct cgroup_root *root) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 865 | { |
| 866 | if (root) { |
| 867 | /* hierarhcy ID shoulid already have been released */ |
| 868 | WARN_ON_ONCE(root->hierarchy_id); |
| 869 | |
| 870 | idr_destroy(&root->cgroup_idr); |
| 871 | kfree(root); |
| 872 | } |
| 873 | } |
| 874 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 875 | static void cgroup_destroy_root(struct cgroup_root *root) |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 876 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 877 | struct cgroup *cgrp = &root->cgrp; |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 878 | struct cgrp_cset_link *link, *tmp_link; |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 879 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 880 | mutex_lock(&cgroup_mutex); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 881 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 882 | BUG_ON(atomic_read(&root->nr_cgrps)); |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 883 | BUG_ON(!list_empty(&cgrp->self.children)); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 884 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 885 | /* Rebind all subsystems back to the default hierarchy */ |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 886 | rebind_subsystems(&cgrp_dfl_root, root->subsys_mask); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 887 | |
| 888 | /* |
| 889 | * Release all the links from cset_links to this hierarchy's |
| 890 | * root cgroup |
| 891 | */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 892 | down_write(&css_set_rwsem); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 893 | |
| 894 | list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) { |
| 895 | list_del(&link->cset_link); |
| 896 | list_del(&link->cgrp_link); |
| 897 | kfree(link); |
| 898 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 899 | up_write(&css_set_rwsem); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 900 | |
| 901 | if (!list_empty(&root->root_list)) { |
| 902 | list_del(&root->root_list); |
| 903 | cgroup_root_count--; |
| 904 | } |
| 905 | |
| 906 | cgroup_exit_root_id(root); |
| 907 | |
| 908 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 909 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 910 | kernfs_destroy_root(root->kf_root); |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 911 | cgroup_free_root(root); |
| 912 | } |
| 913 | |
Tejun Heo | ceb6a08 | 2014-02-25 10:04:02 -0500 | [diff] [blame] | 914 | /* look up cgroup associated with given css_set on the specified hierarchy */ |
| 915 | static struct cgroup *cset_cgroup_from_root(struct css_set *cset, |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 916 | struct cgroup_root *root) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 917 | { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 918 | struct cgroup *res = NULL; |
| 919 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 920 | lockdep_assert_held(&cgroup_mutex); |
| 921 | lockdep_assert_held(&css_set_rwsem); |
| 922 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 923 | if (cset == &init_css_set) { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 924 | res = &root->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 925 | } else { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 926 | struct cgrp_cset_link *link; |
| 927 | |
| 928 | list_for_each_entry(link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 929 | struct cgroup *c = link->cgrp; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 930 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 931 | if (c->root == root) { |
| 932 | res = c; |
| 933 | break; |
| 934 | } |
| 935 | } |
| 936 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 937 | |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 938 | BUG_ON(!res); |
| 939 | return res; |
| 940 | } |
| 941 | |
| 942 | /* |
Tejun Heo | ceb6a08 | 2014-02-25 10:04:02 -0500 | [diff] [blame] | 943 | * Return the cgroup for "task" from the given hierarchy. Must be |
| 944 | * called with cgroup_mutex and css_set_rwsem held. |
| 945 | */ |
| 946 | static struct cgroup *task_cgroup_from_root(struct task_struct *task, |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 947 | struct cgroup_root *root) |
Tejun Heo | ceb6a08 | 2014-02-25 10:04:02 -0500 | [diff] [blame] | 948 | { |
| 949 | /* |
| 950 | * No need to lock the task - since we hold cgroup_mutex the |
| 951 | * task can't change groups, so the only thing that can happen |
| 952 | * is that it exits and its css is set back to init_css_set. |
| 953 | */ |
| 954 | return cset_cgroup_from_root(task_css_set(task), root); |
| 955 | } |
| 956 | |
| 957 | /* |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 958 | * A task must hold cgroup_mutex to modify cgroups. |
| 959 | * |
| 960 | * Any task can increment and decrement the count field without lock. |
| 961 | * So in general, code holding cgroup_mutex can't rely on the count |
| 962 | * field not changing. However, if the count goes to zero, then only |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 963 | * cgroup_attach_task() can increment it again. Because a count of zero |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 964 | * means that no tasks are currently attached, therefore there is no |
| 965 | * way a task attached to that cgroup can fork (the other way to |
| 966 | * increment the count). So code holding cgroup_mutex can safely |
| 967 | * assume that if the count is zero, it will stay zero. Similarly, if |
| 968 | * a task holds cgroup_mutex on a cgroup with zero count, it |
| 969 | * knows that the cgroup won't be removed, as cgroup_rmdir() |
| 970 | * needs that mutex. |
| 971 | * |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 972 | * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't |
| 973 | * (usually) take cgroup_mutex. These are the two most performance |
| 974 | * critical pieces of code here. The exception occurs on cgroup_exit(), |
| 975 | * when a task in a notify_on_release cgroup exits. Then cgroup_mutex |
| 976 | * is taken, and if the cgroup count is zero, a usermode call made |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 977 | * to the release agent with the name of the cgroup (path relative to |
| 978 | * the root of cgroup file system) as the argument. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 979 | * |
| 980 | * A cgroup can only be deleted if both its 'count' of using tasks |
| 981 | * is zero, and its list of 'children' cgroups is empty. Since all |
| 982 | * 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] | 983 | * least one task in the system (init, pid == 1), therefore, root cgroup |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 984 | * 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] | 985 | * need a special hack to ensure that root cgroup cannot be deleted. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 986 | * |
| 987 | * P.S. One more locking exception. RCU is used to guard the |
Cliff Wickman | 956db3c | 2008-02-07 00:14:43 -0800 | [diff] [blame] | 988 | * update of a tasks cgroup pointer by cgroup_attach_task() |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 989 | */ |
| 990 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 991 | static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 992 | static struct kernfs_syscall_ops cgroup_kf_syscall_ops; |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 993 | static const struct file_operations proc_cgroupstats_operations; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 994 | |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 995 | static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft, |
| 996 | char *buf) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 997 | { |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 998 | if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) && |
| 999 | !(cgrp->root->flags & CGRP_ROOT_NOPREFIX)) |
| 1000 | snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s", |
| 1001 | cft->ss->name, cft->name); |
| 1002 | else |
| 1003 | strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX); |
| 1004 | return buf; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1005 | } |
| 1006 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1007 | /** |
| 1008 | * cgroup_file_mode - deduce file mode of a control file |
| 1009 | * @cft: the control file in question |
| 1010 | * |
| 1011 | * returns cft->mode if ->mode is not 0 |
| 1012 | * returns S_IRUGO|S_IWUSR if it has both a read and a write handler |
| 1013 | * returns S_IRUGO if it has only a read handler |
| 1014 | * returns S_IWUSR if it has only a write hander |
| 1015 | */ |
| 1016 | static umode_t cgroup_file_mode(const struct cftype *cft) |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 1017 | { |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1018 | umode_t mode = 0; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 1019 | |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1020 | if (cft->mode) |
| 1021 | return cft->mode; |
| 1022 | |
| 1023 | if (cft->read_u64 || cft->read_s64 || cft->seq_show) |
| 1024 | mode |= S_IRUGO; |
| 1025 | |
Tejun Heo | 6770c64 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1026 | if (cft->write_u64 || cft->write_s64 || cft->write) |
Tejun Heo | f2e85d5 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1027 | mode |= S_IWUSR; |
| 1028 | |
| 1029 | return mode; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 1030 | } |
| 1031 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1032 | static void cgroup_get(struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1033 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1034 | WARN_ON_ONCE(cgroup_is_dead(cgrp)); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1035 | css_get(&cgrp->self); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1036 | } |
| 1037 | |
Li Zefan | aa32362 | 2014-09-04 14:43:38 +0800 | [diff] [blame] | 1038 | static bool cgroup_tryget(struct cgroup *cgrp) |
| 1039 | { |
| 1040 | return css_tryget(&cgrp->self); |
| 1041 | } |
| 1042 | |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1043 | static void cgroup_put(struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1044 | { |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1045 | css_put(&cgrp->self); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1046 | } |
| 1047 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1048 | /** |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1049 | * cgroup_refresh_child_subsys_mask - update child_subsys_mask |
| 1050 | * @cgrp: the target cgroup |
| 1051 | * |
| 1052 | * On the default hierarchy, a subsystem may request other subsystems to be |
| 1053 | * enabled together through its ->depends_on mask. In such cases, more |
| 1054 | * subsystems than specified in "cgroup.subtree_control" may be enabled. |
| 1055 | * |
| 1056 | * This function determines which subsystems need to be enabled given the |
| 1057 | * current @cgrp->subtree_control and records it in |
| 1058 | * @cgrp->child_subsys_mask. The resulting mask is always a superset of |
| 1059 | * @cgrp->subtree_control and follows the usual hierarchy rules. |
| 1060 | */ |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1061 | static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp) |
| 1062 | { |
Tejun Heo | af0ba67 | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 1063 | struct cgroup *parent = cgroup_parent(cgrp); |
| 1064 | unsigned int cur_ss_mask = cgrp->subtree_control; |
| 1065 | struct cgroup_subsys *ss; |
| 1066 | int ssid; |
| 1067 | |
| 1068 | lockdep_assert_held(&cgroup_mutex); |
| 1069 | |
| 1070 | if (!cgroup_on_dfl(cgrp)) { |
| 1071 | cgrp->child_subsys_mask = cur_ss_mask; |
| 1072 | return; |
| 1073 | } |
| 1074 | |
| 1075 | while (true) { |
| 1076 | unsigned int new_ss_mask = cur_ss_mask; |
| 1077 | |
| 1078 | for_each_subsys(ss, ssid) |
| 1079 | if (cur_ss_mask & (1 << ssid)) |
| 1080 | new_ss_mask |= ss->depends_on; |
| 1081 | |
| 1082 | /* |
| 1083 | * Mask out subsystems which aren't available. This can |
| 1084 | * happen only if some depended-upon subsystems were bound |
| 1085 | * to non-default hierarchies. |
| 1086 | */ |
| 1087 | if (parent) |
| 1088 | new_ss_mask &= parent->child_subsys_mask; |
| 1089 | else |
| 1090 | new_ss_mask &= cgrp->root->subsys_mask; |
| 1091 | |
| 1092 | if (new_ss_mask == cur_ss_mask) |
| 1093 | break; |
| 1094 | cur_ss_mask = new_ss_mask; |
| 1095 | } |
| 1096 | |
| 1097 | cgrp->child_subsys_mask = cur_ss_mask; |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1098 | } |
| 1099 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1100 | /** |
| 1101 | * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods |
| 1102 | * @kn: the kernfs_node being serviced |
| 1103 | * |
| 1104 | * This helper undoes cgroup_kn_lock_live() and should be invoked before |
| 1105 | * the method finishes if locking succeeded. Note that once this function |
| 1106 | * returns the cgroup returned by cgroup_kn_lock_live() may become |
| 1107 | * inaccessible any time. If the caller intends to continue to access the |
| 1108 | * cgroup, it should pin it before invoking this function. |
| 1109 | */ |
| 1110 | static void cgroup_kn_unlock(struct kernfs_node *kn) |
| 1111 | { |
| 1112 | struct cgroup *cgrp; |
| 1113 | |
| 1114 | if (kernfs_type(kn) == KERNFS_DIR) |
| 1115 | cgrp = kn->priv; |
| 1116 | else |
| 1117 | cgrp = kn->parent->priv; |
| 1118 | |
| 1119 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1120 | |
| 1121 | kernfs_unbreak_active_protection(kn); |
| 1122 | cgroup_put(cgrp); |
| 1123 | } |
| 1124 | |
| 1125 | /** |
| 1126 | * cgroup_kn_lock_live - locking helper for cgroup kernfs methods |
| 1127 | * @kn: the kernfs_node being serviced |
| 1128 | * |
| 1129 | * This helper is to be used by a cgroup kernfs method currently servicing |
| 1130 | * @kn. It breaks the active protection, performs cgroup locking and |
| 1131 | * verifies that the associated cgroup is alive. Returns the cgroup if |
| 1132 | * alive; otherwise, %NULL. A successful return should be undone by a |
| 1133 | * matching cgroup_kn_unlock() invocation. |
| 1134 | * |
| 1135 | * Any cgroup kernfs method implementation which requires locking the |
| 1136 | * associated cgroup should use this helper. It avoids nesting cgroup |
| 1137 | * locking under kernfs active protection and allows all kernfs operations |
| 1138 | * including self-removal. |
| 1139 | */ |
| 1140 | static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn) |
| 1141 | { |
| 1142 | struct cgroup *cgrp; |
| 1143 | |
| 1144 | if (kernfs_type(kn) == KERNFS_DIR) |
| 1145 | cgrp = kn->priv; |
| 1146 | else |
| 1147 | cgrp = kn->parent->priv; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1148 | |
| 1149 | /* |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 1150 | * We're gonna grab cgroup_mutex which nests outside kernfs |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1151 | * active_ref. cgroup liveliness check alone provides enough |
| 1152 | * protection against removal. Ensure @cgrp stays accessible and |
| 1153 | * break the active_ref protection. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1154 | */ |
Li Zefan | aa32362 | 2014-09-04 14:43:38 +0800 | [diff] [blame] | 1155 | if (!cgroup_tryget(cgrp)) |
| 1156 | return NULL; |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1157 | kernfs_break_active_protection(kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1158 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 1159 | mutex_lock(&cgroup_mutex); |
| 1160 | |
| 1161 | if (!cgroup_is_dead(cgrp)) |
| 1162 | return cgrp; |
| 1163 | |
| 1164 | cgroup_kn_unlock(kn); |
| 1165 | return NULL; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1166 | } |
| 1167 | |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 1168 | static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1169 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1170 | char name[CGROUP_FILE_NAME_MAX]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1171 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 1172 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1173 | kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name)); |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1174 | } |
| 1175 | |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1176 | /** |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 1177 | * cgroup_clear_dir - remove subsys files in a cgroup directory |
Tejun Heo | 8f89140 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 1178 | * @cgrp: target cgroup |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1179 | * @subsys_mask: mask of the subsystem ids whose files should be removed |
| 1180 | */ |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1181 | static void cgroup_clear_dir(struct cgroup *cgrp, unsigned int subsys_mask) |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1182 | { |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1183 | struct cgroup_subsys *ss; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 1184 | int i; |
Tejun Heo | 05ef1d7 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 1185 | |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 1186 | for_each_subsys(ss, i) { |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 1187 | struct cftype *cfts; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 1188 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1189 | if (!(subsys_mask & (1 << i))) |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1190 | continue; |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 1191 | list_for_each_entry(cfts, &ss->cfts, node) |
| 1192 | cgroup_addrm_files(cgrp, cfts, false); |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1193 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1194 | } |
| 1195 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1196 | static int rebind_subsystems(struct cgroup_root *dst_root, unsigned int ss_mask) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1197 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1198 | struct cgroup_subsys *ss; |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 1199 | unsigned int tmp_ss_mask; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1200 | int ssid, i, ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1201 | |
Tejun Heo | ace2bee | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 1202 | lockdep_assert_held(&cgroup_mutex); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 1203 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1204 | for_each_subsys(ss, ssid) { |
| 1205 | if (!(ss_mask & (1 << ssid))) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1206 | continue; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1207 | |
Tejun Heo | 7fd8c56 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1208 | /* if @ss has non-root csses attached to it, can't move */ |
| 1209 | if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss))) |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1210 | return -EBUSY; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1211 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1212 | /* can't move between two non-dummy roots either */ |
Tejun Heo | 7fd8c56 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1213 | if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root) |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1214 | return -EBUSY; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1215 | } |
| 1216 | |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 1217 | /* skip creating root files on dfl_root for inhibited subsystems */ |
| 1218 | tmp_ss_mask = ss_mask; |
| 1219 | if (dst_root == &cgrp_dfl_root) |
| 1220 | tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask; |
| 1221 | |
| 1222 | ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask); |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1223 | if (ret) { |
| 1224 | if (dst_root != &cgrp_dfl_root) |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1225 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1226 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1227 | /* |
| 1228 | * Rebinding back to the default root is not allowed to |
| 1229 | * fail. Using both default and non-default roots should |
| 1230 | * be rare. Moving subsystems back and forth even more so. |
| 1231 | * Just warn about it and continue. |
| 1232 | */ |
| 1233 | if (cgrp_dfl_root_visible) { |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1234 | pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n", |
Jianyu Zhan | a2a1f9e | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1235 | ret, ss_mask); |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1236 | 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] | 1237 | } |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1238 | } |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1239 | |
| 1240 | /* |
| 1241 | * Nothing can fail from this point on. Remove files for the |
| 1242 | * removed subsystems and rebind each subsystem. |
| 1243 | */ |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1244 | for_each_subsys(ss, ssid) |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1245 | if (ss_mask & (1 << ssid)) |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1246 | cgroup_clear_dir(&ss->root->cgrp, 1 << ssid); |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1247 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1248 | for_each_subsys(ss, ssid) { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1249 | struct cgroup_root *src_root; |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1250 | struct cgroup_subsys_state *css; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1251 | struct css_set *cset; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1252 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1253 | if (!(ss_mask & (1 << ssid))) |
| 1254 | continue; |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1255 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1256 | src_root = ss->root; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1257 | css = cgroup_css(&src_root->cgrp, ss); |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1258 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1259 | WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss)); |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1260 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1261 | RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL); |
| 1262 | rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css); |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1263 | ss->root = dst_root; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1264 | css->cgroup = &dst_root->cgrp; |
Tejun Heo | a8a648c | 2013-06-24 15:21:47 -0700 | [diff] [blame] | 1265 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1266 | down_write(&css_set_rwsem); |
| 1267 | hash_for_each(css_set_table, i, cset, hlist) |
| 1268 | list_move_tail(&cset->e_cset_node[ss->id], |
| 1269 | &dst_root->cgrp.e_csets[ss->id]); |
| 1270 | up_write(&css_set_rwsem); |
| 1271 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1272 | src_root->subsys_mask &= ~(1 << ssid); |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1273 | src_root->cgrp.subtree_control &= ~(1 << ssid); |
| 1274 | cgroup_refresh_child_subsys_mask(&src_root->cgrp); |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1275 | |
Tejun Heo | bd53d61 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1276 | /* default hierarchy doesn't enable controllers by default */ |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1277 | dst_root->subsys_mask |= 1 << ssid; |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 1278 | if (dst_root != &cgrp_dfl_root) { |
| 1279 | dst_root->cgrp.subtree_control |= 1 << ssid; |
| 1280 | cgroup_refresh_child_subsys_mask(&dst_root->cgrp); |
| 1281 | } |
Tejun Heo | 73e80ed | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 1282 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1283 | if (ss->bind) |
| 1284 | ss->bind(css); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1285 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1286 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1287 | kernfs_activate(dst_root->cgrp.kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1288 | return 0; |
| 1289 | } |
| 1290 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1291 | static int cgroup_show_options(struct seq_file *seq, |
| 1292 | struct kernfs_root *kf_root) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1293 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1294 | struct cgroup_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1295 | struct cgroup_subsys *ss; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1296 | int ssid; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1297 | |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1298 | for_each_subsys(ss, ssid) |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1299 | if (root->subsys_mask & (1 << ssid)) |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 1300 | seq_printf(seq, ",%s", ss->name); |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1301 | if (root->flags & CGRP_ROOT_NOPREFIX) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1302 | seq_puts(seq, ",noprefix"); |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1303 | if (root->flags & CGRP_ROOT_XATTR) |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1304 | seq_puts(seq, ",xattr"); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1305 | |
| 1306 | spin_lock(&release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1307 | if (strlen(root->release_agent_path)) |
| 1308 | seq_printf(seq, ",release_agent=%s", root->release_agent_path); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1309 | spin_unlock(&release_agent_path_lock); |
| 1310 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1311 | if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags)) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 1312 | seq_puts(seq, ",clone_children"); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1313 | if (strlen(root->name)) |
| 1314 | seq_printf(seq, ",name=%s", root->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1315 | return 0; |
| 1316 | } |
| 1317 | |
| 1318 | struct cgroup_sb_opts { |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1319 | unsigned int subsys_mask; |
| 1320 | unsigned int flags; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1321 | char *release_agent; |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1322 | bool cpuset_clone_children; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1323 | char *name; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1324 | /* User explicitly requested empty subsystem */ |
| 1325 | bool none; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1326 | }; |
| 1327 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1328 | static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1329 | { |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1330 | char *token, *o = data; |
| 1331 | bool all_ss = false, one_ss = false; |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1332 | unsigned int mask = -1U; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1333 | struct cgroup_subsys *ss; |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1334 | int nr_opts = 0; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1335 | int i; |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1336 | |
| 1337 | #ifdef CONFIG_CPUSETS |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1338 | mask = ~(1U << cpuset_cgrp_id); |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1339 | #endif |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1340 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1341 | memset(opts, 0, sizeof(*opts)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1342 | |
| 1343 | while ((token = strsep(&o, ",")) != NULL) { |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1344 | nr_opts++; |
| 1345 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1346 | if (!*token) |
| 1347 | return -EINVAL; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1348 | if (!strcmp(token, "none")) { |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1349 | /* Explicitly have no subsystems */ |
| 1350 | opts->none = true; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1351 | continue; |
| 1352 | } |
| 1353 | if (!strcmp(token, "all")) { |
| 1354 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1355 | if (one_ss) |
| 1356 | return -EINVAL; |
| 1357 | all_ss = true; |
| 1358 | continue; |
| 1359 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1360 | if (!strcmp(token, "__DEVEL__sane_behavior")) { |
| 1361 | opts->flags |= CGRP_ROOT_SANE_BEHAVIOR; |
| 1362 | continue; |
| 1363 | } |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1364 | if (!strcmp(token, "noprefix")) { |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1365 | opts->flags |= CGRP_ROOT_NOPREFIX; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1366 | continue; |
| 1367 | } |
| 1368 | if (!strcmp(token, "clone_children")) { |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1369 | opts->cpuset_clone_children = true; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1370 | continue; |
| 1371 | } |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1372 | if (!strcmp(token, "xattr")) { |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1373 | opts->flags |= CGRP_ROOT_XATTR; |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 1374 | continue; |
| 1375 | } |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1376 | if (!strncmp(token, "release_agent=", 14)) { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1377 | /* Specifying two release agents is forbidden */ |
| 1378 | if (opts->release_agent) |
| 1379 | return -EINVAL; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1380 | opts->release_agent = |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1381 | kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1382 | if (!opts->release_agent) |
| 1383 | return -ENOMEM; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1384 | continue; |
| 1385 | } |
| 1386 | if (!strncmp(token, "name=", 5)) { |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1387 | const char *name = token + 5; |
| 1388 | /* Can't specify an empty name */ |
| 1389 | if (!strlen(name)) |
| 1390 | return -EINVAL; |
| 1391 | /* Must match [\w.-]+ */ |
| 1392 | for (i = 0; i < strlen(name); i++) { |
| 1393 | char c = name[i]; |
| 1394 | if (isalnum(c)) |
| 1395 | continue; |
| 1396 | if ((c == '.') || (c == '-') || (c == '_')) |
| 1397 | continue; |
| 1398 | return -EINVAL; |
| 1399 | } |
| 1400 | /* Specifying two names is forbidden */ |
| 1401 | if (opts->name) |
| 1402 | return -EINVAL; |
| 1403 | opts->name = kstrndup(name, |
Dan Carpenter | e400c28 | 2010-08-10 18:02:54 -0700 | [diff] [blame] | 1404 | MAX_CGROUP_ROOT_NAMELEN - 1, |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1405 | GFP_KERNEL); |
| 1406 | if (!opts->name) |
| 1407 | return -ENOMEM; |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1408 | |
| 1409 | continue; |
| 1410 | } |
| 1411 | |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 1412 | for_each_subsys(ss, i) { |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1413 | if (strcmp(token, ss->name)) |
| 1414 | continue; |
| 1415 | if (ss->disabled) |
| 1416 | continue; |
| 1417 | |
| 1418 | /* Mutually exclusive option 'all' + subsystem name */ |
| 1419 | if (all_ss) |
| 1420 | return -EINVAL; |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1421 | opts->subsys_mask |= (1 << i); |
Daniel Lezcano | 32a8cf2 | 2010-10-27 15:33:37 -0700 | [diff] [blame] | 1422 | one_ss = true; |
| 1423 | |
| 1424 | break; |
| 1425 | } |
| 1426 | if (i == CGROUP_SUBSYS_COUNT) |
| 1427 | return -ENOENT; |
| 1428 | } |
| 1429 | |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1430 | if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) { |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1431 | 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] | 1432 | if (nr_opts != 1) { |
| 1433 | pr_err("sane_behavior: no other mount options allowed\n"); |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1434 | return -EINVAL; |
| 1435 | } |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1436 | return 0; |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1437 | } |
| 1438 | |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1439 | /* |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1440 | * If the 'all' option was specified select all the subsystems, |
| 1441 | * otherwise if 'none', 'name=' and a subsystem name options were |
| 1442 | * not specified, let's default to 'all' |
| 1443 | */ |
| 1444 | if (all_ss || (!one_ss && !opts->none && !opts->name)) |
| 1445 | for_each_subsys(ss, i) |
| 1446 | if (!ss->disabled) |
| 1447 | opts->subsys_mask |= (1 << i); |
| 1448 | |
| 1449 | /* |
| 1450 | * We either have to specify by name or by subsystems. (So all |
| 1451 | * empty hierarchies must have a name). |
| 1452 | */ |
| 1453 | if (!opts->subsys_mask && !opts->name) |
| 1454 | return -EINVAL; |
| 1455 | |
| 1456 | /* |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1457 | * Option noprefix was introduced just for backward compatibility |
| 1458 | * with the old cpuset, so we allow noprefix only if mounting just |
| 1459 | * the cpuset subsystem. |
| 1460 | */ |
Tejun Heo | 9343862 | 2013-04-14 20:15:25 -0700 | [diff] [blame] | 1461 | if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask)) |
Li Zefan | f9ab5b5 | 2009-06-17 16:26:33 -0700 | [diff] [blame] | 1462 | return -EINVAL; |
| 1463 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1464 | /* Can't specify "none" and some subsystems */ |
Aristeu Rozanski | a1a71b45 | 2012-08-23 16:53:31 -0400 | [diff] [blame] | 1465 | if (opts->subsys_mask && opts->none) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1466 | return -EINVAL; |
| 1467 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1468 | return 0; |
| 1469 | } |
| 1470 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1471 | 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] | 1472 | { |
| 1473 | int ret = 0; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1474 | struct cgroup_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1475 | struct cgroup_sb_opts opts; |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1476 | unsigned int added_mask, removed_mask; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1477 | |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1478 | if (root == &cgrp_dfl_root) { |
| 1479 | pr_err("remount is not allowed\n"); |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1480 | return -EINVAL; |
| 1481 | } |
| 1482 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1483 | mutex_lock(&cgroup_mutex); |
| 1484 | |
| 1485 | /* See what subsystems are wanted */ |
| 1486 | ret = parse_cgroupfs_options(data, &opts); |
| 1487 | if (ret) |
| 1488 | goto out_unlock; |
| 1489 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1490 | if (opts.subsys_mask != root->subsys_mask || opts.release_agent) |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 1491 | 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] | 1492 | task_tgid_nr(current), current->comm); |
Tejun Heo | 8b5a5a9 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1493 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1494 | added_mask = opts.subsys_mask & ~root->subsys_mask; |
| 1495 | removed_mask = root->subsys_mask & ~opts.subsys_mask; |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 1496 | |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1497 | /* Don't allow flags or name to change at remount */ |
Tejun Heo | 7450e90 | 2014-07-09 10:08:07 -0400 | [diff] [blame] | 1498 | if ((opts.flags ^ root->flags) || |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1499 | (opts.name && strcmp(opts.name, root->name))) { |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1500 | 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] | 1501 | opts.flags, opts.name ?: "", root->flags, root->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1502 | ret = -EINVAL; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1503 | goto out_unlock; |
| 1504 | } |
| 1505 | |
Tejun Heo | f172e67 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1506 | /* remounting is not allowed for populated hierarchies */ |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 1507 | if (!list_empty(&root->cgrp.self.children)) { |
Tejun Heo | f172e67 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1508 | ret = -EBUSY; |
Li Zefan | 0670e08 | 2009-04-02 16:57:30 -0700 | [diff] [blame] | 1509 | goto out_unlock; |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 1510 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1511 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1512 | ret = rebind_subsystems(root, added_mask); |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1513 | if (ret) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1514 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1515 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1516 | rebind_subsystems(&cgrp_dfl_root, removed_mask); |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1517 | |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1518 | if (opts.release_agent) { |
| 1519 | spin_lock(&release_agent_path_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 1520 | strcpy(root->release_agent_path, opts.release_agent); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 1521 | spin_unlock(&release_agent_path_lock); |
| 1522 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1523 | out_unlock: |
Jesper Juhl | 66bdc9c | 2009-04-02 16:57:27 -0700 | [diff] [blame] | 1524 | kfree(opts.release_agent); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1525 | kfree(opts.name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1526 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1527 | return ret; |
| 1528 | } |
| 1529 | |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1530 | /* |
| 1531 | * To reduce the fork() overhead for systems that are not actually using |
| 1532 | * their cgroups capability, we don't maintain the lists running through |
| 1533 | * each css_set to its tasks until we see the list actually used - in other |
| 1534 | * words after the first mount. |
| 1535 | */ |
| 1536 | static bool use_task_css_set_links __read_mostly; |
| 1537 | |
| 1538 | static void cgroup_enable_task_cg_lists(void) |
| 1539 | { |
| 1540 | struct task_struct *p, *g; |
| 1541 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1542 | down_write(&css_set_rwsem); |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1543 | |
| 1544 | if (use_task_css_set_links) |
| 1545 | goto out_unlock; |
| 1546 | |
| 1547 | use_task_css_set_links = true; |
| 1548 | |
| 1549 | /* |
| 1550 | * We need tasklist_lock because RCU is not safe against |
| 1551 | * while_each_thread(). Besides, a forking task that has passed |
| 1552 | * cgroup_post_fork() without seeing use_task_css_set_links = 1 |
| 1553 | * is not guaranteed to have its child immediately visible in the |
| 1554 | * tasklist if we walk through it with RCU. |
| 1555 | */ |
| 1556 | read_lock(&tasklist_lock); |
| 1557 | do_each_thread(g, p) { |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1558 | WARN_ON_ONCE(!list_empty(&p->cg_list) || |
| 1559 | task_css_set(p) != &init_css_set); |
| 1560 | |
| 1561 | /* |
| 1562 | * We should check if the process is exiting, otherwise |
| 1563 | * it will race with cgroup_exit() in that the list |
| 1564 | * entry won't be deleted though the process has exited. |
Tejun Heo | f153ad1 | 2014-02-25 09:56:49 -0500 | [diff] [blame] | 1565 | * Do it while holding siglock so that we don't end up |
| 1566 | * racing against cgroup_exit(). |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1567 | */ |
Tejun Heo | f153ad1 | 2014-02-25 09:56:49 -0500 | [diff] [blame] | 1568 | spin_lock_irq(&p->sighand->siglock); |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 1569 | if (!(p->flags & PF_EXITING)) { |
| 1570 | struct css_set *cset = task_css_set(p); |
| 1571 | |
| 1572 | list_add(&p->cg_list, &cset->tasks); |
| 1573 | get_css_set(cset); |
| 1574 | } |
Tejun Heo | f153ad1 | 2014-02-25 09:56:49 -0500 | [diff] [blame] | 1575 | spin_unlock_irq(&p->sighand->siglock); |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1576 | } while_each_thread(g, p); |
| 1577 | read_unlock(&tasklist_lock); |
| 1578 | out_unlock: |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1579 | up_write(&css_set_rwsem); |
Tejun Heo | afeb0f9 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 1580 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1581 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1582 | static void init_cgroup_housekeeping(struct cgroup *cgrp) |
| 1583 | { |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1584 | struct cgroup_subsys *ss; |
| 1585 | int ssid; |
| 1586 | |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 1587 | INIT_LIST_HEAD(&cgrp->self.sibling); |
| 1588 | INIT_LIST_HEAD(&cgrp->self.children); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 1589 | INIT_LIST_HEAD(&cgrp->cset_links); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1590 | INIT_LIST_HEAD(&cgrp->release_list); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 1591 | INIT_LIST_HEAD(&cgrp->pidlists); |
| 1592 | mutex_init(&cgrp->pidlist_mutex); |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1593 | cgrp->self.cgroup = cgrp; |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 1594 | cgrp->self.flags |= CSS_ONLINE; |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 1595 | |
| 1596 | for_each_subsys(ss, ssid) |
| 1597 | INIT_LIST_HEAD(&cgrp->e_csets[ssid]); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 1598 | |
| 1599 | init_waitqueue_head(&cgrp->offline_waitq); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1600 | } |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1601 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1602 | static void init_cgroup_root(struct cgroup_root *root, |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1603 | struct cgroup_sb_opts *opts) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1604 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1605 | struct cgroup *cgrp = &root->cgrp; |
Tejun Heo | b0ca5a8 | 2012-04-01 12:09:54 -0700 | [diff] [blame] | 1606 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1607 | INIT_LIST_HEAD(&root->root_list); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1608 | atomic_set(&root->nr_cgrps, 1); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 1609 | cgrp->root = root; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 1610 | init_cgroup_housekeeping(cgrp); |
Li Zefan | 4e96ee8e | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 1611 | idr_init(&root->cgroup_idr); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1612 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1613 | root->flags = opts->flags; |
| 1614 | if (opts->release_agent) |
| 1615 | strcpy(root->release_agent_path, opts->release_agent); |
| 1616 | if (opts->name) |
| 1617 | strcpy(root->name, opts->name); |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 1618 | if (opts->cpuset_clone_children) |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1619 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1620 | } |
| 1621 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1622 | static int cgroup_setup_root(struct cgroup_root *root, unsigned int ss_mask) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1623 | { |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1624 | LIST_HEAD(tmp_links); |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1625 | struct cgroup *root_cgrp = &root->cgrp; |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 1626 | struct cftype *base_files; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1627 | struct css_set *cset; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1628 | int i, ret; |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1629 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1630 | lockdep_assert_held(&cgroup_mutex); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 1631 | |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 1632 | 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] | 1633 | if (ret < 0) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1634 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1635 | root_cgrp->id = ret; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1636 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1637 | ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release); |
| 1638 | if (ret) |
| 1639 | goto out; |
| 1640 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1641 | /* |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1642 | * We're accessing css_set_count without locking css_set_rwsem here, |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1643 | * but that's OK - it can only be increased by someone holding |
| 1644 | * cgroup_lock, and that's us. The worst that can happen is that we |
| 1645 | * have some link structures left over |
| 1646 | */ |
| 1647 | ret = allocate_cgrp_cset_links(css_set_count, &tmp_links); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1648 | if (ret) |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1649 | goto cancel_ref; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1650 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1651 | ret = cgroup_init_root_id(root); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1652 | if (ret) |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1653 | goto cancel_ref; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1654 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1655 | root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops, |
| 1656 | KERNFS_ROOT_CREATE_DEACTIVATED, |
| 1657 | root_cgrp); |
| 1658 | if (IS_ERR(root->kf_root)) { |
| 1659 | ret = PTR_ERR(root->kf_root); |
| 1660 | goto exit_root_id; |
| 1661 | } |
| 1662 | root_cgrp->kn = root->kf_root->kn; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1663 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 1664 | if (root == &cgrp_dfl_root) |
| 1665 | base_files = cgroup_dfl_base_files; |
| 1666 | else |
| 1667 | base_files = cgroup_legacy_base_files; |
| 1668 | |
| 1669 | ret = cgroup_addrm_files(root_cgrp, base_files, true); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1670 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1671 | goto destroy_root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1672 | |
Tejun Heo | 5df3603 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1673 | ret = rebind_subsystems(root, ss_mask); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1674 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1675 | goto destroy_root; |
Al Viro | 0df6a63 | 2010-12-21 13:29:29 -0500 | [diff] [blame] | 1676 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1677 | /* |
| 1678 | * There must be no failure case after here, since rebinding takes |
| 1679 | * care of subsystems' refcounts, which are explicitly dropped in |
| 1680 | * the failure exit path. |
| 1681 | */ |
| 1682 | list_add(&root->root_list, &cgroup_roots); |
| 1683 | cgroup_root_count++; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1684 | |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1685 | /* |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1686 | * Link the root cgroup in this hierarchy into all the css_set |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1687 | * objects. |
| 1688 | */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1689 | down_write(&css_set_rwsem); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1690 | hash_for_each(css_set_table, i, cset, hlist) |
| 1691 | link_css_set(&tmp_links, cset, root_cgrp); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1692 | up_write(&css_set_rwsem); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1693 | |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 1694 | BUG_ON(!list_empty(&root_cgrp->self.children)); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1695 | BUG_ON(atomic_read(&root->nr_cgrps) != 1); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1696 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1697 | kernfs_activate(root_cgrp->kn); |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1698 | ret = 0; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1699 | goto out; |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1700 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1701 | destroy_root: |
| 1702 | kernfs_destroy_root(root->kf_root); |
| 1703 | root->kf_root = NULL; |
| 1704 | exit_root_id: |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1705 | cgroup_exit_root_id(root); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1706 | cancel_ref: |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 1707 | percpu_ref_exit(&root_cgrp->self.refcnt); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1708 | out: |
Tejun Heo | d427dfe | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1709 | free_cgrp_cset_links(&tmp_links); |
| 1710 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1711 | } |
| 1712 | |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1713 | static struct dentry *cgroup_mount(struct file_system_type *fs_type, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1714 | int flags, const char *unused_dev_name, |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1715 | void *data) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1716 | { |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1717 | struct super_block *pinned_sb = NULL; |
Li Zefan | 970317a | 2014-06-30 11:49:58 +0800 | [diff] [blame] | 1718 | struct cgroup_subsys *ss; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1719 | struct cgroup_root *root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1720 | struct cgroup_sb_opts opts; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1721 | struct dentry *dentry; |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1722 | int ret; |
Li Zefan | 970317a | 2014-06-30 11:49:58 +0800 | [diff] [blame] | 1723 | int i; |
Li Zefan | c6b3d5b | 2014-04-04 17:14:41 +0800 | [diff] [blame] | 1724 | bool new_sb; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1725 | |
| 1726 | /* |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1727 | * The first time anyone tries to mount a cgroup, enable the list |
| 1728 | * 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] | 1729 | */ |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1730 | if (!use_task_css_set_links) |
| 1731 | cgroup_enable_task_cg_lists(); |
Li Zefan | e37a06f | 2014-04-17 13:53:08 +0800 | [diff] [blame] | 1732 | |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1733 | mutex_lock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1734 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1735 | /* First find the desired set of subsystems */ |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1736 | ret = parse_cgroupfs_options(data, &opts); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1737 | if (ret) |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1738 | goto out_unlock; |
Tejun Heo | a015edd | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1739 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1740 | /* look for a matching existing root */ |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1741 | if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) { |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 1742 | cgrp_dfl_root_visible = true; |
| 1743 | root = &cgrp_dfl_root; |
| 1744 | cgroup_get(&root->cgrp); |
| 1745 | ret = 0; |
| 1746 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1747 | } |
| 1748 | |
Li Zefan | 970317a | 2014-06-30 11:49:58 +0800 | [diff] [blame] | 1749 | /* |
| 1750 | * Destruction of cgroup root is asynchronous, so subsystems may |
| 1751 | * still be dying after the previous unmount. Let's drain the |
| 1752 | * dying subsystems. We just need to ensure that the ones |
| 1753 | * unmounted previously finish dying and don't care about new ones |
| 1754 | * starting. Testing ref liveliness is good enough. |
| 1755 | */ |
| 1756 | for_each_subsys(ss, i) { |
| 1757 | if (!(opts.subsys_mask & (1 << i)) || |
| 1758 | ss->root == &cgrp_dfl_root) |
| 1759 | continue; |
| 1760 | |
| 1761 | if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) { |
| 1762 | mutex_unlock(&cgroup_mutex); |
| 1763 | msleep(10); |
| 1764 | ret = restart_syscall(); |
| 1765 | goto out_free; |
| 1766 | } |
| 1767 | cgroup_put(&ss->root->cgrp); |
| 1768 | } |
| 1769 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1770 | for_each_root(root) { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1771 | bool name_match = false; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1772 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1773 | if (root == &cgrp_dfl_root) |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1774 | continue; |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1775 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1776 | /* |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1777 | * If we asked for a name then it must match. Also, if |
| 1778 | * name matches but sybsys_mask doesn't, we should fail. |
| 1779 | * Remember whether name matched. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 1780 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1781 | if (opts.name) { |
| 1782 | if (strcmp(opts.name, root->name)) |
| 1783 | continue; |
| 1784 | name_match = true; |
| 1785 | } |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1786 | |
| 1787 | /* |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1788 | * If we asked for subsystems (or explicitly for no |
| 1789 | * subsystems) then they must match. |
Tejun Heo | 3126121 | 2013-06-28 17:07:30 -0700 | [diff] [blame] | 1790 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1791 | if ((opts.subsys_mask || opts.none) && |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 1792 | (opts.subsys_mask != root->subsys_mask)) { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1793 | if (!name_match) |
| 1794 | continue; |
| 1795 | ret = -EBUSY; |
| 1796 | goto out_unlock; |
| 1797 | } |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 1798 | |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 1799 | if (root->flags ^ opts.flags) |
| 1800 | 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] | 1801 | |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1802 | /* |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1803 | * We want to reuse @root whose lifetime is governed by its |
| 1804 | * ->cgrp. Let's check whether @root is alive and keep it |
| 1805 | * that way. As cgroup_kill_sb() can happen anytime, we |
| 1806 | * want to block it by pinning the sb so that @root doesn't |
| 1807 | * get killed before mount is complete. |
| 1808 | * |
| 1809 | * With the sb pinned, tryget_live can reliably indicate |
| 1810 | * whether @root can be reused. If it's being killed, |
| 1811 | * drain it. We can use wait_queue for the wait but this |
| 1812 | * path is super cold. Let's just sleep a bit and retry. |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1813 | */ |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1814 | pinned_sb = kernfs_pin_sb(root->kf_root, NULL); |
| 1815 | if (IS_ERR(pinned_sb) || |
| 1816 | !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) { |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1817 | mutex_unlock(&cgroup_mutex); |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1818 | if (!IS_ERR_OR_NULL(pinned_sb)) |
| 1819 | deactivate_super(pinned_sb); |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1820 | msleep(10); |
Tejun Heo | a015edd | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1821 | ret = restart_syscall(); |
| 1822 | goto out_free; |
Tejun Heo | 776f02f | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1823 | } |
| 1824 | |
| 1825 | ret = 0; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1826 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1827 | } |
| 1828 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1829 | /* |
| 1830 | * No such thing, create a new one. name= matching without subsys |
| 1831 | * specification is allowed for already existing hierarchies but we |
| 1832 | * can't create new one without subsys specification. |
| 1833 | */ |
| 1834 | if (!opts.subsys_mask && !opts.none) { |
| 1835 | ret = -EINVAL; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1836 | goto out_unlock; |
| 1837 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1838 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 1839 | root = kzalloc(sizeof(*root), GFP_KERNEL); |
| 1840 | if (!root) { |
| 1841 | ret = -ENOMEM; |
| 1842 | goto out_unlock; |
| 1843 | } |
| 1844 | |
| 1845 | init_cgroup_root(root, &opts); |
| 1846 | |
Tejun Heo | 3558557 | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 1847 | ret = cgroup_setup_root(root, opts.subsys_mask); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1848 | if (ret) |
| 1849 | cgroup_free_root(root); |
| 1850 | |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1851 | out_unlock: |
Tejun Heo | e25e2cb | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1852 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | a015edd | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 1853 | out_free: |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 1854 | kfree(opts.release_agent); |
| 1855 | kfree(opts.name); |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1856 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1857 | if (ret) |
Tejun Heo | 8e30e2b | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 1858 | return ERR_PTR(ret); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1859 | |
Jianyu Zhan | c9482a5 | 2014-04-26 15:40:28 +0800 | [diff] [blame] | 1860 | dentry = kernfs_mount(fs_type, flags, root->kf_root, |
| 1861 | CGROUP_SUPER_MAGIC, &new_sb); |
Li Zefan | c6b3d5b | 2014-04-04 17:14:41 +0800 | [diff] [blame] | 1862 | if (IS_ERR(dentry) || !new_sb) |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1863 | cgroup_put(&root->cgrp); |
Li Zefan | 3a32bd7 | 2014-06-30 11:50:59 +0800 | [diff] [blame] | 1864 | |
| 1865 | /* |
| 1866 | * If @pinned_sb, we're reusing an existing root and holding an |
| 1867 | * extra ref on its sb. Mount is complete. Put the extra ref. |
| 1868 | */ |
| 1869 | if (pinned_sb) { |
| 1870 | WARN_ON(new_sb); |
| 1871 | deactivate_super(pinned_sb); |
| 1872 | } |
| 1873 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1874 | return dentry; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1875 | } |
| 1876 | |
SeongJae Park | dd4b0a4 | 2014-01-18 16:56:47 +0900 | [diff] [blame] | 1877 | static void cgroup_kill_sb(struct super_block *sb) |
| 1878 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1879 | struct kernfs_root *kf_root = kernfs_root_from_sb(sb); |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1880 | struct cgroup_root *root = cgroup_root_from_kf(kf_root); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1881 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1882 | /* |
| 1883 | * If @root doesn't have any mounts or children, start killing it. |
| 1884 | * This prevents new mounts by disabling percpu_ref_tryget_live(). |
| 1885 | * cgroup_mount() may wait for @root's release. |
Li Zefan | 1f779fb | 2014-06-04 16:48:15 +0800 | [diff] [blame] | 1886 | * |
| 1887 | * And don't kill the default root. |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1888 | */ |
Li Zefan | 1f779fb | 2014-06-04 16:48:15 +0800 | [diff] [blame] | 1889 | if (css_has_online_children(&root->cgrp.self) || |
| 1890 | root == &cgrp_dfl_root) |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 1891 | cgroup_put(&root->cgrp); |
| 1892 | else |
| 1893 | percpu_ref_kill(&root->cgrp.self.refcnt); |
| 1894 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 1895 | kernfs_kill_sb(sb); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1896 | } |
| 1897 | |
| 1898 | static struct file_system_type cgroup_fs_type = { |
| 1899 | .name = "cgroup", |
Al Viro | f7e8357 | 2010-07-26 13:23:11 +0400 | [diff] [blame] | 1900 | .mount = cgroup_mount, |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1901 | .kill_sb = cgroup_kill_sb, |
| 1902 | }; |
| 1903 | |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 1904 | static struct kobject *cgroup_kobj; |
| 1905 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 1906 | /** |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1907 | * 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] | 1908 | * @task: target task |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1909 | * @buf: the buffer to write the path into |
| 1910 | * @buflen: the length of the buffer |
| 1911 | * |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1912 | * Determine @task's cgroup on the first (the one with the lowest non-zero |
| 1913 | * hierarchy_id) cgroup hierarchy and copy its path into @buf. This |
| 1914 | * function grabs cgroup_mutex and shouldn't be used inside locks used by |
| 1915 | * cgroup controller callbacks. |
| 1916 | * |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1917 | * Return value is the same as kernfs_path(). |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1918 | */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1919 | 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] | 1920 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 1921 | struct cgroup_root *root; |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1922 | struct cgroup *cgrp; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1923 | int hierarchy_id = 1; |
| 1924 | char *path = NULL; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1925 | |
| 1926 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1927 | down_read(&css_set_rwsem); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1928 | |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1929 | root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id); |
| 1930 | |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1931 | if (root) { |
| 1932 | cgrp = task_cgroup_from_root(task, root); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1933 | path = cgroup_path(cgrp, buf, buflen); |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1934 | } else { |
| 1935 | /* if no hierarchy exists, everyone is in "/" */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1936 | if (strlcpy(buf, "/", buflen) < buflen) |
| 1937 | path = buf; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1938 | } |
| 1939 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 1940 | up_read(&css_set_rwsem); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1941 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 1942 | return path; |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1943 | } |
Tejun Heo | 913ffdb | 2013-07-11 16:34:48 -0700 | [diff] [blame] | 1944 | EXPORT_SYMBOL_GPL(task_cgroup_path); |
Tejun Heo | 857a2be | 2013-04-14 20:50:08 -0700 | [diff] [blame] | 1945 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1946 | /* used to track tasks and other necessary states during migration */ |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1947 | struct cgroup_taskset { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1948 | /* the src and dst cset list running through cset->mg_node */ |
| 1949 | struct list_head src_csets; |
| 1950 | struct list_head dst_csets; |
| 1951 | |
| 1952 | /* |
| 1953 | * Fields for cgroup_taskset_*() iteration. |
| 1954 | * |
| 1955 | * Before migration is committed, the target migration tasks are on |
| 1956 | * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of |
| 1957 | * the csets on ->dst_csets. ->csets point to either ->src_csets |
| 1958 | * or ->dst_csets depending on whether migration is committed. |
| 1959 | * |
| 1960 | * ->cur_csets and ->cur_task point to the current task position |
| 1961 | * during iteration. |
| 1962 | */ |
| 1963 | struct list_head *csets; |
| 1964 | struct css_set *cur_cset; |
| 1965 | struct task_struct *cur_task; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1966 | }; |
| 1967 | |
| 1968 | /** |
| 1969 | * cgroup_taskset_first - reset taskset and return the first task |
| 1970 | * @tset: taskset of interest |
| 1971 | * |
| 1972 | * @tset iteration is initialized and the first task is returned. |
| 1973 | */ |
| 1974 | struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset) |
| 1975 | { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1976 | tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node); |
| 1977 | tset->cur_task = NULL; |
| 1978 | |
| 1979 | return cgroup_taskset_next(tset); |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1980 | } |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1981 | |
| 1982 | /** |
| 1983 | * cgroup_taskset_next - iterate to the next task in taskset |
| 1984 | * @tset: taskset of interest |
| 1985 | * |
| 1986 | * Return the next task in @tset. Iteration must have been initialized |
| 1987 | * with cgroup_taskset_first(). |
| 1988 | */ |
| 1989 | struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset) |
| 1990 | { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1991 | struct css_set *cset = tset->cur_cset; |
| 1992 | struct task_struct *task = tset->cur_task; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 1993 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 1994 | while (&cset->mg_node != tset->csets) { |
| 1995 | if (!task) |
| 1996 | task = list_first_entry(&cset->mg_tasks, |
| 1997 | struct task_struct, cg_list); |
| 1998 | else |
| 1999 | task = list_next_entry(task, cg_list); |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2000 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2001 | if (&task->cg_list != &cset->mg_tasks) { |
| 2002 | tset->cur_cset = cset; |
| 2003 | tset->cur_task = task; |
| 2004 | return task; |
| 2005 | } |
| 2006 | |
| 2007 | cset = list_next_entry(cset, mg_node); |
| 2008 | task = NULL; |
| 2009 | } |
| 2010 | |
| 2011 | return NULL; |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2012 | } |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2013 | |
| 2014 | /** |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2015 | * cgroup_task_migrate - move a task from one cgroup to another. |
Fabian Frederick | 6010694 | 2014-05-05 20:08:13 +0200 | [diff] [blame] | 2016 | * @old_cgrp: the cgroup @tsk is being migrated from |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2017 | * @tsk: the task being migrated |
| 2018 | * @new_cset: the new css_set @tsk is being attached to |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2019 | * |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2020 | * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2021 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2022 | static void cgroup_task_migrate(struct cgroup *old_cgrp, |
| 2023 | struct task_struct *tsk, |
| 2024 | struct css_set *new_cset) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2025 | { |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2026 | struct css_set *old_cset; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2027 | |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2028 | lockdep_assert_held(&cgroup_mutex); |
| 2029 | lockdep_assert_held(&css_set_rwsem); |
| 2030 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2031 | /* |
Mandeep Singh Baines | 026085e | 2011-12-21 20:18:35 -0800 | [diff] [blame] | 2032 | * We are synchronized through threadgroup_lock() against PF_EXITING |
| 2033 | * setting such that we can't race against cgroup_exit() changing the |
| 2034 | * css_set to init_css_set and dropping the old one. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2035 | */ |
Frederic Weisbecker | c84cdf7 | 2011-12-21 20:03:18 +0100 | [diff] [blame] | 2036 | WARN_ON_ONCE(tsk->flags & PF_EXITING); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 2037 | old_cset = task_css_set(tsk); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2038 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2039 | get_css_set(new_cset); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2040 | rcu_assign_pointer(tsk->cgroups, new_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2041 | |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2042 | /* |
| 2043 | * Use move_tail so that cgroup_taskset_first() still returns the |
| 2044 | * leader after migration. This works because cgroup_migrate() |
| 2045 | * ensures that the dst_cset of the leader is the first on the |
| 2046 | * tset's dst_csets list. |
| 2047 | */ |
| 2048 | list_move_tail(&tsk->cg_list, &new_cset->mg_tasks); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2049 | |
| 2050 | /* |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2051 | * We just gained a reference on old_cset by taking it from the |
| 2052 | * task. As trading it for new_cset is protected by cgroup_mutex, |
| 2053 | * 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] | 2054 | */ |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 2055 | set_bit(CGRP_RELEASABLE, &old_cgrp->flags); |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2056 | put_css_set_locked(old_cset, false); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2057 | } |
| 2058 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 2059 | /** |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2060 | * cgroup_migrate_finish - cleanup after attach |
| 2061 | * @preloaded_csets: list of preloaded css_sets |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2062 | * |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2063 | * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See |
| 2064 | * those functions for details. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2065 | */ |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2066 | static void cgroup_migrate_finish(struct list_head *preloaded_csets) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2067 | { |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2068 | struct css_set *cset, *tmp_cset; |
| 2069 | |
| 2070 | lockdep_assert_held(&cgroup_mutex); |
| 2071 | |
| 2072 | down_write(&css_set_rwsem); |
| 2073 | list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) { |
| 2074 | cset->mg_src_cgrp = NULL; |
| 2075 | cset->mg_dst_cset = NULL; |
| 2076 | list_del_init(&cset->mg_preload_node); |
| 2077 | put_css_set_locked(cset, false); |
| 2078 | } |
| 2079 | up_write(&css_set_rwsem); |
| 2080 | } |
| 2081 | |
| 2082 | /** |
| 2083 | * cgroup_migrate_add_src - add a migration source css_set |
| 2084 | * @src_cset: the source css_set to add |
| 2085 | * @dst_cgrp: the destination cgroup |
| 2086 | * @preloaded_csets: list of preloaded css_sets |
| 2087 | * |
| 2088 | * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin |
| 2089 | * @src_cset and add it to @preloaded_csets, which should later be cleaned |
| 2090 | * up by cgroup_migrate_finish(). |
| 2091 | * |
| 2092 | * This function may be called without holding threadgroup_lock even if the |
| 2093 | * target is a process. Threads may be created and destroyed but as long |
| 2094 | * as cgroup_mutex is not dropped, no new css_set can be put into play and |
| 2095 | * the preloaded css_sets are guaranteed to cover all migrations. |
| 2096 | */ |
| 2097 | static void cgroup_migrate_add_src(struct css_set *src_cset, |
| 2098 | struct cgroup *dst_cgrp, |
| 2099 | struct list_head *preloaded_csets) |
| 2100 | { |
| 2101 | struct cgroup *src_cgrp; |
| 2102 | |
| 2103 | lockdep_assert_held(&cgroup_mutex); |
| 2104 | lockdep_assert_held(&css_set_rwsem); |
| 2105 | |
| 2106 | src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root); |
| 2107 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2108 | if (!list_empty(&src_cset->mg_preload_node)) |
| 2109 | return; |
| 2110 | |
| 2111 | WARN_ON(src_cset->mg_src_cgrp); |
| 2112 | WARN_ON(!list_empty(&src_cset->mg_tasks)); |
| 2113 | WARN_ON(!list_empty(&src_cset->mg_node)); |
| 2114 | |
| 2115 | src_cset->mg_src_cgrp = src_cgrp; |
| 2116 | get_css_set(src_cset); |
| 2117 | list_add(&src_cset->mg_preload_node, preloaded_csets); |
| 2118 | } |
| 2119 | |
| 2120 | /** |
| 2121 | * cgroup_migrate_prepare_dst - prepare destination css_sets for migration |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2122 | * @dst_cgrp: the destination cgroup (may be %NULL) |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2123 | * @preloaded_csets: list of preloaded source css_sets |
| 2124 | * |
| 2125 | * Tasks are about to be moved to @dst_cgrp and all the source css_sets |
| 2126 | * have been preloaded to @preloaded_csets. This function looks up and |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2127 | * pins all destination css_sets, links each to its source, and append them |
| 2128 | * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each |
| 2129 | * 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] | 2130 | * |
| 2131 | * This function must be called after cgroup_migrate_add_src() has been |
| 2132 | * called on each migration source css_set. After migration is performed |
| 2133 | * using cgroup_migrate(), cgroup_migrate_finish() must be called on |
| 2134 | * @preloaded_csets. |
| 2135 | */ |
| 2136 | static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp, |
| 2137 | struct list_head *preloaded_csets) |
| 2138 | { |
| 2139 | LIST_HEAD(csets); |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2140 | struct css_set *src_cset, *tmp_cset; |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2141 | |
| 2142 | lockdep_assert_held(&cgroup_mutex); |
| 2143 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2144 | /* |
| 2145 | * Except for the root, child_subsys_mask must be zero for a cgroup |
| 2146 | * with tasks so that child cgroups don't compete against tasks. |
| 2147 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 2148 | if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) && |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2149 | dst_cgrp->child_subsys_mask) |
| 2150 | return -EBUSY; |
| 2151 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2152 | /* 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] | 2153 | 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] | 2154 | struct css_set *dst_cset; |
| 2155 | |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2156 | dst_cset = find_css_set(src_cset, |
| 2157 | dst_cgrp ?: src_cset->dfl_cgrp); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2158 | if (!dst_cset) |
| 2159 | goto err; |
| 2160 | |
| 2161 | 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] | 2162 | |
| 2163 | /* |
| 2164 | * If src cset equals dst, it's noop. Drop the src. |
| 2165 | * cgroup_migrate() will skip the cset too. Note that we |
| 2166 | * can't handle src == dst as some nodes are used by both. |
| 2167 | */ |
| 2168 | if (src_cset == dst_cset) { |
| 2169 | src_cset->mg_src_cgrp = NULL; |
| 2170 | list_del_init(&src_cset->mg_preload_node); |
| 2171 | put_css_set(src_cset, false); |
| 2172 | put_css_set(dst_cset, false); |
| 2173 | continue; |
| 2174 | } |
| 2175 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2176 | src_cset->mg_dst_cset = dst_cset; |
| 2177 | |
| 2178 | if (list_empty(&dst_cset->mg_preload_node)) |
| 2179 | list_add(&dst_cset->mg_preload_node, &csets); |
| 2180 | else |
| 2181 | put_css_set(dst_cset, false); |
| 2182 | } |
| 2183 | |
Tejun Heo | f817de9 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2184 | list_splice_tail(&csets, preloaded_csets); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2185 | return 0; |
| 2186 | err: |
| 2187 | cgroup_migrate_finish(&csets); |
| 2188 | return -ENOMEM; |
| 2189 | } |
| 2190 | |
| 2191 | /** |
| 2192 | * cgroup_migrate - migrate a process or task to a cgroup |
| 2193 | * @cgrp: the destination cgroup |
| 2194 | * @leader: the leader of the process or the task to migrate |
| 2195 | * @threadgroup: whether @leader points to the whole process or a single task |
| 2196 | * |
| 2197 | * Migrate a process or task denoted by @leader to @cgrp. If migrating a |
| 2198 | * process, the caller must be holding threadgroup_lock of @leader. The |
| 2199 | * caller is also responsible for invoking cgroup_migrate_add_src() and |
| 2200 | * cgroup_migrate_prepare_dst() on the targets before invoking this |
| 2201 | * function and following up with cgroup_migrate_finish(). |
| 2202 | * |
| 2203 | * As long as a controller's ->can_attach() doesn't fail, this function is |
| 2204 | * guaranteed to succeed. This means that, excluding ->can_attach() |
| 2205 | * failure, when migrating multiple targets, the success or failure can be |
| 2206 | * decided for all targets by invoking group_migrate_prepare_dst() before |
| 2207 | * actually starting migrating. |
| 2208 | */ |
| 2209 | static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader, |
| 2210 | bool threadgroup) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2211 | { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2212 | struct cgroup_taskset tset = { |
| 2213 | .src_csets = LIST_HEAD_INIT(tset.src_csets), |
| 2214 | .dst_csets = LIST_HEAD_INIT(tset.dst_csets), |
| 2215 | .csets = &tset.src_csets, |
| 2216 | }; |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2217 | struct cgroup_subsys_state *css, *failed_css = NULL; |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2218 | struct css_set *cset, *tmp_cset; |
| 2219 | struct task_struct *task, *tmp_task; |
| 2220 | int i, ret; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2221 | |
| 2222 | /* |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2223 | * Prevent freeing of tasks while we take a snapshot. Tasks that are |
| 2224 | * already PF_EXITING could be freed from underneath us unless we |
| 2225 | * take an rcu_read_lock. |
| 2226 | */ |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2227 | down_write(&css_set_rwsem); |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2228 | rcu_read_lock(); |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2229 | task = leader; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2230 | do { |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2231 | /* @task either already exited or can't exit until the end */ |
| 2232 | if (task->flags & PF_EXITING) |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 2233 | goto next; |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2234 | |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2235 | /* leave @task alone if post_fork() hasn't linked it yet */ |
| 2236 | if (list_empty(&task->cg_list)) |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 2237 | goto next; |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2238 | |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2239 | cset = task_css_set(task); |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2240 | if (!cset->mg_src_cgrp) |
Mandeep Singh Baines | 892a2b9 | 2011-12-21 20:18:37 -0800 | [diff] [blame] | 2241 | goto next; |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2242 | |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2243 | /* |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2244 | * cgroup_taskset_first() must always return the leader. |
| 2245 | * Take care to avoid disturbing the ordering. |
Mandeep Singh Baines | 61d1d21 | 2012-01-30 12:51:56 -0800 | [diff] [blame] | 2246 | */ |
Tejun Heo | 1b9aba4 | 2014-03-19 17:43:21 -0400 | [diff] [blame] | 2247 | list_move_tail(&task->cg_list, &cset->mg_tasks); |
| 2248 | if (list_empty(&cset->mg_node)) |
| 2249 | list_add_tail(&cset->mg_node, &tset.src_csets); |
| 2250 | if (list_empty(&cset->mg_dst_cset->mg_node)) |
| 2251 | list_move_tail(&cset->mg_dst_cset->mg_node, |
| 2252 | &tset.dst_csets); |
Anjana V Kumar | ea84753 | 2013-10-12 10:59:17 +0800 | [diff] [blame] | 2253 | next: |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 2254 | if (!threadgroup) |
| 2255 | break; |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2256 | } while_each_thread(leader, task); |
Mandeep Singh Baines | fb5d2b4 | 2012-01-03 21:18:31 -0800 | [diff] [blame] | 2257 | rcu_read_unlock(); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2258 | up_write(&css_set_rwsem); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2259 | |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2260 | /* methods shouldn't be called if no task is actually migrating */ |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2261 | if (list_empty(&tset.src_csets)) |
| 2262 | return 0; |
Tejun Heo | 134d337 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2263 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2264 | /* check that we can legitimately attach to the cgroup */ |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 2265 | for_each_e_css(css, i, cgrp) { |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2266 | if (css->ss->can_attach) { |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2267 | ret = css->ss->can_attach(css, &tset); |
| 2268 | if (ret) { |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2269 | failed_css = css; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2270 | goto out_cancel_attach; |
| 2271 | } |
| 2272 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2273 | } |
| 2274 | |
| 2275 | /* |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2276 | * Now that we're guaranteed success, proceed to move all tasks to |
| 2277 | * the new cgroup. There are no failure cases after here, so this |
| 2278 | * is the commit point. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2279 | */ |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2280 | down_write(&css_set_rwsem); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2281 | list_for_each_entry(cset, &tset.src_csets, mg_node) { |
| 2282 | list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) |
| 2283 | cgroup_task_migrate(cset->mg_src_cgrp, task, |
| 2284 | cset->mg_dst_cset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2285 | } |
Tejun Heo | cb0f1fe | 2014-02-13 06:58:41 -0500 | [diff] [blame] | 2286 | up_write(&css_set_rwsem); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2287 | |
| 2288 | /* |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2289 | * Migration is committed, all target tasks are now on dst_csets. |
| 2290 | * Nothing is sensitive to fork() after this point. Notify |
| 2291 | * controllers that migration is complete. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2292 | */ |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2293 | tset.csets = &tset.dst_csets; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2294 | |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 2295 | for_each_e_css(css, i, cgrp) |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 2296 | if (css->ss->attach) |
| 2297 | css->ss->attach(css, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2298 | |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2299 | ret = 0; |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2300 | goto out_release_tset; |
| 2301 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2302 | out_cancel_attach: |
Tejun Heo | aec3dfc | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 2303 | for_each_e_css(css, i, cgrp) { |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2304 | if (css == failed_css) |
| 2305 | break; |
| 2306 | if (css->ss->cancel_attach) |
| 2307 | css->ss->cancel_attach(css, &tset); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2308 | } |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2309 | out_release_tset: |
| 2310 | down_write(&css_set_rwsem); |
| 2311 | list_splice_init(&tset.dst_csets, &tset.src_csets); |
| 2312 | 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] | 2313 | list_splice_tail_init(&cset->mg_tasks, &cset->tasks); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2314 | list_del_init(&cset->mg_node); |
Tejun Heo | b3dc094 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 2315 | } |
| 2316 | up_write(&css_set_rwsem); |
Tejun Heo | 9db8de3 | 2014-02-13 06:58:43 -0500 | [diff] [blame] | 2317 | return ret; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2318 | } |
| 2319 | |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2320 | /** |
| 2321 | * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup |
| 2322 | * @dst_cgrp: the cgroup to attach to |
| 2323 | * @leader: the task or the leader of the threadgroup to be attached |
| 2324 | * @threadgroup: attach the whole threadgroup? |
| 2325 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2326 | * Call holding cgroup_mutex and threadgroup_lock of @leader. |
Tejun Heo | 1958d2d | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 2327 | */ |
| 2328 | static int cgroup_attach_task(struct cgroup *dst_cgrp, |
| 2329 | struct task_struct *leader, bool threadgroup) |
| 2330 | { |
| 2331 | LIST_HEAD(preloaded_csets); |
| 2332 | struct task_struct *task; |
| 2333 | int ret; |
| 2334 | |
| 2335 | /* look up all src csets */ |
| 2336 | down_read(&css_set_rwsem); |
| 2337 | rcu_read_lock(); |
| 2338 | task = leader; |
| 2339 | do { |
| 2340 | cgroup_migrate_add_src(task_css_set(task), dst_cgrp, |
| 2341 | &preloaded_csets); |
| 2342 | if (!threadgroup) |
| 2343 | break; |
| 2344 | } while_each_thread(leader, task); |
| 2345 | rcu_read_unlock(); |
| 2346 | up_read(&css_set_rwsem); |
| 2347 | |
| 2348 | /* prepare dst csets and commit */ |
| 2349 | ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets); |
| 2350 | if (!ret) |
| 2351 | ret = cgroup_migrate(dst_cgrp, leader, threadgroup); |
| 2352 | |
| 2353 | cgroup_migrate_finish(&preloaded_csets); |
| 2354 | return ret; |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2355 | } |
| 2356 | |
| 2357 | /* |
| 2358 | * 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] | 2359 | * 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] | 2360 | * cgroup_mutex and threadgroup. |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2361 | */ |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2362 | static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf, |
| 2363 | size_t nbytes, loff_t off, bool threadgroup) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2364 | { |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2365 | struct task_struct *tsk; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2366 | const struct cred *cred = current_cred(), *tcred; |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2367 | struct cgroup *cgrp; |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2368 | pid_t pid; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2369 | int ret; |
| 2370 | |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2371 | if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0) |
| 2372 | return -EINVAL; |
| 2373 | |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2374 | cgrp = cgroup_kn_lock_live(of->kn); |
| 2375 | if (!cgrp) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2376 | return -ENODEV; |
| 2377 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2378 | retry_find_task: |
| 2379 | rcu_read_lock(); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2380 | if (pid) { |
Pavel Emelyanov | 73507f3 | 2008-02-07 00:14:47 -0800 | [diff] [blame] | 2381 | tsk = find_task_by_vpid(pid); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2382 | if (!tsk) { |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2383 | rcu_read_unlock(); |
SeongJae Park | dd4b0a4 | 2014-01-18 16:56:47 +0900 | [diff] [blame] | 2384 | ret = -ESRCH; |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2385 | goto out_unlock_cgroup; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2386 | } |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2387 | /* |
| 2388 | * even if we're attaching all tasks in the thread group, we |
| 2389 | * only need to check permissions on one of them. |
| 2390 | */ |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2391 | tcred = __task_cred(tsk); |
Eric W. Biederman | 14a590c | 2012-03-12 15:44:39 -0700 | [diff] [blame] | 2392 | if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) && |
| 2393 | !uid_eq(cred->euid, tcred->uid) && |
| 2394 | !uid_eq(cred->euid, tcred->suid)) { |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2395 | rcu_read_unlock(); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2396 | ret = -EACCES; |
| 2397 | goto out_unlock_cgroup; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2398 | } |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2399 | } else |
| 2400 | tsk = current; |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2401 | |
| 2402 | if (threadgroup) |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2403 | tsk = tsk->group_leader; |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2404 | |
| 2405 | /* |
Tejun Heo | 14a40ff | 2013-03-19 13:45:20 -0700 | [diff] [blame] | 2406 | * Workqueue threads may acquire PF_NO_SETAFFINITY and become |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2407 | * trapped in a cpuset, or RT worker may be born in a cgroup |
| 2408 | * with no rt_runtime allocated. Just say no. |
| 2409 | */ |
Tejun Heo | 14a40ff | 2013-03-19 13:45:20 -0700 | [diff] [blame] | 2410 | if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) { |
Mike Galbraith | c4c27fb | 2012-04-21 09:13:46 +0200 | [diff] [blame] | 2411 | ret = -EINVAL; |
| 2412 | rcu_read_unlock(); |
| 2413 | goto out_unlock_cgroup; |
| 2414 | } |
| 2415 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2416 | get_task_struct(tsk); |
| 2417 | rcu_read_unlock(); |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2418 | |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2419 | threadgroup_lock(tsk); |
| 2420 | if (threadgroup) { |
| 2421 | if (!thread_group_leader(tsk)) { |
| 2422 | /* |
| 2423 | * a race with de_thread from another thread's exec() |
| 2424 | * may strip us of our leadership, if this happens, |
| 2425 | * there is no choice but to throw this task away and |
| 2426 | * try again; this is |
| 2427 | * "double-double-toil-and-trouble-check locking". |
| 2428 | */ |
| 2429 | threadgroup_unlock(tsk); |
| 2430 | put_task_struct(tsk); |
| 2431 | goto retry_find_task; |
| 2432 | } |
Li Zefan | 081aa45 | 2013-03-13 09:17:09 +0800 | [diff] [blame] | 2433 | } |
| 2434 | |
| 2435 | ret = cgroup_attach_task(cgrp, tsk, threadgroup); |
| 2436 | |
Tejun Heo | cd3d095 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 2437 | threadgroup_unlock(tsk); |
| 2438 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2439 | put_task_struct(tsk); |
Mandeep Singh Baines | b78949e | 2012-01-03 21:18:30 -0800 | [diff] [blame] | 2440 | out_unlock_cgroup: |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2441 | cgroup_kn_unlock(of->kn); |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2442 | return ret ?: nbytes; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 2443 | } |
| 2444 | |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2445 | /** |
| 2446 | * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from' |
| 2447 | * @from: attach to all cgroups of a given task |
| 2448 | * @tsk: the task to be attached |
| 2449 | */ |
| 2450 | int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk) |
| 2451 | { |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 2452 | struct cgroup_root *root; |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2453 | int retval = 0; |
| 2454 | |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2455 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 2456 | for_each_root(root) { |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 2457 | struct cgroup *from_cgrp; |
| 2458 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 2459 | if (root == &cgrp_dfl_root) |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 2460 | continue; |
| 2461 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 2462 | down_read(&css_set_rwsem); |
| 2463 | from_cgrp = task_cgroup_from_root(from, root); |
| 2464 | up_read(&css_set_rwsem); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2465 | |
Li Zefan | 6f4b7e6 | 2013-07-31 16:18:36 +0800 | [diff] [blame] | 2466 | retval = cgroup_attach_task(from_cgrp, tsk, false); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2467 | if (retval) |
| 2468 | break; |
| 2469 | } |
Tejun Heo | 47cfcd0 | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2470 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 7ae1bad | 2013-04-07 09:29:51 -0700 | [diff] [blame] | 2471 | |
| 2472 | return retval; |
| 2473 | } |
| 2474 | EXPORT_SYMBOL_GPL(cgroup_attach_task_all); |
| 2475 | |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2476 | static ssize_t cgroup_tasks_write(struct kernfs_open_file *of, |
| 2477 | char *buf, size_t nbytes, loff_t off) |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2478 | { |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2479 | return __cgroup_procs_write(of, buf, nbytes, off, false); |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2480 | } |
| 2481 | |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2482 | static ssize_t cgroup_procs_write(struct kernfs_open_file *of, |
| 2483 | char *buf, size_t nbytes, loff_t off) |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 2484 | { |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 2485 | return __cgroup_procs_write(of, buf, nbytes, off, true); |
Paul Menage | af35102 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 2486 | } |
| 2487 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2488 | static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of, |
| 2489 | char *buf, size_t nbytes, loff_t off) |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2490 | { |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2491 | struct cgroup *cgrp; |
Tejun Heo | 5f46990 | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 2492 | |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2493 | BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX); |
| 2494 | |
| 2495 | cgrp = cgroup_kn_lock_live(of->kn); |
| 2496 | if (!cgrp) |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2497 | return -ENODEV; |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 2498 | spin_lock(&release_agent_path_lock); |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2499 | strlcpy(cgrp->root->release_agent_path, strstrip(buf), |
| 2500 | sizeof(cgrp->root->release_agent_path)); |
Tejun Heo | 69e943b | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 2501 | spin_unlock(&release_agent_path_lock); |
Tejun Heo | e76ecae | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2502 | cgroup_kn_unlock(of->kn); |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2503 | return nbytes; |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2504 | } |
| 2505 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2506 | static int cgroup_release_agent_show(struct seq_file *seq, void *v) |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2507 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2508 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 2509 | |
Tejun Heo | 46cfeb0 | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2510 | spin_lock(&release_agent_path_lock); |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2511 | seq_puts(seq, cgrp->root->release_agent_path); |
Tejun Heo | 46cfeb0 | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2512 | spin_unlock(&release_agent_path_lock); |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2513 | seq_putc(seq, '\n'); |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 2514 | return 0; |
| 2515 | } |
| 2516 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2517 | static int cgroup_sane_behavior_show(struct seq_file *seq, void *v) |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 2518 | { |
Tejun Heo | c1d5d42 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 2519 | seq_puts(seq, "0\n"); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 2520 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2521 | } |
| 2522 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2523 | static void cgroup_print_ss_mask(struct seq_file *seq, unsigned int ss_mask) |
| 2524 | { |
| 2525 | struct cgroup_subsys *ss; |
| 2526 | bool printed = false; |
| 2527 | int ssid; |
| 2528 | |
| 2529 | for_each_subsys(ss, ssid) { |
| 2530 | if (ss_mask & (1 << ssid)) { |
| 2531 | if (printed) |
| 2532 | seq_putc(seq, ' '); |
| 2533 | seq_printf(seq, "%s", ss->name); |
| 2534 | printed = true; |
| 2535 | } |
| 2536 | } |
| 2537 | if (printed) |
| 2538 | seq_putc(seq, '\n'); |
| 2539 | } |
| 2540 | |
| 2541 | /* show controllers which are currently attached to the default hierarchy */ |
| 2542 | static int cgroup_root_controllers_show(struct seq_file *seq, void *v) |
| 2543 | { |
| 2544 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2545 | |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 2546 | cgroup_print_ss_mask(seq, cgrp->root->subsys_mask & |
| 2547 | ~cgrp_dfl_root_inhibit_ss_mask); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2548 | return 0; |
| 2549 | } |
| 2550 | |
| 2551 | /* show controllers which are enabled from the parent */ |
| 2552 | static int cgroup_controllers_show(struct seq_file *seq, void *v) |
| 2553 | { |
| 2554 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2555 | |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2556 | cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2557 | return 0; |
| 2558 | } |
| 2559 | |
| 2560 | /* show controllers which are enabled for a given cgroup's children */ |
| 2561 | static int cgroup_subtree_control_show(struct seq_file *seq, void *v) |
| 2562 | { |
| 2563 | struct cgroup *cgrp = seq_css(seq)->cgroup; |
| 2564 | |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2565 | cgroup_print_ss_mask(seq, cgrp->subtree_control); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2566 | return 0; |
| 2567 | } |
| 2568 | |
| 2569 | /** |
| 2570 | * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy |
| 2571 | * @cgrp: root of the subtree to update csses for |
| 2572 | * |
| 2573 | * @cgrp's child_subsys_mask has changed and its subtree's (self excluded) |
| 2574 | * css associations need to be updated accordingly. This function looks up |
| 2575 | * all css_sets which are attached to the subtree, creates the matching |
| 2576 | * updated css_sets and migrates the tasks to the new ones. |
| 2577 | */ |
| 2578 | static int cgroup_update_dfl_csses(struct cgroup *cgrp) |
| 2579 | { |
| 2580 | LIST_HEAD(preloaded_csets); |
| 2581 | struct cgroup_subsys_state *css; |
| 2582 | struct css_set *src_cset; |
| 2583 | int ret; |
| 2584 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2585 | lockdep_assert_held(&cgroup_mutex); |
| 2586 | |
| 2587 | /* look up all csses currently attached to @cgrp's subtree */ |
| 2588 | down_read(&css_set_rwsem); |
| 2589 | css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) { |
| 2590 | struct cgrp_cset_link *link; |
| 2591 | |
| 2592 | /* self is not affected by child_subsys_mask change */ |
| 2593 | if (css->cgroup == cgrp) |
| 2594 | continue; |
| 2595 | |
| 2596 | list_for_each_entry(link, &css->cgroup->cset_links, cset_link) |
| 2597 | cgroup_migrate_add_src(link->cset, cgrp, |
| 2598 | &preloaded_csets); |
| 2599 | } |
| 2600 | up_read(&css_set_rwsem); |
| 2601 | |
| 2602 | /* NULL dst indicates self on default hierarchy */ |
| 2603 | ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets); |
| 2604 | if (ret) |
| 2605 | goto out_finish; |
| 2606 | |
| 2607 | list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) { |
| 2608 | struct task_struct *last_task = NULL, *task; |
| 2609 | |
| 2610 | /* src_csets precede dst_csets, break on the first dst_cset */ |
| 2611 | if (!src_cset->mg_src_cgrp) |
| 2612 | break; |
| 2613 | |
| 2614 | /* |
| 2615 | * All tasks in src_cset need to be migrated to the |
| 2616 | * matching dst_cset. Empty it process by process. We |
| 2617 | * walk tasks but migrate processes. The leader might even |
| 2618 | * belong to a different cset but such src_cset would also |
| 2619 | * be among the target src_csets because the default |
| 2620 | * hierarchy enforces per-process membership. |
| 2621 | */ |
| 2622 | while (true) { |
| 2623 | down_read(&css_set_rwsem); |
| 2624 | task = list_first_entry_or_null(&src_cset->tasks, |
| 2625 | struct task_struct, cg_list); |
| 2626 | if (task) { |
| 2627 | task = task->group_leader; |
| 2628 | WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp); |
| 2629 | get_task_struct(task); |
| 2630 | } |
| 2631 | up_read(&css_set_rwsem); |
| 2632 | |
| 2633 | if (!task) |
| 2634 | break; |
| 2635 | |
| 2636 | /* guard against possible infinite loop */ |
| 2637 | if (WARN(last_task == task, |
| 2638 | "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n")) |
| 2639 | goto out_finish; |
| 2640 | last_task = task; |
| 2641 | |
| 2642 | threadgroup_lock(task); |
| 2643 | /* raced against de_thread() from another thread? */ |
| 2644 | if (!thread_group_leader(task)) { |
| 2645 | threadgroup_unlock(task); |
| 2646 | put_task_struct(task); |
| 2647 | continue; |
| 2648 | } |
| 2649 | |
| 2650 | ret = cgroup_migrate(src_cset->dfl_cgrp, task, true); |
| 2651 | |
| 2652 | threadgroup_unlock(task); |
| 2653 | put_task_struct(task); |
| 2654 | |
| 2655 | if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret)) |
| 2656 | goto out_finish; |
| 2657 | } |
| 2658 | } |
| 2659 | |
| 2660 | out_finish: |
| 2661 | cgroup_migrate_finish(&preloaded_csets); |
| 2662 | return ret; |
| 2663 | } |
| 2664 | |
| 2665 | /* change the enabled child controllers for a cgroup in the default hierarchy */ |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2666 | static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of, |
| 2667 | char *buf, size_t nbytes, |
| 2668 | loff_t off) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2669 | { |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2670 | unsigned int enable = 0, disable = 0; |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2671 | unsigned int css_enable, css_disable, old_ctrl, new_ctrl; |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2672 | struct cgroup *cgrp, *child; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2673 | struct cgroup_subsys *ss; |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2674 | char *tok; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2675 | int ssid, ret; |
| 2676 | |
| 2677 | /* |
Tejun Heo | d37167a | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2678 | * Parse input - space separated list of subsystem names prefixed |
| 2679 | * with either + or -. |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2680 | */ |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2681 | buf = strstrip(buf); |
| 2682 | while ((tok = strsep(&buf, " "))) { |
Tejun Heo | d37167a | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2683 | if (tok[0] == '\0') |
| 2684 | continue; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2685 | for_each_subsys(ss, ssid) { |
Tejun Heo | 5533e01 | 2014-05-14 19:33:07 -0400 | [diff] [blame] | 2686 | if (ss->disabled || strcmp(tok + 1, ss->name) || |
| 2687 | ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask)) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2688 | continue; |
| 2689 | |
| 2690 | if (*tok == '+') { |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2691 | enable |= 1 << ssid; |
| 2692 | disable &= ~(1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2693 | } else if (*tok == '-') { |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2694 | disable |= 1 << ssid; |
| 2695 | enable &= ~(1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2696 | } else { |
| 2697 | return -EINVAL; |
| 2698 | } |
| 2699 | break; |
| 2700 | } |
| 2701 | if (ssid == CGROUP_SUBSYS_COUNT) |
| 2702 | return -EINVAL; |
| 2703 | } |
| 2704 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2705 | cgrp = cgroup_kn_lock_live(of->kn); |
| 2706 | if (!cgrp) |
| 2707 | return -ENODEV; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2708 | |
| 2709 | for_each_subsys(ss, ssid) { |
| 2710 | if (enable & (1 << ssid)) { |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2711 | if (cgrp->subtree_control & (1 << ssid)) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2712 | enable &= ~(1 << ssid); |
| 2713 | continue; |
| 2714 | } |
| 2715 | |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2716 | /* unavailable or not enabled on the parent? */ |
| 2717 | if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) || |
| 2718 | (cgroup_parent(cgrp) && |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2719 | !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) { |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2720 | ret = -ENOENT; |
| 2721 | goto out_unlock; |
| 2722 | } |
| 2723 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2724 | /* |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2725 | * @ss is already enabled through dependency and |
| 2726 | * we'll just make it visible. Skip draining. |
| 2727 | */ |
| 2728 | if (cgrp->child_subsys_mask & (1 << ssid)) |
| 2729 | continue; |
| 2730 | |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2731 | /* |
| 2732 | * Because css offlining is asynchronous, userland |
| 2733 | * might try to re-enable the same controller while |
| 2734 | * the previous instance is still around. In such |
| 2735 | * cases, wait till it's gone using offline_waitq. |
| 2736 | */ |
| 2737 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | 0cee8b7 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2738 | DEFINE_WAIT(wait); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2739 | |
| 2740 | if (!cgroup_css(child, ss)) |
| 2741 | continue; |
| 2742 | |
Tejun Heo | 0cee8b7 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2743 | cgroup_get(child); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2744 | prepare_to_wait(&child->offline_waitq, &wait, |
| 2745 | TASK_UNINTERRUPTIBLE); |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2746 | cgroup_kn_unlock(of->kn); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2747 | schedule(); |
| 2748 | finish_wait(&child->offline_waitq, &wait); |
Tejun Heo | 0cee8b7 | 2014-05-13 12:10:59 -0400 | [diff] [blame] | 2749 | cgroup_put(child); |
Tejun Heo | 7d331fa | 2014-05-13 12:11:00 -0400 | [diff] [blame] | 2750 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2751 | return restart_syscall(); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2752 | } |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2753 | } else if (disable & (1 << ssid)) { |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2754 | if (!(cgrp->subtree_control & (1 << ssid))) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2755 | disable &= ~(1 << ssid); |
| 2756 | continue; |
| 2757 | } |
| 2758 | |
| 2759 | /* a child has it enabled? */ |
| 2760 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2761 | if (child->subtree_control & (1 << ssid)) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2762 | ret = -EBUSY; |
Tejun Heo | ddab2b6 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2763 | goto out_unlock; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2764 | } |
| 2765 | } |
| 2766 | } |
| 2767 | } |
| 2768 | |
| 2769 | if (!enable && !disable) { |
| 2770 | ret = 0; |
Tejun Heo | ddab2b6 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2771 | goto out_unlock; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2772 | } |
| 2773 | |
| 2774 | /* |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2775 | * Except for the root, subtree_control must be zero for a cgroup |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2776 | * with tasks so that child cgroups don't compete against tasks. |
| 2777 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 2778 | if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) { |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2779 | ret = -EBUSY; |
| 2780 | goto out_unlock; |
| 2781 | } |
| 2782 | |
| 2783 | /* |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2784 | * Update subsys masks and calculate what needs to be done. More |
| 2785 | * subsystems than specified may need to be enabled or disabled |
| 2786 | * depending on subsystem dependencies. |
| 2787 | */ |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2788 | cgrp->subtree_control |= enable; |
| 2789 | cgrp->subtree_control &= ~disable; |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2790 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2791 | old_ctrl = cgrp->child_subsys_mask; |
| 2792 | cgroup_refresh_child_subsys_mask(cgrp); |
| 2793 | new_ctrl = cgrp->child_subsys_mask; |
| 2794 | |
| 2795 | css_enable = ~old_ctrl & new_ctrl; |
| 2796 | css_disable = old_ctrl & ~new_ctrl; |
| 2797 | enable |= css_enable; |
| 2798 | disable |= css_disable; |
| 2799 | |
| 2800 | /* |
| 2801 | * Create new csses or make the existing ones visible. A css is |
| 2802 | * created invisible if it's being implicitly enabled through |
| 2803 | * dependency. An invisible css is made visible when the userland |
| 2804 | * explicitly enables it. |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2805 | */ |
| 2806 | for_each_subsys(ss, ssid) { |
| 2807 | if (!(enable & (1 << ssid))) |
| 2808 | continue; |
| 2809 | |
| 2810 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2811 | if (css_enable & (1 << ssid)) |
| 2812 | ret = create_css(child, ss, |
| 2813 | cgrp->subtree_control & (1 << ssid)); |
| 2814 | else |
| 2815 | ret = cgroup_populate_dir(child, 1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2816 | if (ret) |
| 2817 | goto err_undo_css; |
| 2818 | } |
| 2819 | } |
| 2820 | |
Tejun Heo | c29adf2 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2821 | /* |
| 2822 | * At this point, cgroup_e_css() results reflect the new csses |
| 2823 | * making the following cgroup_update_dfl_csses() properly update |
| 2824 | * css associations of all tasks in the subtree. |
| 2825 | */ |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2826 | ret = cgroup_update_dfl_csses(cgrp); |
| 2827 | if (ret) |
| 2828 | goto err_undo_css; |
| 2829 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2830 | /* |
| 2831 | * All tasks are migrated out of disabled csses. Kill or hide |
| 2832 | * them. A css is hidden when the userland requests it to be |
Tejun Heo | b4536f0ca | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2833 | * disabled while other subsystems are still depending on it. The |
| 2834 | * css must not actively control resources and be in the vanilla |
| 2835 | * state if it's made visible again later. Controllers which may |
| 2836 | * be depended upon should provide ->css_reset() for this purpose. |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2837 | */ |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2838 | for_each_subsys(ss, ssid) { |
| 2839 | if (!(disable & (1 << ssid))) |
| 2840 | continue; |
| 2841 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2842 | cgroup_for_each_live_child(child, cgrp) { |
Tejun Heo | b4536f0ca | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2843 | struct cgroup_subsys_state *css = cgroup_css(child, ss); |
| 2844 | |
| 2845 | if (css_disable & (1 << ssid)) { |
| 2846 | kill_css(css); |
| 2847 | } else { |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2848 | cgroup_clear_dir(child, 1 << ssid); |
Tejun Heo | b4536f0ca | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2849 | if (ss->css_reset) |
| 2850 | ss->css_reset(css); |
| 2851 | } |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2852 | } |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2853 | } |
| 2854 | |
| 2855 | kernfs_activate(cgrp->kn); |
| 2856 | ret = 0; |
| 2857 | out_unlock: |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 2858 | cgroup_kn_unlock(of->kn); |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2859 | return ret ?: nbytes; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2860 | |
| 2861 | err_undo_css: |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 2862 | cgrp->subtree_control &= ~enable; |
| 2863 | cgrp->subtree_control |= disable; |
| 2864 | cgroup_refresh_child_subsys_mask(cgrp); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2865 | |
| 2866 | for_each_subsys(ss, ssid) { |
| 2867 | if (!(enable & (1 << ssid))) |
| 2868 | continue; |
| 2869 | |
| 2870 | cgroup_for_each_live_child(child, cgrp) { |
| 2871 | struct cgroup_subsys_state *css = cgroup_css(child, ss); |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2872 | |
| 2873 | if (!css) |
| 2874 | continue; |
| 2875 | |
| 2876 | if (css_enable & (1 << ssid)) |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2877 | kill_css(css); |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 2878 | else |
| 2879 | cgroup_clear_dir(child, 1 << ssid); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 2880 | } |
| 2881 | } |
| 2882 | goto out_unlock; |
| 2883 | } |
| 2884 | |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 2885 | static int cgroup_populated_show(struct seq_file *seq, void *v) |
| 2886 | { |
| 2887 | seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt); |
| 2888 | return 0; |
| 2889 | } |
| 2890 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2891 | static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf, |
| 2892 | size_t nbytes, loff_t off) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2893 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2894 | struct cgroup *cgrp = of->kn->parent->priv; |
| 2895 | struct cftype *cft = of->kn->priv; |
| 2896 | struct cgroup_subsys_state *css; |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2897 | int ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2898 | |
Tejun Heo | b416864 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2899 | if (cft->write) |
| 2900 | return cft->write(of, buf, nbytes, off); |
| 2901 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2902 | /* |
| 2903 | * kernfs guarantees that a file isn't deleted with operations in |
| 2904 | * flight, which means that the matching css is and stays alive and |
| 2905 | * doesn't need to be pinned. The RCU locking is not necessary |
| 2906 | * either. It's just for the convenience of using cgroup_css(). |
| 2907 | */ |
| 2908 | rcu_read_lock(); |
| 2909 | css = cgroup_css(cgrp, cft->ss); |
| 2910 | rcu_read_unlock(); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2911 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2912 | if (cft->write_u64) { |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2913 | unsigned long long v; |
| 2914 | ret = kstrtoull(buf, 0, &v); |
| 2915 | if (!ret) |
| 2916 | ret = cft->write_u64(css, cft, v); |
| 2917 | } else if (cft->write_s64) { |
| 2918 | long long v; |
| 2919 | ret = kstrtoll(buf, 0, &v); |
| 2920 | if (!ret) |
| 2921 | ret = cft->write_s64(css, cft, v); |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2922 | } else { |
| 2923 | ret = -EINVAL; |
| 2924 | } |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2925 | |
Tejun Heo | a742c59 | 2013-12-05 12:28:03 -0500 | [diff] [blame] | 2926 | return ret ?: nbytes; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2927 | } |
| 2928 | |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2929 | static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos) |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2930 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2931 | return seq_cft(seq)->seq_start(seq, ppos); |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2932 | } |
| 2933 | |
| 2934 | static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos) |
| 2935 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2936 | return seq_cft(seq)->seq_next(seq, v, ppos); |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2937 | } |
| 2938 | |
| 2939 | static void cgroup_seqfile_stop(struct seq_file *seq, void *v) |
| 2940 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2941 | seq_cft(seq)->seq_stop(seq, v); |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2942 | } |
| 2943 | |
| 2944 | static int cgroup_seqfile_show(struct seq_file *m, void *arg) |
| 2945 | { |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2946 | struct cftype *cft = seq_cft(m); |
| 2947 | struct cgroup_subsys_state *css = seq_css(m); |
Li Zefan | e0798ce | 2013-07-31 17:36:25 +0800 | [diff] [blame] | 2948 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2949 | if (cft->seq_show) |
| 2950 | return cft->seq_show(m, arg); |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2951 | |
Tejun Heo | 896f519 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2952 | if (cft->read_u64) |
| 2953 | seq_printf(m, "%llu\n", cft->read_u64(css, cft)); |
| 2954 | else if (cft->read_s64) |
| 2955 | seq_printf(m, "%lld\n", cft->read_s64(css, cft)); |
| 2956 | else |
| 2957 | return -EINVAL; |
| 2958 | return 0; |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2959 | } |
| 2960 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2961 | static struct kernfs_ops cgroup_kf_single_ops = { |
| 2962 | .atomic_write_len = PAGE_SIZE, |
| 2963 | .write = cgroup_file_write, |
| 2964 | .seq_show = cgroup_seqfile_show, |
Paul Menage | 9179656 | 2008-04-29 01:00:01 -0700 | [diff] [blame] | 2965 | }; |
| 2966 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2967 | static struct kernfs_ops cgroup_kf_ops = { |
| 2968 | .atomic_write_len = PAGE_SIZE, |
| 2969 | .write = cgroup_file_write, |
| 2970 | .seq_start = cgroup_seqfile_start, |
| 2971 | .seq_next = cgroup_seqfile_next, |
| 2972 | .seq_stop = cgroup_seqfile_stop, |
| 2973 | .seq_show = cgroup_seqfile_show, |
| 2974 | }; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2975 | |
| 2976 | /* |
| 2977 | * cgroup_rename - Only allow simple rename of directories in place. |
| 2978 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2979 | static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent, |
| 2980 | const char *new_name_str) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2981 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2982 | struct cgroup *cgrp = kn->priv; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2983 | int ret; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2984 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2985 | if (kernfs_type(kn) != KERNFS_DIR) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2986 | return -ENOTDIR; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 2987 | if (kn->parent != new_parent) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 2988 | return -EIO; |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 2989 | |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 2990 | /* |
| 2991 | * This isn't a proper migration and its usefulness is very |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 2992 | * limited. Disallow on the default hierarchy. |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 2993 | */ |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 2994 | if (cgroup_on_dfl(cgrp)) |
Tejun Heo | 6db8e85 | 2013-06-14 11:18:22 -0700 | [diff] [blame] | 2995 | return -EPERM; |
| 2996 | |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 2997 | /* |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 2998 | * We're gonna grab cgroup_mutex which nests outside kernfs |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 2999 | * active_ref. kernfs_rename() doesn't require active_ref |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3000 | * protection. Break them before grabbing cgroup_mutex. |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 3001 | */ |
| 3002 | kernfs_break_active_protection(new_parent); |
| 3003 | kernfs_break_active_protection(kn); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 3004 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3005 | mutex_lock(&cgroup_mutex); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 3006 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3007 | ret = kernfs_rename(kn, new_parent, new_name_str); |
Li Zefan | 65dff75 | 2013-03-01 15:01:56 +0800 | [diff] [blame] | 3008 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3009 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3010 | |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 3011 | kernfs_unbreak_active_protection(kn); |
| 3012 | kernfs_unbreak_active_protection(new_parent); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3013 | return ret; |
Li Zefan | 099fca3 | 2009-04-02 16:57:29 -0700 | [diff] [blame] | 3014 | } |
| 3015 | |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3016 | /* set uid and gid of cgroup dirs and files to that of the creator */ |
| 3017 | static int cgroup_kn_set_ugid(struct kernfs_node *kn) |
| 3018 | { |
| 3019 | struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID, |
| 3020 | .ia_uid = current_fsuid(), |
| 3021 | .ia_gid = current_fsgid(), }; |
| 3022 | |
| 3023 | if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) && |
| 3024 | gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID)) |
| 3025 | return 0; |
| 3026 | |
| 3027 | return kernfs_setattr(kn, &iattr); |
| 3028 | } |
| 3029 | |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3030 | static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3031 | { |
Tejun Heo | 8d7e6fb | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3032 | char name[CGROUP_FILE_NAME_MAX]; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3033 | struct kernfs_node *kn; |
| 3034 | struct lock_class_key *key = NULL; |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3035 | int ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3036 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3037 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 3038 | key = &cft->lockdep_key; |
| 3039 | #endif |
| 3040 | kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name), |
| 3041 | cgroup_file_mode(cft), 0, cft->kf_ops, cft, |
| 3042 | NULL, false, key); |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3043 | if (IS_ERR(kn)) |
| 3044 | return PTR_ERR(kn); |
| 3045 | |
| 3046 | ret = cgroup_kn_set_ugid(kn); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 3047 | if (ret) { |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 3048 | kernfs_remove(kn); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 3049 | return ret; |
| 3050 | } |
| 3051 | |
Tejun Heo | b7fc5ad | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 3052 | if (cft->seq_show == cgroup_populated_show) |
Tejun Heo | 842b597 | 2014-04-25 18:28:02 -0400 | [diff] [blame] | 3053 | cgrp->populated_kn = kn; |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 3054 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3055 | } |
| 3056 | |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3057 | /** |
| 3058 | * cgroup_addrm_files - add or remove files to a cgroup directory |
| 3059 | * @cgrp: the target cgroup |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3060 | * @cfts: array of cftypes to be added |
| 3061 | * @is_add: whether to add or remove |
| 3062 | * |
| 3063 | * 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] | 3064 | * For removals, this function never fails. If addition fails, this |
| 3065 | * function doesn't remove files already added. The caller is responsible |
| 3066 | * for cleaning up. |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3067 | */ |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3068 | static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[], |
| 3069 | bool is_add) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3070 | { |
Aristeu Rozanski | 03b1cde | 2012-08-23 16:53:30 -0400 | [diff] [blame] | 3071 | struct cftype *cft; |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3072 | int ret; |
| 3073 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3074 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3075 | |
| 3076 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 3077 | /* does cft->flags tell us to skip this file on @cgrp? */ |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3078 | if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp)) |
Tejun Heo | 8cbbf2c | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 3079 | continue; |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3080 | if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp)) |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 3081 | continue; |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3082 | if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp)) |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 3083 | continue; |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3084 | if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp)) |
Gao feng | f33fddc | 2012-12-06 14:38:57 +0800 | [diff] [blame] | 3085 | continue; |
| 3086 | |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 3087 | if (is_add) { |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3088 | ret = cgroup_add_file(cgrp, cft); |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3089 | if (ret) { |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 3090 | pr_warn("%s: failed to add %s, err=%d\n", |
| 3091 | __func__, cft->name, ret); |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3092 | return ret; |
| 3093 | } |
Li Zefan | 2739d3c | 2013-01-21 18:18:33 +0800 | [diff] [blame] | 3094 | } else { |
| 3095 | cgroup_rm_file(cgrp, cft); |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3096 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3097 | } |
Tejun Heo | b1f28d3 | 2013-06-28 16:24:10 -0700 | [diff] [blame] | 3098 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 3099 | } |
| 3100 | |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3101 | static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add) |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3102 | { |
| 3103 | LIST_HEAD(pending); |
Tejun Heo | 2bb566c | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 3104 | struct cgroup_subsys *ss = cfts[0].ss; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 3105 | struct cgroup *root = &ss->root->cgrp; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3106 | struct cgroup_subsys_state *css; |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3107 | int ret = 0; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3108 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3109 | lockdep_assert_held(&cgroup_mutex); |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 3110 | |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 3111 | /* add/rm files for all cgroups created before */ |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 3112 | css_for_each_descendant_pre(css, cgroup_css(root, ss)) { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3113 | struct cgroup *cgrp = css->cgroup; |
| 3114 | |
Li Zefan | e8c82d2 | 2013-06-18 18:48:37 +0800 | [diff] [blame] | 3115 | if (cgroup_is_dead(cgrp)) |
| 3116 | continue; |
| 3117 | |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3118 | ret = cgroup_addrm_files(cgrp, cfts, is_add); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3119 | if (ret) |
| 3120 | break; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3121 | } |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3122 | |
| 3123 | if (is_add && !ret) |
| 3124 | kernfs_activate(root->kn); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3125 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3126 | } |
| 3127 | |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3128 | static void cgroup_exit_cftypes(struct cftype *cfts) |
| 3129 | { |
| 3130 | struct cftype *cft; |
| 3131 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3132 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
| 3133 | /* free copy for custom atomic_write_len, see init_cftypes() */ |
| 3134 | if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) |
| 3135 | kfree(cft->kf_ops); |
| 3136 | cft->kf_ops = NULL; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3137 | cft->ss = NULL; |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3138 | |
| 3139 | /* revert flags set by cgroup core while adding @cfts */ |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3140 | cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3141 | } |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3142 | } |
| 3143 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3144 | static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3145 | { |
| 3146 | struct cftype *cft; |
| 3147 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3148 | for (cft = cfts; cft->name[0] != '\0'; cft++) { |
| 3149 | struct kernfs_ops *kf_ops; |
| 3150 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3151 | WARN_ON(cft->ss || cft->kf_ops); |
| 3152 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3153 | if (cft->seq_start) |
| 3154 | kf_ops = &cgroup_kf_ops; |
| 3155 | else |
| 3156 | kf_ops = &cgroup_kf_single_ops; |
| 3157 | |
| 3158 | /* |
| 3159 | * Ugh... if @cft wants a custom max_write_len, we need to |
| 3160 | * make a copy of kf_ops to set its atomic_write_len. |
| 3161 | */ |
| 3162 | if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) { |
| 3163 | kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL); |
| 3164 | if (!kf_ops) { |
| 3165 | cgroup_exit_cftypes(cfts); |
| 3166 | return -ENOMEM; |
| 3167 | } |
| 3168 | kf_ops->atomic_write_len = cft->max_write_len; |
| 3169 | } |
| 3170 | |
| 3171 | cft->kf_ops = kf_ops; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3172 | cft->ss = ss; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3173 | } |
| 3174 | |
| 3175 | return 0; |
Tejun Heo | 2da440a | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 3176 | } |
| 3177 | |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3178 | static int cgroup_rm_cftypes_locked(struct cftype *cfts) |
| 3179 | { |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3180 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3181 | |
| 3182 | if (!cfts || !cfts[0].ss) |
| 3183 | return -ENOENT; |
| 3184 | |
| 3185 | list_del(&cfts->node); |
| 3186 | cgroup_apply_cftypes(cfts, false); |
| 3187 | cgroup_exit_cftypes(cfts); |
| 3188 | return 0; |
| 3189 | } |
| 3190 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3191 | /** |
Tejun Heo | 80b1358 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3192 | * cgroup_rm_cftypes - remove an array of cftypes from a subsystem |
| 3193 | * @cfts: zero-length name terminated array of cftypes |
| 3194 | * |
| 3195 | * Unregister @cfts. Files described by @cfts are removed from all |
| 3196 | * existing cgroups and all future cgroups won't have them either. This |
| 3197 | * function can be called anytime whether @cfts' subsys is attached or not. |
| 3198 | * |
| 3199 | * Returns 0 on successful unregistration, -ENOENT if @cfts is not |
| 3200 | * registered. |
| 3201 | */ |
| 3202 | int cgroup_rm_cftypes(struct cftype *cfts) |
| 3203 | { |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3204 | int ret; |
Tejun Heo | 80b1358 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3205 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3206 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3207 | ret = cgroup_rm_cftypes_locked(cfts); |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3208 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3209 | return ret; |
| 3210 | } |
| 3211 | |
| 3212 | /** |
| 3213 | * cgroup_add_cftypes - add an array of cftypes to a subsystem |
| 3214 | * @ss: target cgroup subsystem |
| 3215 | * @cfts: zero-length name terminated array of cftypes |
| 3216 | * |
| 3217 | * Register @cfts to @ss. Files described by @cfts are created for all |
| 3218 | * existing cgroups to which @ss is attached and all future cgroups will |
| 3219 | * have them too. This function can be called anytime whether @ss is |
| 3220 | * attached or not. |
| 3221 | * |
| 3222 | * Returns 0 on successful registration, -errno on failure. Note that this |
| 3223 | * function currently returns 0 as long as @cfts registration is successful |
| 3224 | * even if some file creation attempts on existing cgroups fail. |
| 3225 | */ |
Tejun Heo | 2cf669a | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 3226 | static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3227 | { |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3228 | int ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3229 | |
Li Zefan | c731ae1 | 2014-06-05 17:16:30 +0800 | [diff] [blame] | 3230 | if (ss->disabled) |
| 3231 | return 0; |
| 3232 | |
Li Zefan | dc5736e | 2014-02-17 10:41:50 +0800 | [diff] [blame] | 3233 | if (!cfts || cfts[0].name[0] == '\0') |
| 3234 | return 0; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3235 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3236 | ret = cgroup_init_cftypes(ss, cfts); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3237 | if (ret) |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 3238 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3239 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3240 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3241 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 3242 | list_add_tail(&cfts->node, &ss->cfts); |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3243 | ret = cgroup_apply_cftypes(cfts, true); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3244 | if (ret) |
Tejun Heo | 21a2d34 | 2014-02-12 09:29:49 -0500 | [diff] [blame] | 3245 | cgroup_rm_cftypes_locked(cfts); |
| 3246 | |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3247 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 9ccece8 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 3248 | return ret; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 3249 | } |
Tejun Heo | 7957862 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 3250 | |
| 3251 | /** |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3252 | * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy |
| 3253 | * @ss: target cgroup subsystem |
| 3254 | * @cfts: zero-length name terminated array of cftypes |
| 3255 | * |
| 3256 | * Similar to cgroup_add_cftypes() but the added files are only used for |
| 3257 | * the default hierarchy. |
| 3258 | */ |
| 3259 | int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
| 3260 | { |
| 3261 | struct cftype *cft; |
| 3262 | |
| 3263 | for (cft = cfts; cft && cft->name[0] != '\0'; cft++) |
Tejun Heo | 05ebb6e | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3264 | cft->flags |= __CFTYPE_ONLY_ON_DFL; |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3265 | return cgroup_add_cftypes(ss, cfts); |
| 3266 | } |
| 3267 | |
| 3268 | /** |
| 3269 | * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies |
| 3270 | * @ss: target cgroup subsystem |
| 3271 | * @cfts: zero-length name terminated array of cftypes |
| 3272 | * |
| 3273 | * Similar to cgroup_add_cftypes() but the added files are only used for |
| 3274 | * the legacy hierarchies. |
| 3275 | */ |
Tejun Heo | 2cf669a | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 3276 | int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) |
| 3277 | { |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 3278 | struct cftype *cft; |
| 3279 | |
Vivek Goyal | fa8137b | 2014-08-08 11:44:03 -0400 | [diff] [blame] | 3280 | /* |
| 3281 | * If legacy_flies_on_dfl, we want to show the legacy files on the |
| 3282 | * dfl hierarchy but iff the target subsystem hasn't been updated |
| 3283 | * for the dfl hierarchy yet. |
| 3284 | */ |
| 3285 | if (!cgroup_legacy_files_on_dfl || |
| 3286 | ss->dfl_cftypes != ss->legacy_cftypes) { |
| 3287 | for (cft = cfts; cft && cft->name[0] != '\0'; cft++) |
| 3288 | cft->flags |= __CFTYPE_NOT_ON_DFL; |
| 3289 | } |
| 3290 | |
Tejun Heo | 2cf669a | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 3291 | return cgroup_add_cftypes(ss, cfts); |
| 3292 | } |
| 3293 | |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 3294 | /** |
| 3295 | * cgroup_task_count - count the number of tasks in a cgroup. |
| 3296 | * @cgrp: the cgroup in question |
| 3297 | * |
| 3298 | * Return the number of tasks in the cgroup. |
| 3299 | */ |
Tejun Heo | 07bc356 | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3300 | static int cgroup_task_count(const struct cgroup *cgrp) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3301 | { |
| 3302 | int count = 0; |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 3303 | struct cgrp_cset_link *link; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3304 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3305 | down_read(&css_set_rwsem); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 3306 | list_for_each_entry(link, &cgrp->cset_links, cset_link) |
| 3307 | count += atomic_read(&link->cset->refcount); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3308 | up_read(&css_set_rwsem); |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3309 | return count; |
| 3310 | } |
| 3311 | |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3312 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3313 | * css_next_child - find the next child of a given css |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3314 | * @pos: the current position (%NULL to initiate traversal) |
| 3315 | * @parent: css whose children to walk |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3316 | * |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3317 | * This function returns the next child of @parent and should be called |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3318 | * under either cgroup_mutex or RCU read lock. The only requirement is |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3319 | * that @parent and @pos are accessible. The next sibling is guaranteed to |
| 3320 | * be returned regardless of their states. |
| 3321 | * |
| 3322 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 3323 | * css which finished ->css_online() is guaranteed to be visible in the |
| 3324 | * future iterations and will stay visible until the last reference is put. |
| 3325 | * A css which hasn't finished ->css_online() or already finished |
| 3326 | * ->css_offline() may show up during traversal. It's each subsystem's |
| 3327 | * responsibility to synchronize against on/offlining. |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3328 | */ |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3329 | struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos, |
| 3330 | struct cgroup_subsys_state *parent) |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3331 | { |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3332 | struct cgroup_subsys_state *next; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3333 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3334 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3335 | |
| 3336 | /* |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 3337 | * @pos could already have been unlinked from the sibling list. |
| 3338 | * Once a cgroup is removed, its ->sibling.next is no longer |
| 3339 | * updated when its next sibling changes. CSS_RELEASED is set when |
| 3340 | * @pos is taken off list, at which time its next pointer is valid, |
| 3341 | * and, as releases are serialized, the one pointed to by the next |
| 3342 | * pointer is guaranteed to not have started release yet. This |
| 3343 | * implies that if we observe !CSS_RELEASED on @pos in this RCU |
| 3344 | * critical section, the one pointed to by its next pointer is |
| 3345 | * guaranteed to not have finished its RCU grace period even if we |
| 3346 | * have dropped rcu_read_lock() inbetween iterations. |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3347 | * |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 3348 | * If @pos has CSS_RELEASED set, its next pointer can't be |
| 3349 | * dereferenced; however, as each css is given a monotonically |
| 3350 | * increasing unique serial number and always appended to the |
| 3351 | * sibling list, the next one can be found by walking the parent's |
| 3352 | * children until the first css with higher serial number than |
| 3353 | * @pos's. While this path can be slower, it happens iff iteration |
| 3354 | * races against release and the race window is very small. |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3355 | */ |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3356 | if (!pos) { |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3357 | next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling); |
| 3358 | } else if (likely(!(pos->flags & CSS_RELEASED))) { |
| 3359 | next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling); |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3360 | } else { |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3361 | list_for_each_entry_rcu(next, &parent->children, sibling) |
Tejun Heo | 3b287a5 | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 3362 | if (next->serial_nr > pos->serial_nr) |
| 3363 | break; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3364 | } |
| 3365 | |
Tejun Heo | 3b281af | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3366 | /* |
| 3367 | * @next, if not pointing to the head, can be dereferenced and is |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3368 | * the next sibling. |
Tejun Heo | 3b281af | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3369 | */ |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3370 | if (&next->sibling != &parent->children) |
| 3371 | return next; |
Tejun Heo | 3b281af | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3372 | return NULL; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3373 | } |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3374 | |
| 3375 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3376 | * css_next_descendant_pre - find the next descendant for pre-order walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3377 | * @pos: the current position (%NULL to initiate traversal) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3378 | * @root: css whose descendants to walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3379 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3380 | * 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] | 3381 | * to visit for pre-order traversal of @root's descendants. @root is |
| 3382 | * included in the iteration and the first node to be visited. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3383 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3384 | * While this function requires cgroup_mutex or RCU read locking, it |
| 3385 | * doesn't require the whole traversal to be contained in a single critical |
| 3386 | * section. This function will return the correct next descendant as long |
| 3387 | * 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] | 3388 | * |
| 3389 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 3390 | * css which finished ->css_online() is guaranteed to be visible in the |
| 3391 | * future iterations and will stay visible until the last reference is put. |
| 3392 | * A css which hasn't finished ->css_online() or already finished |
| 3393 | * ->css_offline() may show up during traversal. It's each subsystem's |
| 3394 | * responsibility to synchronize against on/offlining. |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3395 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3396 | struct cgroup_subsys_state * |
| 3397 | css_next_descendant_pre(struct cgroup_subsys_state *pos, |
| 3398 | struct cgroup_subsys_state *root) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3399 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3400 | struct cgroup_subsys_state *next; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3401 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3402 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3403 | |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3404 | /* if first iteration, visit @root */ |
Tejun Heo | 7805d00 | 2013-05-24 10:50:24 +0900 | [diff] [blame] | 3405 | if (!pos) |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3406 | return root; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3407 | |
| 3408 | /* visit the first child if exists */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3409 | next = css_next_child(NULL, pos); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3410 | if (next) |
| 3411 | return next; |
| 3412 | |
| 3413 | /* no child, visit my or the closest ancestor's next sibling */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3414 | while (pos != root) { |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3415 | next = css_next_child(pos, pos->parent); |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3416 | if (next) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3417 | return next; |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3418 | pos = pos->parent; |
Tejun Heo | 7805d00 | 2013-05-24 10:50:24 +0900 | [diff] [blame] | 3419 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3420 | |
| 3421 | return NULL; |
| 3422 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3423 | |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3424 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3425 | * css_rightmost_descendant - return the rightmost descendant of a css |
| 3426 | * @pos: css of interest |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3427 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3428 | * Return the rightmost descendant of @pos. If there's no descendant, @pos |
| 3429 | * is returned. This can be used during pre-order traversal to skip |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3430 | * subtree of @pos. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3431 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3432 | * While this function requires cgroup_mutex or RCU read locking, it |
| 3433 | * doesn't require the whole traversal to be contained in a single critical |
| 3434 | * section. This function will return the correct rightmost descendant as |
| 3435 | * long as @pos is accessible. |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3436 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3437 | struct cgroup_subsys_state * |
| 3438 | css_rightmost_descendant(struct cgroup_subsys_state *pos) |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3439 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3440 | struct cgroup_subsys_state *last, *tmp; |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3441 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3442 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3443 | |
| 3444 | do { |
| 3445 | last = pos; |
| 3446 | /* ->prev isn't RCU safe, walk ->next till the end */ |
| 3447 | pos = NULL; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3448 | css_for_each_child(tmp, last) |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3449 | pos = tmp; |
| 3450 | } while (pos); |
| 3451 | |
| 3452 | return last; |
| 3453 | } |
Tejun Heo | 12a9d2f | 2013-01-07 08:49:33 -0800 | [diff] [blame] | 3454 | |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3455 | static struct cgroup_subsys_state * |
| 3456 | css_leftmost_descendant(struct cgroup_subsys_state *pos) |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3457 | { |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3458 | struct cgroup_subsys_state *last; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3459 | |
| 3460 | do { |
| 3461 | last = pos; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3462 | pos = css_next_child(NULL, pos); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3463 | } while (pos); |
| 3464 | |
| 3465 | return last; |
| 3466 | } |
| 3467 | |
| 3468 | /** |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3469 | * css_next_descendant_post - find the next descendant for post-order walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3470 | * @pos: the current position (%NULL to initiate traversal) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3471 | * @root: css whose descendants to walk |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3472 | * |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3473 | * 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] | 3474 | * to visit for post-order traversal of @root's descendants. @root is |
| 3475 | * included in the iteration and the last node to be visited. |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3476 | * |
Tejun Heo | 87fb54f | 2013-12-06 15:11:55 -0500 | [diff] [blame] | 3477 | * While this function requires cgroup_mutex or RCU read locking, it |
| 3478 | * doesn't require the whole traversal to be contained in a single critical |
| 3479 | * section. This function will return the correct next descendant as long |
| 3480 | * as both @pos and @cgroup are accessible and @pos is a descendant of |
| 3481 | * @cgroup. |
Tejun Heo | c2931b7 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 3482 | * |
| 3483 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 3484 | * css which finished ->css_online() is guaranteed to be visible in the |
| 3485 | * future iterations and will stay visible until the last reference is put. |
| 3486 | * A css which hasn't finished ->css_online() or already finished |
| 3487 | * ->css_offline() may show up during traversal. It's each subsystem's |
| 3488 | * responsibility to synchronize against on/offlining. |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3489 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3490 | struct cgroup_subsys_state * |
| 3491 | css_next_descendant_post(struct cgroup_subsys_state *pos, |
| 3492 | struct cgroup_subsys_state *root) |
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 | struct cgroup_subsys_state *next; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3495 | |
Tejun Heo | 8353da1 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 3496 | cgroup_assert_mutex_or_rcu_locked(); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3497 | |
Tejun Heo | 58b79a9 | 2013-09-06 15:31:08 -0400 | [diff] [blame] | 3498 | /* if first iteration, visit leftmost descendant which may be @root */ |
| 3499 | if (!pos) |
| 3500 | return css_leftmost_descendant(root); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3501 | |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 3502 | /* if we visited @root, we're done */ |
| 3503 | if (pos == root) |
| 3504 | return NULL; |
| 3505 | |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3506 | /* if there's an unvisited sibling, visit its leftmost descendant */ |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3507 | next = css_next_child(pos, pos->parent); |
Tejun Heo | 75501a6 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 3508 | if (next) |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 3509 | return css_leftmost_descendant(next); |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3510 | |
| 3511 | /* no sibling left, visit parent */ |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 3512 | return pos->parent; |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3513 | } |
Tejun Heo | 574bd9f | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 3514 | |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3515 | /** |
| 3516 | * css_has_online_children - does a css have online children |
| 3517 | * @css: the target css |
| 3518 | * |
| 3519 | * Returns %true if @css has any online children; otherwise, %false. This |
| 3520 | * function can be called from any context but the caller is responsible |
| 3521 | * for synchronizing against on/offlining as necessary. |
| 3522 | */ |
| 3523 | bool css_has_online_children(struct cgroup_subsys_state *css) |
Tejun Heo | cbc125e | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 3524 | { |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3525 | struct cgroup_subsys_state *child; |
| 3526 | bool ret = false; |
Tejun Heo | cbc125e | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 3527 | |
| 3528 | rcu_read_lock(); |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3529 | css_for_each_child(child, css) { |
Li Zefan | 99bae5f | 2014-06-12 14:31:31 +0800 | [diff] [blame] | 3530 | if (child->flags & CSS_ONLINE) { |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3531 | ret = true; |
| 3532 | break; |
Tejun Heo | cbc125e | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 3533 | } |
| 3534 | } |
| 3535 | rcu_read_unlock(); |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 3536 | return ret; |
Cliff Wickman | 31a7df0 | 2008-02-07 00:14:42 -0800 | [diff] [blame] | 3537 | } |
| 3538 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3539 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3540 | * 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] | 3541 | * @it: the iterator to advance |
| 3542 | * |
| 3543 | * Advance @it to the next css_set to walk. |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3544 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3545 | static void css_advance_task_iter(struct css_task_iter *it) |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3546 | { |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3547 | struct list_head *l = it->cset_pos; |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3548 | struct cgrp_cset_link *link; |
| 3549 | struct css_set *cset; |
| 3550 | |
| 3551 | /* Advance to the next non-empty css_set */ |
| 3552 | do { |
| 3553 | l = l->next; |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3554 | if (l == it->cset_head) { |
| 3555 | it->cset_pos = NULL; |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3556 | return; |
| 3557 | } |
Tejun Heo | 3ebb2b6 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3558 | |
| 3559 | if (it->ss) { |
| 3560 | cset = container_of(l, struct css_set, |
| 3561 | e_cset_node[it->ss->id]); |
| 3562 | } else { |
| 3563 | link = list_entry(l, struct cgrp_cset_link, cset_link); |
| 3564 | cset = link->cset; |
| 3565 | } |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3566 | } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks)); |
| 3567 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3568 | it->cset_pos = l; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3569 | |
| 3570 | if (!list_empty(&cset->tasks)) |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3571 | it->task_pos = cset->tasks.next; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3572 | else |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3573 | it->task_pos = cset->mg_tasks.next; |
| 3574 | |
| 3575 | it->tasks_head = &cset->tasks; |
| 3576 | it->mg_tasks_head = &cset->mg_tasks; |
Tejun Heo | d515876 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3577 | } |
| 3578 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3579 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3580 | * css_task_iter_start - initiate task iteration |
| 3581 | * @css: the css to walk tasks of |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3582 | * @it: the task iterator to use |
| 3583 | * |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3584 | * Initiate iteration through the tasks of @css. The caller can call |
| 3585 | * css_task_iter_next() to walk through the tasks until the function |
| 3586 | * returns NULL. On completion of iteration, css_task_iter_end() must be |
| 3587 | * called. |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3588 | * |
| 3589 | * Note that this function acquires a lock which is released when the |
| 3590 | * iteration finishes. The caller can't sleep while iteration is in |
| 3591 | * progress. |
| 3592 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3593 | void css_task_iter_start(struct cgroup_subsys_state *css, |
| 3594 | struct css_task_iter *it) |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3595 | __acquires(css_set_rwsem) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3596 | { |
Tejun Heo | 56fde9e | 2014-02-13 06:58:38 -0500 | [diff] [blame] | 3597 | /* no one should try to iterate before mounting cgroups */ |
| 3598 | WARN_ON_ONCE(!use_task_css_set_links); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3599 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3600 | down_read(&css_set_rwsem); |
Tejun Heo | c59cd3d | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3601 | |
Tejun Heo | 3ebb2b6 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3602 | it->ss = css->ss; |
| 3603 | |
| 3604 | if (it->ss) |
| 3605 | it->cset_pos = &css->cgroup->e_csets[css->ss->id]; |
| 3606 | else |
| 3607 | it->cset_pos = &css->cgroup->cset_links; |
| 3608 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3609 | it->cset_head = it->cset_pos; |
Tejun Heo | c59cd3d | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3610 | |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3611 | css_advance_task_iter(it); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 3612 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3613 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3614 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3615 | * css_task_iter_next - return the next task for the iterator |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3616 | * @it: the task iterator being iterated |
| 3617 | * |
| 3618 | * The "next" function for task iteration. @it should have been |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3619 | * initialized via css_task_iter_start(). Returns NULL when the iteration |
| 3620 | * reaches the end. |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3621 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3622 | struct task_struct *css_task_iter_next(struct css_task_iter *it) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3623 | { |
| 3624 | struct task_struct *res; |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3625 | struct list_head *l = it->task_pos; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3626 | |
| 3627 | /* If the iterator cg is NULL, we have no tasks */ |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3628 | if (!it->cset_pos) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3629 | return NULL; |
| 3630 | res = list_entry(l, struct task_struct, cg_list); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3631 | |
| 3632 | /* |
| 3633 | * Advance iterator to find next entry. cset->tasks is consumed |
| 3634 | * first and then ->mg_tasks. After ->mg_tasks, we move onto the |
| 3635 | * next cset. |
| 3636 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3637 | l = l->next; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3638 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3639 | if (l == it->tasks_head) |
| 3640 | l = it->mg_tasks_head->next; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3641 | |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3642 | if (l == it->mg_tasks_head) |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3643 | css_advance_task_iter(it); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3644 | else |
Tejun Heo | 0f0a2b4 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 3645 | it->task_pos = l; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 3646 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3647 | return res; |
| 3648 | } |
| 3649 | |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3650 | /** |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3651 | * css_task_iter_end - finish task iteration |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3652 | * @it: the task iterator to finish |
| 3653 | * |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3654 | * Finish task iteration started by css_task_iter_start(). |
Tejun Heo | 0942eee | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3655 | */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3656 | void css_task_iter_end(struct css_task_iter *it) |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3657 | __releases(css_set_rwsem) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3658 | { |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 3659 | up_read(&css_set_rwsem); |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 3660 | } |
| 3661 | |
| 3662 | /** |
| 3663 | * cgroup_trasnsfer_tasks - move tasks from one cgroup to another |
| 3664 | * @to: cgroup to which the tasks will be moved |
| 3665 | * @from: cgroup in which the tasks currently reside |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3666 | * |
| 3667 | * Locking rules between cgroup_post_fork() and the migration path |
| 3668 | * guarantee that, if a task is forking while being migrated, the new child |
| 3669 | * is guaranteed to be either visible in the source cgroup after the |
| 3670 | * parent's migration is complete or put into the target cgroup. No task |
| 3671 | * can slip out of migration through forking. |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 3672 | */ |
| 3673 | int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from) |
| 3674 | { |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3675 | LIST_HEAD(preloaded_csets); |
| 3676 | struct cgrp_cset_link *link; |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3677 | struct css_task_iter it; |
| 3678 | struct task_struct *task; |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3679 | int ret; |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3680 | |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3681 | mutex_lock(&cgroup_mutex); |
| 3682 | |
| 3683 | /* all tasks in @from are being moved, all csets are source */ |
| 3684 | down_read(&css_set_rwsem); |
| 3685 | list_for_each_entry(link, &from->cset_links, cset_link) |
| 3686 | cgroup_migrate_add_src(link->cset, to, &preloaded_csets); |
| 3687 | up_read(&css_set_rwsem); |
| 3688 | |
| 3689 | ret = cgroup_migrate_prepare_dst(to, &preloaded_csets); |
| 3690 | if (ret) |
| 3691 | goto out_err; |
| 3692 | |
| 3693 | /* |
| 3694 | * Migrate tasks one-by-one until @form is empty. This fails iff |
| 3695 | * ->can_attach() fails. |
| 3696 | */ |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3697 | do { |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 3698 | css_task_iter_start(&from->self, &it); |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3699 | task = css_task_iter_next(&it); |
| 3700 | if (task) |
| 3701 | get_task_struct(task); |
| 3702 | css_task_iter_end(&it); |
| 3703 | |
| 3704 | if (task) { |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3705 | ret = cgroup_migrate(to, task, false); |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3706 | put_task_struct(task); |
| 3707 | } |
| 3708 | } while (task && !ret); |
Tejun Heo | 952aaa1 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 3709 | out_err: |
| 3710 | cgroup_migrate_finish(&preloaded_csets); |
| 3711 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | e406d1c | 2014-02-13 06:58:39 -0500 | [diff] [blame] | 3712 | return ret; |
Tejun Heo | 8cc9934 | 2013-04-07 09:29:50 -0700 | [diff] [blame] | 3713 | } |
| 3714 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3715 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3716 | * Stuff for reading the 'tasks'/'procs' files. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3717 | * |
| 3718 | * Reading this file can return large amounts of data if a cgroup has |
| 3719 | * *lots* of attached tasks. So it may need several calls to read(), |
| 3720 | * but we cannot guarantee that the information we produce is correct |
| 3721 | * unless we produce it entirely atomically. |
| 3722 | * |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3723 | */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3724 | |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3725 | /* which pidlist file are we talking about? */ |
| 3726 | enum cgroup_filetype { |
| 3727 | CGROUP_FILE_PROCS, |
| 3728 | CGROUP_FILE_TASKS, |
| 3729 | }; |
| 3730 | |
| 3731 | /* |
| 3732 | * A pidlist is a list of pids that virtually represents the contents of one |
| 3733 | * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists, |
| 3734 | * a pair (one each for procs, tasks) for each pid namespace that's relevant |
| 3735 | * to the cgroup. |
| 3736 | */ |
| 3737 | struct cgroup_pidlist { |
| 3738 | /* |
| 3739 | * used to find which pidlist is wanted. doesn't change as long as |
| 3740 | * this particular list stays in the list. |
| 3741 | */ |
| 3742 | struct { enum cgroup_filetype type; struct pid_namespace *ns; } key; |
| 3743 | /* array of xids */ |
| 3744 | pid_t *list; |
| 3745 | /* how many elements the above list has */ |
| 3746 | int length; |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3747 | /* each of these stored in a list by its cgroup */ |
| 3748 | struct list_head links; |
| 3749 | /* pointer to the cgroup we belong to, for list removal purposes */ |
| 3750 | struct cgroup *owner; |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3751 | /* for delayed destruction */ |
| 3752 | struct delayed_work destroy_dwork; |
Li Zefan | 2452825 | 2012-01-20 11:58:43 +0800 | [diff] [blame] | 3753 | }; |
| 3754 | |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3755 | /* |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3756 | * The following two functions "fix" the issue where there are more pids |
| 3757 | * than kmalloc will give memory for; in such cases, we use vmalloc/vfree. |
| 3758 | * TODO: replace with a kernel-wide solution to this problem |
| 3759 | */ |
| 3760 | #define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2)) |
| 3761 | static void *pidlist_allocate(int count) |
| 3762 | { |
| 3763 | if (PIDLIST_TOO_LARGE(count)) |
| 3764 | return vmalloc(count * sizeof(pid_t)); |
| 3765 | else |
| 3766 | return kmalloc(count * sizeof(pid_t), GFP_KERNEL); |
| 3767 | } |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3768 | |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3769 | static void pidlist_free(void *p) |
| 3770 | { |
| 3771 | if (is_vmalloc_addr(p)) |
| 3772 | vfree(p); |
| 3773 | else |
| 3774 | kfree(p); |
| 3775 | } |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3776 | |
| 3777 | /* |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3778 | * Used to destroy all pidlists lingering waiting for destroy timer. None |
| 3779 | * should be left afterwards. |
| 3780 | */ |
| 3781 | static void cgroup_pidlist_destroy_all(struct cgroup *cgrp) |
| 3782 | { |
| 3783 | struct cgroup_pidlist *l, *tmp_l; |
| 3784 | |
| 3785 | mutex_lock(&cgrp->pidlist_mutex); |
| 3786 | list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links) |
| 3787 | mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0); |
| 3788 | mutex_unlock(&cgrp->pidlist_mutex); |
| 3789 | |
| 3790 | flush_workqueue(cgroup_pidlist_destroy_wq); |
| 3791 | BUG_ON(!list_empty(&cgrp->pidlists)); |
| 3792 | } |
| 3793 | |
| 3794 | static void cgroup_pidlist_destroy_work_fn(struct work_struct *work) |
| 3795 | { |
| 3796 | struct delayed_work *dwork = to_delayed_work(work); |
| 3797 | struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist, |
| 3798 | destroy_dwork); |
| 3799 | struct cgroup_pidlist *tofree = NULL; |
| 3800 | |
| 3801 | mutex_lock(&l->owner->pidlist_mutex); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3802 | |
| 3803 | /* |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3804 | * Destroy iff we didn't get queued again. The state won't change |
| 3805 | * as destroy_dwork can only be queued while locked. |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3806 | */ |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3807 | if (!delayed_work_pending(dwork)) { |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3808 | list_del(&l->links); |
| 3809 | pidlist_free(l->list); |
| 3810 | put_pid_ns(l->key.ns); |
| 3811 | tofree = l; |
| 3812 | } |
| 3813 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3814 | mutex_unlock(&l->owner->pidlist_mutex); |
| 3815 | kfree(tofree); |
| 3816 | } |
| 3817 | |
| 3818 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3819 | * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 3820 | * Returns the number of unique elements. |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3821 | */ |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 3822 | static int pidlist_uniq(pid_t *list, int length) |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3823 | { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3824 | int src, dest = 1; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3825 | |
| 3826 | /* |
| 3827 | * we presume the 0th element is unique, so i starts at 1. trivial |
| 3828 | * edge cases first; no work needs to be done for either |
| 3829 | */ |
| 3830 | if (length == 0 || length == 1) |
| 3831 | return length; |
| 3832 | /* src and dest walk down the list; dest counts unique elements */ |
| 3833 | for (src = 1; src < length; src++) { |
| 3834 | /* find next unique element */ |
| 3835 | while (list[src] == list[src-1]) { |
| 3836 | src++; |
| 3837 | if (src == length) |
| 3838 | goto after; |
| 3839 | } |
| 3840 | /* dest always points to where the next unique element goes */ |
| 3841 | list[dest] = list[src]; |
| 3842 | dest++; |
| 3843 | } |
| 3844 | after: |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3845 | return dest; |
| 3846 | } |
| 3847 | |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3848 | /* |
| 3849 | * The two pid files - task and cgroup.procs - guaranteed that the result |
| 3850 | * is sorted, which forced this whole pidlist fiasco. As pid order is |
| 3851 | * different per namespace, each namespace needs differently sorted list, |
| 3852 | * making it impossible to use, for example, single rbtree of member tasks |
| 3853 | * sorted by task pointer. As pidlists can be fairly large, allocating one |
| 3854 | * per open file is dangerous, so cgroup had to implement shared pool of |
| 3855 | * pidlists keyed by cgroup and namespace. |
| 3856 | * |
| 3857 | * All this extra complexity was caused by the original implementation |
| 3858 | * committing to an entirely unnecessary property. In the long term, we |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3859 | * want to do away with it. Explicitly scramble sort order if on the |
| 3860 | * default hierarchy so that no such expectation exists in the new |
| 3861 | * interface. |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3862 | * |
| 3863 | * Scrambling is done by swapping every two consecutive bits, which is |
| 3864 | * non-identity one-to-one mapping which disturbs sort order sufficiently. |
| 3865 | */ |
| 3866 | static pid_t pid_fry(pid_t pid) |
| 3867 | { |
| 3868 | unsigned a = pid & 0x55555555; |
| 3869 | unsigned b = pid & 0xAAAAAAAA; |
| 3870 | |
| 3871 | return (a << 1) | (b >> 1); |
| 3872 | } |
| 3873 | |
| 3874 | static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid) |
| 3875 | { |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3876 | if (cgroup_on_dfl(cgrp)) |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3877 | return pid_fry(pid); |
| 3878 | else |
| 3879 | return pid; |
| 3880 | } |
| 3881 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3882 | static int cmppid(const void *a, const void *b) |
| 3883 | { |
| 3884 | return *(pid_t *)a - *(pid_t *)b; |
| 3885 | } |
| 3886 | |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3887 | static int fried_cmppid(const void *a, const void *b) |
| 3888 | { |
| 3889 | return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b); |
| 3890 | } |
| 3891 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3892 | static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp, |
| 3893 | enum cgroup_filetype type) |
| 3894 | { |
| 3895 | struct cgroup_pidlist *l; |
| 3896 | /* don't need task_nsproxy() if we're looking at ourself */ |
Eric W. Biederman | 17cf22c | 2010-03-02 14:51:53 -0800 | [diff] [blame] | 3897 | struct pid_namespace *ns = task_active_pid_ns(current); |
Li Zefan | b70cc5f | 2010-03-10 15:22:12 -0800 | [diff] [blame] | 3898 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3899 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3900 | |
| 3901 | list_for_each_entry(l, &cgrp->pidlists, links) |
| 3902 | if (l->key.type == type && l->key.ns == ns) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3903 | return l; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3904 | return NULL; |
| 3905 | } |
| 3906 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3907 | /* |
| 3908 | * find the appropriate pidlist for our purpose (given procs vs tasks) |
| 3909 | * returns with the lock on that pidlist already held, and takes care |
| 3910 | * of the use count, or returns NULL with no locks held if we're out of |
| 3911 | * memory. |
| 3912 | */ |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3913 | static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp, |
| 3914 | enum cgroup_filetype type) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3915 | { |
| 3916 | struct cgroup_pidlist *l; |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3917 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3918 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3919 | |
| 3920 | l = cgroup_pidlist_find(cgrp, type); |
| 3921 | if (l) |
| 3922 | return l; |
| 3923 | |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3924 | /* entry not found; create a new one */ |
Tejun Heo | f4f4be2 | 2013-06-12 21:04:51 -0700 | [diff] [blame] | 3925 | l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL); |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3926 | if (!l) |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3927 | return l; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3928 | |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 3929 | INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3930 | l->key.type = type; |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3931 | /* don't need task_nsproxy() if we're looking at ourself */ |
| 3932 | l->key.ns = get_pid_ns(task_active_pid_ns(current)); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3933 | l->owner = cgrp; |
| 3934 | list_add(&l->links, &cgrp->pidlists); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3935 | return l; |
| 3936 | } |
| 3937 | |
| 3938 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3939 | * Load a cgroup's pidarray with either procs' tgids or tasks' pids |
| 3940 | */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3941 | static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type, |
| 3942 | struct cgroup_pidlist **lp) |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3943 | { |
| 3944 | pid_t *array; |
| 3945 | int length; |
| 3946 | int pid, n = 0; /* used for populating the array */ |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3947 | struct css_task_iter it; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3948 | struct task_struct *tsk; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3949 | struct cgroup_pidlist *l; |
| 3950 | |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3951 | lockdep_assert_held(&cgrp->pidlist_mutex); |
| 3952 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3953 | /* |
| 3954 | * If cgroup gets more users after we read count, we won't have |
| 3955 | * enough space - tough. This race is indistinguishable to the |
| 3956 | * caller from the case that the additional cgroup users didn't |
| 3957 | * show up until sometime later on. |
| 3958 | */ |
| 3959 | length = cgroup_task_count(cgrp); |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3960 | array = pidlist_allocate(length); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3961 | if (!array) |
| 3962 | return -ENOMEM; |
| 3963 | /* now, populate the array */ |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 3964 | css_task_iter_start(&cgrp->self, &it); |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3965 | while ((tsk = css_task_iter_next(&it))) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3966 | if (unlikely(n == length)) |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3967 | break; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3968 | /* get tgid or pid for procs or tasks file respectively */ |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3969 | if (type == CGROUP_FILE_PROCS) |
| 3970 | pid = task_tgid_vnr(tsk); |
| 3971 | else |
| 3972 | pid = task_pid_vnr(tsk); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3973 | if (pid > 0) /* make sure to only use valid results */ |
| 3974 | array[n++] = pid; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 3975 | } |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 3976 | css_task_iter_end(&it); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3977 | length = n; |
| 3978 | /* now sort & (if procs) strip out duplicates */ |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 3979 | if (cgroup_on_dfl(cgrp)) |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3980 | sort(array, length, sizeof(pid_t), fried_cmppid, NULL); |
| 3981 | else |
| 3982 | sort(array, length, sizeof(pid_t), cmppid, NULL); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3983 | if (type == CGROUP_FILE_PROCS) |
Li Zefan | 6ee211a | 2013-03-12 15:36:00 -0700 | [diff] [blame] | 3984 | length = pidlist_uniq(array, length); |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3985 | |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3986 | l = cgroup_pidlist_find_create(cgrp, type); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3987 | if (!l) { |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3988 | pidlist_free(array); |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3989 | return -ENOMEM; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3990 | } |
Tejun Heo | e6b8171 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 3991 | |
| 3992 | /* store array, freeing old if necessary */ |
Ben Blum | d1d9fd3 | 2009-09-23 15:56:28 -0700 | [diff] [blame] | 3993 | pidlist_free(l->list); |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3994 | l->list = array; |
| 3995 | l->length = length; |
Ben Blum | 72a8cb3 | 2009-09-23 15:56:27 -0700 | [diff] [blame] | 3996 | *lp = l; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 3997 | return 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 3998 | } |
| 3999 | |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4000 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4001 | * cgroupstats_build - build and fill cgroupstats |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4002 | * @stats: cgroupstats to fill information into |
| 4003 | * @dentry: A dentry entry belonging to the cgroup for which stats have |
| 4004 | * been requested. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4005 | * |
| 4006 | * Build and fill cgroupstats so that taskstats can export it to user |
| 4007 | * space. |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4008 | */ |
| 4009 | int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry) |
| 4010 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4011 | struct kernfs_node *kn = kernfs_node_from_dentry(dentry); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4012 | struct cgroup *cgrp; |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 4013 | struct css_task_iter it; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4014 | struct task_struct *tsk; |
Li Zefan | 33d283b | 2008-11-19 15:36:48 -0800 | [diff] [blame] | 4015 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4016 | /* it should be kernfs_node belonging to cgroupfs and is a directory */ |
| 4017 | if (dentry->d_sb->s_type != &cgroup_fs_type || !kn || |
| 4018 | kernfs_type(kn) != KERNFS_DIR) |
| 4019 | return -EINVAL; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4020 | |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4021 | mutex_lock(&cgroup_mutex); |
| 4022 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4023 | /* |
| 4024 | * 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] | 4025 | * @kn->priv's validity. For this and css_tryget_online_from_dir(), |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4026 | * @kn->priv is RCU safe. Let's do the RCU dancing. |
| 4027 | */ |
| 4028 | rcu_read_lock(); |
| 4029 | cgrp = rcu_dereference(kn->priv); |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4030 | if (!cgrp || cgroup_is_dead(cgrp)) { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4031 | rcu_read_unlock(); |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4032 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4033 | return -ENOENT; |
| 4034 | } |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4035 | rcu_read_unlock(); |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4036 | |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 4037 | css_task_iter_start(&cgrp->self, &it); |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 4038 | while ((tsk = css_task_iter_next(&it))) { |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4039 | switch (tsk->state) { |
| 4040 | case TASK_RUNNING: |
| 4041 | stats->nr_running++; |
| 4042 | break; |
| 4043 | case TASK_INTERRUPTIBLE: |
| 4044 | stats->nr_sleeping++; |
| 4045 | break; |
| 4046 | case TASK_UNINTERRUPTIBLE: |
| 4047 | stats->nr_uninterruptible++; |
| 4048 | break; |
| 4049 | case TASK_STOPPED: |
| 4050 | stats->nr_stopped++; |
| 4051 | break; |
| 4052 | default: |
| 4053 | if (delayacct_is_task_waiting_on_io(tsk)) |
| 4054 | stats->nr_io_wait++; |
| 4055 | break; |
| 4056 | } |
| 4057 | } |
Tejun Heo | 72ec702 | 2013-08-08 20:11:26 -0400 | [diff] [blame] | 4058 | css_task_iter_end(&it); |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4059 | |
Li Zefan | bad3466 | 2014-02-14 16:54:28 +0800 | [diff] [blame] | 4060 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4061 | return 0; |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 4062 | } |
| 4063 | |
Paul Menage | 8f3ff20 | 2009-09-23 15:56:25 -0700 | [diff] [blame] | 4064 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4065 | /* |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4066 | * 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] | 4067 | * 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] | 4068 | * in the cgroup->l->list array. |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4069 | */ |
| 4070 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4071 | static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4072 | { |
| 4073 | /* |
| 4074 | * Initially we receive a position value that corresponds to |
| 4075 | * one more than the last pid shown (or 0 on the first call or |
| 4076 | * after a seek to the start). Use a binary-search to find the |
| 4077 | * next pid to display, if any |
| 4078 | */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4079 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4080 | struct cgroup *cgrp = seq_css(s)->cgroup; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4081 | struct cgroup_pidlist *l; |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4082 | enum cgroup_filetype type = seq_cft(s)->private; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4083 | int index = 0, pid = *pos; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4084 | int *iter, ret; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4085 | |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4086 | mutex_lock(&cgrp->pidlist_mutex); |
| 4087 | |
| 4088 | /* |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4089 | * !NULL @of->priv indicates that this isn't the first start() |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4090 | * after open. If the matching pidlist is around, we can use that. |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4091 | * 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] | 4092 | * could already have been destroyed. |
| 4093 | */ |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4094 | if (of->priv) |
| 4095 | of->priv = cgroup_pidlist_find(cgrp, type); |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4096 | |
| 4097 | /* |
| 4098 | * Either this is the first start() after open or the matching |
| 4099 | * pidlist has been destroyed inbetween. Create a new one. |
| 4100 | */ |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4101 | if (!of->priv) { |
| 4102 | ret = pidlist_array_load(cgrp, type, |
| 4103 | (struct cgroup_pidlist **)&of->priv); |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4104 | if (ret) |
| 4105 | return ERR_PTR(ret); |
| 4106 | } |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4107 | l = of->priv; |
Tejun Heo | 4bac00d | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4108 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4109 | if (pid) { |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4110 | int end = l->length; |
Stephen Rothwell | 2077776 | 2008-10-21 16:11:20 +1100 | [diff] [blame] | 4111 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4112 | while (index < end) { |
| 4113 | int mid = (index + end) / 2; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4114 | if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) { |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4115 | index = mid; |
| 4116 | break; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4117 | } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4118 | index = mid + 1; |
| 4119 | else |
| 4120 | end = mid; |
| 4121 | } |
| 4122 | } |
| 4123 | /* If we're off the end of the array, we're done */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4124 | if (index >= l->length) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4125 | return NULL; |
| 4126 | /* Update the abstract position to be the actual pid that we found */ |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4127 | iter = l->list + index; |
Tejun Heo | afb2bc1 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4128 | *pos = cgroup_pid_fry(cgrp, *iter); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4129 | return iter; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4130 | } |
| 4131 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4132 | static void cgroup_pidlist_stop(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4133 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4134 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4135 | struct cgroup_pidlist *l = of->priv; |
Tejun Heo | 6223685 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 4136 | |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4137 | if (l) |
| 4138 | mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, |
Tejun Heo | 0450236 | 2013-11-29 10:42:59 -0500 | [diff] [blame] | 4139 | CGROUP_PIDLIST_DESTROY_DELAY); |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4140 | mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4141 | } |
| 4142 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4143 | 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] | 4144 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4145 | struct kernfs_open_file *of = s->private; |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4146 | struct cgroup_pidlist *l = of->priv; |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4147 | pid_t *p = v; |
| 4148 | pid_t *end = l->list + l->length; |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4149 | /* |
| 4150 | * Advance to the next pid in the array. If this goes off the |
| 4151 | * end, we're done |
| 4152 | */ |
| 4153 | p++; |
| 4154 | if (p >= end) { |
| 4155 | return NULL; |
| 4156 | } else { |
Tejun Heo | 7da1127 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4157 | *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p); |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4158 | return p; |
| 4159 | } |
| 4160 | } |
| 4161 | |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4162 | static int cgroup_pidlist_show(struct seq_file *s, void *v) |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4163 | { |
| 4164 | return seq_printf(s, "%d\n", *(int *)v); |
| 4165 | } |
| 4166 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4167 | static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css, |
| 4168 | struct cftype *cft) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4169 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4170 | return notify_on_release(css->cgroup); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4171 | } |
| 4172 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4173 | static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css, |
| 4174 | struct cftype *cft, u64 val) |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4175 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4176 | clear_bit(CGRP_RELEASABLE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4177 | if (val) |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4178 | set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4179 | else |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4180 | clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags); |
Paul Menage | 6379c10 | 2008-07-25 01:47:01 -0700 | [diff] [blame] | 4181 | return 0; |
| 4182 | } |
| 4183 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4184 | static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css, |
| 4185 | struct cftype *cft) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4186 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4187 | return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4188 | } |
| 4189 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4190 | static int cgroup_clone_children_write(struct cgroup_subsys_state *css, |
| 4191 | struct cftype *cft, u64 val) |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4192 | { |
| 4193 | if (val) |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4194 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4195 | else |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 4196 | clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4197 | return 0; |
| 4198 | } |
| 4199 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4200 | /* cgroup core interface files for the default hierarchy */ |
| 4201 | static struct cftype cgroup_dfl_base_files[] = { |
| 4202 | { |
| 4203 | .name = "cgroup.procs", |
| 4204 | .seq_start = cgroup_pidlist_start, |
| 4205 | .seq_next = cgroup_pidlist_next, |
| 4206 | .seq_stop = cgroup_pidlist_stop, |
| 4207 | .seq_show = cgroup_pidlist_show, |
| 4208 | .private = CGROUP_FILE_PROCS, |
| 4209 | .write = cgroup_procs_write, |
| 4210 | .mode = S_IRUGO | S_IWUSR, |
| 4211 | }, |
| 4212 | { |
| 4213 | .name = "cgroup.controllers", |
| 4214 | .flags = CFTYPE_ONLY_ON_ROOT, |
| 4215 | .seq_show = cgroup_root_controllers_show, |
| 4216 | }, |
| 4217 | { |
| 4218 | .name = "cgroup.controllers", |
| 4219 | .flags = CFTYPE_NOT_ON_ROOT, |
| 4220 | .seq_show = cgroup_controllers_show, |
| 4221 | }, |
| 4222 | { |
| 4223 | .name = "cgroup.subtree_control", |
| 4224 | .seq_show = cgroup_subtree_control_show, |
| 4225 | .write = cgroup_subtree_control_write, |
| 4226 | }, |
| 4227 | { |
| 4228 | .name = "cgroup.populated", |
| 4229 | .flags = CFTYPE_NOT_ON_ROOT, |
| 4230 | .seq_show = cgroup_populated_show, |
| 4231 | }, |
| 4232 | { } /* terminate */ |
| 4233 | }; |
| 4234 | |
| 4235 | /* cgroup core interface files for the legacy hierarchies */ |
| 4236 | static struct cftype cgroup_legacy_base_files[] = { |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4237 | { |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4238 | .name = "cgroup.procs", |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4239 | .seq_start = cgroup_pidlist_start, |
| 4240 | .seq_next = cgroup_pidlist_next, |
| 4241 | .seq_stop = cgroup_pidlist_stop, |
| 4242 | .seq_show = cgroup_pidlist_show, |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4243 | .private = CGROUP_FILE_PROCS, |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 4244 | .write = cgroup_procs_write, |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 4245 | .mode = S_IRUGO | S_IWUSR, |
Ben Blum | 102a775 | 2009-09-23 15:56:26 -0700 | [diff] [blame] | 4246 | }, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 4247 | { |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4248 | .name = "cgroup.clone_children", |
| 4249 | .read_u64 = cgroup_clone_children_read, |
| 4250 | .write_u64 = cgroup_clone_children_write, |
| 4251 | }, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4252 | { |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 4253 | .name = "cgroup.sane_behavior", |
| 4254 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4255 | .seq_show = cgroup_sane_behavior_show, |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 4256 | }, |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4257 | { |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4258 | .name = "tasks", |
Tejun Heo | 6612f05 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4259 | .seq_start = cgroup_pidlist_start, |
| 4260 | .seq_next = cgroup_pidlist_next, |
| 4261 | .seq_stop = cgroup_pidlist_stop, |
| 4262 | .seq_show = cgroup_pidlist_show, |
Tejun Heo | 5d22444 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4263 | .private = CGROUP_FILE_TASKS, |
Tejun Heo | acbef75 | 2014-05-13 12:16:22 -0400 | [diff] [blame] | 4264 | .write = cgroup_tasks_write, |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4265 | .mode = S_IRUGO | S_IWUSR, |
| 4266 | }, |
| 4267 | { |
| 4268 | .name = "notify_on_release", |
Tejun Heo | d5c56ce | 2013-06-03 19:14:34 -0700 | [diff] [blame] | 4269 | .read_u64 = cgroup_read_notify_on_release, |
| 4270 | .write_u64 = cgroup_write_notify_on_release, |
| 4271 | }, |
Tejun Heo | 873fe09 | 2013-04-14 20:15:26 -0700 | [diff] [blame] | 4272 | { |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4273 | .name = "release_agent", |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4274 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 4275 | .seq_show = cgroup_release_agent_show, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 4276 | .write = cgroup_release_agent_write, |
Tejun Heo | 5f46990 | 2014-02-11 11:52:48 -0500 | [diff] [blame] | 4277 | .max_write_len = PATH_MAX - 1, |
Tejun Heo | 6e6ff25 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4278 | }, |
Tejun Heo | db0416b | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4279 | { } /* terminate */ |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4280 | }; |
| 4281 | |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4282 | /** |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4283 | * cgroup_populate_dir - create subsys files in a cgroup directory |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4284 | * @cgrp: target cgroup |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4285 | * @subsys_mask: mask of the subsystem ids whose files should be added |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4286 | * |
| 4287 | * On failure, no file is added. |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4288 | */ |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4289 | static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4290 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4291 | struct cgroup_subsys *ss; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 4292 | int i, ret = 0; |
Paul Menage | bbcb81d | 2007-10-18 23:39:32 -0700 | [diff] [blame] | 4293 | |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4294 | /* process cftsets of each subsystem */ |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 4295 | for_each_subsys(ss, i) { |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4296 | struct cftype *cfts; |
Tejun Heo | b420ba7 | 2013-07-12 12:34:02 -0700 | [diff] [blame] | 4297 | |
Tejun Heo | 69dfa00 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4298 | if (!(subsys_mask & (1 << i))) |
Aristeu Rozanski | 13af07d | 2012-08-23 16:53:29 -0400 | [diff] [blame] | 4299 | continue; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4300 | |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4301 | list_for_each_entry(cfts, &ss->cfts, node) { |
| 4302 | ret = cgroup_addrm_files(cgrp, cfts, true); |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4303 | if (ret < 0) |
| 4304 | goto err; |
| 4305 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4306 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4307 | return 0; |
Tejun Heo | bee5509 | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4308 | err: |
| 4309 | cgroup_clear_dir(cgrp, subsys_mask); |
| 4310 | return ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4311 | } |
| 4312 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4313 | /* |
| 4314 | * css destruction is four-stage process. |
| 4315 | * |
| 4316 | * 1. Destruction starts. Killing of the percpu_ref is initiated. |
| 4317 | * Implemented in kill_css(). |
| 4318 | * |
| 4319 | * 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] | 4320 | * and thus css_tryget_online() is guaranteed to fail, the css can be |
| 4321 | * offlined by invoking offline_css(). After offlining, the base ref is |
| 4322 | * put. Implemented in css_killed_work_fn(). |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4323 | * |
| 4324 | * 3. When the percpu_ref reaches zero, the only possible remaining |
| 4325 | * accessors are inside RCU read sections. css_release() schedules the |
| 4326 | * RCU callback. |
| 4327 | * |
| 4328 | * 4. After the grace period, the css can be freed. Implemented in |
| 4329 | * css_free_work_fn(). |
| 4330 | * |
| 4331 | * It is actually hairier because both step 2 and 4 require process context |
| 4332 | * and thus involve punting to css->destroy_work adding two additional |
| 4333 | * steps to the already complex sequence. |
| 4334 | */ |
Tejun Heo | 35ef10d | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4335 | static void css_free_work_fn(struct work_struct *work) |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4336 | { |
| 4337 | struct cgroup_subsys_state *css = |
Tejun Heo | 35ef10d | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4338 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4339 | struct cgroup *cgrp = css->cgroup; |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4340 | |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 4341 | percpu_ref_exit(&css->refcnt); |
| 4342 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4343 | if (css->ss) { |
| 4344 | /* css free path */ |
| 4345 | if (css->parent) |
| 4346 | css_put(css->parent); |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4347 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4348 | css->ss->css_free(css); |
| 4349 | cgroup_put(cgrp); |
| 4350 | } else { |
| 4351 | /* cgroup free path */ |
| 4352 | atomic_dec(&cgrp->root->nr_cgrps); |
| 4353 | cgroup_pidlist_destroy_all(cgrp); |
| 4354 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4355 | if (cgroup_parent(cgrp)) { |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4356 | /* |
| 4357 | * We get a ref to the parent, and put the ref when |
| 4358 | * this cgroup is being freed, so it's guaranteed |
| 4359 | * that the parent won't be destroyed before its |
| 4360 | * children. |
| 4361 | */ |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4362 | cgroup_put(cgroup_parent(cgrp)); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4363 | kernfs_put(cgrp->kn); |
| 4364 | kfree(cgrp); |
| 4365 | } else { |
| 4366 | /* |
| 4367 | * This is root cgroup's refcnt reaching zero, |
| 4368 | * which indicates that the root should be |
| 4369 | * released. |
| 4370 | */ |
| 4371 | cgroup_destroy_root(cgrp->root); |
| 4372 | } |
| 4373 | } |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4374 | } |
| 4375 | |
| 4376 | static void css_free_rcu_fn(struct rcu_head *rcu_head) |
| 4377 | { |
| 4378 | struct cgroup_subsys_state *css = |
| 4379 | container_of(rcu_head, struct cgroup_subsys_state, rcu_head); |
| 4380 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4381 | INIT_WORK(&css->destroy_work, css_free_work_fn); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4382 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4383 | } |
| 4384 | |
Tejun Heo | 25e15d8 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4385 | static void css_release_work_fn(struct work_struct *work) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4386 | { |
| 4387 | struct cgroup_subsys_state *css = |
Tejun Heo | 25e15d8 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4388 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4389 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4390 | struct cgroup *cgrp = css->cgroup; |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4391 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4392 | mutex_lock(&cgroup_mutex); |
| 4393 | |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4394 | css->flags |= CSS_RELEASED; |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4395 | list_del_rcu(&css->sibling); |
| 4396 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4397 | if (ss) { |
| 4398 | /* css release path */ |
| 4399 | cgroup_idr_remove(&ss->css_idr, css->id); |
| 4400 | } else { |
| 4401 | /* cgroup release path */ |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4402 | cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id); |
| 4403 | cgrp->id = -1; |
Li Zefan | a418948 | 2014-09-04 14:43:07 +0800 | [diff] [blame] | 4404 | |
| 4405 | /* |
| 4406 | * There are two control paths which try to determine |
| 4407 | * cgroup from dentry without going through kernfs - |
| 4408 | * cgroupstats_build() and css_tryget_online_from_dir(). |
| 4409 | * Those are supported by RCU protecting clearing of |
| 4410 | * cgrp->kn->priv backpointer. |
| 4411 | */ |
| 4412 | RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4413 | } |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4414 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4415 | mutex_unlock(&cgroup_mutex); |
| 4416 | |
Tejun Heo | 0c21ead | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4417 | call_rcu(&css->rcu_head, css_free_rcu_fn); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4418 | } |
| 4419 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4420 | static void css_release(struct percpu_ref *ref) |
| 4421 | { |
| 4422 | struct cgroup_subsys_state *css = |
| 4423 | container_of(ref, struct cgroup_subsys_state, refcnt); |
| 4424 | |
Tejun Heo | 25e15d8 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4425 | INIT_WORK(&css->destroy_work, css_release_work_fn); |
| 4426 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4427 | } |
| 4428 | |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4429 | static void init_and_link_css(struct cgroup_subsys_state *css, |
| 4430 | struct cgroup_subsys *ss, struct cgroup *cgrp) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4431 | { |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4432 | lockdep_assert_held(&cgroup_mutex); |
| 4433 | |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4434 | cgroup_get(cgrp); |
| 4435 | |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4436 | memset(css, 0, sizeof(*css)); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4437 | css->cgroup = cgrp; |
Tejun Heo | 72c97e5 | 2013-08-08 20:11:22 -0400 | [diff] [blame] | 4438 | css->ss = ss; |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4439 | INIT_LIST_HEAD(&css->sibling); |
| 4440 | INIT_LIST_HEAD(&css->children); |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4441 | css->serial_nr = css_serial_nr_next++; |
Tejun Heo | 48ddbe1 | 2012-04-01 12:09:56 -0700 | [diff] [blame] | 4442 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4443 | if (cgroup_parent(cgrp)) { |
| 4444 | css->parent = cgroup_css(cgroup_parent(cgrp), ss); |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4445 | css_get(css->parent); |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4446 | } |
Tejun Heo | 0ae78e0 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 4447 | |
Tejun Heo | ca8bdca | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 4448 | BUG_ON(cgroup_css(cgrp, ss)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4449 | } |
| 4450 | |
Li Zefan | 2a4ac63 | 2013-07-31 16:16:40 +0800 | [diff] [blame] | 4451 | /* 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] | 4452 | static int online_css(struct cgroup_subsys_state *css) |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4453 | { |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 4454 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | b1929db | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4455 | int ret = 0; |
| 4456 | |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4457 | lockdep_assert_held(&cgroup_mutex); |
| 4458 | |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4459 | if (ss->css_online) |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4460 | ret = ss->css_online(css); |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4461 | if (!ret) { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4462 | css->flags |= CSS_ONLINE; |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4463 | rcu_assign_pointer(css->cgroup->subsys[ss->id], css); |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4464 | } |
Tejun Heo | b1929db | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4465 | return ret; |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4466 | } |
| 4467 | |
Li Zefan | 2a4ac63 | 2013-07-31 16:16:40 +0800 | [diff] [blame] | 4468 | /* 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] | 4469 | static void offline_css(struct cgroup_subsys_state *css) |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4470 | { |
Tejun Heo | 623f926 | 2013-08-13 11:01:55 -0400 | [diff] [blame] | 4471 | struct cgroup_subsys *ss = css->ss; |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4472 | |
| 4473 | lockdep_assert_held(&cgroup_mutex); |
| 4474 | |
| 4475 | if (!(css->flags & CSS_ONLINE)) |
| 4476 | return; |
| 4477 | |
Li Zefan | d7eeac1 | 2013-03-12 15:35:59 -0700 | [diff] [blame] | 4478 | if (ss->css_offline) |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4479 | ss->css_offline(css); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4480 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 4481 | css->flags &= ~CSS_ONLINE; |
Tejun Heo | e329780 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 4482 | RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL); |
Tejun Heo | f8f22e5 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4483 | |
| 4484 | wake_up_all(&css->cgroup->offline_waitq); |
Tejun Heo | a31f2d3 | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4485 | } |
| 4486 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4487 | /** |
| 4488 | * create_css - create a cgroup_subsys_state |
| 4489 | * @cgrp: the cgroup new css will be associated with |
| 4490 | * @ss: the subsys of new css |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4491 | * @visible: whether to create control knobs for the new css or not |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4492 | * |
| 4493 | * 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] | 4494 | * css is online and installed in @cgrp with all interface files created if |
| 4495 | * @visible. Returns 0 on success, -errno on failure. |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4496 | */ |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4497 | static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss, |
| 4498 | bool visible) |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4499 | { |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4500 | struct cgroup *parent = cgroup_parent(cgrp); |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4501 | struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4502 | struct cgroup_subsys_state *css; |
| 4503 | int err; |
| 4504 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4505 | lockdep_assert_held(&cgroup_mutex); |
| 4506 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4507 | css = ss->css_alloc(parent_css); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4508 | if (IS_ERR(css)) |
| 4509 | return PTR_ERR(css); |
| 4510 | |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4511 | init_and_link_css(css, ss, cgrp); |
Tejun Heo | a2bed82 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4512 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4513 | err = percpu_ref_init(&css->refcnt, css_release); |
| 4514 | if (err) |
Li Zefan | 3eb59ec | 2014-03-18 17:02:36 +0800 | [diff] [blame] | 4515 | goto err_free_css; |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4516 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4517 | err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT); |
| 4518 | if (err < 0) |
| 4519 | goto err_free_percpu_ref; |
| 4520 | css->id = err; |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4521 | |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4522 | if (visible) { |
| 4523 | err = cgroup_populate_dir(cgrp, 1 << ss->id); |
| 4524 | if (err) |
| 4525 | goto err_free_id; |
| 4526 | } |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4527 | |
| 4528 | /* @css is ready to be brought online now, make it visible */ |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4529 | list_add_tail_rcu(&css->sibling, &parent_css->children); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4530 | cgroup_idr_replace(&ss->css_idr, css, css->id); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4531 | |
| 4532 | err = online_css(css); |
| 4533 | if (err) |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4534 | goto err_list_del; |
Tejun Heo | 9441962 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4535 | |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4536 | if (ss->broken_hierarchy && !ss->warned_broken_hierarchy && |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4537 | cgroup_parent(parent)) { |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 4538 | 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] | 4539 | current->comm, current->pid, ss->name); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4540 | if (!strcmp(ss->name, "memory")) |
Joe Perches | ed3d261 | 2014-04-25 18:28:03 -0400 | [diff] [blame] | 4541 | 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] | 4542 | ss->warned_broken_hierarchy = true; |
| 4543 | } |
| 4544 | |
| 4545 | return 0; |
| 4546 | |
Tejun Heo | 1fed1b2 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4547 | err_list_del: |
| 4548 | list_del_rcu(&css->sibling); |
Linus Torvalds | 32d01dc | 2014-04-03 13:05:42 -0700 | [diff] [blame] | 4549 | cgroup_clear_dir(css->cgroup, 1 << css->ss->id); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4550 | err_free_id: |
| 4551 | cgroup_idr_remove(&ss->css_idr, css->id); |
Li Zefan | 3eb59ec | 2014-03-18 17:02:36 +0800 | [diff] [blame] | 4552 | err_free_percpu_ref: |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 4553 | percpu_ref_exit(&css->refcnt); |
Li Zefan | 3eb59ec | 2014-03-18 17:02:36 +0800 | [diff] [blame] | 4554 | err_free_css: |
Tejun Heo | a2bed82 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4555 | call_rcu(&css->rcu_head, css_free_rcu_fn); |
Tejun Heo | c81c925a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4556 | return err; |
| 4557 | } |
| 4558 | |
Tejun Heo | b3bfd98 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4559 | static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name, |
| 4560 | umode_t mode) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4561 | { |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4562 | struct cgroup *parent, *cgrp; |
| 4563 | struct cgroup_root *root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4564 | struct cgroup_subsys *ss; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4565 | struct kernfs_node *kn; |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4566 | struct cftype *base_files; |
Tejun Heo | b3bfd98 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4567 | int ssid, ret; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4568 | |
Alban Crequy | 71b1fb5 | 2014-08-18 12:20:20 +0100 | [diff] [blame] | 4569 | /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable. |
| 4570 | */ |
| 4571 | if (strchr(name, '\n')) |
| 4572 | return -EINVAL; |
| 4573 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4574 | parent = cgroup_kn_lock_live(parent_kn); |
| 4575 | if (!parent) |
| 4576 | return -ENODEV; |
| 4577 | root = parent->root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4578 | |
Tejun Heo | 0a950f6 | 2012-11-19 09:02:12 -0800 | [diff] [blame] | 4579 | /* allocate the cgroup and its ID, 0 is reserved for the root */ |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4580 | cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4581 | if (!cgrp) { |
| 4582 | ret = -ENOMEM; |
| 4583 | goto out_unlock; |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 4584 | } |
| 4585 | |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4586 | ret = percpu_ref_init(&cgrp->self.refcnt, css_release); |
| 4587 | if (ret) |
| 4588 | goto out_free_cgrp; |
| 4589 | |
Li Zefan | 0ab02ca | 2014-02-11 16:05:46 +0800 | [diff] [blame] | 4590 | /* |
| 4591 | * Temporarily set the pointer to NULL, so idr_find() won't return |
| 4592 | * a half-baked cgroup. |
| 4593 | */ |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4594 | 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] | 4595 | if (cgrp->id < 0) { |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4596 | ret = -ENOMEM; |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4597 | goto out_cancel_ref; |
Tejun Heo | 976c06b | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4598 | } |
| 4599 | |
Paul Menage | cc31edc | 2008-10-18 20:28:04 -0700 | [diff] [blame] | 4600 | init_cgroup_housekeeping(cgrp); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4601 | |
Tejun Heo | 9d800df | 2014-05-14 09:15:00 -0400 | [diff] [blame] | 4602 | cgrp->self.parent = &parent->self; |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4603 | cgrp->root = root; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4604 | |
Li Zefan | b6abdb0 | 2008-03-04 14:28:19 -0800 | [diff] [blame] | 4605 | if (notify_on_release(parent)) |
| 4606 | set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags); |
| 4607 | |
Tejun Heo | 2260e7f | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 4608 | if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags)) |
| 4609 | set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags); |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 4610 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4611 | /* create the directory */ |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4612 | kn = kernfs_create_dir(parent->kn, name, mode, cgrp); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4613 | if (IS_ERR(kn)) { |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4614 | ret = PTR_ERR(kn); |
| 4615 | goto out_free_id; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4616 | } |
| 4617 | cgrp->kn = kn; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4618 | |
Tejun Heo | 6f30558 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4619 | /* |
| 4620 | * This extra ref will be put in cgroup_free_fn() and guarantees |
| 4621 | * that @cgrp->kn is always accessible. |
| 4622 | */ |
| 4623 | kernfs_get(kn); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4624 | |
Tejun Heo | 0cb51d7 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4625 | cgrp->self.serial_nr = css_serial_nr_next++; |
Tejun Heo | 53fa526 | 2013-05-24 10:55:38 +0900 | [diff] [blame] | 4626 | |
Tejun Heo | 4e139af | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4627 | /* allocation complete, commit to creation */ |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4628 | list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children); |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 4629 | atomic_inc(&root->nr_cgrps); |
Tejun Heo | 59f5296 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4630 | cgroup_get(parent); |
Li Zefan | 415cf07 | 2013-04-08 14:35:02 +0800 | [diff] [blame] | 4631 | |
Tejun Heo | 0d80255 | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4632 | /* |
| 4633 | * @cgrp is now fully operational. If something fails after this |
| 4634 | * point, it'll be released via the normal destruction path. |
| 4635 | */ |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4636 | cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id); |
Li Zefan | 4e96ee8e | 2013-07-31 09:50:50 +0800 | [diff] [blame] | 4637 | |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4638 | ret = cgroup_kn_set_ugid(kn); |
| 4639 | if (ret) |
| 4640 | goto out_destroy; |
Tejun Heo | 49957f8 | 2014-04-07 16:44:47 -0400 | [diff] [blame] | 4641 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4642 | if (cgroup_on_dfl(cgrp)) |
| 4643 | base_files = cgroup_dfl_base_files; |
| 4644 | else |
| 4645 | base_files = cgroup_legacy_base_files; |
| 4646 | |
| 4647 | ret = cgroup_addrm_files(cgrp, base_files, true); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4648 | if (ret) |
| 4649 | goto out_destroy; |
Tejun Heo | 628f7cd | 2013-06-28 16:24:11 -0700 | [diff] [blame] | 4650 | |
Tejun Heo | 9d403e9 | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4651 | /* let's create and online css's */ |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 4652 | for_each_subsys(ss, ssid) { |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4653 | if (parent->child_subsys_mask & (1 << ssid)) { |
Tejun Heo | f63070d | 2014-07-08 18:02:57 -0400 | [diff] [blame] | 4654 | ret = create_css(cgrp, ss, |
| 4655 | parent->subtree_control & (1 << ssid)); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4656 | if (ret) |
| 4657 | goto out_destroy; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 4658 | } |
Tejun Heo | a863803 | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 4659 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4660 | |
Tejun Heo | bd53d61 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4661 | /* |
| 4662 | * On the default hierarchy, a child doesn't automatically inherit |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 4663 | * subtree_control from the parent. Each is configured manually. |
Tejun Heo | bd53d61 | 2014-04-23 11:13:16 -0400 | [diff] [blame] | 4664 | */ |
Tejun Heo | 667c249 | 2014-07-08 18:02:56 -0400 | [diff] [blame] | 4665 | if (!cgroup_on_dfl(cgrp)) { |
| 4666 | cgrp->subtree_control = parent->subtree_control; |
| 4667 | cgroup_refresh_child_subsys_mask(cgrp); |
| 4668 | } |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4669 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4670 | kernfs_activate(kn); |
| 4671 | |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4672 | ret = 0; |
| 4673 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4674 | |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4675 | out_free_id: |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 4676 | cgroup_idr_remove(&root->cgroup_idr, cgrp->id); |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4677 | out_cancel_ref: |
Tejun Heo | 9a1049d | 2014-06-28 08:10:14 -0400 | [diff] [blame] | 4678 | percpu_ref_exit(&cgrp->self.refcnt); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4679 | out_free_cgrp: |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 4680 | kfree(cgrp); |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4681 | out_unlock: |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4682 | cgroup_kn_unlock(parent_kn); |
Tejun Heo | e1b2dc1 | 2014-03-20 11:10:15 -0400 | [diff] [blame] | 4683 | return ret; |
Tejun Heo | ba0f4d7 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4684 | |
| 4685 | out_destroy: |
| 4686 | cgroup_destroy_locked(cgrp); |
| 4687 | goto out_unlock; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4688 | } |
| 4689 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4690 | /* |
| 4691 | * 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] | 4692 | * css_tryget_online() is now guaranteed to fail. Tell the subsystem to |
| 4693 | * initate destruction and put the css ref from kill_css(). |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4694 | */ |
| 4695 | static void css_killed_work_fn(struct work_struct *work) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4696 | { |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4697 | struct cgroup_subsys_state *css = |
| 4698 | container_of(work, struct cgroup_subsys_state, destroy_work); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4699 | |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4700 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4701 | offline_css(css); |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4702 | mutex_unlock(&cgroup_mutex); |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4703 | |
Tejun Heo | 09a503ea | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4704 | css_put(css); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4705 | } |
| 4706 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4707 | /* css kill confirmation processing requires process context, bounce */ |
| 4708 | static void css_killed_ref_fn(struct percpu_ref *ref) |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4709 | { |
| 4710 | struct cgroup_subsys_state *css = |
| 4711 | container_of(ref, struct cgroup_subsys_state, refcnt); |
| 4712 | |
Tejun Heo | 223dbc3 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4713 | INIT_WORK(&css->destroy_work, css_killed_work_fn); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 4714 | queue_work(cgroup_destroy_wq, &css->destroy_work); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4715 | } |
| 4716 | |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4717 | /** |
| 4718 | * kill_css - destroy a css |
| 4719 | * @css: css to destroy |
| 4720 | * |
| 4721 | * This function initiates destruction of @css by removing cgroup interface |
| 4722 | * files and putting its base reference. ->css_offline() will be invoked |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4723 | * asynchronously once css_tryget_online() is guaranteed to fail and when |
| 4724 | * the reference count reaches zero, @css will be released. |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 4725 | */ |
| 4726 | static void kill_css(struct cgroup_subsys_state *css) |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4727 | { |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 4728 | lockdep_assert_held(&cgroup_mutex); |
Tejun Heo | 9441962 | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4729 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4730 | /* |
| 4731 | * This must happen before css is disassociated with its cgroup. |
| 4732 | * See seq_css() for details. |
| 4733 | */ |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4734 | cgroup_clear_dir(css->cgroup, 1 << css->ss->id); |
Tejun Heo | 3c14f8b | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4735 | |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4736 | /* |
| 4737 | * Killing would put the base ref, but we need to keep it alive |
| 4738 | * until after ->css_offline(). |
| 4739 | */ |
| 4740 | css_get(css); |
| 4741 | |
| 4742 | /* |
| 4743 | * cgroup core guarantees that, by the time ->css_offline() is |
| 4744 | * invoked, no new css reference will be given out via |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4745 | * css_tryget_online(). We can't simply call percpu_ref_kill() and |
Tejun Heo | edae0c3 | 2013-08-13 20:22:51 -0400 | [diff] [blame] | 4746 | * proceed to offlining css's because percpu_ref_kill() doesn't |
| 4747 | * guarantee that the ref is seen as killed on all CPUs on return. |
| 4748 | * |
| 4749 | * Use percpu_ref_kill_and_confirm() to get notifications as each |
| 4750 | * css is confirmed to be seen as killed on all CPUs. |
| 4751 | */ |
| 4752 | percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn); |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4753 | } |
| 4754 | |
| 4755 | /** |
| 4756 | * cgroup_destroy_locked - the first stage of cgroup destruction |
| 4757 | * @cgrp: cgroup to be destroyed |
| 4758 | * |
| 4759 | * css's make use of percpu refcnts whose killing latency shouldn't be |
| 4760 | * exposed to userland and are RCU protected. Also, cgroup core needs to |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 4761 | * guarantee that css_tryget_online() won't succeed by the time |
| 4762 | * ->css_offline() is invoked. To satisfy all the requirements, |
| 4763 | * destruction is implemented in the following two steps. |
Tejun Heo | d3daf28 | 2013-06-13 19:39:16 -0700 | [diff] [blame] | 4764 | * |
| 4765 | * s1. Verify @cgrp can be destroyed and mark it dying. Remove all |
| 4766 | * userland visible parts and start killing the percpu refcnts of |
| 4767 | * css's. Set up so that the next stage will be kicked off once all |
| 4768 | * the percpu refcnts are confirmed to be killed. |
| 4769 | * |
| 4770 | * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the |
| 4771 | * rest of destruction. Once all cgroup references are gone, the |
| 4772 | * cgroup is RCU-freed. |
| 4773 | * |
| 4774 | * This function implements s1. After this step, @cgrp is gone as far as |
| 4775 | * the userland is concerned and a new cgroup with the same name may be |
| 4776 | * created. As cgroup doesn't care about the names internally, this |
| 4777 | * doesn't cause any problem. |
| 4778 | */ |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4779 | static int cgroup_destroy_locked(struct cgroup *cgrp) |
| 4780 | __releases(&cgroup_mutex) __acquires(&cgroup_mutex) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4781 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4782 | struct cgroup_subsys_state *css; |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4783 | bool empty; |
Tejun Heo | 1c6727a | 2013-12-06 15:11:56 -0500 | [diff] [blame] | 4784 | int ssid; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4785 | |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4786 | lockdep_assert_held(&cgroup_mutex); |
| 4787 | |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4788 | /* |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4789 | * css_set_rwsem synchronizes access to ->cset_links and prevents |
Tejun Heo | 89c5509 | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4790 | * @cgrp from being removed while put_css_set() is in progress. |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4791 | */ |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4792 | down_read(&css_set_rwsem); |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 4793 | empty = list_empty(&cgrp->cset_links); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 4794 | up_read(&css_set_rwsem); |
Tejun Heo | ddd6914 | 2013-06-12 21:04:54 -0700 | [diff] [blame] | 4795 | if (!empty) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4796 | return -EBUSY; |
Tejun Heo | ed957793 | 2012-11-05 09:16:58 -0800 | [diff] [blame] | 4797 | |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4798 | /* |
Tejun Heo | d5c419b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4799 | * Make sure there's no live children. We can't test emptiness of |
| 4800 | * ->self.children as dead children linger on it while being |
| 4801 | * drained; otherwise, "rmdir parent/child parent" may fail. |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 4802 | */ |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 4803 | if (css_has_online_children(&cgrp->self)) |
Hugh Dickins | bb78a92 | 2013-08-28 16:31:23 -0700 | [diff] [blame] | 4804 | return -EBUSY; |
| 4805 | |
| 4806 | /* |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4807 | * Mark @cgrp dead. This prevents further task migration and child |
Tejun Heo | de3f034 | 2014-05-16 13:22:49 -0400 | [diff] [blame] | 4808 | * creation by disabling cgroup_lock_live_group(). |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4809 | */ |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 4810 | cgrp->self.flags &= ~CSS_ONLINE; |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4811 | |
Tejun Heo | 249f346 | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 4812 | /* initiate massacre of all css's */ |
Tejun Heo | 1a90dd5 | 2012-11-05 09:16:59 -0800 | [diff] [blame] | 4813 | for_each_css(css, ssid, cgrp) |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4814 | kill_css(css); |
| 4815 | |
Tejun Heo | 184faf3 | 2014-05-16 13:22:51 -0400 | [diff] [blame] | 4816 | /* CSS_ONLINE is clear, remove from ->release_list for the last time */ |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4817 | raw_spin_lock(&release_list_lock); |
| 4818 | if (!list_empty(&cgrp->release_list)) |
| 4819 | list_del_init(&cgrp->release_list); |
| 4820 | raw_spin_unlock(&release_list_lock); |
| 4821 | |
| 4822 | /* |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 4823 | * Remove @cgrp directory along with the base files. @cgrp has an |
| 4824 | * extra ref on its kn. |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4825 | */ |
Tejun Heo | 01f6474 | 2014-05-13 12:19:23 -0400 | [diff] [blame] | 4826 | kernfs_remove(cgrp->kn); |
Tejun Heo | f20104d | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4827 | |
Tejun Heo | d51f39b | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 4828 | set_bit(CGRP_RELEASABLE, &cgroup_parent(cgrp)->flags); |
| 4829 | check_for_release(cgroup_parent(cgrp)); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4830 | |
Tejun Heo | 249f346 | 2014-05-14 09:15:01 -0400 | [diff] [blame] | 4831 | /* put the base reference */ |
Tejun Heo | 9d755d3 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4832 | percpu_ref_kill(&cgrp->self.refcnt); |
Tejun Heo | 455050d | 2013-06-13 19:27:41 -0700 | [diff] [blame] | 4833 | |
Tejun Heo | ea15f8c | 2013-06-13 19:27:42 -0700 | [diff] [blame] | 4834 | return 0; |
| 4835 | }; |
| 4836 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4837 | static int cgroup_rmdir(struct kernfs_node *kn) |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4838 | { |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4839 | struct cgroup *cgrp; |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4840 | int ret = 0; |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4841 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4842 | cgrp = cgroup_kn_lock_live(kn); |
| 4843 | if (!cgrp) |
| 4844 | return 0; |
| 4845 | cgroup_get(cgrp); /* for @kn->priv clearing */ |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4846 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4847 | ret = cgroup_destroy_locked(cgrp); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4848 | |
Tejun Heo | a9746d8 | 2014-05-13 12:19:22 -0400 | [diff] [blame] | 4849 | cgroup_kn_unlock(kn); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4850 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4851 | cgroup_put(cgrp); |
Tejun Heo | 42809dd | 2012-11-19 08:13:37 -0800 | [diff] [blame] | 4852 | return ret; |
| 4853 | } |
| 4854 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 4855 | static struct kernfs_syscall_ops cgroup_kf_syscall_ops = { |
| 4856 | .remount_fs = cgroup_remount, |
| 4857 | .show_options = cgroup_show_options, |
| 4858 | .mkdir = cgroup_mkdir, |
| 4859 | .rmdir = cgroup_rmdir, |
| 4860 | .rename = cgroup_rename, |
| 4861 | }; |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4862 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4863 | static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4864 | { |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4865 | struct cgroup_subsys_state *css; |
Diego Calleja | cfe36bd | 2007-11-14 16:58:54 -0800 | [diff] [blame] | 4866 | |
| 4867 | printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4868 | |
Tejun Heo | 648bb56 | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4869 | mutex_lock(&cgroup_mutex); |
| 4870 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4871 | idr_init(&ss->css_idr); |
Tejun Heo | 0adb070 | 2014-02-12 09:29:48 -0500 | [diff] [blame] | 4872 | INIT_LIST_HEAD(&ss->cfts); |
Tejun Heo | 8e3f654 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 4873 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4874 | /* Create the root cgroup state for this subsystem */ |
| 4875 | ss->root = &cgrp_dfl_root; |
| 4876 | css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4877 | /* We don't handle early failures gracefully */ |
| 4878 | BUG_ON(IS_ERR(css)); |
Tejun Heo | ddfcada | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4879 | init_and_link_css(css, ss, &cgrp_dfl_root.cgrp); |
Tejun Heo | 3b514d2 | 2014-05-16 13:22:47 -0400 | [diff] [blame] | 4880 | |
| 4881 | /* |
| 4882 | * Root csses are never destroyed and we can't initialize |
| 4883 | * percpu_ref during early init. Disable refcnting. |
| 4884 | */ |
| 4885 | css->flags |= CSS_NO_REF; |
| 4886 | |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4887 | if (early) { |
Tejun Heo | 9395a45 | 2014-05-14 09:15:02 -0400 | [diff] [blame] | 4888 | /* allocation can't be done safely during early init */ |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4889 | css->id = 1; |
| 4890 | } else { |
| 4891 | css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL); |
| 4892 | BUG_ON(css->id < 0); |
| 4893 | } |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4894 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4895 | /* Update the init_css_set to contain a subsys |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4896 | * pointer to this state - since the subsystem is |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4897 | * newly registered, all tasks and hence the |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4898 | * init_css_set is in the subsystem's root cgroup. */ |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4899 | init_css_set.subsys[ss->id] = css; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4900 | |
| 4901 | need_forkexit_callback |= ss->fork || ss->exit; |
| 4902 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 4903 | /* At system boot, before all subsystems have been |
| 4904 | * registered, no tasks have been forked, so we don't |
| 4905 | * need to invoke fork callbacks here. */ |
| 4906 | BUG_ON(!list_empty(&init_task.tasks)); |
| 4907 | |
Tejun Heo | ae7f164 | 2013-08-13 20:22:50 -0400 | [diff] [blame] | 4908 | BUG_ON(online_css(css)); |
Tejun Heo | a863803 | 2012-11-09 09:12:29 -0800 | [diff] [blame] | 4909 | |
Tejun Heo | 648bb56 | 2012-11-19 08:13:36 -0800 | [diff] [blame] | 4910 | mutex_unlock(&cgroup_mutex); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4911 | } |
| 4912 | |
| 4913 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4914 | * cgroup_init_early - cgroup initialization at system boot |
| 4915 | * |
| 4916 | * Initialize cgroups at system boot, and initialize any |
| 4917 | * subsystems that request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4918 | */ |
| 4919 | int __init cgroup_init_early(void) |
| 4920 | { |
Tejun Heo | 7b9a6ba | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 4921 | static struct cgroup_sb_opts __initdata opts; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4922 | struct cgroup_subsys *ss; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4923 | int i; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4924 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4925 | init_cgroup_root(&cgrp_dfl_root, &opts); |
Tejun Heo | 3b514d2 | 2014-05-16 13:22:47 -0400 | [diff] [blame] | 4926 | cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF; |
| 4927 | |
Tejun Heo | a4ea1cc | 2013-06-21 15:52:33 -0700 | [diff] [blame] | 4928 | RCU_INIT_POINTER(init_task.cgroups, &init_css_set); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 4929 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4930 | for_each_subsys(ss, i) { |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4931 | WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id, |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4932 | "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n", |
| 4933 | i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free, |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4934 | ss->id, ss->name); |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4935 | WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN, |
| 4936 | "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4937 | |
Tejun Heo | aec2502 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4938 | ss->id = i; |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 4939 | ss->name = cgroup_subsys_name[i]; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4940 | |
| 4941 | if (ss->early_init) |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4942 | cgroup_init_subsys(ss, true); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4943 | } |
| 4944 | return 0; |
| 4945 | } |
| 4946 | |
| 4947 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 4948 | * cgroup_init - cgroup initialization |
| 4949 | * |
| 4950 | * Register cgroup filesystem and /proc file, and initialize |
| 4951 | * any subsystems that didn't request early init. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4952 | */ |
| 4953 | int __init cgroup_init(void) |
| 4954 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4955 | struct cgroup_subsys *ss; |
Li Zefan | 0ac801f | 2013-01-10 11:49:27 +0800 | [diff] [blame] | 4956 | unsigned long key; |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4957 | int ssid, err; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 4958 | |
Tejun Heo | a14c687 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 4959 | BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files)); |
| 4960 | BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files)); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 4961 | |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4962 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4963 | |
Tejun Heo | 82fe9b0 | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 4964 | /* Add init_css_set to the hash table */ |
| 4965 | key = css_set_hash(init_css_set.subsys); |
| 4966 | hash_add(css_set_table, &init_css_set.hlist, key); |
| 4967 | |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 4968 | BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0)); |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 4969 | |
Tejun Heo | 54e7b4e | 2013-04-14 11:36:57 -0700 | [diff] [blame] | 4970 | mutex_unlock(&cgroup_mutex); |
| 4971 | |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4972 | for_each_subsys(ss, ssid) { |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 4973 | if (ss->early_init) { |
| 4974 | struct cgroup_subsys_state *css = |
| 4975 | init_css_set.subsys[ss->id]; |
| 4976 | |
| 4977 | css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, |
| 4978 | GFP_KERNEL); |
| 4979 | BUG_ON(css->id < 0); |
| 4980 | } else { |
| 4981 | cgroup_init_subsys(ss, false); |
| 4982 | } |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4983 | |
Tejun Heo | 2d8f243 | 2014-04-23 11:13:15 -0400 | [diff] [blame] | 4984 | list_add_tail(&init_css_set.e_cset_node[ssid], |
| 4985 | &cgrp_dfl_root.cgrp.e_csets[ssid]); |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4986 | |
| 4987 | /* |
Li Zefan | c731ae1 | 2014-06-05 17:16:30 +0800 | [diff] [blame] | 4988 | * Setting dfl_root subsys_mask needs to consider the |
| 4989 | * disabled flag and cftype registration needs kmalloc, |
| 4990 | * both of which aren't available during early_init. |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 4991 | */ |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 4992 | if (ss->disabled) |
| 4993 | continue; |
| 4994 | |
| 4995 | cgrp_dfl_root.subsys_mask |= 1 << ss->id; |
| 4996 | |
| 4997 | if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes) |
| 4998 | ss->dfl_cftypes = ss->legacy_cftypes; |
| 4999 | |
Tejun Heo | 5de4fa1 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 5000 | if (!ss->dfl_cftypes) |
| 5001 | cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id; |
| 5002 | |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 5003 | if (ss->dfl_cftypes == ss->legacy_cftypes) { |
| 5004 | WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes)); |
| 5005 | } else { |
| 5006 | WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes)); |
| 5007 | WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes)); |
Li Zefan | c731ae1 | 2014-06-05 17:16:30 +0800 | [diff] [blame] | 5008 | } |
Tejun Heo | 172a2c06 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5009 | } |
Greg KH | 676db4a | 2010-08-05 13:53:35 -0700 | [diff] [blame] | 5010 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 5011 | cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5012 | if (!cgroup_kobj) |
| 5013 | return -ENOMEM; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5014 | |
| 5015 | err = register_filesystem(&cgroup_fs_type); |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 5016 | if (err < 0) { |
| 5017 | kobject_put(cgroup_kobj); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5018 | return err; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5019 | } |
| 5020 | |
| 5021 | proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations); |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5022 | return 0; |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 5023 | } |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5024 | |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5025 | static int __init cgroup_wq_init(void) |
| 5026 | { |
| 5027 | /* |
| 5028 | * There isn't much point in executing destruction path in |
| 5029 | * parallel. Good chunk is serialized with cgroup_mutex anyway. |
Tejun Heo | 1a11533 | 2014-02-12 19:06:19 -0500 | [diff] [blame] | 5030 | * Use 1 for @max_active. |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5031 | * |
| 5032 | * We would prefer to do this in cgroup_init() above, but that |
| 5033 | * is called before init_workqueues(): so leave this until after. |
| 5034 | */ |
Tejun Heo | 1a11533 | 2014-02-12 19:06:19 -0500 | [diff] [blame] | 5035 | cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1); |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5036 | BUG_ON(!cgroup_destroy_wq); |
Tejun Heo | b1a2136 | 2013-11-29 10:42:58 -0500 | [diff] [blame] | 5037 | |
| 5038 | /* |
| 5039 | * Used to destroy pidlists and separate to serve as flush domain. |
| 5040 | * Cap @max_active to 1 too. |
| 5041 | */ |
| 5042 | cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy", |
| 5043 | 0, 1); |
| 5044 | BUG_ON(!cgroup_pidlist_destroy_wq); |
| 5045 | |
Tejun Heo | e5fca24 | 2013-11-22 17:14:39 -0500 | [diff] [blame] | 5046 | return 0; |
| 5047 | } |
| 5048 | core_initcall(cgroup_wq_init); |
| 5049 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5050 | /* |
| 5051 | * proc_cgroup_show() |
| 5052 | * - Print task's cgroup paths into seq_file, one line for each hierarchy |
| 5053 | * - Used for /proc/<pid>/cgroup. |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5054 | */ |
| 5055 | |
| 5056 | /* TODO: Use a proper seq_file iterator */ |
Al Viro | 8d8b97b | 2013-04-19 23:11:24 -0400 | [diff] [blame] | 5057 | int proc_cgroup_show(struct seq_file *m, void *v) |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5058 | { |
| 5059 | struct pid *pid; |
| 5060 | struct task_struct *tsk; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5061 | char *buf, *path; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5062 | int retval; |
Tejun Heo | 3dd06ff | 2014-03-19 10:23:54 -0400 | [diff] [blame] | 5063 | struct cgroup_root *root; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5064 | |
| 5065 | retval = -ENOMEM; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5066 | buf = kmalloc(PATH_MAX, GFP_KERNEL); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5067 | if (!buf) |
| 5068 | goto out; |
| 5069 | |
| 5070 | retval = -ESRCH; |
| 5071 | pid = m->private; |
| 5072 | tsk = get_pid_task(pid, PIDTYPE_PID); |
| 5073 | if (!tsk) |
| 5074 | goto out_free; |
| 5075 | |
| 5076 | retval = 0; |
| 5077 | |
| 5078 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5079 | down_read(&css_set_rwsem); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5080 | |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5081 | for_each_root(root) { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5082 | struct cgroup_subsys *ss; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 5083 | struct cgroup *cgrp; |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 5084 | int ssid, count = 0; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5085 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 5086 | if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible) |
Tejun Heo | 985ed67 | 2014-03-19 10:23:53 -0400 | [diff] [blame] | 5087 | continue; |
| 5088 | |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5089 | seq_printf(m, "%d:", root->hierarchy_id); |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 5090 | for_each_subsys(ss, ssid) |
Tejun Heo | f392e51 | 2014-04-23 11:13:14 -0400 | [diff] [blame] | 5091 | if (root->subsys_mask & (1 << ssid)) |
Tejun Heo | b85d204 | 2013-12-06 15:11:57 -0500 | [diff] [blame] | 5092 | seq_printf(m, "%s%s", count++ ? "," : "", ss->name); |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 5093 | if (strlen(root->name)) |
| 5094 | seq_printf(m, "%sname=%s", count ? "," : "", |
| 5095 | root->name); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5096 | seq_putc(m, ':'); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5097 | cgrp = task_cgroup_from_root(tsk, root); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5098 | path = cgroup_path(cgrp, buf, PATH_MAX); |
| 5099 | if (!path) { |
| 5100 | retval = -ENAMETOOLONG; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5101 | goto out_unlock; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5102 | } |
| 5103 | seq_puts(m, path); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5104 | seq_putc(m, '\n'); |
| 5105 | } |
| 5106 | |
| 5107 | out_unlock: |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5108 | up_read(&css_set_rwsem); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5109 | mutex_unlock(&cgroup_mutex); |
| 5110 | put_task_struct(tsk); |
| 5111 | out_free: |
| 5112 | kfree(buf); |
| 5113 | out: |
| 5114 | return retval; |
| 5115 | } |
| 5116 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5117 | /* Display information about each subsystem and each hierarchy */ |
| 5118 | static int proc_cgroupstats_show(struct seq_file *m, void *v) |
| 5119 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5120 | struct cgroup_subsys *ss; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5121 | int i; |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5122 | |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5123 | seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n"); |
Ben Blum | aae8aab | 2010-03-10 15:22:07 -0800 | [diff] [blame] | 5124 | /* |
| 5125 | * ideally we don't want subsystems moving around while we do this. |
| 5126 | * cgroup_mutex is also necessary to guarantee an atomic snapshot of |
| 5127 | * subsys/hierarchy state. |
| 5128 | */ |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5129 | mutex_lock(&cgroup_mutex); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5130 | |
| 5131 | for_each_subsys(ss, i) |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5132 | seq_printf(m, "%s\t%d\t%d\t%d\n", |
| 5133 | ss->name, ss->root->hierarchy_id, |
Tejun Heo | 3c9c825 | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5134 | atomic_read(&ss->root->nr_cgrps), !ss->disabled); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5135 | |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5136 | mutex_unlock(&cgroup_mutex); |
| 5137 | return 0; |
| 5138 | } |
| 5139 | |
| 5140 | static int cgroupstats_open(struct inode *inode, struct file *file) |
| 5141 | { |
Al Viro | 9dce07f | 2008-03-29 03:07:28 +0000 | [diff] [blame] | 5142 | return single_open(file, proc_cgroupstats_show, NULL); |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5143 | } |
| 5144 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 5145 | static const struct file_operations proc_cgroupstats_operations = { |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 5146 | .open = cgroupstats_open, |
| 5147 | .read = seq_read, |
| 5148 | .llseek = seq_lseek, |
| 5149 | .release = single_release, |
| 5150 | }; |
| 5151 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5152 | /** |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5153 | * cgroup_fork - initialize cgroup related fields during copy_process() |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 5154 | * @child: pointer to task_struct of forking parent process. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5155 | * |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5156 | * A task is associated with the init_css_set until cgroup_post_fork() |
| 5157 | * attaches it to the parent's css_set. Empty cg_list indicates that |
| 5158 | * @child isn't holding reference to its css_set. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5159 | */ |
| 5160 | void cgroup_fork(struct task_struct *child) |
| 5161 | { |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5162 | RCU_INIT_POINTER(child->cgroups, &init_css_set); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5163 | INIT_LIST_HEAD(&child->cg_list); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5164 | } |
| 5165 | |
| 5166 | /** |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 5167 | * cgroup_post_fork - called on a new task after adding it to the task list |
| 5168 | * @child: the task in question |
| 5169 | * |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5170 | * Adds the task to the list running through its css_set if necessary and |
| 5171 | * call the subsystem fork() callbacks. Has to be after the task is |
| 5172 | * 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] | 5173 | * 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] | 5174 | * list. |
Li Zefan | a043e3b | 2008-02-23 15:24:09 -0800 | [diff] [blame] | 5175 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5176 | void cgroup_post_fork(struct task_struct *child) |
| 5177 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5178 | struct cgroup_subsys *ss; |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5179 | int i; |
| 5180 | |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 5181 | /* |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5182 | * This may race against cgroup_enable_task_cg_links(). As that |
| 5183 | * function sets use_task_css_set_links before grabbing |
| 5184 | * tasklist_lock and we just went through tasklist_lock to add |
| 5185 | * @child, it's guaranteed that either we see the set |
| 5186 | * use_task_css_set_links or cgroup_enable_task_cg_lists() sees |
| 5187 | * @child during its iteration. |
| 5188 | * |
| 5189 | * If we won the race, @child is associated with %current's |
| 5190 | * css_set. Grabbing css_set_rwsem guarantees both that the |
| 5191 | * association is stable, and, on completion of the parent's |
| 5192 | * migration, @child is visible in the source of migration or |
| 5193 | * already in the destination cgroup. This guarantee is necessary |
| 5194 | * when implementing operations which need to migrate all tasks of |
| 5195 | * a cgroup to another. |
| 5196 | * |
| 5197 | * Note that if we lose to cgroup_enable_task_cg_links(), @child |
| 5198 | * will remain in init_css_set. This is safe because all tasks are |
| 5199 | * in the init_css_set before cg_links is enabled and there's no |
| 5200 | * operation which transfers all tasks out of init_css_set. |
Frederic Weisbecker | 3ce3230 | 2012-02-08 03:37:27 +0100 | [diff] [blame] | 5201 | */ |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5202 | if (use_task_css_set_links) { |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5203 | struct css_set *cset; |
| 5204 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5205 | down_write(&css_set_rwsem); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5206 | cset = task_css_set(current); |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5207 | if (list_empty(&child->cg_list)) { |
| 5208 | rcu_assign_pointer(child->cgroups, cset); |
| 5209 | list_add(&child->cg_list, &cset->tasks); |
| 5210 | get_css_set(cset); |
| 5211 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5212 | up_write(&css_set_rwsem); |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5213 | } |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5214 | |
| 5215 | /* |
| 5216 | * Call ss->fork(). This must happen after @child is linked on |
| 5217 | * css_set; otherwise, @child might change state between ->fork() |
| 5218 | * and addition to css_set. |
| 5219 | */ |
| 5220 | if (need_forkexit_callback) { |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5221 | for_each_subsys(ss, i) |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5222 | if (ss->fork) |
| 5223 | ss->fork(child); |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5224 | } |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5225 | } |
Tejun Heo | 5edee61 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 5226 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5227 | /** |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5228 | * cgroup_exit - detach cgroup from exiting task |
| 5229 | * @tsk: pointer to task_struct of exiting process |
| 5230 | * |
| 5231 | * Description: Detach cgroup from @tsk and release it. |
| 5232 | * |
| 5233 | * Note that cgroups marked notify_on_release force every task in |
| 5234 | * them to take the global cgroup_mutex mutex when exiting. |
| 5235 | * This could impact scaling on very large systems. Be reluctant to |
| 5236 | * use notify_on_release cgroups where very high task exit scaling |
| 5237 | * is required on large systems. |
| 5238 | * |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5239 | * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We |
| 5240 | * call cgroup_exit() while the task is still competent to handle |
| 5241 | * notify_on_release(), then leave the task attached to the root cgroup in |
| 5242 | * each hierarchy for the remainder of its exit. No need to bother with |
| 5243 | * 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] | 5244 | * with migration path - PF_EXITING is visible to migration path. |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5245 | */ |
Li Zefan | 1ec4183 | 2014-03-28 15:22:19 +0800 | [diff] [blame] | 5246 | void cgroup_exit(struct task_struct *tsk) |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5247 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5248 | struct cgroup_subsys *ss; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5249 | struct css_set *cset; |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5250 | bool put_cset = false; |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5251 | int i; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5252 | |
| 5253 | /* |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5254 | * Unlink from @tsk from its css_set. As migration path can't race |
| 5255 | * with us, we can check cg_list without grabbing css_set_rwsem. |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5256 | */ |
| 5257 | if (!list_empty(&tsk->cg_list)) { |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5258 | down_write(&css_set_rwsem); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5259 | list_del_init(&tsk->cg_list); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5260 | up_write(&css_set_rwsem); |
Tejun Heo | 0e1d768 | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5261 | put_cset = true; |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 5262 | } |
| 5263 | |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5264 | /* Reassign the task to the init_css_set. */ |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 5265 | cset = task_css_set(tsk); |
| 5266 | RCU_INIT_POINTER(tsk->cgroups, &init_css_set); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5267 | |
Li Zefan | 1ec4183 | 2014-03-28 15:22:19 +0800 | [diff] [blame] | 5268 | if (need_forkexit_callback) { |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5269 | /* see cgroup_post_fork() for details */ |
| 5270 | for_each_subsys(ss, i) { |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5271 | if (ss->exit) { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5272 | struct cgroup_subsys_state *old_css = cset->subsys[i]; |
| 5273 | struct cgroup_subsys_state *css = task_css(tsk, i); |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5274 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5275 | ss->exit(css, old_css, tsk); |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5276 | } |
| 5277 | } |
| 5278 | } |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 5279 | |
Tejun Heo | eaf797a | 2014-02-25 10:04:03 -0500 | [diff] [blame] | 5280 | if (put_cset) |
| 5281 | put_css_set(cset, true); |
Paul Menage | b4f48b6 | 2007-10-18 23:39:33 -0700 | [diff] [blame] | 5282 | } |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 5283 | |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 5284 | static void check_for_release(struct cgroup *cgrp) |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5285 | { |
Tejun Heo | f3d4650 | 2014-05-16 13:22:52 -0400 | [diff] [blame] | 5286 | if (cgroup_is_releasable(cgrp) && list_empty(&cgrp->cset_links) && |
| 5287 | !css_has_online_children(&cgrp->self)) { |
Li Zefan | f50daa7 | 2013-03-01 15:06:07 +0800 | [diff] [blame] | 5288 | /* |
| 5289 | * Control Group is currently removeable. If it's not |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5290 | * already queued for a userspace notification, queue |
Li Zefan | f50daa7 | 2013-03-01 15:06:07 +0800 | [diff] [blame] | 5291 | * it now |
| 5292 | */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5293 | int need_schedule_work = 0; |
Li Zefan | f50daa7 | 2013-03-01 15:06:07 +0800 | [diff] [blame] | 5294 | |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 5295 | raw_spin_lock(&release_list_lock); |
Tejun Heo | 54766d4 | 2013-06-12 21:04:53 -0700 | [diff] [blame] | 5296 | if (!cgroup_is_dead(cgrp) && |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 5297 | list_empty(&cgrp->release_list)) { |
| 5298 | list_add(&cgrp->release_list, &release_list); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5299 | need_schedule_work = 1; |
| 5300 | } |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 5301 | raw_spin_unlock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5302 | if (need_schedule_work) |
| 5303 | schedule_work(&release_agent_work); |
| 5304 | } |
| 5305 | } |
| 5306 | |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5307 | /* |
| 5308 | * Notify userspace when a cgroup is released, by running the |
| 5309 | * configured release agent with the name of the cgroup (path |
| 5310 | * relative to the root of cgroup file system) as the argument. |
| 5311 | * |
| 5312 | * Most likely, this user command will try to rmdir this cgroup. |
| 5313 | * |
| 5314 | * This races with the possibility that some other task will be |
| 5315 | * attached to this cgroup before it is removed, or that some other |
| 5316 | * user task will 'mkdir' a child cgroup of this cgroup. That's ok. |
| 5317 | * The presumed 'rmdir' will fail quietly if this cgroup is no longer |
| 5318 | * unused, and this cgroup will be reprieved from its death sentence, |
| 5319 | * to continue to serve a useful existence. Next time it's released, |
| 5320 | * we will get notified again, if it still has 'notify_on_release' set. |
| 5321 | * |
| 5322 | * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which |
| 5323 | * means only wait until the task is successfully execve()'d. The |
| 5324 | * separate release agent task is forked by call_usermodehelper(), |
| 5325 | * then control in this thread returns here, without waiting for the |
| 5326 | * release agent task. We don't bother to wait because the caller of |
| 5327 | * this routine has no use for the exit status of the release agent |
| 5328 | * task, so no sense holding our caller up for that. |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5329 | */ |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5330 | static void cgroup_release_agent(struct work_struct *work) |
| 5331 | { |
| 5332 | BUG_ON(work != &release_agent_work); |
| 5333 | mutex_lock(&cgroup_mutex); |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 5334 | raw_spin_lock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5335 | while (!list_empty(&release_list)) { |
| 5336 | char *argv[3], *envp[3]; |
| 5337 | int i; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5338 | char *pathbuf = NULL, *agentbuf = NULL, *path; |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 5339 | struct cgroup *cgrp = list_entry(release_list.next, |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5340 | struct cgroup, |
| 5341 | release_list); |
Paul Menage | bd89aab | 2007-10-18 23:40:44 -0700 | [diff] [blame] | 5342 | list_del_init(&cgrp->release_list); |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 5343 | raw_spin_unlock(&release_list_lock); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5344 | pathbuf = kmalloc(PATH_MAX, GFP_KERNEL); |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 5345 | if (!pathbuf) |
| 5346 | goto continue_free; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5347 | path = cgroup_path(cgrp, pathbuf, PATH_MAX); |
| 5348 | if (!path) |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 5349 | goto continue_free; |
| 5350 | agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL); |
| 5351 | if (!agentbuf) |
| 5352 | goto continue_free; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5353 | |
| 5354 | i = 0; |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 5355 | argv[i++] = agentbuf; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5356 | argv[i++] = path; |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5357 | argv[i] = NULL; |
| 5358 | |
| 5359 | i = 0; |
| 5360 | /* minimal command environment */ |
| 5361 | envp[i++] = "HOME=/"; |
| 5362 | envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin"; |
| 5363 | envp[i] = NULL; |
| 5364 | |
| 5365 | /* Drop the lock while we invoke the usermode helper, |
| 5366 | * since the exec could involve hitting disk and hence |
| 5367 | * be a slow process */ |
| 5368 | mutex_unlock(&cgroup_mutex); |
| 5369 | call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5370 | mutex_lock(&cgroup_mutex); |
Paul Menage | e788e06 | 2008-07-25 01:46:59 -0700 | [diff] [blame] | 5371 | continue_free: |
| 5372 | kfree(pathbuf); |
| 5373 | kfree(agentbuf); |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 5374 | raw_spin_lock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5375 | } |
Thomas Gleixner | cdcc136 | 2009-07-25 16:47:45 +0200 | [diff] [blame] | 5376 | raw_spin_unlock(&release_list_lock); |
Paul Menage | 81a6a5c | 2007-10-18 23:39:38 -0700 | [diff] [blame] | 5377 | mutex_unlock(&cgroup_mutex); |
| 5378 | } |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5379 | |
| 5380 | static int __init cgroup_disable(char *str) |
| 5381 | { |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5382 | struct cgroup_subsys *ss; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5383 | char *token; |
Tejun Heo | 30159ec | 2013-06-25 11:53:37 -0700 | [diff] [blame] | 5384 | int i; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5385 | |
| 5386 | while ((token = strsep(&str, ",")) != NULL) { |
| 5387 | if (!*token) |
| 5388 | continue; |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5389 | |
Tejun Heo | 3ed80a6 | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5390 | for_each_subsys(ss, i) { |
Paul Menage | 8bab8dd | 2008-04-04 14:29:57 -0700 | [diff] [blame] | 5391 | if (!strcmp(token, ss->name)) { |
| 5392 | ss->disabled = 1; |
| 5393 | printk(KERN_INFO "Disabling %s control group" |
| 5394 | " subsystem\n", ss->name); |
| 5395 | break; |
| 5396 | } |
| 5397 | } |
| 5398 | } |
| 5399 | return 1; |
| 5400 | } |
| 5401 | __setup("cgroup_disable=", cgroup_disable); |
KAMEZAWA Hiroyuki | 38460b4 | 2009-04-02 16:57:25 -0700 | [diff] [blame] | 5402 | |
Tejun Heo | a8ddc82 | 2014-07-15 11:05:10 -0400 | [diff] [blame] | 5403 | static int __init cgroup_set_legacy_files_on_dfl(char *str) |
| 5404 | { |
| 5405 | printk("cgroup: using legacy files on the default hierarchy\n"); |
| 5406 | cgroup_legacy_files_on_dfl = true; |
| 5407 | return 0; |
| 5408 | } |
| 5409 | __setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl); |
| 5410 | |
Tejun Heo | b77d7b6 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 5411 | /** |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 5412 | * css_tryget_online_from_dir - get corresponding css from a cgroup dentry |
Tejun Heo | 35cf083 | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 5413 | * @dentry: directory dentry of interest |
| 5414 | * @ss: subsystem of interest |
Tejun Heo | b77d7b6 | 2013-08-13 11:01:54 -0400 | [diff] [blame] | 5415 | * |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5416 | * If @dentry is a directory for a cgroup which has @ss enabled on it, try |
| 5417 | * to get the corresponding css and return it. If such css doesn't exist |
| 5418 | * or can't be pinned, an ERR_PTR value is returned. |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5419 | */ |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 5420 | struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry, |
| 5421 | struct cgroup_subsys *ss) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5422 | { |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5423 | struct kernfs_node *kn = kernfs_node_from_dentry(dentry); |
| 5424 | struct cgroup_subsys_state *css = NULL; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5425 | struct cgroup *cgrp; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5426 | |
Tejun Heo | 35cf083 | 2013-08-26 18:40:56 -0400 | [diff] [blame] | 5427 | /* is @dentry a cgroup dir? */ |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5428 | if (dentry->d_sb->s_type != &cgroup_fs_type || !kn || |
| 5429 | kernfs_type(kn) != KERNFS_DIR) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5430 | return ERR_PTR(-EBADF); |
| 5431 | |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5432 | rcu_read_lock(); |
| 5433 | |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5434 | /* |
| 5435 | * This path doesn't originate from kernfs and @kn could already |
| 5436 | * have been or be removed at any point. @kn->priv is RCU |
Li Zefan | a418948 | 2014-09-04 14:43:07 +0800 | [diff] [blame] | 5437 | * protected for this access. See css_release_work_fn() for details. |
Tejun Heo | 2bd59d4 | 2014-02-11 11:52:49 -0500 | [diff] [blame] | 5438 | */ |
| 5439 | cgrp = rcu_dereference(kn->priv); |
| 5440 | if (cgrp) |
| 5441 | css = cgroup_css(cgrp, ss); |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5442 | |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 5443 | if (!css || !css_tryget_online(css)) |
Tejun Heo | 5a17f54 | 2014-02-11 11:52:47 -0500 | [diff] [blame] | 5444 | css = ERR_PTR(-ENOENT); |
| 5445 | |
| 5446 | rcu_read_unlock(); |
| 5447 | return css; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5448 | } |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5449 | |
Li Zefan | 1cb650b | 2013-08-19 10:05:24 +0800 | [diff] [blame] | 5450 | /** |
| 5451 | * css_from_id - lookup css by id |
| 5452 | * @id: the cgroup id |
| 5453 | * @ss: cgroup subsys to be looked into |
| 5454 | * |
| 5455 | * Returns the css if there's valid one with @id, otherwise returns NULL. |
| 5456 | * Should be called under rcu_read_lock(). |
| 5457 | */ |
| 5458 | struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss) |
| 5459 | { |
Tejun Heo | 6fa4918 | 2014-05-04 15:09:13 -0400 | [diff] [blame] | 5460 | WARN_ON_ONCE(!rcu_read_lock_held()); |
Tejun Heo | 15a4c83 | 2014-05-04 15:09:14 -0400 | [diff] [blame] | 5461 | return idr_find(&ss->css_idr, id); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 5462 | } |
| 5463 | |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5464 | #ifdef CONFIG_CGROUP_DEBUG |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5465 | static struct cgroup_subsys_state * |
| 5466 | debug_css_alloc(struct cgroup_subsys_state *parent_css) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5467 | { |
| 5468 | struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL); |
| 5469 | |
| 5470 | if (!css) |
| 5471 | return ERR_PTR(-ENOMEM); |
| 5472 | |
| 5473 | return css; |
| 5474 | } |
| 5475 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5476 | static void debug_css_free(struct cgroup_subsys_state *css) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5477 | { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 5478 | kfree(css); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5479 | } |
| 5480 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5481 | static u64 debug_taskcount_read(struct cgroup_subsys_state *css, |
| 5482 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5483 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5484 | return cgroup_task_count(css->cgroup); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5485 | } |
| 5486 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5487 | static u64 current_css_set_read(struct cgroup_subsys_state *css, |
| 5488 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5489 | { |
| 5490 | return (u64)(unsigned long)current->cgroups; |
| 5491 | } |
| 5492 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5493 | static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css, |
Li Zefan | 03c78cb | 2013-06-14 11:17:19 +0800 | [diff] [blame] | 5494 | struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5495 | { |
| 5496 | u64 count; |
| 5497 | |
| 5498 | rcu_read_lock(); |
Tejun Heo | a8ad805 | 2013-06-21 15:52:04 -0700 | [diff] [blame] | 5499 | count = atomic_read(&task_css_set(current)->refcount); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5500 | rcu_read_unlock(); |
| 5501 | return count; |
| 5502 | } |
| 5503 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5504 | 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] | 5505 | { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5506 | struct cgrp_cset_link *link; |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5507 | struct css_set *cset; |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5508 | char *name_buf; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5509 | |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5510 | name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL); |
| 5511 | if (!name_buf) |
| 5512 | return -ENOMEM; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5513 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5514 | down_read(&css_set_rwsem); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5515 | rcu_read_lock(); |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5516 | cset = rcu_dereference(current->cgroups); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5517 | list_for_each_entry(link, &cset->cgrp_links, cgrp_link) { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5518 | struct cgroup *c = link->cgrp; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5519 | |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 5520 | cgroup_name(c, name_buf, NAME_MAX + 1); |
Paul Menage | 2c6ab6d | 2009-09-23 15:56:23 -0700 | [diff] [blame] | 5521 | seq_printf(seq, "Root %d group %s\n", |
Tejun Heo | a2dd424 | 2014-03-19 10:23:55 -0400 | [diff] [blame] | 5522 | c->root->hierarchy_id, name_buf); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5523 | } |
| 5524 | rcu_read_unlock(); |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5525 | up_read(&css_set_rwsem); |
Tejun Heo | e61734c | 2014-02-12 09:29:50 -0500 | [diff] [blame] | 5526 | kfree(name_buf); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5527 | return 0; |
| 5528 | } |
| 5529 | |
| 5530 | #define MAX_TASKS_SHOWN_PER_CSS 25 |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5531 | static int cgroup_css_links_read(struct seq_file *seq, void *v) |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5532 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5533 | struct cgroup_subsys_state *css = seq_css(seq); |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5534 | struct cgrp_cset_link *link; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5535 | |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5536 | down_read(&css_set_rwsem); |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5537 | list_for_each_entry(link, &css->cgroup->cset_links, cset_link) { |
Tejun Heo | 69d0206 | 2013-06-12 21:04:50 -0700 | [diff] [blame] | 5538 | struct css_set *cset = link->cset; |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5539 | struct task_struct *task; |
| 5540 | int count = 0; |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5541 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5542 | seq_printf(seq, "css_set %p\n", cset); |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5543 | |
Tejun Heo | 5abb885 | 2013-06-12 21:04:49 -0700 | [diff] [blame] | 5544 | list_for_each_entry(task, &cset->tasks, cg_list) { |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5545 | if (count++ > MAX_TASKS_SHOWN_PER_CSS) |
| 5546 | goto overflow; |
| 5547 | seq_printf(seq, " task %d\n", task_pid_vnr(task)); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5548 | } |
Tejun Heo | c756112 | 2014-02-25 10:04:01 -0500 | [diff] [blame] | 5549 | |
| 5550 | list_for_each_entry(task, &cset->mg_tasks, cg_list) { |
| 5551 | if (count++ > MAX_TASKS_SHOWN_PER_CSS) |
| 5552 | goto overflow; |
| 5553 | seq_printf(seq, " task %d\n", task_pid_vnr(task)); |
| 5554 | } |
| 5555 | continue; |
| 5556 | overflow: |
| 5557 | seq_puts(seq, " ...\n"); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5558 | } |
Tejun Heo | 96d365e | 2014-02-13 06:58:40 -0500 | [diff] [blame] | 5559 | up_read(&css_set_rwsem); |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5560 | return 0; |
| 5561 | } |
| 5562 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5563 | static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft) |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5564 | { |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 5565 | return test_bit(CGRP_RELEASABLE, &css->cgroup->flags); |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5566 | } |
| 5567 | |
| 5568 | static struct cftype debug_files[] = { |
| 5569 | { |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5570 | .name = "taskcount", |
| 5571 | .read_u64 = debug_taskcount_read, |
| 5572 | }, |
| 5573 | |
| 5574 | { |
| 5575 | .name = "current_css_set", |
| 5576 | .read_u64 = current_css_set_read, |
| 5577 | }, |
| 5578 | |
| 5579 | { |
| 5580 | .name = "current_css_set_refcount", |
| 5581 | .read_u64 = current_css_set_refcount_read, |
| 5582 | }, |
| 5583 | |
| 5584 | { |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5585 | .name = "current_css_set_cg_links", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5586 | .seq_show = current_css_set_cg_links_read, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5587 | }, |
| 5588 | |
| 5589 | { |
| 5590 | .name = "cgroup_css_links", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 5591 | .seq_show = cgroup_css_links_read, |
Paul Menage | 7717f7b | 2009-09-23 15:56:22 -0700 | [diff] [blame] | 5592 | }, |
| 5593 | |
| 5594 | { |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5595 | .name = "releasable", |
| 5596 | .read_u64 = releasable_read, |
| 5597 | }, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5598 | |
Tejun Heo | 4baf6e3 | 2012-04-01 12:09:55 -0700 | [diff] [blame] | 5599 | { } /* terminate */ |
| 5600 | }; |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5601 | |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 5602 | struct cgroup_subsys debug_cgrp_subsys = { |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 5603 | .css_alloc = debug_css_alloc, |
| 5604 | .css_free = debug_css_free, |
Tejun Heo | 5577964 | 2014-07-15 11:05:09 -0400 | [diff] [blame] | 5605 | .legacy_cftypes = debug_files, |
Paul Menage | fe69343 | 2009-09-23 15:56:20 -0700 | [diff] [blame] | 5606 | }; |
| 5607 | #endif /* CONFIG_CGROUP_DEBUG */ |