cgroup: add css_parent()
[linux-2.6-block.git] / security / device_cgroup.c
CommitLineData
08ce5f16 1/*
47c59803 2 * device_cgroup.c - device cgroup subsystem
08ce5f16
SH
3 *
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>
29486df3 12#include <linux/seq_file.h>
5a0e3ad6 13#include <linux/slab.h>
47c59803 14#include <linux/rcupdate.h>
b4046f00 15#include <linux/mutex.h>
08ce5f16
SH
16
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
b4046f00
LZ
26static DEFINE_MUTEX(devcgroup_mutex);
27
c39a2a30
AR
28enum devcg_behavior {
29 DEVCG_DEFAULT_NONE,
30 DEVCG_DEFAULT_ALLOW,
31 DEVCG_DEFAULT_DENY,
32};
33
08ce5f16 34/*
db9aeca9 35 * exception list locking rules:
b4046f00 36 * hold devcgroup_mutex for update/read.
47c59803 37 * hold rcu_read_lock() for read.
08ce5f16
SH
38 */
39
db9aeca9 40struct dev_exception_item {
08ce5f16
SH
41 u32 major, minor;
42 short type;
43 short access;
44 struct list_head list;
4efd1a1b 45 struct rcu_head rcu;
08ce5f16
SH
46};
47
48struct dev_cgroup {
49 struct cgroup_subsys_state css;
db9aeca9 50 struct list_head exceptions;
c39a2a30 51 enum devcg_behavior behavior;
08ce5f16
SH
52};
53
b66862f7
PE
54static inline struct dev_cgroup *css_to_devcgroup(struct cgroup_subsys_state *s)
55{
a7c6d554 56 return s ? container_of(s, struct dev_cgroup, css) : NULL;
b66862f7
PE
57}
58
08ce5f16
SH
59static inline struct dev_cgroup *cgroup_to_devcgroup(struct cgroup *cgroup)
60{
8af01f56 61 return css_to_devcgroup(cgroup_css(cgroup, devices_subsys_id));
08ce5f16
SH
62}
63
f92523e3
PM
64static inline struct dev_cgroup *task_devcgroup(struct task_struct *task)
65{
8af01f56 66 return css_to_devcgroup(task_css(task, devices_subsys_id));
f92523e3
PM
67}
68
08ce5f16
SH
69struct cgroup_subsys devices_subsys;
70
761b3ef5
LZ
71static int devcgroup_can_attach(struct cgroup *new_cgrp,
72 struct cgroup_taskset *set)
08ce5f16 73{
2f7ee569 74 struct task_struct *task = cgroup_taskset_first(set);
08ce5f16 75
2f7ee569
TH
76 if (current != task && !capable(CAP_SYS_ADMIN))
77 return -EPERM;
08ce5f16
SH
78 return 0;
79}
80
81/*
b4046f00 82 * called under devcgroup_mutex
08ce5f16 83 */
db9aeca9 84static int dev_exceptions_copy(struct list_head *dest, struct list_head *orig)
08ce5f16 85{
db9aeca9 86 struct dev_exception_item *ex, *tmp, *new;
08ce5f16 87
4b1c7840
TH
88 lockdep_assert_held(&devcgroup_mutex);
89
db9aeca9
AR
90 list_for_each_entry(ex, orig, list) {
91 new = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
08ce5f16
SH
92 if (!new)
93 goto free_and_exit;
08ce5f16
SH
94 list_add_tail(&new->list, dest);
95 }
96
97 return 0;
98
99free_and_exit:
db9aeca9
AR
100 list_for_each_entry_safe(ex, tmp, dest, list) {
101 list_del(&ex->list);
102 kfree(ex);
08ce5f16
SH
103 }
104 return -ENOMEM;
105}
106
08ce5f16 107/*
b4046f00 108 * called under devcgroup_mutex
08ce5f16 109 */
db9aeca9
AR
110static int dev_exception_add(struct dev_cgroup *dev_cgroup,
111 struct dev_exception_item *ex)
08ce5f16 112{
db9aeca9 113 struct dev_exception_item *excopy, *walk;
08ce5f16 114
4b1c7840
TH
115 lockdep_assert_held(&devcgroup_mutex);
116
db9aeca9
AR
117 excopy = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
118 if (!excopy)
08ce5f16
SH
119 return -ENOMEM;
120
db9aeca9
AR
121 list_for_each_entry(walk, &dev_cgroup->exceptions, list) {
122 if (walk->type != ex->type)
d1ee2971 123 continue;
db9aeca9 124 if (walk->major != ex->major)
d1ee2971 125 continue;
db9aeca9 126 if (walk->minor != ex->minor)
d1ee2971
PE
127 continue;
128
db9aeca9
AR
129 walk->access |= ex->access;
130 kfree(excopy);
131 excopy = NULL;
d1ee2971
PE
132 }
133
db9aeca9
AR
134 if (excopy != NULL)
135 list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions);
08ce5f16
SH
136 return 0;
137}
138
139/*
b4046f00 140 * called under devcgroup_mutex
08ce5f16 141 */
db9aeca9
AR
142static void dev_exception_rm(struct dev_cgroup *dev_cgroup,
143 struct dev_exception_item *ex)
08ce5f16 144{
db9aeca9 145 struct dev_exception_item *walk, *tmp;
08ce5f16 146
4b1c7840
TH
147 lockdep_assert_held(&devcgroup_mutex);
148
db9aeca9
AR
149 list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) {
150 if (walk->type != ex->type)
08ce5f16 151 continue;
db9aeca9 152 if (walk->major != ex->major)
08ce5f16 153 continue;
db9aeca9 154 if (walk->minor != ex->minor)
08ce5f16
SH
155 continue;
156
db9aeca9 157 walk->access &= ~ex->access;
08ce5f16 158 if (!walk->access) {
4efd1a1b 159 list_del_rcu(&walk->list);
6034f7e6 160 kfree_rcu(walk, rcu);
08ce5f16
SH
161 }
162 }
08ce5f16
SH
163}
164
53eb8c82
JS
165static 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
868539a3 175/**
db9aeca9
AR
176 * dev_exception_clean - frees all entries of the exception list
177 * @dev_cgroup: dev_cgroup with the exception list to be cleaned
868539a3
AR
178 *
179 * called under devcgroup_mutex
180 */
db9aeca9 181static void dev_exception_clean(struct dev_cgroup *dev_cgroup)
868539a3 182{
4b1c7840
TH
183 lockdep_assert_held(&devcgroup_mutex);
184
53eb8c82 185 __dev_exception_clean(dev_cgroup);
868539a3
AR
186}
187
bd2953eb
AR
188static inline bool is_devcg_online(const struct dev_cgroup *devcg)
189{
190 return (devcg->behavior != DEVCG_DEFAULT_NONE);
191}
192
1909554c
AR
193/**
194 * devcgroup_online - initializes devcgroup's behavior and exceptions based on
195 * parent's
196 * @cgroup: cgroup getting online
197 * returns 0 in case of success, error code otherwise
198 */
199static int devcgroup_online(struct cgroup *cgroup)
200{
63876986
TH
201 struct dev_cgroup *dev_cgroup = cgroup_to_devcgroup(cgroup);
202 struct dev_cgroup *parent_dev_cgroup = css_to_devcgroup(css_parent(&dev_cgroup->css));
1909554c
AR
203 int ret = 0;
204
205 mutex_lock(&devcgroup_mutex);
1909554c
AR
206
207 if (parent_dev_cgroup == NULL)
208 dev_cgroup->behavior = DEVCG_DEFAULT_ALLOW;
209 else {
210 ret = dev_exceptions_copy(&dev_cgroup->exceptions,
211 &parent_dev_cgroup->exceptions);
212 if (!ret)
213 dev_cgroup->behavior = parent_dev_cgroup->behavior;
214 }
215 mutex_unlock(&devcgroup_mutex);
216
217 return ret;
218}
219
220static void devcgroup_offline(struct cgroup *cgroup)
221{
222 struct dev_cgroup *dev_cgroup = cgroup_to_devcgroup(cgroup);
223
224 mutex_lock(&devcgroup_mutex);
225 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
226 mutex_unlock(&devcgroup_mutex);
227}
228
08ce5f16
SH
229/*
230 * called from kernel/cgroup.c with cgroup_lock() held.
231 */
92fb9748 232static struct cgroup_subsys_state *devcgroup_css_alloc(struct cgroup *cgroup)
08ce5f16 233{
1909554c 234 struct dev_cgroup *dev_cgroup;
08ce5f16
SH
235
236 dev_cgroup = kzalloc(sizeof(*dev_cgroup), GFP_KERNEL);
237 if (!dev_cgroup)
238 return ERR_PTR(-ENOMEM);
db9aeca9 239 INIT_LIST_HEAD(&dev_cgroup->exceptions);
1909554c 240 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
08ce5f16 241
08ce5f16
SH
242 return &dev_cgroup->css;
243}
244
92fb9748 245static void devcgroup_css_free(struct cgroup *cgroup)
08ce5f16
SH
246{
247 struct dev_cgroup *dev_cgroup;
08ce5f16
SH
248
249 dev_cgroup = cgroup_to_devcgroup(cgroup);
53eb8c82 250 __dev_exception_clean(dev_cgroup);
08ce5f16
SH
251 kfree(dev_cgroup);
252}
253
254#define DEVCG_ALLOW 1
255#define DEVCG_DENY 2
29486df3
SH
256#define DEVCG_LIST 3
257
17d213f8 258#define MAJMINLEN 13
29486df3 259#define ACCLEN 4
08ce5f16
SH
260
261static void set_access(char *acc, short access)
262{
263 int idx = 0;
29486df3 264 memset(acc, 0, ACCLEN);
08ce5f16
SH
265 if (access & ACC_READ)
266 acc[idx++] = 'r';
267 if (access & ACC_WRITE)
268 acc[idx++] = 'w';
269 if (access & ACC_MKNOD)
270 acc[idx++] = 'm';
271}
272
273static char type_to_char(short type)
274{
275 if (type == DEV_ALL)
276 return 'a';
277 if (type == DEV_CHAR)
278 return 'c';
279 if (type == DEV_BLOCK)
280 return 'b';
281 return 'X';
282}
283
29486df3 284static void set_majmin(char *str, unsigned m)
08ce5f16 285{
08ce5f16 286 if (m == ~0)
7759fc9d 287 strcpy(str, "*");
08ce5f16 288 else
7759fc9d 289 sprintf(str, "%u", m);
08ce5f16
SH
290}
291
29486df3
SH
292static int devcgroup_seq_read(struct cgroup *cgroup, struct cftype *cft,
293 struct seq_file *m)
08ce5f16 294{
29486df3 295 struct dev_cgroup *devcgroup = cgroup_to_devcgroup(cgroup);
db9aeca9 296 struct dev_exception_item *ex;
29486df3 297 char maj[MAJMINLEN], min[MAJMINLEN], acc[ACCLEN];
08ce5f16 298
4efd1a1b 299 rcu_read_lock();
ad676077
AR
300 /*
301 * To preserve the compatibility:
302 * - Only show the "all devices" when the default policy is to allow
303 * - List the exceptions in case the default policy is to deny
304 * This way, the file remains as a "whitelist of devices"
305 */
5b7aa7d5 306 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
ad676077
AR
307 set_access(acc, ACC_MASK);
308 set_majmin(maj, ~0);
309 set_majmin(min, ~0);
310 seq_printf(m, "%c %s:%s %s\n", type_to_char(DEV_ALL),
29486df3 311 maj, min, acc);
ad676077 312 } else {
db9aeca9
AR
313 list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) {
314 set_access(acc, ex->access);
315 set_majmin(maj, ex->major);
316 set_majmin(min, ex->minor);
317 seq_printf(m, "%c %s:%s %s\n", type_to_char(ex->type),
ad676077
AR
318 maj, min, acc);
319 }
08ce5f16 320 }
4efd1a1b 321 rcu_read_unlock();
08ce5f16 322
29486df3 323 return 0;
08ce5f16
SH
324}
325
ad676077 326/**
db9aeca9
AR
327 * may_access - verifies if a new exception is part of what is allowed
328 * by a dev cgroup based on the default policy +
329 * exceptions. This is used to make sure a child cgroup
330 * won't have more privileges than its parent or to
331 * verify if a certain access is allowed.
ad676077 332 * @dev_cgroup: dev cgroup to be tested against
db9aeca9 333 * @refex: new exception
c39a2a30 334 * @behavior: behavior of the exception
08ce5f16 335 */
26898fdf 336static bool may_access(struct dev_cgroup *dev_cgroup,
c39a2a30
AR
337 struct dev_exception_item *refex,
338 enum devcg_behavior behavior)
08ce5f16 339{
db9aeca9 340 struct dev_exception_item *ex;
ad676077 341 bool match = false;
08ce5f16 342
4b1c7840
TH
343 rcu_lockdep_assert(rcu_read_lock_held() ||
344 lockdep_is_held(&devcgroup_mutex),
345 "device_cgroup::may_access() called without proper synchronization");
346
201e72ac 347 list_for_each_entry_rcu(ex, &dev_cgroup->exceptions, list) {
db9aeca9 348 if ((refex->type & DEV_BLOCK) && !(ex->type & DEV_BLOCK))
08ce5f16 349 continue;
db9aeca9 350 if ((refex->type & DEV_CHAR) && !(ex->type & DEV_CHAR))
08ce5f16 351 continue;
db9aeca9 352 if (ex->major != ~0 && ex->major != refex->major)
08ce5f16 353 continue;
db9aeca9 354 if (ex->minor != ~0 && ex->minor != refex->minor)
08ce5f16 355 continue;
db9aeca9 356 if (refex->access & (~ex->access))
08ce5f16 357 continue;
ad676077
AR
358 match = true;
359 break;
08ce5f16 360 }
ad676077 361
c39a2a30
AR
362 if (dev_cgroup->behavior == DEVCG_DEFAULT_ALLOW) {
363 if (behavior == DEVCG_DEFAULT_ALLOW) {
364 /* the exception will deny access to certain devices */
365 return true;
366 } else {
367 /* the exception will allow access to certain devices */
368 if (match)
369 /*
370 * a new exception allowing access shouldn't
371 * match an parent's exception
372 */
373 return false;
26898fdf 374 return true;
c39a2a30 375 }
26898fdf 376 } else {
c39a2a30
AR
377 /* only behavior == DEVCG_DEFAULT_DENY allowed here */
378 if (match)
379 /* parent has an exception that matches the proposed */
26898fdf 380 return true;
c39a2a30
AR
381 else
382 return false;
26898fdf
AR
383 }
384 return false;
08ce5f16
SH
385}
386
387/*
388 * parent_has_perm:
db9aeca9 389 * when adding a new allow rule to a device exception list, the rule
08ce5f16
SH
390 * must be allowed in the parent device
391 */
f92523e3 392static int parent_has_perm(struct dev_cgroup *childcg,
db9aeca9 393 struct dev_exception_item *ex)
08ce5f16 394{
63876986 395 struct dev_cgroup *parent = css_to_devcgroup(css_parent(&childcg->css));
08ce5f16 396
63876986 397 if (!parent)
08ce5f16 398 return 1;
c39a2a30 399 return may_access(parent, ex, childcg->behavior);
08ce5f16
SH
400}
401
4cef7299
AR
402/**
403 * may_allow_all - checks if it's possible to change the behavior to
404 * allow based on parent's rules.
405 * @parent: device cgroup's parent
406 * returns: != 0 in case it's allowed, 0 otherwise
407 */
408static inline int may_allow_all(struct dev_cgroup *parent)
409{
64e10477
AR
410 if (!parent)
411 return 1;
4cef7299
AR
412 return parent->behavior == DEVCG_DEFAULT_ALLOW;
413}
414
bd2953eb
AR
415/**
416 * revalidate_active_exceptions - walks through the active exception list and
417 * revalidates the exceptions based on parent's
418 * behavior and exceptions. The exceptions that
419 * are no longer valid will be removed.
420 * Called with devcgroup_mutex held.
421 * @devcg: cgroup which exceptions will be checked
422 *
423 * This is one of the three key functions for hierarchy implementation.
424 * This function is responsible for re-evaluating all the cgroup's active
425 * exceptions due to a parent's exception change.
426 * Refer to Documentation/cgroups/devices.txt for more details.
427 */
428static void revalidate_active_exceptions(struct dev_cgroup *devcg)
429{
430 struct dev_exception_item *ex;
431 struct list_head *this, *tmp;
432
433 list_for_each_safe(this, tmp, &devcg->exceptions) {
434 ex = container_of(this, struct dev_exception_item, list);
435 if (!parent_has_perm(devcg, ex))
436 dev_exception_rm(devcg, ex);
437 }
438}
439
bd2953eb
AR
440/**
441 * propagate_exception - propagates a new exception to the children
442 * @devcg_root: device cgroup that added a new exception
443 * @ex: new exception to be propagated
444 *
445 * returns: 0 in case of success, != 0 in case of error
446 */
447static int propagate_exception(struct dev_cgroup *devcg_root,
448 struct dev_exception_item *ex)
449{
d591fb56 450 struct cgroup *root = devcg_root->css.cgroup, *pos;
bd2953eb 451 int rc = 0;
bd2953eb 452
d591fb56 453 rcu_read_lock();
bd2953eb 454
d591fb56
TH
455 cgroup_for_each_descendant_pre(pos, root) {
456 struct dev_cgroup *devcg = cgroup_to_devcgroup(pos);
457
458 /*
459 * Because devcgroup_mutex is held, no devcg will become
460 * online or offline during the tree walk (see on/offline
461 * methods), and online ones are safe to access outside RCU
462 * read lock without bumping refcnt.
463 */
464 if (!is_devcg_online(devcg))
465 continue;
466
467 rcu_read_unlock();
bd2953eb
AR
468
469 /*
470 * in case both root's behavior and devcg is allow, a new
471 * restriction means adding to the exception list
472 */
473 if (devcg_root->behavior == DEVCG_DEFAULT_ALLOW &&
474 devcg->behavior == DEVCG_DEFAULT_ALLOW) {
475 rc = dev_exception_add(devcg, ex);
476 if (rc)
477 break;
478 } else {
479 /*
480 * in the other possible cases:
481 * root's behavior: allow, devcg's: deny
482 * root's behavior: deny, devcg's: deny
483 * the exception will be removed
484 */
485 dev_exception_rm(devcg, ex);
486 }
487 revalidate_active_exceptions(devcg);
488
d591fb56 489 rcu_read_lock();
bd2953eb 490 }
d591fb56
TH
491
492 rcu_read_unlock();
bd2953eb
AR
493 return rc;
494}
495
496static inline bool has_children(struct dev_cgroup *devcgroup)
497{
498 struct cgroup *cgrp = devcgroup->css.cgroup;
499
500 return !list_empty(&cgrp->children);
501}
502
08ce5f16 503/*
db9aeca9 504 * Modify the exception list using allow/deny rules.
08ce5f16
SH
505 * CAP_SYS_ADMIN is needed for this. It's at least separate from CAP_MKNOD
506 * so we can give a container CAP_MKNOD to let it create devices but not
db9aeca9 507 * modify the exception list.
08ce5f16
SH
508 * It seems likely we'll want to add a CAP_CONTAINER capability to allow
509 * us to also grant CAP_SYS_ADMIN to containers without giving away the
db9aeca9 510 * device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
08ce5f16
SH
511 *
512 * Taking rules away is always allowed (given CAP_SYS_ADMIN). Granting
513 * new access is only allowed if you're in the top-level cgroup, or your
514 * parent cgroup has the access you're asking for.
515 */
f92523e3
PM
516static int devcgroup_update_access(struct dev_cgroup *devcgroup,
517 int filetype, const char *buffer)
08ce5f16 518{
f92523e3 519 const char *b;
26fd8405 520 char temp[12]; /* 11 + 1 characters needed for a u32 */
c39a2a30 521 int count, rc = 0;
db9aeca9 522 struct dev_exception_item ex;
63876986 523 struct dev_cgroup *parent = css_to_devcgroup(css_parent(&devcgroup->css));
08ce5f16
SH
524
525 if (!capable(CAP_SYS_ADMIN))
526 return -EPERM;
527
db9aeca9 528 memset(&ex, 0, sizeof(ex));
08ce5f16
SH
529 b = buffer;
530
531 switch (*b) {
532 case 'a':
ad676077
AR
533 switch (filetype) {
534 case DEVCG_ALLOW:
bd2953eb
AR
535 if (has_children(devcgroup))
536 return -EINVAL;
537
4cef7299 538 if (!may_allow_all(parent))
ad676077 539 return -EPERM;
db9aeca9 540 dev_exception_clean(devcgroup);
64e10477
AR
541 devcgroup->behavior = DEVCG_DEFAULT_ALLOW;
542 if (!parent)
543 break;
544
4cef7299
AR
545 rc = dev_exceptions_copy(&devcgroup->exceptions,
546 &parent->exceptions);
547 if (rc)
548 return rc;
ad676077
AR
549 break;
550 case DEVCG_DENY:
bd2953eb
AR
551 if (has_children(devcgroup))
552 return -EINVAL;
553
db9aeca9 554 dev_exception_clean(devcgroup);
5b7aa7d5 555 devcgroup->behavior = DEVCG_DEFAULT_DENY;
ad676077
AR
556 break;
557 default:
558 return -EINVAL;
559 }
560 return 0;
08ce5f16 561 case 'b':
db9aeca9 562 ex.type = DEV_BLOCK;
08ce5f16
SH
563 break;
564 case 'c':
db9aeca9 565 ex.type = DEV_CHAR;
08ce5f16
SH
566 break;
567 default:
f92523e3 568 return -EINVAL;
08ce5f16
SH
569 }
570 b++;
f92523e3
PM
571 if (!isspace(*b))
572 return -EINVAL;
08ce5f16
SH
573 b++;
574 if (*b == '*') {
db9aeca9 575 ex.major = ~0;
08ce5f16
SH
576 b++;
577 } else if (isdigit(*b)) {
26fd8405
AR
578 memset(temp, 0, sizeof(temp));
579 for (count = 0; count < sizeof(temp) - 1; count++) {
580 temp[count] = *b;
581 b++;
582 if (!isdigit(*b))
583 break;
584 }
585 rc = kstrtou32(temp, 10, &ex.major);
586 if (rc)
587 return -EINVAL;
08ce5f16 588 } else {
f92523e3 589 return -EINVAL;
08ce5f16 590 }
f92523e3
PM
591 if (*b != ':')
592 return -EINVAL;
08ce5f16
SH
593 b++;
594
595 /* read minor */
596 if (*b == '*') {
db9aeca9 597 ex.minor = ~0;
08ce5f16
SH
598 b++;
599 } else if (isdigit(*b)) {
26fd8405
AR
600 memset(temp, 0, sizeof(temp));
601 for (count = 0; count < sizeof(temp) - 1; count++) {
602 temp[count] = *b;
603 b++;
604 if (!isdigit(*b))
605 break;
606 }
607 rc = kstrtou32(temp, 10, &ex.minor);
608 if (rc)
609 return -EINVAL;
08ce5f16 610 } else {
f92523e3 611 return -EINVAL;
08ce5f16 612 }
f92523e3
PM
613 if (!isspace(*b))
614 return -EINVAL;
08ce5f16
SH
615 for (b++, count = 0; count < 3; count++, b++) {
616 switch (*b) {
617 case 'r':
db9aeca9 618 ex.access |= ACC_READ;
08ce5f16
SH
619 break;
620 case 'w':
db9aeca9 621 ex.access |= ACC_WRITE;
08ce5f16
SH
622 break;
623 case 'm':
db9aeca9 624 ex.access |= ACC_MKNOD;
08ce5f16
SH
625 break;
626 case '\n':
627 case '\0':
628 count = 3;
629 break;
630 default:
f92523e3 631 return -EINVAL;
08ce5f16
SH
632 }
633 }
634
08ce5f16
SH
635 switch (filetype) {
636 case DEVCG_ALLOW:
db9aeca9 637 if (!parent_has_perm(devcgroup, &ex))
f92523e3 638 return -EPERM;
ad676077
AR
639 /*
640 * If the default policy is to allow by default, try to remove
641 * an matching exception instead. And be silent about it: we
642 * don't want to break compatibility
643 */
5b7aa7d5 644 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
db9aeca9 645 dev_exception_rm(devcgroup, &ex);
ad676077
AR
646 return 0;
647 }
bd2953eb
AR
648 rc = dev_exception_add(devcgroup, &ex);
649 break;
08ce5f16 650 case DEVCG_DENY:
ad676077
AR
651 /*
652 * If the default policy is to deny by default, try to remove
653 * an matching exception instead. And be silent about it: we
654 * don't want to break compatibility
655 */
bd2953eb 656 if (devcgroup->behavior == DEVCG_DEFAULT_DENY)
db9aeca9 657 dev_exception_rm(devcgroup, &ex);
bd2953eb
AR
658 else
659 rc = dev_exception_add(devcgroup, &ex);
660
661 if (rc)
662 break;
663 /* we only propagate new restrictions */
664 rc = propagate_exception(devcgroup, &ex);
665 break;
08ce5f16 666 default:
bd2953eb 667 rc = -EINVAL;
08ce5f16 668 }
bd2953eb 669 return rc;
f92523e3 670}
08ce5f16 671
f92523e3
PM
672static int devcgroup_access_write(struct cgroup *cgrp, struct cftype *cft,
673 const char *buffer)
674{
675 int retval;
b4046f00
LZ
676
677 mutex_lock(&devcgroup_mutex);
f92523e3
PM
678 retval = devcgroup_update_access(cgroup_to_devcgroup(cgrp),
679 cft->private, buffer);
b4046f00 680 mutex_unlock(&devcgroup_mutex);
08ce5f16
SH
681 return retval;
682}
683
684static struct cftype dev_cgroup_files[] = {
685 {
686 .name = "allow",
f92523e3 687 .write_string = devcgroup_access_write,
08ce5f16
SH
688 .private = DEVCG_ALLOW,
689 },
690 {
691 .name = "deny",
f92523e3 692 .write_string = devcgroup_access_write,
08ce5f16
SH
693 .private = DEVCG_DENY,
694 },
29486df3
SH
695 {
696 .name = "list",
697 .read_seq_string = devcgroup_seq_read,
698 .private = DEVCG_LIST,
699 },
4baf6e33 700 { } /* terminate */
08ce5f16
SH
701};
702
08ce5f16
SH
703struct cgroup_subsys devices_subsys = {
704 .name = "devices",
705 .can_attach = devcgroup_can_attach,
92fb9748
TH
706 .css_alloc = devcgroup_css_alloc,
707 .css_free = devcgroup_css_free,
1909554c
AR
708 .css_online = devcgroup_online,
709 .css_offline = devcgroup_offline,
08ce5f16 710 .subsys_id = devices_subsys_id,
4baf6e33 711 .base_cftypes = dev_cgroup_files,
08ce5f16
SH
712};
713
ad676077
AR
714/**
715 * __devcgroup_check_permission - checks if an inode operation is permitted
716 * @dev_cgroup: the dev cgroup to be tested against
717 * @type: device type
718 * @major: device major number
719 * @minor: device minor number
720 * @access: combination of ACC_WRITE, ACC_READ and ACC_MKNOD
721 *
722 * returns 0 on success, -EPERM case the operation is not permitted
723 */
8c9506d1 724static int __devcgroup_check_permission(short type, u32 major, u32 minor,
ad676077 725 short access)
08ce5f16 726{
8c9506d1 727 struct dev_cgroup *dev_cgroup;
db9aeca9 728 struct dev_exception_item ex;
ad676077 729 int rc;
36fd71d2 730
db9aeca9
AR
731 memset(&ex, 0, sizeof(ex));
732 ex.type = type;
733 ex.major = major;
734 ex.minor = minor;
735 ex.access = access;
36fd71d2 736
ad676077 737 rcu_read_lock();
8c9506d1 738 dev_cgroup = task_devcgroup(current);
c39a2a30 739 rc = may_access(dev_cgroup, &ex, dev_cgroup->behavior);
ad676077 740 rcu_read_unlock();
cd500819 741
ad676077
AR
742 if (!rc)
743 return -EPERM;
36fd71d2 744
ad676077
AR
745 return 0;
746}
08ce5f16 747
ad676077
AR
748int __devcgroup_inode_permission(struct inode *inode, int mask)
749{
ad676077
AR
750 short type, access = 0;
751
752 if (S_ISBLK(inode->i_mode))
753 type = DEV_BLOCK;
754 if (S_ISCHR(inode->i_mode))
755 type = DEV_CHAR;
756 if (mask & MAY_WRITE)
757 access |= ACC_WRITE;
758 if (mask & MAY_READ)
759 access |= ACC_READ;
760
8c9506d1
JS
761 return __devcgroup_check_permission(type, imajor(inode), iminor(inode),
762 access);
08ce5f16
SH
763}
764
765int devcgroup_inode_mknod(int mode, dev_t dev)
766{
ad676077 767 short type;
08ce5f16 768
0b82ac37
SH
769 if (!S_ISBLK(mode) && !S_ISCHR(mode))
770 return 0;
771
ad676077
AR
772 if (S_ISBLK(mode))
773 type = DEV_BLOCK;
774 else
775 type = DEV_CHAR;
36fd71d2 776
8c9506d1
JS
777 return __devcgroup_check_permission(type, MAJOR(dev), MINOR(dev),
778 ACC_MKNOD);
36fd71d2 779
08ce5f16 780}