device_cgroup.c 17.5 KB
Newer Older
1
/*
L
Lai Jiangshan 已提交
2
 * device_cgroup.c - device cgroup subsystem
3 4 5 6 7 8 9 10 11
 *
 * 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>
12
#include <linux/seq_file.h>
13
#include <linux/slab.h>
L
Lai Jiangshan 已提交
14
#include <linux/rcupdate.h>
L
Li Zefan 已提交
15
#include <linux/mutex.h>
16 17 18 19 20 21 22 23 24 25

#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 */

L
Li Zefan 已提交
26 27
static DEFINE_MUTEX(devcgroup_mutex);

28 29 30 31 32 33
enum devcg_behavior {
	DEVCG_DEFAULT_NONE,
	DEVCG_DEFAULT_ALLOW,
	DEVCG_DEFAULT_DENY,
};

34
/*
35
 * exception list locking rules:
L
Li Zefan 已提交
36
 * hold devcgroup_mutex for update/read.
L
Lai Jiangshan 已提交
37
 * hold rcu_read_lock() for read.
38 39
 */

40
struct dev_exception_item {
41 42 43 44
	u32 major, minor;
	short type;
	short access;
	struct list_head list;
45
	struct rcu_head rcu;
46 47 48 49
};

struct dev_cgroup {
	struct cgroup_subsys_state css;
50
	struct list_head exceptions;
51
	enum devcg_behavior behavior;
52 53
};

54 55
static inline struct dev_cgroup *css_to_devcgroup(struct cgroup_subsys_state *s)
{
56
	return s ? container_of(s, struct dev_cgroup, css) : NULL;
57 58
}

59 60
static inline struct dev_cgroup *task_devcgroup(struct task_struct *task)
{
61
	return css_to_devcgroup(task_css(task, devices_subsys_id));
62 63
}

64 65 66
struct cgroup_subsys devices_subsys;

/*
L
Li Zefan 已提交
67
 * called under devcgroup_mutex
68
 */
69
static int dev_exceptions_copy(struct list_head *dest, struct list_head *orig)
70
{
71
	struct dev_exception_item *ex, *tmp, *new;
72

T
Tejun Heo 已提交
73 74
	lockdep_assert_held(&devcgroup_mutex);

75 76
	list_for_each_entry(ex, orig, list) {
		new = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
77 78 79 80 81 82 83 84
		if (!new)
			goto free_and_exit;
		list_add_tail(&new->list, dest);
	}

	return 0;

free_and_exit:
85 86 87
	list_for_each_entry_safe(ex, tmp, dest, list) {
		list_del(&ex->list);
		kfree(ex);
88 89 90 91 92
	}
	return -ENOMEM;
}

/*
L
Li Zefan 已提交
93
 * called under devcgroup_mutex
94
 */
95 96
static int dev_exception_add(struct dev_cgroup *dev_cgroup,
			     struct dev_exception_item *ex)
97
{
98
	struct dev_exception_item *excopy, *walk;
99

T
Tejun Heo 已提交
100 101
	lockdep_assert_held(&devcgroup_mutex);

102 103
	excopy = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
	if (!excopy)
104 105
		return -ENOMEM;

106 107
	list_for_each_entry(walk, &dev_cgroup->exceptions, list) {
		if (walk->type != ex->type)
108
			continue;
109
		if (walk->major != ex->major)
110
			continue;
111
		if (walk->minor != ex->minor)
112 113
			continue;

114 115 116
		walk->access |= ex->access;
		kfree(excopy);
		excopy = NULL;
117 118
	}

119 120
	if (excopy != NULL)
		list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions);
121 122 123 124
	return 0;
}

/*
L
Li Zefan 已提交
125
 * called under devcgroup_mutex
126
 */
127 128
static void dev_exception_rm(struct dev_cgroup *dev_cgroup,
			     struct dev_exception_item *ex)
129
{
130
	struct dev_exception_item *walk, *tmp;
131

T
Tejun Heo 已提交
132 133
	lockdep_assert_held(&devcgroup_mutex);

134 135
	list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) {
		if (walk->type != ex->type)
136
			continue;
137
		if (walk->major != ex->major)
138
			continue;
139
		if (walk->minor != ex->minor)
140 141
			continue;

142
		walk->access &= ~ex->access;
143
		if (!walk->access) {
144
			list_del_rcu(&walk->list);
145
			kfree_rcu(walk, rcu);
146 147 148 149
		}
	}
}

