2 * device_cgroup.c - device cgroup subsystem
4 * Copyright 2007 IBM Corp
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>
12 #include <linux/seq_file.h>
13 #include <linux/slab.h>
14 #include <linux/rcupdate.h>
15 #include <linux/mutex.h>
20 #define ACC_MASK (ACC_MKNOD | ACC_READ | ACC_WRITE)
24 #define DEV_ALL 4 /* this represents all devices */
26 static DEFINE_MUTEX(devcgroup_mutex
);
35 * exception list locking rules:
36 * hold devcgroup_mutex for update/read.
37 * hold rcu_read_lock() for read.
40 struct dev_exception_item
{
44 struct list_head list
;
49 struct cgroup_subsys_state css
;
50 struct list_head exceptions
;
51 enum devcg_behavior behavior
;
52 /* temporary list for pending propagation operations */
53 struct list_head propagate_pending
;
56 static inline struct dev_cgroup
*css_to_devcgroup(struct cgroup_subsys_state
*s
)
58 return container_of(s
, struct dev_cgroup
, css
);
61 static inline struct dev_cgroup
*cgroup_to_devcgroup(struct cgroup
*cgroup
)
63 return css_to_devcgroup(cgroup_subsys_state(cgroup
, devices_subsys_id
));
66 static inline struct dev_cgroup
*task_devcgroup(struct task_struct
*task
)
68 return css_to_devcgroup(task_subsys_state(task
, devices_subsys_id
));
71 struct cgroup_subsys devices_subsys
;
73 static int devcgroup_can_attach(struct cgroup
*new_cgrp
,
74 struct cgroup_taskset
*set
)
76 struct task_struct
*task
= cgroup_taskset_first(set
);
78 if (current
!= task
&& !capable(CAP_SYS_ADMIN
))
84 * called under devcgroup_mutex
86 static int dev_exceptions_copy(struct list_head
*dest
, struct list_head
*orig
)
88 struct dev_exception_item
*ex
, *tmp
, *new;
90 lockdep_assert_held(&devcgroup_mutex
);
92 list_for_each_entry(ex
, orig
, list
) {
93 new = kmemdup(ex
, sizeof(*ex
), GFP_KERNEL
);
96 list_add_tail(&new->list
, dest
);
102 list_for_each_entry_safe(ex
, tmp
, dest
, list
) {
110 * called under devcgroup_mutex
112 static int dev_exception_add(struct dev_cgroup
*dev_cgroup
,
113 struct dev_exception_item
*ex
)
115 struct dev_exception_item
*excopy
, *walk
;
117 lockdep_assert_held(&devcgroup_mutex
);
119 excopy
= kmemdup(ex
, sizeof(*ex
), GFP_KERNEL
);
123 list_for_each_entry(walk
, &dev_cgroup
->exceptions
, list
) {
124 if (walk
->type
!= ex
->type
)
126 if (walk
->major
!= ex
->major
)
128 if (walk
->minor
!= ex
->minor
)
131 walk
->access
|= ex
->access
;
137 list_add_tail_rcu(&excopy
->list
, &dev_cgroup
->exceptions
);
142 * called under devcgroup_mutex
144 static void dev_exception_rm(struct dev_cgroup
*dev_cgroup
,
145 struct dev_exception_item
*ex
)
147 struct dev_exception_item
*walk
, *tmp
;
149 lockdep_assert_held(&devcgroup_mutex
);
151 list_for_each_entry_safe(walk
, tmp
, &dev_cgroup
->exceptions
, list
) {
152 if (walk
->type
!= ex
->type
)
154 if (walk
->major
!= ex
->major
)
156 if (walk
->minor
!= ex
->minor
)
159 walk
->access
&= ~ex
->access
;
161 list_del_rcu(&walk
->list
);
162 kfree_rcu(walk
, rcu
);
167 static void __dev_exception_clean(struct dev_cgroup
*dev_cgroup
)
169 struct dev_exception_item
*ex
, *tmp
;
171 list_for_each_entry_safe(ex
, tmp
, &dev_cgroup
->exceptions
, list
) {
172 list_del_rcu(&ex
->list
);
178 * dev_exception_clean - frees all entries of the exception list
179 * @dev_cgroup: dev_cgroup with the exception list to be cleaned
181 * called under devcgroup_mutex
183 static void dev_exception_clean(struct dev_cgroup
*dev_cgroup
)
185 lockdep_assert_held(&devcgroup_mutex
);
187 __dev_exception_clean(dev_cgroup
);
190 static inline bool is_devcg_online(const struct dev_cgroup
*devcg
)
192 return (devcg
->behavior
!= DEVCG_DEFAULT_NONE
);
196 * devcgroup_online - initializes devcgroup's behavior and exceptions based on
198 * @cgroup: cgroup getting online
199 * returns 0 in case of success, error code otherwise
201 static int devcgroup_online(struct cgroup
*cgroup
)
203 struct dev_cgroup
*dev_cgroup
, *parent_dev_cgroup
= NULL
;
206 mutex_lock(&devcgroup_mutex
);
207 dev_cgroup
= cgroup_to_devcgroup(cgroup
);
209 parent_dev_cgroup
= cgroup_to_devcgroup(cgroup
->parent
);
211 if (parent_dev_cgroup
== NULL
)
212 dev_cgroup
->behavior
= DEVCG_DEFAULT_ALLOW
;
214 ret
= dev_exceptions_copy(&dev_cgroup
->exceptions
,
215 &parent_dev_cgroup
->exceptions
);
217 dev_cgroup
->behavior
= parent_dev_cgroup
->behavior
;
219 mutex_unlock(&devcgroup_mutex
);
224 static void devcgroup_offline(struct cgroup
*cgroup
)
226 struct dev_cgroup
*dev_cgroup
= cgroup_to_devcgroup(cgroup
);
228 mutex_lock(&devcgroup_mutex
);
229 dev_cgroup
->behavior
= DEVCG_DEFAULT_NONE
;
230 mutex_unlock(&devcgroup_mutex
);
234 * called from kernel/cgroup.c with cgroup_lock() held.
236 static struct cgroup_subsys_state
*devcgroup_css_alloc(struct cgroup
*cgroup
)
238 struct dev_cgroup
*dev_cgroup
;
240 dev_cgroup
= kzalloc(sizeof(*dev_cgroup
), GFP_KERNEL
);
242 return ERR_PTR(-ENOMEM
);
243 INIT_LIST_HEAD(&dev_cgroup
->exceptions
);
244 INIT_LIST_HEAD(&dev_cgroup
->propagate_pending
);
245 dev_cgroup
->behavior
= DEVCG_DEFAULT_NONE
;
247 return &dev_cgroup
->css
;
250 static void devcgroup_css_free(struct cgroup
*cgroup
)
252 struct dev_cgroup
*dev_cgroup
;
254 dev_cgroup
= cgroup_to_devcgroup(cgroup
);
255 __dev_exception_clean(dev_cgroup
);
259 #define DEVCG_ALLOW 1
266 static void set_access(char *acc
, short access
)
269 memset(acc
, 0, ACCLEN
);
270 if (access
& ACC_READ
)
272 if (access
& ACC_WRITE
)
274 if (access
& ACC_MKNOD
)
278 static char type_to_char(short type
)
282 if (type
== DEV_CHAR
)
284 if (type
== DEV_BLOCK
)
289 static void set_majmin(char *str
, unsigned m
)
294 sprintf(str
, "%u", m
);
297 static int devcgroup_seq_read(struct cgroup
*cgroup
, struct cftype
*cft
,
300 struct dev_cgroup
*devcgroup
= cgroup_to_devcgroup(cgroup
);
301 struct dev_exception_item
*ex
;
302 char maj
[MAJMINLEN
], min
[MAJMINLEN
], acc
[ACCLEN
];
306 * To preserve the compatibility:
307 * - Only show the "all devices" when the default policy is to allow
308 * - List the exceptions in case the default policy is to deny
309 * This way, the file remains as a "whitelist of devices"
311 if (devcgroup
->behavior
== DEVCG_DEFAULT_ALLOW
) {
312 set_access(acc
, ACC_MASK
);
315 seq_printf(m
, "%c %s:%s %s\n", type_to_char(DEV_ALL
),
318 list_for_each_entry_rcu(ex
, &devcgroup
->exceptions
, list
) {
319 set_access(acc
, ex
->access
);
320 set_majmin(maj
, ex
->major
);
321 set_majmin(min
, ex
->minor
);
322 seq_printf(m
, "%c %s:%s %s\n", type_to_char(ex
->type
),
332 * may_access - verifies if a new exception is part of what is allowed
333 * by a dev cgroup based on the default policy +
334 * exceptions. This is used to make sure a child cgroup
335 * won't have more privileges than its parent or to
336 * verify if a certain access is allowed.
337 * @dev_cgroup: dev cgroup to be tested against
338 * @refex: new exception
339 * @behavior: behavior of the exception
341 static bool may_access(struct dev_cgroup
*dev_cgroup
,
342 struct dev_exception_item
*refex
,
343 enum devcg_behavior behavior
)
345 struct dev_exception_item
*ex
;
348 rcu_lockdep_assert(rcu_read_lock_held() ||
349 lockdep_is_held(&devcgroup_mutex
),
350 "device_cgroup::may_access() called without proper synchronization");
352 list_for_each_entry_rcu(ex
, &dev_cgroup
->exceptions
, list
) {
353 if ((refex
->type
& DEV_BLOCK
) && !(ex
->type
& DEV_BLOCK
))
355 if ((refex
->type
& DEV_CHAR
) && !(ex
->type
& DEV_CHAR
))
357 if (ex
->major
!= ~0 && ex
->major
!= refex
->major
)
359 if (ex
->minor
!= ~0 && ex
->minor
!= refex
->minor
)
361 if (refex
->access
& (~ex
->access
))
367 if (dev_cgroup
->behavior
== DEVCG_DEFAULT_ALLOW
) {
368 if (behavior
== DEVCG_DEFAULT_ALLOW
) {
369 /* the exception will deny access to certain devices */
372 /* the exception will allow access to certain devices */
375 * a new exception allowing access shouldn't
376 * match an parent's exception
382 /* only behavior == DEVCG_DEFAULT_DENY allowed here */
384 /* parent has an exception that matches the proposed */
394 * when adding a new allow rule to a device exception list, the rule
395 * must be allowed in the parent device
397 static int parent_has_perm(struct dev_cgroup
*childcg
,
398 struct dev_exception_item
*ex
)
400 struct cgroup
*pcg
= childcg
->css
.cgroup
->parent
;
401 struct dev_cgroup
*parent
;
405 parent
= cgroup_to_devcgroup(pcg
);
406 return may_access(parent
, ex
, childcg
->behavior
);
410 * may_allow_all - checks if it's possible to change the behavior to
411 * allow based on parent's rules.
412 * @parent: device cgroup's parent
413 * returns: != 0 in case it's allowed, 0 otherwise
415 static inline int may_allow_all(struct dev_cgroup
*parent
)
419 return parent
->behavior
== DEVCG_DEFAULT_ALLOW
;
423 * revalidate_active_exceptions - walks through the active exception list and
424 * revalidates the exceptions based on parent's
425 * behavior and exceptions. The exceptions that
426 * are no longer valid will be removed.
427 * Called with devcgroup_mutex held.
428 * @devcg: cgroup which exceptions will be checked
430 * This is one of the three key functions for hierarchy implementation.
431 * This function is responsible for re-evaluating all the cgroup's active
432 * exceptions due to a parent's exception change.
433 * Refer to Documentation/cgroups/devices.txt for more details.
435 static void revalidate_active_exceptions(struct dev_cgroup
*devcg
)
437 struct dev_exception_item
*ex
;
438 struct list_head
*this, *tmp
;
440 list_for_each_safe(this, tmp
, &devcg
->exceptions
) {
441 ex
= container_of(this, struct dev_exception_item
, list
);
442 if (!parent_has_perm(devcg
, ex
))
443 dev_exception_rm(devcg
, ex
);
448 * get_online_devcg - walks the cgroup tree and fills a list with the online
450 * @root: cgroup used as starting point
451 * @online: list that will be filled with online groups
453 * Must be called with devcgroup_mutex held. Grabs RCU lock.
454 * Because devcgroup_mutex is held, no devcg will become online or offline
455 * during the tree walk (see devcgroup_online, devcgroup_offline)
456 * A separated list is needed because propagate_behavior() and
457 * propagate_exception() need to allocate memory and can block.
459 static void get_online_devcg(struct cgroup
*root
, struct list_head
*online
)
462 struct dev_cgroup
*devcg
;
464 lockdep_assert_held(&devcgroup_mutex
);
467 cgroup_for_each_descendant_pre(pos
, root
) {
468 devcg
= cgroup_to_devcgroup(pos
);
469 if (is_devcg_online(devcg
))
470 list_add_tail(&devcg
->propagate_pending
, online
);
476 * propagate_exception - propagates a new exception to the children
477 * @devcg_root: device cgroup that added a new exception
478 * @ex: new exception to be propagated
480 * returns: 0 in case of success, != 0 in case of error
482 static int propagate_exception(struct dev_cgroup
*devcg_root
,
483 struct dev_exception_item
*ex
)
485 struct cgroup
*root
= devcg_root
->css
.cgroup
;
486 struct dev_cgroup
*devcg
, *parent
, *tmp
;
490 get_online_devcg(root
, &pending
);
492 list_for_each_entry_safe(devcg
, tmp
, &pending
, propagate_pending
) {
493 parent
= cgroup_to_devcgroup(devcg
->css
.cgroup
->parent
);
496 * in case both root's behavior and devcg is allow, a new
497 * restriction means adding to the exception list
499 if (devcg_root
->behavior
== DEVCG_DEFAULT_ALLOW
&&
500 devcg
->behavior
== DEVCG_DEFAULT_ALLOW
) {
501 rc
= dev_exception_add(devcg
, ex
);
506 * in the other possible cases:
507 * root's behavior: allow, devcg's: deny
508 * root's behavior: deny, devcg's: deny
509 * the exception will be removed
511 dev_exception_rm(devcg
, ex
);
513 revalidate_active_exceptions(devcg
);
515 list_del_init(&devcg
->propagate_pending
);
520 static inline bool has_children(struct dev_cgroup
*devcgroup
)
522 struct cgroup
*cgrp
= devcgroup
->css
.cgroup
;
524 return !list_empty(&cgrp
->children
);
528 * Modify the exception list using allow/deny rules.
529 * CAP_SYS_ADMIN is needed for this. It's at least separate from CAP_MKNOD
530 * so we can give a container CAP_MKNOD to let it create devices but not
531 * modify the exception list.
532 * It seems likely we'll want to add a CAP_CONTAINER capability to allow
533 * us to also grant CAP_SYS_ADMIN to containers without giving away the
534 * device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
536 * Taking rules away is always allowed (given CAP_SYS_ADMIN). Granting
537 * new access is only allowed if you're in the top-level cgroup, or your
538 * parent cgroup has the access you're asking for.
540 static int devcgroup_update_access(struct dev_cgroup
*devcgroup
,
541 int filetype
, const char *buffer
)
544 char temp
[12]; /* 11 + 1 characters needed for a u32 */
546 struct dev_exception_item ex
;
547 struct cgroup
*p
= devcgroup
->css
.cgroup
;
548 struct dev_cgroup
*parent
= NULL
;
550 if (!capable(CAP_SYS_ADMIN
))
554 parent
= cgroup_to_devcgroup(p
->parent
);
556 memset(&ex
, 0, sizeof(ex
));
563 if (has_children(devcgroup
))
566 if (!may_allow_all(parent
))
568 dev_exception_clean(devcgroup
);
569 devcgroup
->behavior
= DEVCG_DEFAULT_ALLOW
;
573 rc
= dev_exceptions_copy(&devcgroup
->exceptions
,
574 &parent
->exceptions
);
579 if (has_children(devcgroup
))
582 dev_exception_clean(devcgroup
);
583 devcgroup
->behavior
= DEVCG_DEFAULT_DENY
;
605 } else if (isdigit(*b
)) {
606 memset(temp
, 0, sizeof(temp
));
607 for (count
= 0; count
< sizeof(temp
) - 1; count
++) {
613 rc
= kstrtou32(temp
, 10, &ex
.major
);
627 } else if (isdigit(*b
)) {
628 memset(temp
, 0, sizeof(temp
));
629 for (count
= 0; count
< sizeof(temp
) - 1; count
++) {
635 rc
= kstrtou32(temp
, 10, &ex
.minor
);
643 for (b
++, count
= 0; count
< 3; count
++, b
++) {
646 ex
.access
|= ACC_READ
;
649 ex
.access
|= ACC_WRITE
;
652 ex
.access
|= ACC_MKNOD
;
665 if (!parent_has_perm(devcgroup
, &ex
))
668 * If the default policy is to allow by default, try to remove
669 * an matching exception instead. And be silent about it: we
670 * don't want to break compatibility
672 if (devcgroup
->behavior
== DEVCG_DEFAULT_ALLOW
) {
673 dev_exception_rm(devcgroup
, &ex
);
676 rc
= dev_exception_add(devcgroup
, &ex
);
680 * If the default policy is to deny by default, try to remove
681 * an matching exception instead. And be silent about it: we
682 * don't want to break compatibility
684 if (devcgroup
->behavior
== DEVCG_DEFAULT_DENY
)
685 dev_exception_rm(devcgroup
, &ex
);
687 rc
= dev_exception_add(devcgroup
, &ex
);
691 /* we only propagate new restrictions */
692 rc
= propagate_exception(devcgroup
, &ex
);
700 static int devcgroup_access_write(struct cgroup
*cgrp
, struct cftype
*cft
,
705 mutex_lock(&devcgroup_mutex
);
706 retval
= devcgroup_update_access(cgroup_to_devcgroup(cgrp
),
707 cft
->private, buffer
);
708 mutex_unlock(&devcgroup_mutex
);
712 static struct cftype dev_cgroup_files
[] = {
715 .write_string
= devcgroup_access_write
,
716 .private = DEVCG_ALLOW
,
720 .write_string
= devcgroup_access_write
,
721 .private = DEVCG_DENY
,
725 .read_seq_string
= devcgroup_seq_read
,
726 .private = DEVCG_LIST
,
731 struct cgroup_subsys devices_subsys
= {
733 .can_attach
= devcgroup_can_attach
,
734 .css_alloc
= devcgroup_css_alloc
,
735 .css_free
= devcgroup_css_free
,
736 .css_online
= devcgroup_online
,
737 .css_offline
= devcgroup_offline
,
738 .subsys_id
= devices_subsys_id
,
739 .base_cftypes
= dev_cgroup_files
,
743 * __devcgroup_check_permission - checks if an inode operation is permitted
744 * @dev_cgroup: the dev cgroup to be tested against
746 * @major: device major number
747 * @minor: device minor number
748 * @access: combination of ACC_WRITE, ACC_READ and ACC_MKNOD
750 * returns 0 on success, -EPERM case the operation is not permitted
752 static int __devcgroup_check_permission(short type
, u32 major
, u32 minor
,
755 struct dev_cgroup
*dev_cgroup
;
756 struct dev_exception_item ex
;
759 memset(&ex
, 0, sizeof(ex
));
766 dev_cgroup
= task_devcgroup(current
);
767 rc
= may_access(dev_cgroup
, &ex
, dev_cgroup
->behavior
);
776 int __devcgroup_inode_permission(struct inode
*inode
, int mask
)
778 short type
, access
= 0;
780 if (S_ISBLK(inode
->i_mode
))
782 if (S_ISCHR(inode
->i_mode
))
784 if (mask
& MAY_WRITE
)
789 return __devcgroup_check_permission(type
, imajor(inode
), iminor(inode
),
793 int devcgroup_inode_mknod(int mode
, dev_t dev
)
797 if (!S_ISBLK(mode
) && !S_ISCHR(mode
))
805 return __devcgroup_check_permission(type
, MAJOR(dev
), MINOR(dev
),