blob: 9134dbf70d3ee6898664f895905c8452e89a01c3 [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{
Tejun Heoa7c6d552013-08-08 20:11:23 -040056 return s ? container_of(s, struct dev_cgroup, css) : NULL;
Pavel Emelyanovb66862f2008-06-05 22:46:24 -070057}
58
Paul Menagef92523e2008-07-25 01:47:03 -070059static inline struct dev_cgroup *task_devcgroup(struct task_struct *task)
60{
Tejun Heo073219e2014-02-08 10:36:58 -050061 return css_to_devcgroup(task_css(task, devices_cgrp_id));
Paul Menagef92523e2008-07-25 01:47:03 -070062}
63
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070064/*
Li Zefanb4046f02009-04-02 16:57:32 -070065 * called under devcgroup_mutex
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070066 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070067static int dev_exceptions_copy(struct list_head *dest, struct list_head *orig)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070068{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070069 struct dev_exception_item *ex, *tmp, *new;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070070
Tejun Heo4b1c7842012-11-06 09:16:53 -080071 lockdep_assert_held(&devcgroup_mutex);
72
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070073 list_for_each_entry(ex, orig, list) {
74 new = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070075 if (!new)
76 goto free_and_exit;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070077 list_add_tail(&new->list, dest);
78 }
79
80 return 0;
81
82free_and_exit:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070083 list_for_each_entry_safe(ex, tmp, dest, list) {
84 list_del(&ex->list);
85 kfree(ex);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070086 }
87 return -ENOMEM;
88}
89
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070090/*
Li Zefanb4046f02009-04-02 16:57:32 -070091 * called under devcgroup_mutex
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070092 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070093static int dev_exception_add(struct dev_cgroup *dev_cgroup,
94 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070095{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070096 struct dev_exception_item *excopy, *walk;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070097
Tejun Heo4b1c7842012-11-06 09:16:53 -080098 lockdep_assert_held(&devcgroup_mutex);
99
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700100 excopy = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
101 if (!excopy)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700102 return -ENOMEM;
103
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700104 list_for_each_entry(walk, &dev_cgroup->exceptions, list) {
105 if (walk->type != ex->type)
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700106 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700107 if (walk->major != ex->major)
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700108 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700109 if (walk->minor != ex->minor)
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700110 continue;
111
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700112 walk->access |= ex->access;
113 kfree(excopy);
114 excopy = NULL;
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700115 }
116
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700117 if (excopy != NULL)
118 list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700119 return 0;
120}
121
122/*
Li Zefanb4046f02009-04-02 16:57:32 -0700123 * called under devcgroup_mutex
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700124 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700125static void dev_exception_rm(struct dev_cgroup *dev_cgroup,
126 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700127{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700128 struct dev_exception_item *walk, *tmp;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700129
Tejun Heo4b1c7842012-11-06 09:16:53 -0800130 lockdep_assert_held(&devcgroup_mutex);
131
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700132 list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) {
133 if (walk->type != ex->type)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700134 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700135 if (walk->major != ex->major)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700136 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700137 if (walk->minor != ex->minor)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700138 continue;
139
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700140 walk->access &= ~ex->access;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700141 if (!walk->access) {
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700142 list_del_rcu(&walk->list);
Lai Jiangshan6034f7e2011-03-15 18:07:57 +0800143 kfree_rcu(walk, rcu);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700144 }
145 }
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700146}
147
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800148static void __dev_exception_clean(struct dev_cgroup *dev_cgroup)
149{
150 struct dev_exception_item *ex, *tmp;
151
152 list_for_each_entry_safe(ex, tmp, &dev_cgroup->exceptions, list) {
153 list_del_rcu(&ex->list);
154 kfree_rcu(ex, rcu);
155 }
156}
157
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700158/**
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700159 * dev_exception_clean - frees all entries of the exception list
160 * @dev_cgroup: dev_cgroup with the exception list to be cleaned
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700161 *
162 * called under devcgroup_mutex
163 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700164static void dev_exception_clean(struct dev_cgroup *dev_cgroup)
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700165{
Tejun Heo4b1c7842012-11-06 09:16:53 -0800166 lockdep_assert_held(&devcgroup_mutex);
167
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800168 __dev_exception_clean(dev_cgroup);
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700169}
170
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500171static inline bool is_devcg_online(const struct dev_cgroup *devcg)
172{
173 return (devcg->behavior != DEVCG_DEFAULT_NONE);
174}
175
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500176/**
177 * devcgroup_online - initializes devcgroup's behavior and exceptions based on
178 * parent's
Tejun Heoeb954192013-08-08 20:11:23 -0400179 * @css: css getting online
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500180 * returns 0 in case of success, error code otherwise
181 */
Tejun Heoeb954192013-08-08 20:11:23 -0400182static int devcgroup_online(struct cgroup_subsys_state *css)
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500183{
Tejun Heoeb954192013-08-08 20:11:23 -0400184 struct dev_cgroup *dev_cgroup = css_to_devcgroup(css);
185 struct dev_cgroup *parent_dev_cgroup = css_to_devcgroup(css_parent(css));
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500186 int ret = 0;
187
188 mutex_lock(&devcgroup_mutex);
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500189
190 if (parent_dev_cgroup == NULL)
191 dev_cgroup->behavior = DEVCG_DEFAULT_ALLOW;
192 else {
193 ret = dev_exceptions_copy(&dev_cgroup->exceptions,
194 &parent_dev_cgroup->exceptions);
195 if (!ret)
196 dev_cgroup->behavior = parent_dev_cgroup->behavior;
197 }
198 mutex_unlock(&devcgroup_mutex);
199
200 return ret;
201}
202
Tejun Heoeb954192013-08-08 20:11:23 -0400203static void devcgroup_offline(struct cgroup_subsys_state *css)
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500204{
Tejun Heoeb954192013-08-08 20:11:23 -0400205 struct dev_cgroup *dev_cgroup = css_to_devcgroup(css);
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500206
207 mutex_lock(&devcgroup_mutex);
208 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
209 mutex_unlock(&devcgroup_mutex);
210}
211
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700212/*
213 * called from kernel/cgroup.c with cgroup_lock() held.
214 */
Tejun Heoeb954192013-08-08 20:11:23 -0400215static struct cgroup_subsys_state *
216devcgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700217{
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500218 struct dev_cgroup *dev_cgroup;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700219
220 dev_cgroup = kzalloc(sizeof(*dev_cgroup), GFP_KERNEL);
221 if (!dev_cgroup)
222 return ERR_PTR(-ENOMEM);
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700223 INIT_LIST_HEAD(&dev_cgroup->exceptions);
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500224 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700225
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700226 return &dev_cgroup->css;
227}
228
Tejun Heoeb954192013-08-08 20:11:23 -0400229static void devcgroup_css_free(struct cgroup_subsys_state *css)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700230{
Tejun Heoeb954192013-08-08 20:11:23 -0400231 struct dev_cgroup *dev_cgroup = css_to_devcgroup(css);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700232
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800233 __dev_exception_clean(dev_cgroup);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700234 kfree(dev_cgroup);
235}
236
237#define DEVCG_ALLOW 1
238#define DEVCG_DENY 2
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700239#define DEVCG_LIST 3
240
Li Zefan17d213f2008-07-13 12:14:02 -0700241#define MAJMINLEN 13
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700242#define ACCLEN 4
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700243
244static void set_access(char *acc, short access)
245{
246 int idx = 0;
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700247 memset(acc, 0, ACCLEN);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700248 if (access & ACC_READ)
249 acc[idx++] = 'r';
250 if (access & ACC_WRITE)
251 acc[idx++] = 'w';
252 if (access & ACC_MKNOD)
253 acc[idx++] = 'm';
254}
255
256static char type_to_char(short type)
257{
258 if (type == DEV_ALL)
259 return 'a';
260 if (type == DEV_CHAR)
261 return 'c';
262 if (type == DEV_BLOCK)
263 return 'b';
264 return 'X';
265}
266
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700267static void set_majmin(char *str, unsigned m)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700268{
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700269 if (m == ~0)
Li Zefan7759fc92008-07-25 01:47:08 -0700270 strcpy(str, "*");
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700271 else
Li Zefan7759fc92008-07-25 01:47:08 -0700272 sprintf(str, "%u", m);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700273}
274
Tejun Heo2da8ca82013-12-05 12:28:04 -0500275static int devcgroup_seq_show(struct seq_file *m, void *v)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700276{
Tejun Heo2da8ca82013-12-05 12:28:04 -0500277 struct dev_cgroup *devcgroup = css_to_devcgroup(seq_css(m));
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700278 struct dev_exception_item *ex;
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700279 char maj[MAJMINLEN], min[MAJMINLEN], acc[ACCLEN];
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700280
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700281 rcu_read_lock();
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700282 /*
283 * To preserve the compatibility:
284 * - Only show the "all devices" when the default policy is to allow
285 * - List the exceptions in case the default policy is to deny
286 * This way, the file remains as a "whitelist of devices"
287 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700288 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700289 set_access(acc, ACC_MASK);
290 set_majmin(maj, ~0);
291 set_majmin(min, ~0);
292 seq_printf(m, "%c %s:%s %s\n", type_to_char(DEV_ALL),
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700293 maj, min, acc);
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700294 } else {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700295 list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) {
296 set_access(acc, ex->access);
297 set_majmin(maj, ex->major);
298 set_majmin(min, ex->minor);
299 seq_printf(m, "%c %s:%s %s\n", type_to_char(ex->type),
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700300 maj, min, acc);
301 }
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700302 }
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700303 rcu_read_unlock();
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700304
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700305 return 0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700306}
307
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700308/**
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400309 * match_exception - iterates the exception list trying to find a complete match
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400310 * @exceptions: list of exceptions
311 * @type: device type (DEV_BLOCK or DEV_CHAR)
312 * @major: device file major number, ~0 to match all
313 * @minor: device file minor number, ~0 to match all
314 * @access: permission mask (ACC_READ, ACC_WRITE, ACC_MKNOD)
315 *
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400316 * It is considered a complete match if an exception is found that will
317 * contain the entire range of provided parameters.
318 *
319 * Return: true in case it matches an exception completely
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700320 */
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400321static bool match_exception(struct list_head *exceptions, short type,
322 u32 major, u32 minor, short access)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700323{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700324 struct dev_exception_item *ex;
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400325
326 list_for_each_entry_rcu(ex, exceptions, list) {
327 if ((type & DEV_BLOCK) && !(ex->type & DEV_BLOCK))
328 continue;
329 if ((type & DEV_CHAR) && !(ex->type & DEV_CHAR))
330 continue;
331 if (ex->major != ~0 && ex->major != major)
332 continue;
333 if (ex->minor != ~0 && ex->minor != minor)
334 continue;
335 /* provided access cannot have more than the exception rule */
336 if (access & (~ex->access))
337 continue;
338 return true;
339 }
340 return false;
341}
342
343/**
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400344 * match_exception_partial - iterates the exception list trying to find a partial match
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400345 * @exceptions: list of exceptions
346 * @type: device type (DEV_BLOCK or DEV_CHAR)
347 * @major: device file major number, ~0 to match all
348 * @minor: device file minor number, ~0 to match all
349 * @access: permission mask (ACC_READ, ACC_WRITE, ACC_MKNOD)
350 *
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400351 * It is considered a partial match if an exception's range is found to
352 * contain *any* of the devices specified by provided parameters. This is
353 * used to make sure no extra access is being granted that is forbidden by
354 * any of the exception list.
355 *
356 * Return: true in case the provided range mat matches an exception completely
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400357 */
358static bool match_exception_partial(struct list_head *exceptions, short type,
359 u32 major, u32 minor, short access)
360{
361 struct dev_exception_item *ex;
362
363 list_for_each_entry_rcu(ex, exceptions, list) {
364 if ((type & DEV_BLOCK) && !(ex->type & DEV_BLOCK))
365 continue;
366 if ((type & DEV_CHAR) && !(ex->type & DEV_CHAR))
367 continue;
368 /*
369 * We must be sure that both the exception and the provided
370 * range aren't masking all devices
371 */
372 if (ex->major != ~0 && major != ~0 && ex->major != major)
373 continue;
374 if (ex->minor != ~0 && minor != ~0 && ex->minor != minor)
375 continue;
376 /*
377 * In order to make sure the provided range isn't matching
378 * an exception, all its access bits shouldn't match the
379 * exception's access bits
380 */
381 if (!(access & ex->access))
382 continue;
383 return true;
384 }
385 return false;
386}
387
388/**
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400389 * verify_new_ex - verifies if a new exception is allowed by parent cgroup's permissions
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400390 * @dev_cgroup: dev cgroup to be tested against
391 * @refex: new exception
392 * @behavior: behavior of the exception's dev_cgroup
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400393 *
394 * This is used to make sure a child cgroup won't have more privileges
395 * than its parent
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400396 */
397static bool verify_new_ex(struct dev_cgroup *dev_cgroup,
398 struct dev_exception_item *refex,
399 enum devcg_behavior behavior)
400{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700401 bool match = false;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700402
Tejun Heo4b1c7842012-11-06 09:16:53 -0800403 rcu_lockdep_assert(rcu_read_lock_held() ||
404 lockdep_is_held(&devcgroup_mutex),
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400405 "device_cgroup:verify_new_ex called without proper synchronization");
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700406
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500407 if (dev_cgroup->behavior == DEVCG_DEFAULT_ALLOW) {
408 if (behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400409 /*
410 * new exception in the child doesn't matter, only
411 * adding extra restrictions
412 */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500413 return true;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500414 } else {
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400415 /*
416 * new exception in the child will add more devices
417 * that can be acessed, so it can't match any of
418 * parent's exceptions, even slightly
419 */
420 match = match_exception_partial(&dev_cgroup->exceptions,
421 refex->type,
422 refex->major,
423 refex->minor,
424 refex->access);
425
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500426 if (match)
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500427 return false;
428 return true;
429 }
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500430 } else {
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400431 /*
432 * Only behavior == DEVCG_DEFAULT_DENY allowed here, therefore
433 * the new exception will add access to more devices and must
434 * be contained completely in an parent's exception to be
435 * allowed
436 */
437 match = match_exception(&dev_cgroup->exceptions, refex->type,
438 refex->major, refex->minor,
439 refex->access);
440
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500441 if (match)
442 /* parent has an exception that matches the proposed */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500443 return true;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500444 else
445 return false;
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500446 }
447 return false;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700448}
449
450/*
451 * parent_has_perm:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700452 * when adding a new allow rule to a device exception list, the rule
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700453 * must be allowed in the parent device
454 */
Paul Menagef92523e2008-07-25 01:47:03 -0700455static int parent_has_perm(struct dev_cgroup *childcg,
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700456 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700457{
Tejun Heo63876982013-08-08 20:11:23 -0400458 struct dev_cgroup *parent = css_to_devcgroup(css_parent(&childcg->css));
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700459
Tejun Heo63876982013-08-08 20:11:23 -0400460 if (!parent)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700461 return 1;
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400462 return verify_new_ex(parent, ex, childcg->behavior);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700463}
464
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700465/**
Aristeu Rozanskid2c2b112014-05-05 11:18:59 -0400466 * parent_allows_removal - verify if it's ok to remove an exception
467 * @childcg: child cgroup from where the exception will be removed
468 * @ex: exception being removed
469 *
470 * When removing an exception in cgroups with default ALLOW policy, it must
471 * be checked if removing it will give the child cgroup more access than the
472 * parent.
473 *
474 * Return: true if it's ok to remove exception, false otherwise
475 */
476static bool parent_allows_removal(struct dev_cgroup *childcg,
477 struct dev_exception_item *ex)
478{
479 struct dev_cgroup *parent = css_to_devcgroup(css_parent(&childcg->css));
480
481 if (!parent)
482 return true;
483
484 /* It's always allowed to remove access to devices */
485 if (childcg->behavior == DEVCG_DEFAULT_DENY)
486 return true;
487
488 /*
489 * Make sure you're not removing part or a whole exception existing in
490 * the parent cgroup
491 */
492 return !match_exception_partial(&parent->exceptions, ex->type,
493 ex->major, ex->minor, ex->access);
494}
495
496/**
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700497 * may_allow_all - checks if it's possible to change the behavior to
498 * allow based on parent's rules.
499 * @parent: device cgroup's parent
500 * returns: != 0 in case it's allowed, 0 otherwise
501 */
502static inline int may_allow_all(struct dev_cgroup *parent)
503{
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800504 if (!parent)
505 return 1;
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700506 return parent->behavior == DEVCG_DEFAULT_ALLOW;
507}
508
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500509/**
510 * revalidate_active_exceptions - walks through the active exception list and
511 * revalidates the exceptions based on parent's
512 * behavior and exceptions. The exceptions that
513 * are no longer valid will be removed.
514 * Called with devcgroup_mutex held.
515 * @devcg: cgroup which exceptions will be checked
516 *
517 * This is one of the three key functions for hierarchy implementation.
518 * This function is responsible for re-evaluating all the cgroup's active
519 * exceptions due to a parent's exception change.
520 * Refer to Documentation/cgroups/devices.txt for more details.
521 */
522static void revalidate_active_exceptions(struct dev_cgroup *devcg)
523{
524 struct dev_exception_item *ex;
525 struct list_head *this, *tmp;
526
527 list_for_each_safe(this, tmp, &devcg->exceptions) {
528 ex = container_of(this, struct dev_exception_item, list);
529 if (!parent_has_perm(devcg, ex))
530 dev_exception_rm(devcg, ex);
531 }
532}
533
534/**
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500535 * propagate_exception - propagates a new exception to the children
536 * @devcg_root: device cgroup that added a new exception
537 * @ex: new exception to be propagated
538 *
539 * returns: 0 in case of success, != 0 in case of error
540 */
541static int propagate_exception(struct dev_cgroup *devcg_root,
542 struct dev_exception_item *ex)
543{
Tejun Heo492eb212013-08-08 20:11:25 -0400544 struct cgroup_subsys_state *pos;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500545 int rc = 0;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500546
Tejun Heod591fb52013-05-24 10:55:38 +0900547 rcu_read_lock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500548
Tejun Heo492eb212013-08-08 20:11:25 -0400549 css_for_each_descendant_pre(pos, &devcg_root->css) {
550 struct dev_cgroup *devcg = css_to_devcgroup(pos);
Tejun Heod591fb52013-05-24 10:55:38 +0900551
552 /*
553 * Because devcgroup_mutex is held, no devcg will become
554 * online or offline during the tree walk (see on/offline
555 * methods), and online ones are safe to access outside RCU
556 * read lock without bumping refcnt.
557 */
Tejun Heobd8815a2013-08-08 20:11:27 -0400558 if (pos == &devcg_root->css || !is_devcg_online(devcg))
Tejun Heod591fb52013-05-24 10:55:38 +0900559 continue;
560
561 rcu_read_unlock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500562
563 /*
564 * in case both root's behavior and devcg is allow, a new
565 * restriction means adding to the exception list
566 */
567 if (devcg_root->behavior == DEVCG_DEFAULT_ALLOW &&
568 devcg->behavior == DEVCG_DEFAULT_ALLOW) {
569 rc = dev_exception_add(devcg, ex);
570 if (rc)
571 break;
572 } else {
573 /*
574 * in the other possible cases:
575 * root's behavior: allow, devcg's: deny
576 * root's behavior: deny, devcg's: deny
577 * the exception will be removed
578 */
579 dev_exception_rm(devcg, ex);
580 }
581 revalidate_active_exceptions(devcg);
582
Tejun Heod591fb52013-05-24 10:55:38 +0900583 rcu_read_lock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500584 }
Tejun Heod591fb52013-05-24 10:55:38 +0900585
586 rcu_read_unlock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500587 return rc;
588}
589
590static inline bool has_children(struct dev_cgroup *devcgroup)
591{
592 struct cgroup *cgrp = devcgroup->css.cgroup;
593
594 return !list_empty(&cgrp->children);
595}
596
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700597/*
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700598 * Modify the exception list using allow/deny rules.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700599 * CAP_SYS_ADMIN is needed for this. It's at least separate from CAP_MKNOD
600 * so we can give a container CAP_MKNOD to let it create devices but not
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700601 * modify the exception list.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700602 * It seems likely we'll want to add a CAP_CONTAINER capability to allow
603 * us to also grant CAP_SYS_ADMIN to containers without giving away the
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700604 * device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700605 *
606 * Taking rules away is always allowed (given CAP_SYS_ADMIN). Granting
607 * new access is only allowed if you're in the top-level cgroup, or your
608 * parent cgroup has the access you're asking for.
609 */
Paul Menagef92523e2008-07-25 01:47:03 -0700610static int devcgroup_update_access(struct dev_cgroup *devcgroup,
Tejun Heo4d3bb512014-03-19 10:23:54 -0400611 int filetype, char *buffer)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700612{
Paul Menagef92523e2008-07-25 01:47:03 -0700613 const char *b;
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700614 char temp[12]; /* 11 + 1 characters needed for a u32 */
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500615 int count, rc = 0;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700616 struct dev_exception_item ex;
Tejun Heo63876982013-08-08 20:11:23 -0400617 struct dev_cgroup *parent = css_to_devcgroup(css_parent(&devcgroup->css));
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700618
619 if (!capable(CAP_SYS_ADMIN))
620 return -EPERM;
621
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700622 memset(&ex, 0, sizeof(ex));
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700623 b = buffer;
624
625 switch (*b) {
626 case 'a':
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700627 switch (filetype) {
628 case DEVCG_ALLOW:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500629 if (has_children(devcgroup))
630 return -EINVAL;
631
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700632 if (!may_allow_all(parent))
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700633 return -EPERM;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700634 dev_exception_clean(devcgroup);
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800635 devcgroup->behavior = DEVCG_DEFAULT_ALLOW;
636 if (!parent)
637 break;
638
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700639 rc = dev_exceptions_copy(&devcgroup->exceptions,
640 &parent->exceptions);
641 if (rc)
642 return rc;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700643 break;
644 case DEVCG_DENY:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500645 if (has_children(devcgroup))
646 return -EINVAL;
647
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700648 dev_exception_clean(devcgroup);
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700649 devcgroup->behavior = DEVCG_DEFAULT_DENY;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700650 break;
651 default:
652 return -EINVAL;
653 }
654 return 0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700655 case 'b':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700656 ex.type = DEV_BLOCK;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700657 break;
658 case 'c':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700659 ex.type = DEV_CHAR;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700660 break;
661 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700662 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700663 }
664 b++;
Paul Menagef92523e2008-07-25 01:47:03 -0700665 if (!isspace(*b))
666 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700667 b++;
668 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700669 ex.major = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700670 b++;
671 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700672 memset(temp, 0, sizeof(temp));
673 for (count = 0; count < sizeof(temp) - 1; count++) {
674 temp[count] = *b;
675 b++;
676 if (!isdigit(*b))
677 break;
678 }
679 rc = kstrtou32(temp, 10, &ex.major);
680 if (rc)
681 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700682 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700683 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700684 }
Paul Menagef92523e2008-07-25 01:47:03 -0700685 if (*b != ':')
686 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700687 b++;
688
689 /* read minor */
690 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700691 ex.minor = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700692 b++;
693 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700694 memset(temp, 0, sizeof(temp));
695 for (count = 0; count < sizeof(temp) - 1; count++) {
696 temp[count] = *b;
697 b++;
698 if (!isdigit(*b))
699 break;
700 }
701 rc = kstrtou32(temp, 10, &ex.minor);
702 if (rc)
703 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700704 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700705 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700706 }
Paul Menagef92523e2008-07-25 01:47:03 -0700707 if (!isspace(*b))
708 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700709 for (b++, count = 0; count < 3; count++, b++) {
710 switch (*b) {
711 case 'r':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700712 ex.access |= ACC_READ;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700713 break;
714 case 'w':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700715 ex.access |= ACC_WRITE;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700716 break;
717 case 'm':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700718 ex.access |= ACC_MKNOD;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700719 break;
720 case '\n':
721 case '\0':
722 count = 3;
723 break;
724 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700725 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700726 }
727 }
728
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700729 switch (filetype) {
730 case DEVCG_ALLOW:
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700731 /*
732 * If the default policy is to allow by default, try to remove
733 * an matching exception instead. And be silent about it: we
734 * don't want to break compatibility
735 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700736 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanskid2c2b112014-05-05 11:18:59 -0400737 /* Check if the parent allows removing it first */
738 if (!parent_allows_removal(devcgroup, &ex))
739 return -EPERM;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700740 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskid2c2b112014-05-05 11:18:59 -0400741 break;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700742 }
Aristeu Rozanskid2c2b112014-05-05 11:18:59 -0400743
744 if (!parent_has_perm(devcgroup, &ex))
745 return -EPERM;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500746 rc = dev_exception_add(devcgroup, &ex);
747 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700748 case DEVCG_DENY:
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700749 /*
750 * If the default policy is to deny by default, try to remove
751 * an matching exception instead. And be silent about it: we
752 * don't want to break compatibility
753 */
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500754 if (devcgroup->behavior == DEVCG_DEFAULT_DENY)
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700755 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500756 else
757 rc = dev_exception_add(devcgroup, &ex);
758
759 if (rc)
760 break;
761 /* we only propagate new restrictions */
762 rc = propagate_exception(devcgroup, &ex);
763 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700764 default:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500765 rc = -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700766 }
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500767 return rc;
Paul Menagef92523e2008-07-25 01:47:03 -0700768}
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700769
Tejun Heo182446d2013-08-08 20:11:24 -0400770static int devcgroup_access_write(struct cgroup_subsys_state *css,
Tejun Heo4d3bb512014-03-19 10:23:54 -0400771 struct cftype *cft, char *buffer)
Paul Menagef92523e2008-07-25 01:47:03 -0700772{
773 int retval;
Li Zefanb4046f02009-04-02 16:57:32 -0700774
775 mutex_lock(&devcgroup_mutex);
Tejun Heo182446d2013-08-08 20:11:24 -0400776 retval = devcgroup_update_access(css_to_devcgroup(css),
Paul Menagef92523e2008-07-25 01:47:03 -0700777 cft->private, buffer);
Li Zefanb4046f02009-04-02 16:57:32 -0700778 mutex_unlock(&devcgroup_mutex);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700779 return retval;
780}
781
782static struct cftype dev_cgroup_files[] = {
783 {
784 .name = "allow",
Paul Menagef92523e2008-07-25 01:47:03 -0700785 .write_string = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700786 .private = DEVCG_ALLOW,
787 },
788 {
789 .name = "deny",
Paul Menagef92523e2008-07-25 01:47:03 -0700790 .write_string = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700791 .private = DEVCG_DENY,
792 },
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700793 {
794 .name = "list",
Tejun Heo2da8ca82013-12-05 12:28:04 -0500795 .seq_show = devcgroup_seq_show,
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700796 .private = DEVCG_LIST,
797 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700798 { } /* terminate */
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700799};
800
Tejun Heo073219e2014-02-08 10:36:58 -0500801struct cgroup_subsys devices_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -0800802 .css_alloc = devcgroup_css_alloc,
803 .css_free = devcgroup_css_free,
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500804 .css_online = devcgroup_online,
805 .css_offline = devcgroup_offline,
Tejun Heo4baf6e32012-04-01 12:09:55 -0700806 .base_cftypes = dev_cgroup_files,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700807};
808
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700809/**
810 * __devcgroup_check_permission - checks if an inode operation is permitted
811 * @dev_cgroup: the dev cgroup to be tested against
812 * @type: device type
813 * @major: device major number
814 * @minor: device minor number
815 * @access: combination of ACC_WRITE, ACC_READ and ACC_MKNOD
816 *
817 * returns 0 on success, -EPERM case the operation is not permitted
818 */
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700819static int __devcgroup_check_permission(short type, u32 major, u32 minor,
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700820 short access)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700821{
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700822 struct dev_cgroup *dev_cgroup;
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400823 bool rc;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700824
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700825 rcu_read_lock();
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700826 dev_cgroup = task_devcgroup(current);
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400827 if (dev_cgroup->behavior == DEVCG_DEFAULT_ALLOW)
828 /* Can't match any of the exceptions, even partially */
829 rc = !match_exception_partial(&dev_cgroup->exceptions,
830 type, major, minor, access);
831 else
832 /* Need to match completely one exception to be allowed */
833 rc = match_exception(&dev_cgroup->exceptions, type, major,
834 minor, access);
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700835 rcu_read_unlock();
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700836
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700837 if (!rc)
838 return -EPERM;
839
840 return 0;
841}
842
843int __devcgroup_inode_permission(struct inode *inode, int mask)
844{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700845 short type, access = 0;
846
847 if (S_ISBLK(inode->i_mode))
848 type = DEV_BLOCK;
849 if (S_ISCHR(inode->i_mode))
850 type = DEV_CHAR;
851 if (mask & MAY_WRITE)
852 access |= ACC_WRITE;
853 if (mask & MAY_READ)
854 access |= ACC_READ;
855
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700856 return __devcgroup_check_permission(type, imajor(inode), iminor(inode),
857 access);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700858}
859
860int devcgroup_inode_mknod(int mode, dev_t dev)
861{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700862 short type;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700863
Serge E. Hallyn0b82ac32009-01-07 18:07:46 -0800864 if (!S_ISBLK(mode) && !S_ISCHR(mode))
865 return 0;
866
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700867 if (S_ISBLK(mode))
868 type = DEV_BLOCK;
869 else
870 type = DEV_CHAR;
Li Zefan36fd71d2008-09-02 14:35:52 -0700871
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700872 return __devcgroup_check_permission(type, MAJOR(dev), MINOR(dev),
873 ACC_MKNOD);
Li Zefan36fd71d2008-09-02 14:35:52 -0700874
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700875}