150 151 152 153 154 155 156 157 158 159
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_rcu(&ex->list);
		kfree_rcu(ex, rcu);
	}
}

160
/**
161 162
 * dev_exception_clean - frees all entries of the exception list
 * @dev_cgroup: dev_cgroup with the exception list to be cleaned
163 164 165
 *
 * called under devcgroup_mutex
 */
166
static void dev_exception_clean(struct dev_cgroup *dev_cgroup)
167
{
T
Tejun Heo 已提交
168 169
	lockdep_assert_held(&devcgroup_mutex);

170
	__dev_exception_clean(dev_cgroup);
171 172
}

173 174 175 176 177
static inline bool is_devcg_online(const struct dev_cgroup *devcg)
{
	return (devcg->behavior != DEVCG_DEFAULT_NONE);
}

178 179 180
/**
 * devcgroup_online - initializes devcgroup's behavior and exceptions based on
 * 		      parent's
181
 * @css: css getting online
182 183
 * returns 0 in case of success, error code otherwise
 */
184
static int devcgroup_online(struct cgroup_subsys_state *css)
185
{
186 187
	struct dev_cgroup *dev_cgroup = css_to_devcgroup(css);
	struct dev_cgroup *parent_dev_cgroup = css_to_devcgroup(css_parent(css));
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
	int ret = 0;

	mutex_lock(&devcgroup_mutex);

	if (parent_dev_cgroup == NULL)
		dev_cgroup->behavior = DEVCG_DEFAULT_ALLOW;
	else {
		ret = dev_exceptions_copy(&dev_cgroup->exceptions,
					  &parent_dev_cgroup->exceptions);
		if (!ret)
			dev_cgroup->behavior = parent_dev_cgroup->behavior;
	}
	mutex_unlock(&devcgroup_mutex);

	return ret;
}

205
static void devcgroup_offline(struct cgroup_subsys_state *css)
206
{
207
	struct dev_cgroup *dev_cgroup = css_to_devcgroup(css);
208 209 210 211 212 213

	mutex_lock(&devcgroup_mutex);
	dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
	mutex_unlock(&devcgroup_mutex);
}

214 215 216
/*
 * called from kernel/cgroup.c with cgroup_lock() held.
 */
217 218
static struct cgroup_subsys_state *
devcgroup_css_alloc(struct cgroup_subsys_state *parent_css)
219
{
220
	struct dev_cgroup *dev_cgroup;
221 222 223 224

	dev_cgroup = kzalloc(sizeof(*dev_cgroup), GFP_KERNEL);
	if (!dev_cgroup)
		return ERR_PTR(-ENOMEM);
225
	INIT_LIST_HEAD(&dev_cgroup->exceptions);
226
	dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
227 228 229 230

	return &dev_cgroup->css;
}

231
static void devcgroup_css_free(struct cgroup_subsys_state *css)
232
{
233
	struct dev_cgroup *dev_cgroup = css_to_devcgroup(css);
234

235
	__dev_exception_clean(dev_cgroup);
236 237 238 239 240
	kfree(dev_cgroup);
}

#define DEVCG_ALLOW 1
#define DEVCG_DENY 2
241 242
#define DEVCG_LIST 3

243
#define MAJMINLEN 13
244
#define ACCLEN 4
245 246 247 248

static void set_access(char *acc, short access)
{
	int idx = 0;
249
	memset(acc, 0, ACCLEN);
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
	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';
}

269
static void set_majmin(char *str, unsigned m)
270 271
{
	if (m == ~0)
L
Li Zefan 已提交
272
		strcpy(str, "*");
273
	else
L
Li Zefan 已提交
274
		sprintf(str, "%u", m);
275 276
}

277
static int devcgroup_seq_show(struct seq_file *m, void *v)
278
{
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];
282

283
	rcu_read_lock();
284 285 286 287 288 289
	/*
	 * 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"
	 */
290
	if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
291 292 293 294
		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),
295
			   maj, min, acc);
296
	} else {
297 298 299 300 301
		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),
302 303
				   maj, min, acc);
		}
304
	}
305
	rcu_read_unlock();
306

307
	return 0;
308 309
}

310
/**
311 312 313 314 315
 * 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.
316
 * @dev_cgroup: dev cgroup to be tested against
317
 * @refex: new exception
318
 * @behavior: behavior of the exception
319
 */
