Files
linux-apfs/security/device_cgroup.c
T

612 lines
14 KiB
C
Raw Normal View History

2008-04-29 01:00:10 -07:00
/*
2008-10-18 20:28:07 -07:00
* device_cgroup.c - device cgroup subsystem
2008-04-29 01:00:10 -07:00
*
* Copyright 2007 IBM Corp
*/
#include <linux/device_cgroup.h>
#include <linux/cgroup.h>
#include <linux/ctype.h>
#include <linux/list.h>
#include <linux/uaccess.h>
2008-04-29 01:00:14 -07:00
#include <linux/seq_file.h>
#include <linux/slab.h>
2008-10-18 20:28:07 -07:00
#include <linux/rcupdate.h>
2009-04-02 16:57:32 -07:00
#include <linux/mutex.h>
2008-04-29 01:00:10 -07:00
#define ACC_MKNOD 1
#define ACC_READ 2
#define ACC_WRITE 4
#define ACC_MASK (ACC_MKNOD | ACC_READ | ACC_WRITE)
#define DEV_BLOCK 1
#define DEV_CHAR 2
#define DEV_ALL 4 /* this represents all devices */
2009-04-02 16:57:32 -07:00
static DEFINE_MUTEX(devcgroup_mutex);
2008-04-29 01:00:10 -07:00
/*
* exception list locking rules:
2009-04-02 16:57:32 -07:00
* hold devcgroup_mutex for update/read.
2008-10-18 20:28:07 -07:00
* hold rcu_read_lock() for read.
2008-04-29 01:00:10 -07:00
*/
struct dev_exception_item {
2008-04-29 01:00:10 -07:00
u32 major, minor;
short type;
short access;
struct list_head list;
struct rcu_head rcu;
2008-04-29 01:00:10 -07:00
};
struct dev_cgroup {
struct cgroup_subsys_state css;
struct list_head exceptions;
2012-10-25 13:37:38 -07:00
enum {
DEVCG_DEFAULT_ALLOW,
DEVCG_DEFAULT_DENY,
} behavior;
2008-04-29 01:00:10 -07:00
};
static inline struct dev_cgroup *css_to_devcgroup(struct cgroup_subsys_state *s)
{
return container_of(s, struct dev_cgroup, css);
}
2008-04-29 01:00:10 -07:00
static inline struct dev_cgroup *cgroup_to_devcgroup(struct cgroup *cgroup)
{
return css_to_devcgroup(cgroup_subsys_state(cgroup, devices_subsys_id));
2008-04-29 01:00:10 -07:00
}
static inline struct dev_cgroup *task_devcgroup(struct task_struct *task)
{
return css_to_devcgroup(task_subsys_state(task, devices_subsys_id));
}
2008-04-29 01:00:10 -07:00
struct cgroup_subsys devices_subsys;
static int devcgroup_can_attach(struct cgroup *new_cgrp,
struct cgroup_taskset *set)
2008-04-29 01:00:10 -07:00
{
struct task_struct *task = cgroup_taskset_first(set);
2008-04-29 01:00:10 -07:00
if (current != task && !capable(CAP_SYS_ADMIN))
return -EPERM;
2008-04-29 01:00:10 -07:00
return 0;
}
/*
2009-04-02 16:57:32 -07:00
* called under devcgroup_mutex
2008-04-29 01:00:10 -07:00
*/
static int dev_exceptions_copy(struct list_head *dest, struct list_head *orig)
2008-04-29 01:00:10 -07:00
{
struct dev_exception_item *ex, *tmp, *new;
2008-04-29 01:00:10 -07:00
list_for_each_entry(ex, orig, list) {
new = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
2008-04-29 01:00:10 -07:00
if (!new)
goto free_and_exit;
list_add_tail(&new->list, dest);
}
return 0;
free_and_exit:
list_for_each_entry_safe(ex, tmp, dest, list) {
list_del(&ex->list);
kfree(ex);
2008-04-29 01:00:10 -07:00
}
return -ENOMEM;
}
/*
2009-04-02 16:57:32 -07:00
* called under devcgroup_mutex
2008-04-29 01:00:10 -07:00
*/
static int dev_exception_add(struct dev_cgroup *dev_cgroup,
struct dev_exception_item *ex)
2008-04-29 01:00:10 -07:00
{
struct dev_exception_item *excopy, *walk;
2008-04-29 01:00:10 -07:00
excopy = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
if (!excopy)
2008-04-29 01:00:10 -07:00
return -ENOMEM;
list_for_each_entry(walk, &dev_cgroup->exceptions, list) {
if (walk->type != ex->type)
continue;
if (walk->major != ex->major)
continue;
if (walk->minor != ex->minor)
continue;
walk->access |= ex->access;
kfree(excopy);
excopy = NULL;
}
if (excopy != NULL)
list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions);
2008-04-29 01:00:10 -07:00
return 0;
}
/*
2009-04-02 16:57:32 -07:00
* called under devcgroup_mutex
2008-04-29 01:00:10 -07:00
*/
static void dev_exception_rm(struct dev_cgroup *dev_cgroup,
struct dev_exception_item *ex)
2008-04-29 01:00:10 -07:00
{
struct dev_exception_item *walk, *tmp;
2008-04-29 01:00:10 -07:00
list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) {
if (walk->type != ex->type)
2008-04-29 01:00:10 -07:00
continue;
if (walk->major != ex->major)
2008-04-29 01:00:10 -07:00
continue;
if (walk->minor != ex->minor)
2008-04-29 01:00:10 -07:00
continue;
walk->access &= ~ex->access;
2008-04-29 01:00:10 -07:00
if (!walk->access) {
list_del_rcu(&walk->list);
kfree_rcu(walk, rcu);
2008-04-29 01:00:10 -07:00
}
}
}
/**
* dev_exception_clean - frees all entries of the exception list
* @dev_cgroup: dev_cgroup with the exception list to be cleaned
*
* called under devcgroup_mutex
*/
static void dev_exception_clean(struct dev_cgroup *dev_cgroup)
{
struct dev_exception_item *ex, *tmp;
list_for_each_entry_safe(ex, tmp, &dev_cgroup->exceptions, list) {
list_del(&ex->list);
kfree(ex);
}
}
2008-04-29 01:00:10 -07:00
/*
* called from kernel/cgroup.c with cgroup_lock() held.
*/
static struct cgroup_subsys_state *devcgroup_create(struct cgroup *cgroup)
2008-04-29 01:00:10 -07:00
{
struct dev_cgroup *dev_cgroup, *parent_dev_cgroup;
struct cgroup *parent_cgroup;
int ret;
dev_cgroup = kzalloc(sizeof(*dev_cgroup), GFP_KERNEL);
if (!dev_cgroup)
return ERR_PTR(-ENOMEM);
INIT_LIST_HEAD(&dev_cgroup->exceptions);
2008-04-29 01:00:10 -07:00
parent_cgroup = cgroup->parent;
if (parent_cgroup == NULL)
2012-10-25 13:37:38 -07:00
dev_cgroup->behavior = DEVCG_DEFAULT_ALLOW;
else {
2008-04-29 01:00:10 -07:00
parent_dev_cgroup = cgroup_to_devcgroup(parent_cgroup);
2009-04-02 16:57:32 -07:00
mutex_lock(&devcgroup_mutex);
ret = dev_exceptions_copy(&dev_cgroup->exceptions,
&parent_dev_cgroup->exceptions);
2012-10-25 13:37:38 -07:00
dev_cgroup->behavior = parent_dev_cgroup->behavior;
2009-04-02 16:57:32 -07:00
mutex_unlock(&devcgroup_mutex);
2008-04-29 01:00:10 -07:00
if (ret) {
kfree(dev_cgroup);
return ERR_PTR(ret);
}
}
return &dev_cgroup->css;
}
static void devcgroup_destroy(struct cgroup *cgroup)
2008-04-29 01:00:10 -07:00
{
struct dev_cgroup *dev_cgroup;
dev_cgroup = cgroup_to_devcgroup(cgroup);
dev_exception_clean(dev_cgroup);
2008-04-29 01:00:10 -07:00
kfree(dev_cgroup);
}
#define DEVCG_ALLOW 1
#define DEVCG_DENY 2
2008-04-29 01:00:14 -07:00
#define DEVCG_LIST 3
#define MAJMINLEN 13
2008-04-29 01:00:14 -07:00
#define ACCLEN 4
2008-04-29 01:00:10 -07:00
static void set_access(char *acc, short access)
{
int idx = 0;
2008-04-29 01:00:14 -07:00
memset(acc, 0, ACCLEN);
2008-04-29 01:00:10 -07:00
if (access & ACC_READ)
acc[idx++] = 'r';
if (access & ACC_WRITE)
acc[idx++] = 'w';
if (access & ACC_MKNOD)
acc[idx++] = 'm';
}
static char type_to_char(short type)
{
if (type == DEV_ALL)
return 'a';
if (type == DEV_CHAR)
return 'c';
if (type == DEV_BLOCK)
return 'b';
return 'X';
}
2008-04-29 01:00:14 -07:00
static void set_majmin(char *str, unsigned m)
2008-04-29 01:00:10 -07:00
{
if (m == ~0)
2008-07-25 01:47:08 -07:00
strcpy(str, "*");
2008-04-29 01:00:10 -07:00
else
2008-07-25 01:47:08 -07:00
sprintf(str, "%u", m);
2008-04-29 01:00:10 -07:00
}
2008-04-29 01:00:14 -07:00
static int devcgroup_seq_read(struct cgroup *cgroup, struct cftype *cft,
struct seq_file *m)
2008-04-29 01:00:10 -07:00
{
2008-04-29 01:00:14 -07:00
struct dev_cgroup *devcgroup = cgroup_to_devcgroup(cgroup);
struct dev_exception_item *ex;
2008-04-29 01:00:14 -07:00
char maj[MAJMINLEN], min[MAJMINLEN], acc[ACCLEN];
2008-04-29 01:00:10 -07:00
rcu_read_lock();
/*
* To preserve the compatibility:
* - Only show the "all devices" when the default policy is to allow
* - List the exceptions in case the default policy is to deny
* This way, the file remains as a "whitelist of devices"
*/
2012-10-25 13:37:38 -07:00
if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
set_access(acc, ACC_MASK);
set_majmin(maj, ~0);
set_majmin(min, ~0);
seq_printf(m, "%c %s:%s %s\n", type_to_char(DEV_ALL),
2008-04-29 01:00:14 -07:00
maj, min, acc);
} else {
list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) {
set_access(acc, ex->access);
set_majmin(maj, ex->major);
set_majmin(min, ex->minor);
seq_printf(m, "%c %s:%s %s\n", type_to_char(ex->type),
maj, min, acc);
}
2008-04-29 01:00:10 -07:00
}
rcu_read_unlock();
2008-04-29 01:00:10 -07:00
2008-04-29 01:00:14 -07:00
return 0;
2008-04-29 01:00:10 -07:00
}
/**
* may_access - verifies if a new exception is part of what is allowed
* by a dev cgroup based on the default policy +
* exceptions. This is used to make sure a child cgroup
* won't have more privileges than its parent or to
* verify if a certain access is allowed.
* @dev_cgroup: dev cgroup to be tested against
* @refex: new exception
2008-04-29 01:00:10 -07:00
*/
static int may_access(struct dev_cgroup *dev_cgroup,
struct dev_exception_item *refex)
2008-04-29 01:00:10 -07:00
{
struct dev_exception_item *ex;
bool match = false;
2008-04-29 01:00:10 -07:00
list_for_each_entry(ex, &dev_cgroup->exceptions, list) {
if ((refex->type & DEV_BLOCK) && !(ex->type & DEV_BLOCK))
2008-04-29 01:00:10 -07:00
continue;
if ((refex->type & DEV_CHAR) && !(ex->type & DEV_CHAR))
2008-04-29 01:00:10 -07:00
continue;
if (ex->major != ~0 && ex->major != refex->major)
2008-04-29 01:00:10 -07:00
continue;
if (ex->minor != ~0 && ex->minor != refex->minor)
2008-04-29 01:00:10 -07:00
continue;
if (refex->access & (~ex->access))
2008-04-29 01:00:10 -07:00
continue;
match = true;
break;
2008-04-29 01:00:10 -07:00
}
/*
* In two cases we'll consider this new exception valid:
* - the dev cgroup has its default policy to allow + exception list:
* the new exception should *not* match any of the exceptions
2012-10-25 13:37:38 -07:00
* (behavior == DEVCG_DEFAULT_ALLOW, !match)
* - the dev cgroup has its default policy to deny + exception list:
* the new exception *should* match the exceptions
2012-10-25 13:37:38 -07:00
* (behavior == DEVCG_DEFAULT_DENY, match)
*/
2012-10-25 13:37:38 -07:00
if ((dev_cgroup->behavior == DEVCG_DEFAULT_DENY) == match)
return 1;
2008-04-29 01:00:10 -07:00
return 0;
}
/*
* parent_has_perm:
* when adding a new allow rule to a device exception list, the rule
2008-04-29 01:00:10 -07:00
* must be allowed in the parent device
*/
static int parent_has_perm(struct dev_cgroup *childcg,
struct dev_exception_item *ex)
2008-04-29 01:00:10 -07:00
{
struct cgroup *pcg = childcg->css.cgroup->parent;
2008-04-29 01:00:10 -07:00
struct dev_cgroup *parent;
if (!pcg)
return 1;
parent = cgroup_to_devcgroup(pcg);
return may_access(parent, ex);
2008-04-29 01:00:10 -07:00
}
/*
* Modify the exception list using allow/deny rules.
2008-04-29 01:00:10 -07:00
* CAP_SYS_ADMIN is needed for this. It's at least separate from CAP_MKNOD
* so we can give a container CAP_MKNOD to let it create devices but not
* modify the exception list.
2008-04-29 01:00:10 -07:00
* It seems likely we'll want to add a CAP_CONTAINER capability to allow
* us to also grant CAP_SYS_ADMIN to containers without giving away the
* device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
2008-04-29 01:00:10 -07:00
*
* Taking rules away is always allowed (given CAP_SYS_ADMIN). Granting
* new access is only allowed if you're in the top-level cgroup, or your
* parent cgroup has the access you're asking for.
*/
static int devcgroup_update_access(struct dev_cgroup *devcgroup,
int filetype, const char *buffer)
2008-04-29 01:00:10 -07:00
{
const char *b;
2012-10-25 13:37:41 -07:00
char temp[12]; /* 11 + 1 characters needed for a u32 */
int count, rc;
struct dev_exception_item ex;
2008-04-29 01:00:10 -07:00
if (!capable(CAP_SYS_ADMIN))
return -EPERM;
memset(&ex, 0, sizeof(ex));
2008-04-29 01:00:10 -07:00
b = buffer;
switch (*b) {
case 'a':
switch (filetype) {
case DEVCG_ALLOW:
if (!parent_has_perm(devcgroup, &ex))
return -EPERM;
dev_exception_clean(devcgroup);
2012-10-25 13:37:38 -07:00
devcgroup->behavior = DEVCG_DEFAULT_ALLOW;
break;
case DEVCG_DENY:
dev_exception_clean(devcgroup);
2012-10-25 13:37:38 -07:00
devcgroup->behavior = DEVCG_DEFAULT_DENY;
break;
default:
return -EINVAL;
}
return 0;
2008-04-29 01:00:10 -07:00
case 'b':
ex.type = DEV_BLOCK;
2008-04-29 01:00:10 -07:00
break;
case 'c':
ex.type = DEV_CHAR;
2008-04-29 01:00:10 -07:00
break;
default:
return -EINVAL;
2008-04-29 01:00:10 -07:00
}
b++;
if (!isspace(*b))
return -EINVAL;
2008-04-29 01:00:10 -07:00
b++;
if (*b == '*') {
ex.major = ~0;
2008-04-29 01:00:10 -07:00
b++;
} else if (isdigit(*b)) {
2012-10-25 13:37:41 -07:00
memset(temp, 0, sizeof(temp));
for (count = 0; count < sizeof(temp) - 1; count++) {
temp[count] = *b;
b++;
if (!isdigit(*b))
break;
}
rc = kstrtou32(temp, 10, &ex.major);
if (rc)
return -EINVAL;
2008-04-29 01:00:10 -07:00
} else {
return -EINVAL;
2008-04-29 01:00:10 -07:00
}
if (*b != ':')
return -EINVAL;
2008-04-29 01:00:10 -07:00
b++;
/* read minor */
if (*b == '*') {
ex.minor = ~0;
2008-04-29 01:00:10 -07:00
b++;
} else if (isdigit(*b)) {
2012-10-25 13:37:41 -07:00
memset(temp, 0, sizeof(temp));
for (count = 0; count < sizeof(temp) - 1; count++) {
temp[count] = *b;
b++;
if (!isdigit(*b))
break;
}
rc = kstrtou32(temp, 10, &ex.minor);
if (rc)
return -EINVAL;
2008-04-29 01:00:10 -07:00
} else {
return -EINVAL;
2008-04-29 01:00:10 -07:00
}
if (!isspace(*b))
return -EINVAL;
2008-04-29 01:00:10 -07:00
for (b++, count = 0; count < 3; count++, b++) {
switch (*b) {
case 'r':
ex.access |= ACC_READ;
2008-04-29 01:00:10 -07:00
break;
case 'w':
ex.access |= ACC_WRITE;
2008-04-29 01:00:10 -07:00
break;
case 'm':
ex.access |= ACC_MKNOD;
2008-04-29 01:00:10 -07:00
break;
case '\n':
case '\0':
count = 3;
break;
default:
return -EINVAL;
2008-04-29 01:00:10 -07:00
}
}
switch (filetype) {
case DEVCG_ALLOW:
if (!parent_has_perm(devcgroup, &ex))
return -EPERM;
/*
* If the default policy is to allow by default, try to remove
* an matching exception instead. And be silent about it: we
* don't want to break compatibility
*/
2012-10-25 13:37:38 -07:00
if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
dev_exception_rm(devcgroup, &ex);
return 0;
}
return dev_exception_add(devcgroup, &ex);
2008-04-29 01:00:10 -07:00
case DEVCG_DENY:
/*
* If the default policy is to deny by default, try to remove
* an matching exception instead. And be silent about it: we
* don't want to break compatibility
*/
2012-10-25 13:37:38 -07:00
if (devcgroup->behavior == DEVCG_DEFAULT_DENY) {
dev_exception_rm(devcgroup, &ex);
return 0;
}
return dev_exception_add(devcgroup, &ex);
2008-04-29 01:00:10 -07:00
default:
return -EINVAL;
2008-04-29 01:00:10 -07:00
}
return 0;
}
2008-04-29 01:00:10 -07:00
static int devcgroup_access_write(struct cgroup *cgrp, struct cftype *cft,
const char *buffer)
{
int retval;
2009-04-02 16:57:32 -07:00
mutex_lock(&devcgroup_mutex);
retval = devcgroup_update_access(cgroup_to_devcgroup(cgrp),
cft->private, buffer);
2009-04-02 16:57:32 -07:00
mutex_unlock(&devcgroup_mutex);
2008-04-29 01:00:10 -07:00
return retval;
}
static struct cftype dev_cgroup_files[] = {
{
.name = "allow",
.write_string = devcgroup_access_write,
2008-04-29 01:00:10 -07:00
.private = DEVCG_ALLOW,
},
{
.name = "deny",
.write_string = devcgroup_access_write,
2008-04-29 01:00:10 -07:00
.private = DEVCG_DENY,
},
2008-04-29 01:00:14 -07:00
{
.name = "list",
.read_seq_string = devcgroup_seq_read,
.private = DEVCG_LIST,
},
{ } /* terminate */
2008-04-29 01:00:10 -07:00
};
struct cgroup_subsys devices_subsys = {
.name = "devices",
.can_attach = devcgroup_can_attach,
.create = devcgroup_create,
2010-04-21 00:02:11 -07:00
.destroy = devcgroup_destroy,
2008-04-29 01:00:10 -07:00
.subsys_id = devices_subsys_id,
.base_cftypes = dev_cgroup_files,
/*
* While devices cgroup has the rudimentary hierarchy support which
* checks the parent's restriction, it doesn't properly propagates
* config changes in ancestors to their descendents. A child
* should only be allowed to add more restrictions to the parent's
* configuration. Fix it and remove the following.
*/
.broken_hierarchy = true,
2008-04-29 01:00:10 -07:00
};
/**
* __devcgroup_check_permission - checks if an inode operation is permitted
* @dev_cgroup: the dev cgroup to be tested against
* @type: device type
* @major: device major number
* @minor: device minor number
* @access: combination of ACC_WRITE, ACC_READ and ACC_MKNOD
*
* returns 0 on success, -EPERM case the operation is not permitted
*/
2012-10-25 13:37:34 -07:00
static int __devcgroup_check_permission(short type, u32 major, u32 minor,
short access)
2008-04-29 01:00:10 -07:00
{
2012-10-25 13:37:34 -07:00
struct dev_cgroup *dev_cgroup;
struct dev_exception_item ex;
int rc;
memset(&ex, 0, sizeof(ex));
ex.type = type;
ex.major = major;
ex.minor = minor;
ex.access = access;
2008-04-29 01:00:10 -07:00
rcu_read_lock();
2012-10-25 13:37:34 -07:00
dev_cgroup = task_devcgroup(current);
rc = may_access(dev_cgroup, &ex);
rcu_read_unlock();
2008-04-29 01:00:10 -07:00
if (!rc)
return -EPERM;
return 0;
}
int __devcgroup_inode_permission(struct inode *inode, int mask)
{
short type, access = 0;
if (S_ISBLK(inode->i_mode))
type = DEV_BLOCK;
if (S_ISCHR(inode->i_mode))
type = DEV_CHAR;
if (mask & MAY_WRITE)
access |= ACC_WRITE;
if (mask & MAY_READ)
access |= ACC_READ;
2012-10-25 13:37:34 -07:00
return __devcgroup_check_permission(type, imajor(inode), iminor(inode),
access);
2008-04-29 01:00:10 -07:00
}
int devcgroup_inode_mknod(int mode, dev_t dev)
{
short type;
2008-04-29 01:00:10 -07:00
2009-01-07 18:07:46 -08:00
if (!S_ISBLK(mode) && !S_ISCHR(mode))
return 0;
if (S_ISBLK(mode))
type = DEV_BLOCK;
else
type = DEV_CHAR;
2008-09-02 14:35:52 -07:00
2012-10-25 13:37:34 -07:00
return __devcgroup_check_permission(type, MAJOR(dev), MINOR(dev),
ACC_MKNOD);
2008-09-02 14:35:52 -07:00
2008-04-29 01:00:10 -07:00
}