blob: 16c9e1069be6bb23a24116a32b7b658207c2a124 [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 Rozanski1909554c2013-02-15 11:55:46 -0500188/**
189 * devcgroup_online - initializes devcgroup's behavior and exceptions based on
190 * parent's
191 * @cgroup: cgroup getting online
192 * returns 0 in case of success, error code otherwise
193 */
194static int devcgroup_online(struct cgroup *cgroup)
195{
196 struct dev_cgroup *dev_cgroup, *parent_dev_cgroup = NULL;
197 int ret = 0;
198
199 mutex_lock(&devcgroup_mutex);
200 dev_cgroup = cgroup_to_devcgroup(cgroup);
201 if (cgroup->parent)
202 parent_dev_cgroup = cgroup_to_devcgroup(cgroup->parent);
203
204 if (parent_dev_cgroup == NULL)
205 dev_cgroup->behavior = DEVCG_DEFAULT_ALLOW;
206 else {
207 ret = dev_exceptions_copy(&dev_cgroup->exceptions,
208 &parent_dev_cgroup->exceptions);
209 if (!ret)
210 dev_cgroup->behavior = parent_dev_cgroup->behavior;
211 }
212 mutex_unlock(&devcgroup_mutex);
213
214 return ret;
215}
216
217static void devcgroup_offline(struct cgroup *cgroup)
218{
219 struct dev_cgroup *dev_cgroup = cgroup_to_devcgroup(cgroup);
220
221 mutex_lock(&devcgroup_mutex);
222 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
223 mutex_unlock(&devcgroup_mutex);
224}
225
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700226/*
227 * called from kernel/cgroup.c with cgroup_lock() held.
228 */
Tejun Heo92fb9742012-11-19 08:13:38 -0800229static struct cgroup_subsys_state *devcgroup_css_alloc(struct cgroup *cgroup)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700230{
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500231 struct dev_cgroup *dev_cgroup;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700232 struct cgroup *parent_cgroup;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700233
234 dev_cgroup = kzalloc(sizeof(*dev_cgroup), GFP_KERNEL);
235 if (!dev_cgroup)
236 return ERR_PTR(-ENOMEM);
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700237 INIT_LIST_HEAD(&dev_cgroup->exceptions);
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500238 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700239 parent_cgroup = cgroup->parent;
240
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700241 return &dev_cgroup->css;
242}
243
Tejun Heo92fb9742012-11-19 08:13:38 -0800244static void devcgroup_css_free(struct cgroup *cgroup)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700245{
246 struct dev_cgroup *dev_cgroup;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700247
248 dev_cgroup = cgroup_to_devcgroup(cgroup);
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800249 __dev_exception_clean(dev_cgroup);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700250 kfree(dev_cgroup);
251}
252
253#define DEVCG_ALLOW 1
254#define DEVCG_DENY 2
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700255#define DEVCG_LIST 3
256
Li Zefan17d213f2008-07-13 12:14:02 -0700257#define MAJMINLEN 13
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700258#define ACCLEN 4
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700259
260static void set_access(char *acc, short access)
261{
262 int idx = 0;
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700263 memset(acc, 0, ACCLEN);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700264 if (access & ACC_READ)
265 acc[idx++] = 'r';
266 if (access & ACC_WRITE)
267 acc[idx++] = 'w';
268 if (access & ACC_MKNOD)
269 acc[idx++] = 'm';
270}
271
272static char type_to_char(short type)
273{
274 if (type == DEV_ALL)
275 return 'a';
276 if (type == DEV_CHAR)
277 return 'c';
278 if (type == DEV_BLOCK)
279 return 'b';
280 return 'X';
281}
282
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700283static void set_majmin(char *str, unsigned m)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700284{
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700285 if (m == ~0)
Li Zefan7759fc92008-07-25 01:47:08 -0700286 strcpy(str, "*");
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700287 else
Li Zefan7759fc92008-07-25 01:47:08 -0700288 sprintf(str, "%u", m);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700289}
290
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700291static int devcgroup_seq_read(struct cgroup *cgroup, struct cftype *cft,
292 struct seq_file *m)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700293{
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700294 struct dev_cgroup *devcgroup = cgroup_to_devcgroup(cgroup);
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700295 struct dev_exception_item *ex;
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700296 char maj[MAJMINLEN], min[MAJMINLEN], acc[ACCLEN];
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700297
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700298 rcu_read_lock();
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700299 /*
300 * To preserve the compatibility:
301 * - Only show the "all devices" when the default policy is to allow
302 * - List the exceptions in case the default policy is to deny
303 * This way, the file remains as a "whitelist of devices"
304 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700305 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700306 set_access(acc, ACC_MASK);
307 set_majmin(maj, ~0);
308 set_majmin(min, ~0);
309 seq_printf(m, "%c %s:%s %s\n", type_to_char(DEV_ALL),
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700310 maj, min, acc);
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700311 } else {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700312 list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) {
313 set_access(acc, ex->access);
314 set_majmin(maj, ex->major);
315 set_majmin(min, ex->minor);
316 seq_printf(m, "%c %s:%s %s\n", type_to_char(ex->type),
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700317 maj, min, acc);
318 }
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700319 }
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700320 rcu_read_unlock();
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700321
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700322 return 0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700323}
324
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700325/**
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700326 * may_access - verifies if a new exception is part of what is allowed
327 * by a dev cgroup based on the default policy +
328 * exceptions. This is used to make sure a child cgroup
329 * won't have more privileges than its parent or to
330 * verify if a certain access is allowed.
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700331 * @dev_cgroup: dev cgroup to be tested against
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700332 * @refex: new exception
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500333 * @behavior: behavior of the exception
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700334 */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500335static bool may_access(struct dev_cgroup *dev_cgroup,
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500336 struct dev_exception_item *refex,
337 enum devcg_behavior behavior)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700338{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700339 struct dev_exception_item *ex;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700340 bool match = false;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700341
Tejun Heo4b1c7842012-11-06 09:16:53 -0800342 rcu_lockdep_assert(rcu_read_lock_held() ||
343 lockdep_is_held(&devcgroup_mutex),
344 "device_cgroup::may_access() called without proper synchronization");
345
Tejun Heo201e72a2012-11-06 09:17:37 -0800346 list_for_each_entry_rcu(ex, &dev_cgroup->exceptions, list) {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700347 if ((refex->type & DEV_BLOCK) && !(ex->type & DEV_BLOCK))
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700348 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700349 if ((refex->type & DEV_CHAR) && !(ex->type & DEV_CHAR))
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700350 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700351 if (ex->major != ~0 && ex->major != refex->major)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700352 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700353 if (ex->minor != ~0 && ex->minor != refex->minor)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700354 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700355 if (refex->access & (~ex->access))
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700356 continue;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700357 match = true;
358 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700359 }
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700360
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500361 if (dev_cgroup->behavior == DEVCG_DEFAULT_ALLOW) {
362 if (behavior == DEVCG_DEFAULT_ALLOW) {
363 /* the exception will deny access to certain devices */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500364 return true;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500365 } else {
366 /* the exception will allow access to certain devices */
367 if (match)
368 /*
369 * a new exception allowing access shouldn't
370 * match an parent's exception
371 */
372 return false;
373 return true;
374 }
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500375 } else {
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500376 /* only behavior == DEVCG_DEFAULT_DENY allowed here */
377 if (match)
378 /* parent has an exception that matches the proposed */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500379 return true;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500380 else
381 return false;
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500382 }
383 return false;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700384}
385
386/*
387 * parent_has_perm:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700388 * when adding a new allow rule to a device exception list, the rule
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700389 * must be allowed in the parent device
390 */
Paul Menagef92523e2008-07-25 01:47:03 -0700391static int parent_has_perm(struct dev_cgroup *childcg,
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700392 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700393{
Paul Menagef92523e2008-07-25 01:47:03 -0700394 struct cgroup *pcg = childcg->css.cgroup->parent;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700395 struct dev_cgroup *parent;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700396
397 if (!pcg)
398 return 1;
399 parent = cgroup_to_devcgroup(pcg);
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500400 return may_access(parent, ex, childcg->behavior);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700401}
402
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700403/**
404 * may_allow_all - checks if it's possible to change the behavior to
405 * allow based on parent's rules.
406 * @parent: device cgroup's parent
407 * returns: != 0 in case it's allowed, 0 otherwise
408 */
409static inline int may_allow_all(struct dev_cgroup *parent)
410{
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800411 if (!parent)
412 return 1;
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700413 return parent->behavior == DEVCG_DEFAULT_ALLOW;
414}
415
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700416/*
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700417 * Modify the exception list using allow/deny rules.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700418 * CAP_SYS_ADMIN is needed for this. It's at least separate from CAP_MKNOD
419 * so we can give a container CAP_MKNOD to let it create devices but not
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700420 * modify the exception list.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700421 * It seems likely we'll want to add a CAP_CONTAINER capability to allow
422 * us to also grant CAP_SYS_ADMIN to containers without giving away the
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700423 * device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700424 *
425 * Taking rules away is always allowed (given CAP_SYS_ADMIN). Granting
426 * new access is only allowed if you're in the top-level cgroup, or your
427 * parent cgroup has the access you're asking for.
428 */
Paul Menagef92523e2008-07-25 01:47:03 -0700429static int devcgroup_update_access(struct dev_cgroup *devcgroup,
430 int filetype, const char *buffer)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700431{
Paul Menagef92523e2008-07-25 01:47:03 -0700432 const char *b;
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700433 char temp[12]; /* 11 + 1 characters needed for a u32 */
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500434 int count, rc = 0;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700435 struct dev_exception_item ex;
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700436 struct cgroup *p = devcgroup->css.cgroup;
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800437 struct dev_cgroup *parent = NULL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700438
439 if (!capable(CAP_SYS_ADMIN))
440 return -EPERM;
441
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800442 if (p->parent)
443 parent = cgroup_to_devcgroup(p->parent);
444
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700445 memset(&ex, 0, sizeof(ex));
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700446 b = buffer;
447
448 switch (*b) {
449 case 'a':
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700450 switch (filetype) {
451 case DEVCG_ALLOW:
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700452 if (!may_allow_all(parent))
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700453 return -EPERM;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700454 dev_exception_clean(devcgroup);
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800455 devcgroup->behavior = DEVCG_DEFAULT_ALLOW;
456 if (!parent)
457 break;
458
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700459 rc = dev_exceptions_copy(&devcgroup->exceptions,
460 &parent->exceptions);
461 if (rc)
462 return rc;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700463 break;
464 case DEVCG_DENY:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700465 dev_exception_clean(devcgroup);
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700466 devcgroup->behavior = DEVCG_DEFAULT_DENY;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700467 break;
468 default:
469 return -EINVAL;
470 }
471 return 0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700472 case 'b':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700473 ex.type = DEV_BLOCK;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700474 break;
475 case 'c':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700476 ex.type = DEV_CHAR;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700477 break;
478 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700479 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700480 }
481 b++;
Paul Menagef92523e2008-07-25 01:47:03 -0700482 if (!isspace(*b))
483 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700484 b++;
485 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700486 ex.major = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700487 b++;
488 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700489 memset(temp, 0, sizeof(temp));
490 for (count = 0; count < sizeof(temp) - 1; count++) {
491 temp[count] = *b;
492 b++;
493 if (!isdigit(*b))
494 break;
495 }
496 rc = kstrtou32(temp, 10, &ex.major);
497 if (rc)
498 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700499 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700500 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700501 }
Paul Menagef92523e2008-07-25 01:47:03 -0700502 if (*b != ':')
503 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700504 b++;
505
506 /* read minor */
507 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700508 ex.minor = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700509 b++;
510 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700511 memset(temp, 0, sizeof(temp));
512 for (count = 0; count < sizeof(temp) - 1; count++) {
513 temp[count] = *b;
514 b++;
515 if (!isdigit(*b))
516 break;
517 }
518 rc = kstrtou32(temp, 10, &ex.minor);
519 if (rc)
520 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700521 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700522 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700523 }
Paul Menagef92523e2008-07-25 01:47:03 -0700524 if (!isspace(*b))
525 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700526 for (b++, count = 0; count < 3; count++, b++) {
527 switch (*b) {
528 case 'r':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700529 ex.access |= ACC_READ;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700530 break;
531 case 'w':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700532 ex.access |= ACC_WRITE;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700533 break;
534 case 'm':
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700535 ex.access |= ACC_MKNOD;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700536 break;
537 case '\n':
538 case '\0':
539 count = 3;
540 break;
541 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700542 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700543 }
544 }
545
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700546 switch (filetype) {
547 case DEVCG_ALLOW:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700548 if (!parent_has_perm(devcgroup, &ex))
Paul Menagef92523e2008-07-25 01:47:03 -0700549 return -EPERM;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700550 /*
551 * If the default policy is to allow by default, try to remove
552 * an matching exception instead. And be silent about it: we
553 * don't want to break compatibility
554 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700555 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700556 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700557 return 0;
558 }
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700559 return dev_exception_add(devcgroup, &ex);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700560 case DEVCG_DENY:
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700561 /*
562 * If the default policy is to deny by default, try to remove
563 * an matching exception instead. And be silent about it: we
564 * don't want to break compatibility
565 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700566 if (devcgroup->behavior == DEVCG_DEFAULT_DENY) {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700567 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700568 return 0;
569 }
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700570 return dev_exception_add(devcgroup, &ex);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700571 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700572 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700573 }
Paul Menagef92523e2008-07-25 01:47:03 -0700574 return 0;
575}
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700576
Paul Menagef92523e2008-07-25 01:47:03 -0700577static int devcgroup_access_write(struct cgroup *cgrp, struct cftype *cft,
578 const char *buffer)
579{
580 int retval;
Li Zefanb4046f02009-04-02 16:57:32 -0700581
582 mutex_lock(&devcgroup_mutex);
Paul Menagef92523e2008-07-25 01:47:03 -0700583 retval = devcgroup_update_access(cgroup_to_devcgroup(cgrp),
584 cft->private, buffer);
Li Zefanb4046f02009-04-02 16:57:32 -0700585 mutex_unlock(&devcgroup_mutex);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700586 return retval;
587}
588
589static struct cftype dev_cgroup_files[] = {
590 {
591 .name = "allow",
Paul Menagef92523e2008-07-25 01:47:03 -0700592 .write_string = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700593 .private = DEVCG_ALLOW,
594 },
595 {
596 .name = "deny",
Paul Menagef92523e2008-07-25 01:47:03 -0700597 .write_string = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700598 .private = DEVCG_DENY,
599 },
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700600 {
601 .name = "list",
602 .read_seq_string = devcgroup_seq_read,
603 .private = DEVCG_LIST,
604 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700605 { } /* terminate */
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700606};
607
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700608struct cgroup_subsys devices_subsys = {
609 .name = "devices",
610 .can_attach = devcgroup_can_attach,
Tejun Heo92fb9742012-11-19 08:13:38 -0800611 .css_alloc = devcgroup_css_alloc,
612 .css_free = devcgroup_css_free,
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500613 .css_online = devcgroup_online,
614 .css_offline = devcgroup_offline,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700615 .subsys_id = devices_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -0700616 .base_cftypes = dev_cgroup_files,
Tejun Heo8c7f6ed2012-09-13 12:20:58 -0700617
618 /*
619 * While devices cgroup has the rudimentary hierarchy support which
620 * checks the parent's restriction, it doesn't properly propagates
621 * config changes in ancestors to their descendents. A child
622 * should only be allowed to add more restrictions to the parent's
623 * configuration. Fix it and remove the following.
624 */
625 .broken_hierarchy = true,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700626};
627
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700628/**
629 * __devcgroup_check_permission - checks if an inode operation is permitted
630 * @dev_cgroup: the dev cgroup to be tested against
631 * @type: device type
632 * @major: device major number
633 * @minor: device minor number
634 * @access: combination of ACC_WRITE, ACC_READ and ACC_MKNOD
635 *
636 * returns 0 on success, -EPERM case the operation is not permitted
637 */
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700638static int __devcgroup_check_permission(short type, u32 major, u32 minor,
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700639 short access)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700640{
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700641 struct dev_cgroup *dev_cgroup;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700642 struct dev_exception_item ex;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700643 int rc;
644
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700645 memset(&ex, 0, sizeof(ex));
646 ex.type = type;
647 ex.major = major;
648 ex.minor = minor;
649 ex.access = access;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700650
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700651 rcu_read_lock();
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700652 dev_cgroup = task_devcgroup(current);
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500653 rc = may_access(dev_cgroup, &ex, dev_cgroup->behavior);
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700654 rcu_read_unlock();
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700655
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700656 if (!rc)
657 return -EPERM;
658
659 return 0;
660}
661
662int __devcgroup_inode_permission(struct inode *inode, int mask)
663{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700664 short type, access = 0;
665
666 if (S_ISBLK(inode->i_mode))
667 type = DEV_BLOCK;
668 if (S_ISCHR(inode->i_mode))
669 type = DEV_CHAR;
670 if (mask & MAY_WRITE)
671 access |= ACC_WRITE;
672 if (mask & MAY_READ)
673 access |= ACC_READ;
674
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700675 return __devcgroup_check_permission(type, imajor(inode), iminor(inode),
676 access);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700677}
678
679int devcgroup_inode_mknod(int mode, dev_t dev)
680{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700681 short type;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700682
Serge E. Hallyn0b82ac32009-01-07 18:07:46 -0800683 if (!S_ISBLK(mode) && !S_ISCHR(mode))
684 return 0;
685
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700686 if (S_ISBLK(mode))
687 type = DEV_BLOCK;
688 else
689 type = DEV_CHAR;
Li Zefan36fd71d2008-09-02 14:35:52 -0700690
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700691 return __devcgroup_check_permission(type, MAJOR(dev), MINOR(dev),
692 ACC_MKNOD);
Li Zefan36fd71d2008-09-02 14:35:52 -0700693
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700694}