blob: e8aad69f0d696c70b21dc8af16b0d28d990b3eda [file] [log] [blame]
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07001/*
Lai Jiangshan47c59802008-10-18 20:28:07 -07002 * device_cgroup.c - device cgroup subsystem
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003 *
4 * Copyright 2007 IBM Corp
5 */
6
7#include <linux/device_cgroup.h>
8#include <linux/cgroup.h>
9#include <linux/ctype.h>
10#include <linux/list.h>
11#include <linux/uaccess.h>
Serge E. Hallyn29486df2008-04-29 01:00:14 -070012#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Lai Jiangshan47c59802008-10-18 20:28:07 -070014#include <linux/rcupdate.h>
Li Zefanb4046f02009-04-02 16:57:32 -070015#include <linux/mutex.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070016
17#define ACC_MKNOD 1
18#define ACC_READ 2
19#define ACC_WRITE 4
20#define ACC_MASK (ACC_MKNOD | ACC_READ | ACC_WRITE)
21
22#define DEV_BLOCK 1
23#define DEV_CHAR 2
24#define DEV_ALL 4 /* this represents all devices */
25
Li Zefanb4046f02009-04-02 16:57:32 -070026static DEFINE_MUTEX(devcgroup_mutex);
27
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -050028enum devcg_behavior {
29 DEVCG_DEFAULT_NONE,
30 DEVCG_DEFAULT_ALLOW,
31 DEVCG_DEFAULT_DENY,
32};
33
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070034/*
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070035 * exception list locking rules:
Li Zefanb4046f02009-04-02 16:57:32 -070036 * hold devcgroup_mutex for update/read.
Lai Jiangshan47c59802008-10-18 20:28:07 -070037 * hold rcu_read_lock() for read.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070038 */
39
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070040struct dev_exception_item {
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070041 u32 major, minor;
42 short type;
43 short access;
44 struct list_head list;
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -070045 struct rcu_head rcu;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070046};
47
48struct dev_cgroup {
49 struct cgroup_subsys_state css;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070050 struct list_head exceptions;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -050051 enum devcg_behavior behavior;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070052};
53
Pavel Emelyanovb66862f2008-06-05 22:46:24 -070054static inline struct dev_cgroup *css_to_devcgroup(struct cgroup_subsys_state *s)
55{
56 return container_of(s, struct dev_cgroup, css);
57}
58
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070059static inline struct dev_cgroup *cgroup_to_devcgroup(struct cgroup *cgroup)
60{
Pavel Emelyanovb66862f2008-06-05 22:46:24 -070061 return css_to_devcgroup(cgroup_subsys_state(cgroup, devices_subsys_id));
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070062}
63
Paul Menagef92523e2008-07-25 01:47:03 -070064static inline struct dev_cgroup *task_devcgroup(struct task_struct *task)
65{
66 return css_to_devcgroup(task_subsys_state(task, devices_subsys_id));
67}
68
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070069struct cgroup_subsys devices_subsys;
70
Li Zefan761b3ef2012-01-31 13:47:36 +080071static int devcgroup_can_attach(struct cgroup *new_cgrp,
72 struct cgroup_taskset *set)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070073{
Tejun Heo2f7ee562011-12-12 18:12:21 -080074 struct task_struct *task = cgroup_taskset_first(set);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070075
Tejun Heo2f7ee562011-12-12 18:12:21 -080076 if (current != task && !capable(CAP_SYS_ADMIN))
77 return -EPERM;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070078 return 0;
79}
80
81/*
Li Zefanb4046f02009-04-02 16:57:32 -070082 * called under devcgroup_mutex
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070083 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070084static int dev_exceptions_copy(struct list_head *dest, struct list_head *orig)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070085{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070086 struct dev_exception_item *ex, *tmp, *new;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070087
Tejun Heo4b1c7842012-11-06 09:16:53 -080088 lockdep_assert_held(&devcgroup_mutex);
89
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070090 list_for_each_entry(ex, orig, list) {
91 new = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070092 if (!new)
93 goto free_and_exit;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070094 list_add_tail(&new->list, dest);
95 }
96
97 return 0;
98
99free_and_exit:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700100 list_for_each_entry_safe(ex, tmp, dest, list) {
101 list_del(&ex->list);
102 kfree(ex);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700103 }
104 return -ENOMEM;
105}
106
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700107/*
Li Zefanb4046f02009-04-02 16:57:32 -0700108 * called under devcgroup_mutex
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700109 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700110static int dev_exception_add(struct dev_cgroup *dev_cgroup,
111 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700112{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700113 struct dev_exception_item *excopy, *walk;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700114
Tejun Heo4b1c7842012-11-06 09:16:53 -0800115 lockdep_assert_held(&devcgroup_mutex);
116
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700117 excopy = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
118 if (!excopy)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700119 return -ENOMEM;
120
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700121 list_for_each_entry(walk, &dev_cgroup->exceptions, list) {
122 if (walk->type != ex->type)
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700123 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700124 if (walk->major != ex->major)
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700125 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700126 if (walk->minor != ex->minor)
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700127 continue;
128
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700129 walk->access |= ex->access;
130 kfree(excopy);
131 excopy = NULL;
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700132 }
133
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700134 if (excopy != NULL)
135 list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700136 return 0;
137}
138
139/*
Li Zefanb4046f02009-04-02 16:57:32 -0700140 * called under devcgroup_mutex
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700141 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700142static void dev_exception_rm(struct dev_cgroup *dev_cgroup,
143 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700144{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700145 struct dev_exception_item *walk, *tmp;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700146
Tejun Heo4b1c7842012-11-06 09:16:53 -0800147 lockdep_assert_held(&devcgroup_mutex);
148
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700149 list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) {
150 if (walk->type != ex->type)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700151 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700152 if (walk->major != ex->major)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700153 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700154 if (walk->minor != ex->minor)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700155 continue;
156
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700157 walk->access &= ~ex->access;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700158 if (!walk->access) {
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700159 list_del_rcu(&walk->list);
Lai Jiangshan6034f7e2011-03-15 18:07:57 +0800160 kfree_rcu(walk, rcu);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700161 }
162 }
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700163}
164
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800165static void __dev_exception_clean(struct dev_cgroup *dev_cgroup)
166{
167 struct dev_exception_item *ex, *tmp;
168
169 list_for_each_entry_safe(ex, tmp, &dev_cgroup->exceptions, list) {
170 list_del_rcu(&ex->list);
171 kfree_rcu(ex, rcu);
172 }
173}
174
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700175/**
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700176 * dev_exception_clean - frees all entries of the exception list
177 * @dev_cgroup: dev_cgroup with the exception list to be cleaned
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700178 *
179 * called under devcgroup_mutex
180 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700181static void dev_exception_clean(struct dev_cgroup *dev_cgroup)
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700182{
Tejun Heo4b1c7842012-11-06 09:16:53 -0800183 lockdep_assert_held(&devcgroup_mutex);
184
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800185 __dev_exception_clean(dev_cgroup);
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700186}
187
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500188static inline bool is_devcg_online(const struct dev_cgroup *devcg)
189{
190 return (devcg->behavior != DEVCG_DEFAULT_NONE);
191}
192
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500193/**
194 * devcgroup_online - initializes devcgroup's behavior and exceptions based on
195 * parent's
196 * @cgroup: cgroup getting online
197 * returns 0 in case of success, error code otherwise
198 */
199static int devcgroup_online(struct cgroup *cgroup)
200{
201 struct dev_cgroup *dev_cgroup, *parent_dev_cgroup = NULL;
202 int ret = 0;
203
204 mutex_lock(&devcgroup_mutex);
205 dev_cgroup = cgroup_to_devcgroup(cgroup);
206 if (cgroup->parent)
207 parent_dev_cgroup = cgroup_to_devcgroup(cgroup->parent);
208
209 if (parent_dev_cgroup == NULL)
210 dev_cgroup->behavior = DEVCG_DEFAULT_ALLOW;
211 else {
212 ret = dev_exceptions_copy(&dev_cgroup->exceptions,
213 &parent_dev_cgroup->exceptions);
214 if (!ret)
215 dev_cgroup->behavior = parent_dev_cgroup->behavior;
216 }
217 mutex_unlock(&devcgroup_mutex);
218
219 return ret;
220}
221
222static void devcgroup_offline(struct cgroup *cgroup)
223{
224 struct dev_cgroup *dev_cgroup = cgroup_to_devcgroup(cgroup);
225
226 mutex_lock(&devcgroup_mutex);
227 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
228 mutex_unlock(&devcgroup_mutex);
229}
230
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700231/*
232 * called from kernel/cgroup.c with cgroup_lock() held.
233 */
Tejun Heo92fb9742012-11-19 08:13:38 -0800234static struct cgroup_subsys_state *devcgroup_css_alloc(struct cgroup *cgroup)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700235{
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500236 struct dev_cgroup *dev_cgroup;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700237
238 dev_cgroup = kzalloc(sizeof(*dev_cgroup), GFP_KERNEL);
239 if (!dev_cgroup)
240 return ERR_PTR(-ENOMEM);
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700241 INIT_LIST_HEAD(&dev_cgroup->exceptions);
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500242 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700243
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700244 return &dev_cgroup->css;
245}
246
Tejun Heo92fb9742012-11-19 08:13:38 -0800247static void devcgroup_css_free(struct cgroup *cgroup)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700248{
249 struct dev_cgroup *dev_cgroup;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700250
251 dev_cgroup = cgroup_to_devcgroup(cgroup);
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800252 __dev_exception_clean(dev_cgroup);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700253 kfree(dev_cgroup);
254}
255
256#define DEVCG_ALLOW 1
257#define DEVCG_DENY 2
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700258#define DEVCG_LIST 3
259
Li Zefan17d213f2008-07-13 12:14:02 -0700260#define MAJMINLEN 13
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700261#define ACCLEN 4
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700262
263static void set_access(char *acc, short access)
264{
265 int idx = 0;
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700266 memset(acc, 0, ACCLEN);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700267 if (access & ACC_READ)
268 acc[idx++] = 'r';
269 if (access & ACC_WRITE)
270 acc[idx++] = 'w';
271 if (access & ACC_MKNOD)
272 acc[idx++] = 'm';
273}
274
275static char type_to_char(short type)
276{
277 if (type == DEV_ALL)
278 return 'a';
279 if (type == DEV_CHAR)
280 return 'c';
281 if (type == DEV_BLOCK)
282 return 'b';
283 return 'X';
284}
285
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700286static void set_majmin(char *str, unsigned m)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700287{
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700288 if (m == ~0)
Li Zefan7759fc92008-07-25 01:47:08 -0700289 strcpy(str, "*");
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700290 else
Li Zefan7759fc92008-07-25 01:47:08 -0700291 sprintf(str, "%u", m);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700292}
293
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700294static int devcgroup_seq_read(struct cgroup *cgroup, struct cftype *cft,
295 struct seq_file *m)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700296{
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700297 struct dev_cgroup *devcgroup = cgroup_to_devcgroup(cgroup);
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700298 struct dev_exception_item *ex;
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700299 char maj[MAJMINLEN], min[MAJMINLEN], acc[ACCLEN];
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700300
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700301 rcu_read_lock();
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700302 /*
303 * To preserve the compatibility:
304 * - Only show the "all devices" when the default policy is to allow
305 * - List the exceptions in case the default policy is to deny
306 * This way, the file remains as a "whitelist of devices"
307 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700308 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700309 set_access(acc, ACC_MASK);
310 set_majmin(maj, ~0);
311 set_majmin(min, ~0);
312 seq_printf(m, "%c %s:%s %s\n", type_to_char(DEV_ALL),
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700313 maj, min, acc);
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700314 } else {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700315 list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) {
316 set_access(acc, ex->access);
317 set_majmin(maj, ex->major);
318 set_majmin(min, ex->minor);
319 seq_printf(m, "%c %s:%s %s\n", type_to_char(ex->type),
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700320 maj, min, acc);
321 }
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700322 }
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700323 rcu_read_unlock();
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700324
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700325 return 0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700326}
327
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700328/**
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700329 * may_access - verifies if a new exception is part of what is allowed
330 * by a dev cgroup based on the default policy +
331 * exceptions. This is used to make sure a child cgroup
332 * won't have more privileges than its parent or to
333 * verify if a certain access is allowed.
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700334 * @dev_cgroup: dev cgroup to be tested against
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700335 * @refex: new exception
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500336 * @behavior: behavior of the exception
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700337 */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500338static bool may_access(struct dev_cgroup *dev_cgroup,
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500339 struct dev_exception_item *refex,
340 enum devcg_behavior behavior)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700341{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700342 struct dev_exception_item *ex;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700343 bool match = false;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700344
Tejun Heo4b1c7842012-11-06 09:16:53 -0800345 rcu_lockdep_assert(rcu_read_lock_held() ||
346 lockdep_is_held(&devcgroup_mutex),
347 "device_cgroup::may_access() called without proper synchronization");
348
Tejun Heo201e72a2012-11-06 09:17:37 -0800349 list_for_each_entry_rcu(ex, &dev_cgroup->exceptions, list) {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700350 if ((refex->type & DEV_BLOCK) && !(ex->type & DEV_BLOCK))
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700351 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700352 if ((refex->type & DEV_CHAR) && !(ex->type & DEV_CHAR))
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700353 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700354 if (ex->major != ~0 && ex->major != refex->major)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700355 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700356 if (ex->minor != ~0 && ex->minor != refex->minor)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700357 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700358 if (refex->access & (~ex->access))
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700359 continue;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700360 match = true;
361 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700362 }
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700363
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500364 if (dev_cgroup->behavior == DEVCG_DEFAULT_ALLOW) {
365 if (behavior == DEVCG_DEFAULT_ALLOW) {
366 /* the exception will deny access to certain devices */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500367 return true;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500368 } else {
369 /* the exception will allow access to certain devices */
370 if (match)
371 /*
372 * a new exception allowing access shouldn't
373 * match an parent's exception
374 */
375 return false;
376 return true;
377 }
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500378 } else {
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500379 /* only behavior == DEVCG_DEFAULT_DENY allowed here */
380 if (match)
381 /* parent has an exception that matches the proposed */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500382 return true;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500383 else
384 return false;
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500385 }
386 return false;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700387}
388
389/*
390 * parent_has_perm:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700391 * when adding a new allow rule to a device exception list, the rule
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700392 * must be allowed in the parent device
393 */
Paul Menagef92523e2008-07-25 01:47:03 -0700394static int parent_has_perm(struct dev_cgroup *childcg,
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700395 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700396{
Paul Menagef92523e2008-07-25 01:47:03 -0700397 struct cgroup *pcg = childcg->css.cgroup->parent;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700398 struct dev_cgroup *parent;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700399
400 if (!pcg)
401 return 1;
402 parent = cgroup_to_devcgroup(pcg);
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500403 return may_access(parent, ex, childcg->behavior);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700404}
405
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700406/**
407 * may_allow_all - checks if it's possible to change the behavior to
408 * allow based on parent's rules.
409 * @parent: device cgroup's parent
410 * returns: != 0 in case it's allowed, 0 otherwise
411 */
412static inline int may_allow_all(struct dev_cgroup *parent)
413{
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800414 if (!parent)
415 return 1;
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700416 return parent->behavior == DEVCG_DEFAULT_ALLOW;
417}
418
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500419/**
420 * revalidate_active_exceptions - walks through the active exception list and
421 * revalidates the exceptions based on parent's
422 * behavior and exceptions. The exceptions that
423 * are no longer valid will be removed.
424 * Called with devcgroup_mutex held.
425 * @devcg: cgroup which exceptions will be checked
426 *
427 * This is one of the three key functions for hierarchy implementation.
428 * This function is responsible for re-evaluating all the cgroup's active
429 * exceptions due to a parent's exception change.
430 * Refer to Documentation/cgroups/devices.txt for more details.
431 */
432static void revalidate_active_exceptions(struct dev_cgroup *devcg)
433{
434 struct dev_exception_item *ex;
435 struct list_head *this, *tmp;
436
437 list_for_each_safe(this, tmp, &devcg->exceptions) {
438 ex = container_of(this, struct dev_exception_item, list);
439 if (!parent_has_perm(devcg, ex))
440 dev_exception_rm(devcg, ex);
441 }
442}
443
444/**
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500445 * propagate_exception - propagates a new exception to the children
446 * @devcg_root: device cgroup that added a new exception
447 * @ex: new exception to be propagated
448 *
449 * returns: 0 in case of success, != 0 in case of error
450 */
451static int propagate_exception(struct dev_cgroup *devcg_root,
452 struct dev_exception_item *ex)
453{
Tejun Heod591fb52013-05-24 10:55:38 +0900454 struct cgroup *root = devcg_root->css.cgroup, *pos;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500455 int rc = 0;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500456
Tejun Heod591fb52013-05-24 10:55:38 +0900457 rcu_read_lock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500458
Tejun Heod591fb52013-05-24 10:55:38 +0900459 cgroup_for_each_descendant_pre(pos, root) {
460 struct dev_cgroup *devcg = cgroup_to_devcgroup(pos);
461
462 /*
463 * Because devcgroup_mutex is held, no devcg will become
464 * online or offline during the tree walk (see on/offline
465 * methods), and online ones are safe to access outside RCU
466 * read lock without bumping refcnt.
467 */
468 if (!is_devcg_online(devcg))
469 continue;
470
471 rcu_read_unlock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500472
473 /*
474 * in case both root's behavior and devcg is allow, a new
475 * restriction means adding to the exception list
476 */
477 if (devcg_root->behavior == DEVCG_DEFAULT_ALLOW &&
478 devcg->behavior == DEVCG_DEFAULT_ALLOW) {
479 rc = dev_exception_add(devcg, ex);
480 if (rc)
481 break;
482 } else {
483 /*
484 * in the other possible cases:
485 * root's behavior: allow, devcg's: deny
486 * root's behavior: deny, devcg's: deny
487 * the exception will be removed
488 */
489 dev_exception_rm(devcg, ex);
490 }
491 revalidate_active_exceptions(devcg);
492
Tejun Heod591fb52013-05-24 10:55:38 +0900493 rcu_read_lock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500494 }
Tejun Heod591fb52013-05-24 10:55:38 +0900495
496 rcu_read_unlock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500497 return rc;
498}
499
500static inline bool has_children(struct dev_cgroup *devcgroup)
501{
502 struct cgroup *cgrp = devcgroup->css.cgroup;
503
504 return !list_empty(&cgrp->children);
505}
506
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700507/*
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700508 * Modify the exception list using allow/deny rules.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700509 * CAP_SYS_ADMIN is needed for this. It's at least separate from CAP_MKNOD
510 * so we can give a container CAP_MKNOD to let it create devices but not
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700511 * modify the exception list.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700512 * It seems likely we'll want to add a CAP_CONTAINER capability to allow
513 * us to also grant CAP_SYS_ADMIN to containers without giving away the
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700514 * device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700515 *
516 * Taking rules away is always allowed (given CAP_SYS_ADMIN). Granting
517 * new access is only allowed if you're in the top-level cgroup, or your
518 * parent cgroup has the access you're asking for.
519 */
Paul Menagef92523e2008-07-25 01:47:03 -0700520static int devcgroup_update_access(struct dev_cgroup *devcgroup,
521 int filetype, const char *buffer)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700522{
Paul Menagef92523e2008-07-25 01:47:03 -0700523 const char *b;
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700524 char temp[12]; /* 11 + 1 characters needed for a u32 */
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500525 int count, rc = 0;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700526 struct dev_exception_item ex;
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700527 struct cgroup *p = devcgroup->css.cgroup;
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800528 struct dev_cgroup *parent = NULL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700529
530 if (!capable(CAP_SYS_ADMIN))
531 return -EPERM;
532
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800533 if (p->parent)
534 parent = cgroup_to_devcgroup(p->parent);
535
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700536 memset(&ex, 0, sizeof(ex));
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700537 b = buffer;
538
539 switch (*b) {
540 case 'a':
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700541 switch (filetype) {
542 case DEVCG_ALLOW:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500543 if (has_children(devcgroup))
544 return -EINVAL;
545
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700546 if (!may_allow_all(parent))
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700547 return -EPERM;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700548 dev_exception_clean(devcgroup);
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800549 devcgroup->behavior = DEVCG_DEFAULT_ALLOW;
550 if (!parent)
551 break;
552
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700553 rc = dev_exceptions_copy(&devcgroup->exceptions,
554 &parent->exceptions);
555 if (rc)
556 return rc;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700557 break;
558 case DEVCG_DENY:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500559 if (has_children(devcgroup))
560 return -EINVAL;
561
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700562 dev_exception_clean(devcgroup);
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700563 devcgroup->behavior = DEVCG_DEFAULT_DENY;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700564 break;
565 default:
566 return -EINVAL;
567 }
568 return 0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700569 case 'b':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700570 ex.type = DEV_BLOCK;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700571 break;
572 case 'c':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700573 ex.type = DEV_CHAR;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700574 break;
575 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700576 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700577 }
578 b++;
Paul Menagef92523e2008-07-25 01:47:03 -0700579 if (!isspace(*b))
580 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700581 b++;
582 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700583 ex.major = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700584 b++;
585 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700586 memset(temp, 0, sizeof(temp));
587 for (count = 0; count < sizeof(temp) - 1; count++) {
588 temp[count] = *b;
589 b++;
590 if (!isdigit(*b))
591 break;
592 }
593 rc = kstrtou32(temp, 10, &ex.major);
594 if (rc)
595 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700596 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700597 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700598 }
Paul Menagef92523e2008-07-25 01:47:03 -0700599 if (*b != ':')
600 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700601 b++;
602
603 /* read minor */
604 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700605 ex.minor = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700606 b++;
607 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700608 memset(temp, 0, sizeof(temp));
609 for (count = 0; count < sizeof(temp) - 1; count++) {
610 temp[count] = *b;
611 b++;
612 if (!isdigit(*b))
613 break;
614 }
615 rc = kstrtou32(temp, 10, &ex.minor);
616 if (rc)
617 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700618 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700619 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700620 }
Paul Menagef92523e2008-07-25 01:47:03 -0700621 if (!isspace(*b))
622 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700623 for (b++, count = 0; count < 3; count++, b++) {
624 switch (*b) {
625 case 'r':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700626 ex.access |= ACC_READ;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700627 break;
628 case 'w':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700629 ex.access |= ACC_WRITE;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700630 break;
631 case 'm':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700632 ex.access |= ACC_MKNOD;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700633 break;
634 case '\n':
635 case '\0':
636 count = 3;
637 break;
638 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700639 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700640 }
641 }
642
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700643 switch (filetype) {
644 case DEVCG_ALLOW:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700645 if (!parent_has_perm(devcgroup, &ex))
Paul Menagef92523e2008-07-25 01:47:03 -0700646 return -EPERM;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700647 /*
648 * If the default policy is to allow by default, try to remove
649 * an matching exception instead. And be silent about it: we
650 * don't want to break compatibility
651 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700652 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700653 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700654 return 0;
655 }
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500656 rc = dev_exception_add(devcgroup, &ex);
657 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700658 case DEVCG_DENY:
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700659 /*
660 * If the default policy is to deny by default, try to remove
661 * an matching exception instead. And be silent about it: we
662 * don't want to break compatibility
663 */
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500664 if (devcgroup->behavior == DEVCG_DEFAULT_DENY)
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700665 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500666 else
667 rc = dev_exception_add(devcgroup, &ex);
668
669 if (rc)
670 break;
671 /* we only propagate new restrictions */
672 rc = propagate_exception(devcgroup, &ex);
673 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700674 default:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500675 rc = -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700676 }
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500677 return rc;
Paul Menagef92523e2008-07-25 01:47:03 -0700678}
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700679
Paul Menagef92523e2008-07-25 01:47:03 -0700680static int devcgroup_access_write(struct cgroup *cgrp, struct cftype *cft,
681 const char *buffer)
682{
683 int retval;
Li Zefanb4046f02009-04-02 16:57:32 -0700684
685 mutex_lock(&devcgroup_mutex);
Paul Menagef92523e2008-07-25 01:47:03 -0700686 retval = devcgroup_update_access(cgroup_to_devcgroup(cgrp),
687 cft->private, buffer);
Li Zefanb4046f02009-04-02 16:57:32 -0700688 mutex_unlock(&devcgroup_mutex);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700689 return retval;
690}
691
692static struct cftype dev_cgroup_files[] = {
693 {
694 .name = "allow",
Paul Menagef92523e2008-07-25 01:47:03 -0700695 .write_string = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700696 .private = DEVCG_ALLOW,
697 },
698 {
699 .name = "deny",
Paul Menagef92523e2008-07-25 01:47:03 -0700700 .write_string = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700701 .private = DEVCG_DENY,
702 },
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700703 {
704 .name = "list",
705 .read_seq_string = devcgroup_seq_read,
706 .private = DEVCG_LIST,
707 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700708 { } /* terminate */
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700709};
710
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700711struct cgroup_subsys devices_subsys = {
712 .name = "devices",
713 .can_attach = devcgroup_can_attach,
Tejun Heo92fb9742012-11-19 08:13:38 -0800714 .css_alloc = devcgroup_css_alloc,
715 .css_free = devcgroup_css_free,
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500716 .css_online = devcgroup_online,
717 .css_offline = devcgroup_offline,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700718 .subsys_id = devices_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -0700719 .base_cftypes = dev_cgroup_files,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700720};
721
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700722/**
723 * __devcgroup_check_permission - checks if an inode operation is permitted
724 * @dev_cgroup: the dev cgroup to be tested against
725 * @type: device type
726 * @major: device major number
727 * @minor: device minor number
728 * @access: combination of ACC_WRITE, ACC_READ and ACC_MKNOD
729 *
730 * returns 0 on success, -EPERM case the operation is not permitted
731 */
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700732static int __devcgroup_check_permission(short type, u32 major, u32 minor,
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700733 short access)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700734{
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700735 struct dev_cgroup *dev_cgroup;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700736 struct dev_exception_item ex;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700737 int rc;
738
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700739 memset(&ex, 0, sizeof(ex));
740 ex.type = type;
741 ex.major = major;
742 ex.minor = minor;
743 ex.access = access;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700744
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700745 rcu_read_lock();
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700746 dev_cgroup = task_devcgroup(current);
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500747 rc = may_access(dev_cgroup, &ex, dev_cgroup->behavior);
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700748 rcu_read_unlock();
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700749
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700750 if (!rc)
751 return -EPERM;
752
753 return 0;
754}
755
756int __devcgroup_inode_permission(struct inode *inode, int mask)
757{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700758 short type, access = 0;
759
760 if (S_ISBLK(inode->i_mode))
761 type = DEV_BLOCK;
762 if (S_ISCHR(inode->i_mode))
763 type = DEV_CHAR;
764 if (mask & MAY_WRITE)
765 access |= ACC_WRITE;
766 if (mask & MAY_READ)
767 access |= ACC_READ;
768
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700769 return __devcgroup_check_permission(type, imajor(inode), iminor(inode),
770 access);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700771}
772
773int devcgroup_inode_mknod(int mode, dev_t dev)
774{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700775 short type;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700776
Serge E. Hallyn0b82ac32009-01-07 18:07:46 -0800777 if (!S_ISBLK(mode) && !S_ISCHR(mode))
778 return 0;
779
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700780 if (S_ISBLK(mode))
781 type = DEV_BLOCK;
782 else
783 type = DEV_CHAR;
Li Zefan36fd71d2008-09-02 14:35:52 -0700784
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700785 return __devcgroup_check_permission(type, MAJOR(dev), MINOR(dev),
786 ACC_MKNOD);
Li Zefan36fd71d2008-09-02 14:35:52 -0700787
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700788}