blob: 6b1266dd92bb142e964ccbafb19d8f4a9904869c [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/**
466 * may_allow_all - checks if it's possible to change the behavior to
467 * allow based on parent's rules.
468 * @parent: device cgroup's parent
469 * returns: != 0 in case it's allowed, 0 otherwise
470 */
471static inline int may_allow_all(struct dev_cgroup *parent)
472{
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800473 if (!parent)
474 return 1;
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700475 return parent->behavior == DEVCG_DEFAULT_ALLOW;
476}
477
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500478/**
479 * revalidate_active_exceptions - walks through the active exception list and
480 * revalidates the exceptions based on parent's
481 * behavior and exceptions. The exceptions that
482 * are no longer valid will be removed.
483 * Called with devcgroup_mutex held.
484 * @devcg: cgroup which exceptions will be checked
485 *
486 * This is one of the three key functions for hierarchy implementation.
487 * This function is responsible for re-evaluating all the cgroup's active
488 * exceptions due to a parent's exception change.
489 * Refer to Documentation/cgroups/devices.txt for more details.
490 */
491static void revalidate_active_exceptions(struct dev_cgroup *devcg)
492{
493 struct dev_exception_item *ex;
494 struct list_head *this, *tmp;
495
496 list_for_each_safe(this, tmp, &devcg->exceptions) {
497 ex = container_of(this, struct dev_exception_item, list);
498 if (!parent_has_perm(devcg, ex))
499 dev_exception_rm(devcg, ex);
500 }
501}
502
503/**
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500504 * propagate_exception - propagates a new exception to the children
505 * @devcg_root: device cgroup that added a new exception
506 * @ex: new exception to be propagated
507 *
508 * returns: 0 in case of success, != 0 in case of error
509 */
510static int propagate_exception(struct dev_cgroup *devcg_root,
511 struct dev_exception_item *ex)
512{
Tejun Heo492eb212013-08-08 20:11:25 -0400513 struct cgroup_subsys_state *pos;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500514 int rc = 0;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500515
Tejun Heod591fb52013-05-24 10:55:38 +0900516 rcu_read_lock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500517
Tejun Heo492eb212013-08-08 20:11:25 -0400518 css_for_each_descendant_pre(pos, &devcg_root->css) {
519 struct dev_cgroup *devcg = css_to_devcgroup(pos);
Tejun Heod591fb52013-05-24 10:55:38 +0900520
521 /*
522 * Because devcgroup_mutex is held, no devcg will become
523 * online or offline during the tree walk (see on/offline
524 * methods), and online ones are safe to access outside RCU
525 * read lock without bumping refcnt.
526 */
Tejun Heobd8815a2013-08-08 20:11:27 -0400527 if (pos == &devcg_root->css || !is_devcg_online(devcg))
Tejun Heod591fb52013-05-24 10:55:38 +0900528 continue;
529
530 rcu_read_unlock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500531
532 /*
533 * in case both root's behavior and devcg is allow, a new
534 * restriction means adding to the exception list
535 */
536 if (devcg_root->behavior == DEVCG_DEFAULT_ALLOW &&
537 devcg->behavior == DEVCG_DEFAULT_ALLOW) {
538 rc = dev_exception_add(devcg, ex);
539 if (rc)
540 break;
541 } else {
542 /*
543 * in the other possible cases:
544 * root's behavior: allow, devcg's: deny
545 * root's behavior: deny, devcg's: deny
546 * the exception will be removed
547 */
548 dev_exception_rm(devcg, ex);
549 }
550 revalidate_active_exceptions(devcg);
551
Tejun Heod591fb52013-05-24 10:55:38 +0900552 rcu_read_lock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500553 }
Tejun Heod591fb52013-05-24 10:55:38 +0900554
555 rcu_read_unlock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500556 return rc;
557}
558
559static inline bool has_children(struct dev_cgroup *devcgroup)
560{
561 struct cgroup *cgrp = devcgroup->css.cgroup;
562
563 return !list_empty(&cgrp->children);
564}
565
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700566/*
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700567 * Modify the exception list using allow/deny rules.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700568 * CAP_SYS_ADMIN is needed for this. It's at least separate from CAP_MKNOD
569 * so we can give a container CAP_MKNOD to let it create devices but not
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700570 * modify the exception list.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700571 * It seems likely we'll want to add a CAP_CONTAINER capability to allow
572 * us to also grant CAP_SYS_ADMIN to containers without giving away the
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700573 * device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700574 *
575 * Taking rules away is always allowed (given CAP_SYS_ADMIN). Granting
576 * new access is only allowed if you're in the top-level cgroup, or your
577 * parent cgroup has the access you're asking for.
578 */
Paul Menagef92523e2008-07-25 01:47:03 -0700579static int devcgroup_update_access(struct dev_cgroup *devcgroup,
Tejun Heo4d3bb512014-03-19 10:23:54 -0400580 int filetype, char *buffer)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700581{
Paul Menagef92523e2008-07-25 01:47:03 -0700582 const char *b;
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700583 char temp[12]; /* 11 + 1 characters needed for a u32 */
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500584 int count, rc = 0;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700585 struct dev_exception_item ex;
Tejun Heo63876982013-08-08 20:11:23 -0400586 struct dev_cgroup *parent = css_to_devcgroup(css_parent(&devcgroup->css));
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700587
588 if (!capable(CAP_SYS_ADMIN))
589 return -EPERM;
590
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700591 memset(&ex, 0, sizeof(ex));
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700592 b = buffer;
593
594 switch (*b) {
595 case 'a':
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700596 switch (filetype) {
597 case DEVCG_ALLOW:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500598 if (has_children(devcgroup))
599 return -EINVAL;
600
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700601 if (!may_allow_all(parent))
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700602 return -EPERM;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700603 dev_exception_clean(devcgroup);
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800604 devcgroup->behavior = DEVCG_DEFAULT_ALLOW;
605 if (!parent)
606 break;
607
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700608 rc = dev_exceptions_copy(&devcgroup->exceptions,
609 &parent->exceptions);
610 if (rc)
611 return rc;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700612 break;
613 case DEVCG_DENY:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500614 if (has_children(devcgroup))
615 return -EINVAL;
616
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700617 dev_exception_clean(devcgroup);
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700618 devcgroup->behavior = DEVCG_DEFAULT_DENY;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700619 break;
620 default:
621 return -EINVAL;
622 }
623 return 0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700624 case 'b':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700625 ex.type = DEV_BLOCK;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700626 break;
627 case 'c':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700628 ex.type = DEV_CHAR;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700629 break;
630 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700631 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700632 }
633 b++;
Paul Menagef92523e2008-07-25 01:47:03 -0700634 if (!isspace(*b))
635 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700636 b++;
637 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700638 ex.major = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700639 b++;
640 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700641 memset(temp, 0, sizeof(temp));
642 for (count = 0; count < sizeof(temp) - 1; count++) {
643 temp[count] = *b;
644 b++;
645 if (!isdigit(*b))
646 break;
647 }
648 rc = kstrtou32(temp, 10, &ex.major);
649 if (rc)
650 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700651 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700652 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700653 }
Paul Menagef92523e2008-07-25 01:47:03 -0700654 if (*b != ':')
655 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700656 b++;
657
658 /* read minor */
659 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700660 ex.minor = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700661 b++;
662 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700663 memset(temp, 0, sizeof(temp));
664 for (count = 0; count < sizeof(temp) - 1; count++) {
665 temp[count] = *b;
666 b++;
667 if (!isdigit(*b))
668 break;
669 }
670 rc = kstrtou32(temp, 10, &ex.minor);
671 if (rc)
672 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700673 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700674 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700675 }
Paul Menagef92523e2008-07-25 01:47:03 -0700676 if (!isspace(*b))
677 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700678 for (b++, count = 0; count < 3; count++, b++) {
679 switch (*b) {
680 case 'r':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700681 ex.access |= ACC_READ;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700682 break;
683 case 'w':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700684 ex.access |= ACC_WRITE;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700685 break;
686 case 'm':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700687 ex.access |= ACC_MKNOD;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700688 break;
689 case '\n':
690 case '\0':
691 count = 3;
692 break;
693 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700694 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700695 }
696 }
697
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700698 switch (filetype) {
699 case DEVCG_ALLOW:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700700 if (!parent_has_perm(devcgroup, &ex))
Paul Menagef92523e2008-07-25 01:47:03 -0700701 return -EPERM;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700702 /*
703 * If the default policy is to allow by default, try to remove
704 * an matching exception instead. And be silent about it: we
705 * don't want to break compatibility
706 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700707 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700708 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700709 return 0;
710 }
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500711 rc = dev_exception_add(devcgroup, &ex);
712 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700713 case DEVCG_DENY:
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700714 /*
715 * If the default policy is to deny by default, try to remove
716 * an matching exception instead. And be silent about it: we
717 * don't want to break compatibility
718 */
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500719 if (devcgroup->behavior == DEVCG_DEFAULT_DENY)
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700720 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500721 else
722 rc = dev_exception_add(devcgroup, &ex);
723
724 if (rc)
725 break;
726 /* we only propagate new restrictions */
727 rc = propagate_exception(devcgroup, &ex);
728 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700729 default:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500730 rc = -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700731 }
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500732 return rc;
Paul Menagef92523e2008-07-25 01:47:03 -0700733}
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700734
Tejun Heo182446d2013-08-08 20:11:24 -0400735static int devcgroup_access_write(struct cgroup_subsys_state *css,
Tejun Heo4d3bb512014-03-19 10:23:54 -0400736 struct cftype *cft, char *buffer)
Paul Menagef92523e2008-07-25 01:47:03 -0700737{
738 int retval;
Li Zefanb4046f02009-04-02 16:57:32 -0700739
740 mutex_lock(&devcgroup_mutex);
Tejun Heo182446d2013-08-08 20:11:24 -0400741 retval = devcgroup_update_access(css_to_devcgroup(css),
Paul Menagef92523e2008-07-25 01:47:03 -0700742 cft->private, buffer);
Li Zefanb4046f02009-04-02 16:57:32 -0700743 mutex_unlock(&devcgroup_mutex);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700744 return retval;
745}
746
747static struct cftype dev_cgroup_files[] = {
748 {
749 .name = "allow",
Paul Menagef92523e2008-07-25 01:47:03 -0700750 .write_string = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700751 .private = DEVCG_ALLOW,
752 },
753 {
754 .name = "deny",
Paul Menagef92523e2008-07-25 01:47:03 -0700755 .write_string = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700756 .private = DEVCG_DENY,
757 },
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700758 {
759 .name = "list",
Tejun Heo2da8ca82013-12-05 12:28:04 -0500760 .seq_show = devcgroup_seq_show,
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700761 .private = DEVCG_LIST,
762 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700763 { } /* terminate */
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700764};
765
Tejun Heo073219e2014-02-08 10:36:58 -0500766struct cgroup_subsys devices_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -0800767 .css_alloc = devcgroup_css_alloc,
768 .css_free = devcgroup_css_free,
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500769 .css_online = devcgroup_online,
770 .css_offline = devcgroup_offline,
Tejun Heo4baf6e32012-04-01 12:09:55 -0700771 .base_cftypes = dev_cgroup_files,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700772};
773
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700774/**
775 * __devcgroup_check_permission - checks if an inode operation is permitted
776 * @dev_cgroup: the dev cgroup to be tested against
777 * @type: device type
778 * @major: device major number
779 * @minor: device minor number
780 * @access: combination of ACC_WRITE, ACC_READ and ACC_MKNOD
781 *
782 * returns 0 on success, -EPERM case the operation is not permitted
783 */
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700784static int __devcgroup_check_permission(short type, u32 major, u32 minor,
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700785 short access)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700786{
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700787 struct dev_cgroup *dev_cgroup;
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400788 bool rc;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700789
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700790 rcu_read_lock();
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700791 dev_cgroup = task_devcgroup(current);
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400792 if (dev_cgroup->behavior == DEVCG_DEFAULT_ALLOW)
793 /* Can't match any of the exceptions, even partially */
794 rc = !match_exception_partial(&dev_cgroup->exceptions,
795 type, major, minor, access);
796 else
797 /* Need to match completely one exception to be allowed */
798 rc = match_exception(&dev_cgroup->exceptions, type, major,
799 minor, access);
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700800 rcu_read_unlock();
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700801
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700802 if (!rc)
803 return -EPERM;
804
805 return 0;
806}
807
808int __devcgroup_inode_permission(struct inode *inode, int mask)
809{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700810 short type, access = 0;
811
812 if (S_ISBLK(inode->i_mode))
813 type = DEV_BLOCK;
814 if (S_ISCHR(inode->i_mode))
815 type = DEV_CHAR;
816 if (mask & MAY_WRITE)
817 access |= ACC_WRITE;
818 if (mask & MAY_READ)
819 access |= ACC_READ;
820
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700821 return __devcgroup_check_permission(type, imajor(inode), iminor(inode),
822 access);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700823}
824
825int devcgroup_inode_mknod(int mode, dev_t dev)
826{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700827 short type;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700828
Serge E. Hallyn0b82ac32009-01-07 18:07:46 -0800829 if (!S_ISBLK(mode) && !S_ISCHR(mode))
830 return 0;
831
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700832 if (S_ISBLK(mode))
833 type = DEV_BLOCK;
834 else
835 type = DEV_CHAR;
Li Zefan36fd71d2008-09-02 14:35:52 -0700836
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700837 return __devcgroup_check_permission(type, MAJOR(dev), MINOR(dev),
838 ACC_MKNOD);
Li Zefan36fd71d2008-09-02 14:35:52 -0700839
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700840}