320
static bool may_access(struct dev_cgroup *dev_cgroup,
321 322
		       struct dev_exception_item *refex,
		       enum devcg_behavior behavior)
323
{
324
	struct dev_exception_item *ex;
325
	bool match = false;
326

T
Tejun Heo 已提交
327 328 329 330
	rcu_lockdep_assert(rcu_read_lock_held() ||
			   lockdep_is_held(&devcgroup_mutex),
			   "device_cgroup::may_access() called without proper synchronization");

T
Tejun Heo 已提交
331
	list_for_each_entry_rcu(ex, &dev_cgroup->exceptions, list) {
332
		if ((refex->type & DEV_BLOCK) && !(ex->type & DEV_BLOCK))
333
			continue;
334
		if ((refex->type & DEV_CHAR) && !(ex->type & DEV_CHAR))
335
			continue;
336
		if (ex->major != ~0 && ex->major != refex->major)
337
			continue;
338
		if (ex->minor != ~0 && ex->minor != refex->minor)
339
			continue;
340
		if (refex->access & (~ex->access))
341
			continue;
342 343
		match = true;
		break;
344
	}
345

346 347 348 349 350 351 352 353 354 355 356 357
	if (dev_cgroup->behavior == DEVCG_DEFAULT_ALLOW) {
		if (behavior == DEVCG_DEFAULT_ALLOW) {
			/* the exception will deny access to certain devices */
			return true;
		} else {
			/* the exception will allow access to certain devices */
			if (match)
				/*
				 * a new exception allowing access shouldn't
				 * match an parent's exception
				 */
				return false;
358
			return true;
359
		}
360
	} else {
361 362 363
		/* only behavior == DEVCG_DEFAULT_DENY allowed here */
		if (match)
			/* parent has an exception that matches the proposed */
364
			return true;
365 366
		else
			return false;
367 368
	}
	return false;
369 370 371 372
}

/*
 * parent_has_perm:
373
 * when adding a new allow rule to a device exception list, the rule
374 375
 * must be allowed in the parent device
 */
376
static int parent_has_perm(struct dev_cgroup *childcg,
377
				  struct dev_exception_item *ex)
378
{
T
Tejun Heo 已提交
379
	struct dev_cgroup *parent = css_to_devcgroup(css_parent(&childcg->css));
380

T
Tejun Heo 已提交
381
	if (!parent)
382
		return 1;
383
	return may_access(parent, ex, childcg->behavior);
384 385
}

386 387 388 389 390 391 392 393
/**
 * may_allow_all - checks if it's possible to change the behavior to
 *		   allow based on parent's rules.
 * @parent: device cgroup's parent
 * returns: != 0 in case it's allowed, 0 otherwise
 */
static inline int may_allow_all(struct dev_cgroup *parent)
{
394 395
	if (!parent)
		return 1;
396 397 398
	return parent->behavior == DEVCG_DEFAULT_ALLOW;
}

399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
/**
 * revalidate_active_exceptions - walks through the active exception list and
 * 				  revalidates the exceptions based on parent's
 * 				  behavior and exceptions. The exceptions that
 * 				  are no longer valid will be removed.
 * 				  Called with devcgroup_mutex held.
 * @devcg: cgroup which exceptions will be checked
 *
 * This is one of the three key functions for hierarchy implementation.
 * This function is responsible for re-evaluating all the cgroup's active
 * exceptions due to a parent's exception change.
 * Refer to Documentation/cgroups/devices.txt for more details.
 */
static void revalidate_active_exceptions(struct dev_cgroup *devcg)
{
	struct dev_exception_item *ex;
	struct list_head *this, *tmp;

	list_for_each_safe(this, tmp, &devcg->exceptions) {
		ex = container_of(this, struct dev_exception_item, list);
		if (!parent_has_perm(devcg, ex))
			dev_exception_rm(devcg, ex);
	}
}

/**
 * propagate_exception - propagates a new exception to the children
 * @devcg_root: device cgroup that added a new exception
 * @ex: new exception to be propagated
 *
 * returns: 0 in case of success, != 0 in case of error
 */
