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
;
54 static inline struct dev_cgroup
*css_to_devcgroup(struct cgroup_subsys_state
*s
)
56 return s
? container_of(s
, struct dev_cgroup
, css
) : NULL
;
59 static inline struct dev_cgroup
*task_devcgroup(struct task_struct
*task
)
61 return css_to_devcgroup(task_css(task
, devices_subsys_id
));
64 struct cgroup_subsys devices_subsys
;
67 * called under devcgroup_mutex
69 static int dev_exceptions_copy(struct list_head
*dest
, struct list_head
*orig
)
71 struct dev_exception_item
*ex
, *tmp
, *new;
73 lockdep_assert_held(&devcgroup_mutex
);
75 list_for_each_entry(ex
, orig
, list
) {
76 new = kmemdup(ex
, sizeof(*ex
), GFP_KERNEL
);
79 list_add_tail(&new->list
, dest
);
85 list_for_each_entry_safe(ex
, tmp
, dest
, list
) {
93 * called under devcgroup_mutex
95 static int dev_exception_add(struct dev_cgroup
*dev_cgroup
,
96 struct dev_exception_item
*ex
)
98 struct dev_exception_item
*excopy
, *walk
;
100 lockdep_assert_held(&devcgroup_mutex
);
102 excopy
= kmemdup(ex
, sizeof(*ex
), GFP_KERNEL
);
106 list_for_each_entry(walk
, &dev_cgroup
->exceptions
, list
) {
107 if (walk
->type
!= ex
->type
)
109 if (walk
->major
!= ex
->major
)
111 if (walk
->minor
!= ex
->minor
)
114 walk
->access
|= ex
->access
;
120 list_add_tail_rcu(&excopy
->list
, &dev_cgroup
->exceptions
);
125 * called under devcgroup_mutex
127 static void dev_exception_rm(struct dev_cgroup
*dev_cgroup
,
128 struct dev_exception_item
*ex
)
130 struct dev_exception_item
*walk
, *tmp
;
132 lockdep_assert_held(&devcgroup_mutex
);
134 list_for_each_entry_safe(walk
, tmp
, &dev_cgroup
->exceptions
, list
) {
135 if (walk
->type
!= ex
->type
)
137 if (walk
->major
!= ex
->major
)
139 if (walk
->minor
!= ex
->minor
)
142 walk
->access
&= ~ex
->access
;
144 list_del_rcu(&walk
->list
);
145 kfree_rcu(walk
, rcu
);
150 static void __dev_exception_clean(struct dev_cgroup
*dev_cgroup
)
152 struct dev_exception_item
*ex
, *tmp
;
154 list_for_each_entry_safe(ex
, tmp
, &dev_cgroup
->exceptions
, list
) {
155 list_del_rcu(&ex
->list
);
161 * dev_exception_clean - frees all entries of the exception list
162 * @dev_cgroup: dev_cgroup with the exception list to be cleaned
164 * called under devcgroup_mutex
166 static void dev_exception_clean(struct dev_cgroup
*dev_cgroup
)
168 lockdep_assert_held(&devcgroup_mutex
);
170 __dev_exception_clean(dev_cgroup
);
173 static inline bool is_devcg_online(const struct dev_cgroup
*devcg
)
175 return (devcg
->behavior
!= DEVCG_DEFAULT_NONE
);
179 * devcgroup_online - initializes devcgroup's behavior and exceptions based on
181 * @css: css getting online
182 * returns 0 in case of success, error code otherwise
184 static int devcgroup_online(struct cgroup_subsys_state
*css
)
186 struct dev_cgroup
*dev_cgroup
= css_to_devcgroup(css
);
187 struct dev_cgroup
*parent_dev_cgroup
= css_to_devcgroup(css_parent(css
));
190 mutex_lock(&devcgroup_mutex
);
192 if (parent_dev_cgroup
== NULL
)
193 dev_cgroup
->behavior
= DEVCG_DEFAULT_ALLOW
;
195 ret
= dev_exceptions_copy(&dev_cgroup
->exceptions
,
196 &parent_dev_cgroup
->exceptions
);
198 dev_cgroup
->behavior
= parent_dev_cgroup
->behavior
;
200 mutex_unlock(&devcgroup_mutex
);
205 static void devcgroup_offline(struct cgroup_subsys_state
*css
)
207 struct dev_cgroup
*dev_cgroup
= css_to_devcgroup(css
);
209 mutex_lock(&devcgroup_mutex
);
210 dev_cgroup
->behavior
= DEVCG_DEFAULT_NONE
;
211 mutex_unlock(&devcgroup_mutex
);
215 * called from kernel/cgroup.c with cgroup_lock() held.
217 static struct cgroup_subsys_state
*
218 devcgroup_css_alloc(struct cgroup_subsys_state
*parent_css
)
220 struct dev_cgroup
*dev_cgroup
;
222 dev_cgroup
= kzalloc(sizeof(*dev_cgroup
), GFP_KERNEL
);
224 return ERR_PTR(-ENOMEM
);
225 INIT_LIST_HEAD(&dev_cgroup
->exceptions
);
226 dev_cgroup
->behavior
= DEVCG_DEFAULT_NONE
;
228 return &dev_cgroup
->css
;
231 static void devcgroup_css_free(struct cgroup_subsys_state
*css
)
233 struct dev_cgroup
*dev_cgroup
= css_to_devcgroup(css
);
235 __dev_exception_clean(dev_cgroup
);
239 #define DEVCG_ALLOW 1
246 static void set_access(char *acc
, short access
)
249 memset(acc
, 0, ACCLEN
);
250 if (access
& ACC_READ
)
252 if (access
& ACC_WRITE
)
254 if (access
& ACC_MKNOD
)
258 static char type_to_char(short type
)
262 if (type
== DEV_CHAR
)
264 if (type
== DEV_BLOCK
)
269 static void set_majmin(char *str
, unsigned m
)
274 sprintf(str
, "%u", m
);
277 static int devcgroup_seq_show(struct seq_file
*m
, void *v
)
279 struct dev_cgroup
*devcgroup
= css_to_devcgroup(seq_css(m
));
280 struct dev_exception_item
*ex
;
281 char maj
[MAJMINLEN
], min
[MAJMINLEN
], acc
[ACCLEN
];
285 * To preserve the compatibility:
286 * - Only show the "all devices" when the default policy is to allow
287 * - List the exceptions in case the default policy is to deny
288 * This way, the file remains as a "whitelist of devices"
290 if (devcgroup
->behavior
== DEVCG_DEFAULT_ALLOW
) {
291 set_access(acc
, ACC_MASK
);
294 seq_printf(m
, "%c %s:%s %s\n", type_to_char(DEV_ALL
),
297 list_for_each_entry_rcu(ex
, &devcgroup
->exceptions
, list
) {
298 set_access(acc
, ex
->access
);
299 set_majmin(maj
, ex
->major
);
300 set_majmin(min
, ex
->minor
);
301 seq_printf(m
, "%c %s:%s %s\n", type_to_char(ex
->type
),
311 * may_access - verifies if a new exception is part of what is allowed
312 * by a dev cgroup based on the default policy +
313 * exceptions. This is used to make sure a child cgroup
314 * won't have more privileges than its parent or to
315 * verify if a certain access is allowed.
316 * @dev_cgroup: dev cgroup to be tested against
317 * @refex: new exception
318 * @behavior: behavior of the exception
320 static bool may_access(struct dev_cgroup
*dev_cgroup
,
321 struct dev_exception_item
*refex
,
322 enum devcg_behavior behavior
)
324 struct dev_exception_item
*ex
;
327 rcu_lockdep_assert(rcu_read_lock_held() ||
328 lockdep_is_held(&devcgroup_mutex
),
329 "device_cgroup::may_access() called without proper synchronization");
331 list_for_each_entry_rcu(ex
, &dev_cgroup
->exceptions
, list
) {
332 if ((refex
->type
& DEV_BLOCK
) && !(ex
->type
& DEV_BLOCK
))
334 if ((refex
->type
& DEV_CHAR
) && !(ex
->type
& DEV_CHAR
))
336 if (ex
->major
!= ~0 && ex
->major
!= refex
->major
)
338 if (ex
->minor
!= ~0 && ex
->minor
!= refex
->minor
)
340 if (refex
->access
& (~ex
->access
))
346 if (dev_cgroup
->behavior
== DEVCG_DEFAULT_ALLOW
) {
347 if (behavior
== DEVCG_DEFAULT_ALLOW
) {
348 /* the exception will deny access to certain devices */
351 /* the exception will allow access to certain devices */
354 * a new exception allowing access shouldn't
355 * match an parent's exception
361 /* only behavior == DEVCG_DEFAULT_DENY allowed here */
363 /* parent has an exception that matches the proposed */
373 * when adding a new allow rule to a device exception list, the rule
374 * must be allowed in the parent device
376 static int parent_has_perm(struct dev_cgroup
*childcg
,
377 struct dev_exception_item
*ex
)
379 struct dev_cgroup
*parent
= css_to_devcgroup(css_parent(&childcg
->css
));
383 return may_access(parent
, ex
, childcg
->behavior
);
387 * may_allow_all - checks if it's possible to change the behavior to
388 * allow based on parent's rules.
389 * @parent: device cgroup's parent
390 * returns: != 0 in case it's allowed, 0 otherwise
392 static inline int may_allow_all(struct dev_cgroup
*parent
)
396 return parent
->behavior
== DEVCG_DEFAULT_ALLOW
;
400 * revalidate_active_exceptions - walks through the active exception list and
401 * revalidates the exceptions based on parent's
402 * behavior and exceptions. The exceptions that
403 * are no longer valid will be removed.
404 * Called with devcgroup_mutex held.
405 * @devcg: cgroup which exceptions will be checked
407 * This is one of the three key functions for hierarchy implementation.
408 * This function is responsible for re-evaluating all the cgroup's active
409 * exceptions due to a parent's exception change.
410 * Refer to Documentation/cgroups/devices.txt for more details.
412 static void revalidate_active_exceptions(struct dev_cgroup
*devcg
)
414 struct dev_exception_item
*ex
;
415 struct list_head
*this, *tmp
;
417 list_for_each_safe(this, tmp
, &devcg
->exceptions
) {
418 ex
= container_of(this, struct dev_exception_item
, list
);
419 if (!parent_has_perm(devcg
, ex
))
420 dev_exception_rm(devcg
, ex
);
425 * propagate_exception - propagates a new exception to the children
426 * @devcg_root: device cgroup that added a new exception
427 * @ex: new exception to be propagated
429 * returns: 0 in case of success, != 0 in case of error
431 static int propagate_exception(struct dev_cgroup
*devcg_root
,
432 struct dev_exception_item
*ex
)
434 struct cgroup_subsys_state
*pos
;
439 css_for_each_descendant_pre(pos
, &devcg_root
->css
) {
440 struct dev_cgroup
*devcg
= css_to_devcgroup(pos
);
443 * Because devcgroup_mutex is held, no devcg will become
444 * online or offline during the tree walk (see on/offline
445 * methods), and online ones are safe to access outside RCU
446 * read lock without bumping refcnt.
448 if (pos
== &devcg_root
->css
|| !is_devcg_online(devcg
))
454 * in case both root's behavior and devcg is allow, a new
455 * restriction means adding to the exception list
457 if (devcg_root
->behavior
== DEVCG_DEFAULT_ALLOW
&&
458 devcg
->behavior
== DEVCG_DEFAULT_ALLOW
) {
459 rc
= dev_exception_add(devcg
, ex
);
464 * in the other possible cases:
465 * root's behavior: allow, devcg's: deny
466 * root's behavior: deny, devcg's: deny
467 * the exception will be removed
469 dev_exception_rm(devcg
, ex
);
471 revalidate_active_exceptions(devcg
);
480 static inline bool has_children(struct dev_cgroup
*devcgroup
)
482 struct cgroup
*cgrp
= devcgroup
->css
.cgroup
;
484 return !list_empty(&cgrp
->children
);
488 * Modify the exception list using allow/deny rules.
489 * CAP_SYS_ADMIN is needed for this. It's at least separate from CAP_MKNOD
490 * so we can give a container CAP_MKNOD to let it create devices but not
491 * modify the exception list.
492 * It seems likely we'll want to add a CAP_CONTAINER capability to allow
493 * us to also grant CAP_SYS_ADMIN to containers without giving away the
494 * device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
496 * Taking rules away is always allowed (given CAP_SYS_ADMIN). Granting
497 * new access is only allowed if you're in the top-level cgroup, or your
498 * parent cgroup has the access you're asking for.
500 static int devcgroup_update_access(struct dev_cgroup
*devcgroup
,
501 int filetype
, const char *buffer
)
504 char temp
[12]; /* 11 + 1 characters needed for a u32 */
506 struct dev_exception_item ex
;
507 struct dev_cgroup
*parent
= css_to_devcgroup(css_parent(&devcgroup
->css
));
509 if (!capable(CAP_SYS_ADMIN
))
512 memset(&ex
, 0, sizeof(ex
));
519 if (has_children(devcgroup
))
522 if (!may_allow_all(parent
))
524 dev_exception_clean(devcgroup
);
525 devcgroup
->behavior
= DEVCG_DEFAULT_ALLOW
;
529 rc
= dev_exceptions_copy(&devcgroup
->exceptions
,
530 &parent
->exceptions
);
535 if (has_children(devcgroup
))
538 dev_exception_clean(devcgroup
);
539 devcgroup
->behavior
= DEVCG_DEFAULT_DENY
;
561 } else if (isdigit(*b
)) {
562 memset(temp
, 0, sizeof(temp
));
563 for (count
= 0; count
< sizeof(temp
) - 1; count
++) {
569 rc
= kstrtou32(temp
, 10, &ex
.major
);
583 } else if (isdigit(*b
)) {
584 memset(temp
, 0, sizeof(temp
));
585 for (count
= 0; count
< sizeof(temp
) - 1; count
++) {
591 rc
= kstrtou32(temp
, 10, &ex
.minor
);
599 for (b
++, count
= 0; count
< 3; count
++, b
++) {
602 ex
.access
|= ACC_READ
;
605 ex
.access
|= ACC_WRITE
;
608 ex
.access
|= ACC_MKNOD
;
621 if (!parent_has_perm(devcgroup
, &ex
))
624 * If the default policy is to allow by default, try to remove
625 * an matching exception instead. And be silent about it: we
626 * don't want to break compatibility
628 if (devcgroup
->behavior
== DEVCG_DEFAULT_ALLOW
) {
629 dev_exception_rm(devcgroup
, &ex
);
632 rc
= dev_exception_add(devcgroup
, &ex
);
636 * If the default policy is to deny by default, try to remove
637 * an matching exception instead. And be silent about it: we
638 * don't want to break compatibility
640 if (devcgroup
->behavior
== DEVCG_DEFAULT_DENY
)
641 dev_exception_rm(devcgroup
, &ex
);
643 rc
= dev_exception_add(devcgroup
, &ex
);
647 /* we only propagate new restrictions */
648 rc
= propagate_exception(devcgroup
, &ex
);
656 static int devcgroup_access_write(struct cgroup_subsys_state
*css
,
657 struct cftype
*cft
, const char *buffer
)
661 mutex_lock(&devcgroup_mutex
);
662 retval
= devcgroup_update_access(css_to_devcgroup(css
),
663 cft
->private, buffer
);
664 mutex_unlock(&devcgroup_mutex
);
668 static struct cftype dev_cgroup_files
[] = {
671 .write_string
= devcgroup_access_write
,
672 .private = DEVCG_ALLOW
,
676 .write_string
= devcgroup_access_write
,
677 .private = DEVCG_DENY
,
681 .seq_show
= devcgroup_seq_show
,
682 .private = DEVCG_LIST
,
687 struct cgroup_subsys devices_subsys
= {
689 .css_alloc
= devcgroup_css_alloc
,
690 .css_free
= devcgroup_css_free
,
691 .css_online
= devcgroup_online
,
692 .css_offline
= devcgroup_offline
,
693 .subsys_id
= devices_subsys_id
,
694 .base_cftypes
= dev_cgroup_files
,
698 * __devcgroup_check_permission - checks if an inode operation is permitted
699 * @dev_cgroup: the dev cgroup to be tested against
701 * @major: device major number
702 * @minor: device minor number
703 * @access: combination of ACC_WRITE, ACC_READ and ACC_MKNOD
705 * returns 0 on success, -EPERM case the operation is not permitted
707 static int __devcgroup_check_permission(short type
, u32 major
, u32 minor
,
710 struct dev_cgroup
*dev_cgroup
;
711 struct dev_exception_item ex
;
714 memset(&ex
, 0, sizeof(ex
));
721 dev_cgroup
= task_devcgroup(current
);
722 rc
= may_access(dev_cgroup
, &ex
, dev_cgroup
->behavior
);
731 int __devcgroup_inode_permission(struct inode
*inode
, int mask
)
733 short type
, access
= 0;
735 if (S_ISBLK(inode
->i_mode
))
737 if (S_ISCHR(inode
->i_mode
))
739 if (mask
& MAY_WRITE
)
744 return __devcgroup_check_permission(type
, imajor(inode
), iminor(inode
),
748 int devcgroup_inode_mknod(int mode
, dev_t dev
)
752 if (!S_ISBLK(mode
) && !S_ISCHR(mode
))
760 return __devcgroup_check_permission(type
, MAJOR(dev
), MINOR(dev
),