static int propagate_exception(struct dev_cgroup *devcg_root,
			       struct dev_exception_item *ex)
{
434
	struct cgroup_subsys_state *pos;
435 436
	int rc = 0;

437
	rcu_read_lock();
438

439 440
	css_for_each_descendant_pre(pos, &devcg_root->css) {
		struct dev_cgroup *devcg = css_to_devcgroup(pos);
441 442 443 444 445 446 447

		/*
		 * Because devcgroup_mutex is held, no devcg will become
		 * online or offline during the tree walk (see on/offline
		 * methods), and online ones are safe to access outside RCU
		 * read lock without bumping refcnt.
		 */
448
		if (pos == &devcg_root->css || !is_devcg_online(devcg))
449 450 451
			continue;

		rcu_read_unlock();
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472

		/*
		 * in case both root's behavior and devcg is allow, a new
		 * restriction means adding to the exception list
		 */
		if (devcg_root->behavior == DEVCG_DEFAULT_ALLOW &&
		    devcg->behavior == DEVCG_DEFAULT_ALLOW) {
			rc = dev_exception_add(devcg, ex);
			if (rc)
				break;
		} else {
			/*
			 * in the other possible cases:
			 * root's behavior: allow, devcg's: deny
			 * root's behavior: deny, devcg's: deny
			 * the exception will be removed
			 */
			dev_exception_rm(devcg, ex);
		}
		revalidate_active_exceptions(devcg);

473
		rcu_read_lock();
474
	}
475 476

	rcu_read_unlock();
477 478 479 480 481 482 483 484 485 486
	return rc;
}

static inline bool has_children(struct dev_cgroup *devcgroup)
{
	struct cgroup *cgrp = devcgroup->css.cgroup;

	return !list_empty(&cgrp->children);
}

487
/*
488
 * Modify the exception list using allow/deny rules.
489 490
 * 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
491
 * modify the exception list.
492 493
 * 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
494
 * device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
495 496 497 498 499
 *
 * 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.
 */
500 501
static int devcgroup_update_access(struct dev_cgroup *devcgroup,
				   int filetype, const char *buffer)
502
{
503
	const char *b;
504
	char temp[12];		/* 11 + 1 characters needed for a u32 */
505
	int count, rc = 0;
506
	struct dev_exception_item ex;
T
Tejun Heo 已提交
507
	struct dev_cgroup *parent = css_to_devcgroup(css_parent(&devcgroup->css));
508 509 510 511

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

512
	memset(&ex, 0, sizeof(ex));
513 514 515 516
	b = buffer;

	switch (*b) {
	case 'a':
517 518
		switch (filetype) {
		case DEVCG_ALLOW:
519 520 521
			if (has_children(devcgroup))
				return -EINVAL;

522
			if (!may_allow_all(parent))
523
				return -EPERM;
524
			dev_exception_clean(devcgroup);
525 526 527 528
			devcgroup->behavior = DEVCG_DEFAULT_ALLOW;
			if (!parent)
				break;

529 530 531 532
			rc = dev_exceptions_copy(&devcgroup->exceptions,
						 &parent->exceptions);
			if (rc)
				return rc;
533 534
			break;
		case DEVCG_DENY:
535 536 537
			if (has_children(devcgroup))
				return -EINVAL;

538
			dev_exception_clean(devcgroup);
539
			devcgroup->behavior = DEVCG_DEFAULT_DENY;
540 541 542 543 544
			break;
		default:
			return -EINVAL;
		}
		return 0;
545
	case 'b':
546
		ex.type = DEV_BLOCK;
547 548
		break;
	case 'c':
549
		ex.type = DEV_CHAR;
550 551
		break;
	default:
552
		return -EINVAL;
553 554
	}
	b++;
555 556
	if (!isspace(*b))
		return -EINVAL;
557 558
	b++;
	if (*b == '*') {
559
		ex.major = ~0;
560 561
		b++;
	} else if (isdigit(*b)) {
562 563 564 565 566 567 568 569 570 571
		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;
572
	} else {
573
		return -EINVAL;
574
	}
575 576
	if (*b != ':')
		return -EINVAL;
577 578 579 580
	b++;

	/* read minor */
	if (*b == '*') {
581
		ex.minor = ~0;
582 583
		b++;
	} else if (isdigit(*b)) {
584 585 586 587 588 589 590 591 592 593
		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;
594
	} else {
595
		return -EINVAL;
596
	}
597 598
	if (!isspace(*b))
		return -EINVAL;
599 600 601
	for (b++, count = 0; count < 3; count++, b++) {
		switch (*b) {
		case 'r':
602
			ex.access |= ACC_READ;
603 604
			break;
		case 'w':
605
			ex.access |= ACC_WRITE;
606 607
			break;
		case 'm':
608
			ex.access |= ACC_MKNOD;
609 610 611 612 613 614
			break;
		case '\n':
		case '\0':
			count = 3;
			break;
		default:
615
			return -EINVAL;
616 617 618 619 620
		}
	}

	switch (filetype) {
	case DEVCG_ALLOW:
621
		if (!parent_has_perm(devcgroup, &ex))
622
			return -EPERM;
623 624 625 626 627
		/*
		 * 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
		 */
628
		if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
629
			dev_exception_rm(devcgroup, &ex);
630 631
			return 0;
		}
632 633
		rc = dev_exception_add(devcgroup, &ex);
		break;
634
	case DEVCG_DENY:
635 636 637 638 639
		/*
		 * 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
		 */
640
		if (devcgroup->behavior == DEVCG_DEFAULT_DENY)
641
			dev_exception_rm(devcgroup, &ex);
642 643 644 645 646 647 648 649
		else
			rc = dev_exception_add(devcgroup, &ex);

		if (rc)
			break;
		/* we only propagate new restrictions */
		rc = propagate_exception(devcgroup, &ex);
		break;
650
	default:
651
		rc = -EINVAL;
652
	}
653
	return rc;
654
}
655

656 657
static int devcgroup_access_write(struct cgroup_subsys_state *css,
				  struct cftype *cft, const char *buffer)
658 659
{
	int retval;
L
Li Zefan 已提交
660 661

	mutex_lock(&devcgroup_mutex);
662
	retval = devcgroup_update_access(css_to_devcgroup(css),
663
					 cft->private, buffer);
L
Li Zefan 已提交
664
	mutex_unlock(&devcgroup_mutex);
665 666 667 668 669 670
	return retval;
}

static struct cftype dev_cgroup_files[] = {
	{
		.name = "allow",
671
		.write_string  = devcgroup_access_write,
672 673 674 675
		.private = DEVCG_ALLOW,
	},
	{
		.name = "deny",
676
		.write_string = devcgroup_access_write,
677 678
		.private = DEVCG_DENY,
	},
679 680
	{
		.name = "list",
681
		.seq_show = devcgroup_seq_show,
682 683
		.private = DEVCG_LIST,
	},
684
	{ }	/* terminate */
685 686 687 688
};

struct cgroup_subsys devices_subsys = {
	.name = "devices",
689 690
	.css_alloc = devcgroup_css_alloc,
	.css_free = devcgroup_css_free,
691 692
	.css_online = devcgroup_online,
	.css_offline = devcgroup_offline,
693
	.subsys_id = devices_subsys_id,
694
	.base_cftypes = dev_cgroup_files,
695 696
};

697 698 699 700 701 702 703 704 705 706
/**
 * __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
 */
J
Jiri Slaby 已提交
707
static int __devcgroup_check_permission(short type, u32 major, u32 minor,
708
				        short access)
709
{
J
Jiri Slaby 已提交
710
	struct dev_cgroup *dev_cgroup;
711
	struct dev_exception_item ex;
712
	int rc;
L
Li Zefan 已提交
713

714 715 716 717 718
	memset(&ex, 0, sizeof(ex));
	ex.type = type;
	ex.major = major;
	ex.minor = minor;
	ex.access = access;
L
Li Zefan 已提交
719

720
	rcu_read_lock();
J
Jiri Slaby 已提交
721
	dev_cgroup = task_devcgroup(current);
722
	rc = may_access(dev_cgroup, &ex, dev_cgroup->behavior);
723
	rcu_read_unlock();
724

725 726
	if (!rc)
		return -EPERM;
L
Li Zefan 已提交
727

728 729
	return 0;
}
730

731 732 733 734 735 736 737 738 739 740 741 742 743
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;

J
Jiri Slaby 已提交
744 745
	return __devcgroup_check_permission(type, imajor(inode), iminor(inode),
			access);
746 747 748 749
}

int devcgroup_inode_mknod(int mode, dev_t dev)
{
750
	short type;
751

S
Serge E. Hallyn 已提交
752 753 754
	if (!S_ISBLK(mode) && !S_ISCHR(mode))
		return 0;

755 756 757 758
	if (S_ISBLK(mode))
		type = DEV_BLOCK;
	else
		type = DEV_CHAR;
L
Li Zefan 已提交
759

J
Jiri Slaby 已提交
760 761
	return __devcgroup_check_permission(type, MAJOR(dev), MINOR(dev),
			ACC_MKNOD);
L
Li Zefan 已提交
762

763
}