blob: 842889f3dcb7065cb0e7b1217cf77f8bc162781c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002/*
Lai Jiangshan47c59802008-10-18 20:28:07 -07003 * device_cgroup.c - device cgroup subsystem
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07004 *
5 * Copyright 2007 IBM Corp
6 */
7
Jakub Kicinskiaef2fed2021-12-15 18:55:37 -08008#include <linux/bpf-cgroup.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07009#include <linux/device_cgroup.h>
10#include <linux/cgroup.h>
11#include <linux/ctype.h>
12#include <linux/list.h>
13#include <linux/uaccess.h>
Serge E. Hallyn29486df2008-04-29 01:00:14 -070014#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Lai Jiangshan47c59802008-10-18 20:28:07 -070016#include <linux/rcupdate.h>
Li Zefanb4046f02009-04-02 16:57:32 -070017#include <linux/mutex.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070018
Odin Ugedaleec8fd02020-04-03 19:55:28 +020019#ifdef CONFIG_CGROUP_DEVICE
20
Li Zefanb4046f02009-04-02 16:57:32 -070021static DEFINE_MUTEX(devcgroup_mutex);
22
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -050023enum devcg_behavior {
24 DEVCG_DEFAULT_NONE,
25 DEVCG_DEFAULT_ALLOW,
26 DEVCG_DEFAULT_DENY,
27};
28
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070029/*
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070030 * exception list locking rules:
Li Zefanb4046f02009-04-02 16:57:32 -070031 * hold devcgroup_mutex for update/read.
Lai Jiangshan47c59802008-10-18 20:28:07 -070032 * hold rcu_read_lock() for read.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070033 */
34
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070035struct dev_exception_item {
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070036 u32 major, minor;
37 short type;
38 short access;
39 struct list_head list;
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -070040 struct rcu_head rcu;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070041};
42
43struct dev_cgroup {
44 struct cgroup_subsys_state css;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070045 struct list_head exceptions;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -050046 enum devcg_behavior behavior;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070047};
48
Pavel Emelyanovb66862f2008-06-05 22:46:24 -070049static inline struct dev_cgroup *css_to_devcgroup(struct cgroup_subsys_state *s)
50{
Tejun Heoa7c6d552013-08-08 20:11:23 -040051 return s ? container_of(s, struct dev_cgroup, css) : NULL;
Pavel Emelyanovb66862f2008-06-05 22:46:24 -070052}
53
Paul Menagef92523e2008-07-25 01:47:03 -070054static inline struct dev_cgroup *task_devcgroup(struct task_struct *task)
55{
Tejun Heo073219e2014-02-08 10:36:58 -050056 return css_to_devcgroup(task_css(task, devices_cgrp_id));
Paul Menagef92523e2008-07-25 01:47:03 -070057}
58
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070059/*
Li Zefanb4046f02009-04-02 16:57:32 -070060 * called under devcgroup_mutex
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070061 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070062static int dev_exceptions_copy(struct list_head *dest, struct list_head *orig)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070063{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070064 struct dev_exception_item *ex, *tmp, *new;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070065
Tejun Heo4b1c7842012-11-06 09:16:53 -080066 lockdep_assert_held(&devcgroup_mutex);
67
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070068 list_for_each_entry(ex, orig, list) {
69 new = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070070 if (!new)
71 goto free_and_exit;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070072 list_add_tail(&new->list, dest);
73 }
74
75 return 0;
76
77free_and_exit:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070078 list_for_each_entry_safe(ex, tmp, dest, list) {
79 list_del(&ex->list);
80 kfree(ex);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070081 }
82 return -ENOMEM;
83}
84
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070085/*
Li Zefanb4046f02009-04-02 16:57:32 -070086 * called under devcgroup_mutex
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070087 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070088static int dev_exception_add(struct dev_cgroup *dev_cgroup,
89 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070090{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070091 struct dev_exception_item *excopy, *walk;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070092
Tejun Heo4b1c7842012-11-06 09:16:53 -080093 lockdep_assert_held(&devcgroup_mutex);
94
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070095 excopy = kmemdup(ex, sizeof(*ex), GFP_KERNEL);
96 if (!excopy)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070097 return -ENOMEM;
98
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -070099 list_for_each_entry(walk, &dev_cgroup->exceptions, list) {
100 if (walk->type != ex->type)
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700101 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700102 if (walk->major != ex->major)
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700103 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700104 if (walk->minor != ex->minor)
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700105 continue;
106
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700107 walk->access |= ex->access;
108 kfree(excopy);
109 excopy = NULL;
Pavel Emelyanovd1ee2972008-06-05 22:46:28 -0700110 }
111
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700112 if (excopy != NULL)
113 list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700114 return 0;
115}
116
117/*
Li Zefanb4046f02009-04-02 16:57:32 -0700118 * called under devcgroup_mutex
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700119 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700120static void dev_exception_rm(struct dev_cgroup *dev_cgroup,
121 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700122{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700123 struct dev_exception_item *walk, *tmp;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700124
Tejun Heo4b1c7842012-11-06 09:16:53 -0800125 lockdep_assert_held(&devcgroup_mutex);
126
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700127 list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) {
128 if (walk->type != ex->type)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700129 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700130 if (walk->major != ex->major)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700131 continue;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700132 if (walk->minor != ex->minor)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700133 continue;
134
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700135 walk->access &= ~ex->access;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700136 if (!walk->access) {
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700137 list_del_rcu(&walk->list);
Lai Jiangshan6034f7e2011-03-15 18:07:57 +0800138 kfree_rcu(walk, rcu);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700139 }
140 }
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700141}
142
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800143static void __dev_exception_clean(struct dev_cgroup *dev_cgroup)
144{
145 struct dev_exception_item *ex, *tmp;
146
147 list_for_each_entry_safe(ex, tmp, &dev_cgroup->exceptions, list) {
148 list_del_rcu(&ex->list);
149 kfree_rcu(ex, rcu);
150 }
151}
152
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700153/**
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700154 * dev_exception_clean - frees all entries of the exception list
155 * @dev_cgroup: dev_cgroup with the exception list to be cleaned
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700156 *
157 * called under devcgroup_mutex
158 */
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700159static void dev_exception_clean(struct dev_cgroup *dev_cgroup)
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700160{
Tejun Heo4b1c7842012-11-06 09:16:53 -0800161 lockdep_assert_held(&devcgroup_mutex);
162
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800163 __dev_exception_clean(dev_cgroup);
Aristeu Rozanski868539a2012-10-04 17:15:15 -0700164}
165
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500166static inline bool is_devcg_online(const struct dev_cgroup *devcg)
167{
168 return (devcg->behavior != DEVCG_DEFAULT_NONE);
169}
170
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500171/**
172 * devcgroup_online - initializes devcgroup's behavior and exceptions based on
173 * parent's
Tejun Heoeb954192013-08-08 20:11:23 -0400174 * @css: css getting online
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500175 * returns 0 in case of success, error code otherwise
176 */
Tejun Heoeb954192013-08-08 20:11:23 -0400177static int devcgroup_online(struct cgroup_subsys_state *css)
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500178{
Tejun Heoeb954192013-08-08 20:11:23 -0400179 struct dev_cgroup *dev_cgroup = css_to_devcgroup(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -0400180 struct dev_cgroup *parent_dev_cgroup = css_to_devcgroup(css->parent);
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500181 int ret = 0;
182
183 mutex_lock(&devcgroup_mutex);
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500184
185 if (parent_dev_cgroup == NULL)
186 dev_cgroup->behavior = DEVCG_DEFAULT_ALLOW;
187 else {
188 ret = dev_exceptions_copy(&dev_cgroup->exceptions,
189 &parent_dev_cgroup->exceptions);
190 if (!ret)
191 dev_cgroup->behavior = parent_dev_cgroup->behavior;
192 }
193 mutex_unlock(&devcgroup_mutex);
194
195 return ret;
196}
197
Tejun Heoeb954192013-08-08 20:11:23 -0400198static void devcgroup_offline(struct cgroup_subsys_state *css)
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500199{
Tejun Heoeb954192013-08-08 20:11:23 -0400200 struct dev_cgroup *dev_cgroup = css_to_devcgroup(css);
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500201
202 mutex_lock(&devcgroup_mutex);
203 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
204 mutex_unlock(&devcgroup_mutex);
205}
206
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700207/*
208 * called from kernel/cgroup.c with cgroup_lock() held.
209 */
Tejun Heoeb954192013-08-08 20:11:23 -0400210static struct cgroup_subsys_state *
211devcgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700212{
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500213 struct dev_cgroup *dev_cgroup;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700214
215 dev_cgroup = kzalloc(sizeof(*dev_cgroup), GFP_KERNEL);
216 if (!dev_cgroup)
217 return ERR_PTR(-ENOMEM);
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700218 INIT_LIST_HEAD(&dev_cgroup->exceptions);
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500219 dev_cgroup->behavior = DEVCG_DEFAULT_NONE;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700220
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700221 return &dev_cgroup->css;
222}
223
Tejun Heoeb954192013-08-08 20:11:23 -0400224static void devcgroup_css_free(struct cgroup_subsys_state *css)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700225{
Tejun Heoeb954192013-08-08 20:11:23 -0400226 struct dev_cgroup *dev_cgroup = css_to_devcgroup(css);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700227
Jerry Snitselaar53eb8c82013-02-21 16:41:31 -0800228 __dev_exception_clean(dev_cgroup);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700229 kfree(dev_cgroup);
230}
231
232#define DEVCG_ALLOW 1
233#define DEVCG_DENY 2
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700234#define DEVCG_LIST 3
235
Li Zefan17d213f2008-07-13 12:14:02 -0700236#define MAJMINLEN 13
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700237#define ACCLEN 4
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700238
239static void set_access(char *acc, short access)
240{
241 int idx = 0;
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700242 memset(acc, 0, ACCLEN);
Roman Gushchin67e306f2017-11-05 08:15:30 -0500243 if (access & DEVCG_ACC_READ)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700244 acc[idx++] = 'r';
Roman Gushchin67e306f2017-11-05 08:15:30 -0500245 if (access & DEVCG_ACC_WRITE)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700246 acc[idx++] = 'w';
Roman Gushchin67e306f2017-11-05 08:15:30 -0500247 if (access & DEVCG_ACC_MKNOD)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700248 acc[idx++] = 'm';
249}
250
251static char type_to_char(short type)
252{
Roman Gushchin67e306f2017-11-05 08:15:30 -0500253 if (type == DEVCG_DEV_ALL)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700254 return 'a';
Roman Gushchin67e306f2017-11-05 08:15:30 -0500255 if (type == DEVCG_DEV_CHAR)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700256 return 'c';
Roman Gushchin67e306f2017-11-05 08:15:30 -0500257 if (type == DEVCG_DEV_BLOCK)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700258 return 'b';
259 return 'X';
260}
261
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700262static void set_majmin(char *str, unsigned m)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700263{
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700264 if (m == ~0)
Li Zefan7759fc92008-07-25 01:47:08 -0700265 strcpy(str, "*");
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700266 else
Li Zefan7759fc92008-07-25 01:47:08 -0700267 sprintf(str, "%u", m);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700268}
269
Tejun Heo2da8ca82013-12-05 12:28:04 -0500270static int devcgroup_seq_show(struct seq_file *m, void *v)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700271{
Tejun Heo2da8ca82013-12-05 12:28:04 -0500272 struct dev_cgroup *devcgroup = css_to_devcgroup(seq_css(m));
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700273 struct dev_exception_item *ex;
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700274 char maj[MAJMINLEN], min[MAJMINLEN], acc[ACCLEN];
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700275
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700276 rcu_read_lock();
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700277 /*
278 * To preserve the compatibility:
279 * - Only show the "all devices" when the default policy is to allow
280 * - List the exceptions in case the default policy is to deny
281 * This way, the file remains as a "whitelist of devices"
282 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700283 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
Roman Gushchin67e306f2017-11-05 08:15:30 -0500284 set_access(acc, DEVCG_ACC_MASK);
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700285 set_majmin(maj, ~0);
286 set_majmin(min, ~0);
Roman Gushchin67e306f2017-11-05 08:15:30 -0500287 seq_printf(m, "%c %s:%s %s\n", type_to_char(DEVCG_DEV_ALL),
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700288 maj, min, acc);
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700289 } else {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700290 list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) {
291 set_access(acc, ex->access);
292 set_majmin(maj, ex->major);
293 set_majmin(min, ex->minor);
294 seq_printf(m, "%c %s:%s %s\n", type_to_char(ex->type),
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700295 maj, min, acc);
296 }
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700297 }
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700298 rcu_read_unlock();
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700299
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700300 return 0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700301}
302
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700303/**
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400304 * match_exception - iterates the exception list trying to find a complete match
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400305 * @exceptions: list of exceptions
Roman Gushchin67e306f2017-11-05 08:15:30 -0500306 * @type: device type (DEVCG_DEV_BLOCK or DEVCG_DEV_CHAR)
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400307 * @major: device file major number, ~0 to match all
308 * @minor: device file minor number, ~0 to match all
Roman Gushchin67e306f2017-11-05 08:15:30 -0500309 * @access: permission mask (DEVCG_ACC_READ, DEVCG_ACC_WRITE, DEVCG_ACC_MKNOD)
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400310 *
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400311 * It is considered a complete match if an exception is found that will
312 * contain the entire range of provided parameters.
313 *
314 * Return: true in case it matches an exception completely
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700315 */
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400316static bool match_exception(struct list_head *exceptions, short type,
317 u32 major, u32 minor, short access)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700318{
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700319 struct dev_exception_item *ex;
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400320
321 list_for_each_entry_rcu(ex, exceptions, list) {
Roman Gushchin67e306f2017-11-05 08:15:30 -0500322 if ((type & DEVCG_DEV_BLOCK) && !(ex->type & DEVCG_DEV_BLOCK))
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400323 continue;
Roman Gushchin67e306f2017-11-05 08:15:30 -0500324 if ((type & DEVCG_DEV_CHAR) && !(ex->type & DEVCG_DEV_CHAR))
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400325 continue;
326 if (ex->major != ~0 && ex->major != major)
327 continue;
328 if (ex->minor != ~0 && ex->minor != minor)
329 continue;
330 /* provided access cannot have more than the exception rule */
331 if (access & (~ex->access))
332 continue;
333 return true;
334 }
335 return false;
336}
337
338/**
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400339 * match_exception_partial - iterates the exception list trying to find a partial match
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400340 * @exceptions: list of exceptions
Roman Gushchin67e306f2017-11-05 08:15:30 -0500341 * @type: device type (DEVCG_DEV_BLOCK or DEVCG_DEV_CHAR)
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400342 * @major: device file major number, ~0 to match all
343 * @minor: device file minor number, ~0 to match all
Roman Gushchin67e306f2017-11-05 08:15:30 -0500344 * @access: permission mask (DEVCG_ACC_READ, DEVCG_ACC_WRITE, DEVCG_ACC_MKNOD)
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400345 *
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400346 * It is considered a partial match if an exception's range is found to
347 * contain *any* of the devices specified by provided parameters. This is
348 * used to make sure no extra access is being granted that is forbidden by
349 * any of the exception list.
350 *
351 * Return: true in case the provided range mat matches an exception completely
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400352 */
353static bool match_exception_partial(struct list_head *exceptions, short type,
354 u32 major, u32 minor, short access)
355{
356 struct dev_exception_item *ex;
357
Amol Groverbc62d682020-04-06 16:29:50 +0530358 list_for_each_entry_rcu(ex, exceptions, list,
359 lockdep_is_held(&devcgroup_mutex)) {
Roman Gushchin67e306f2017-11-05 08:15:30 -0500360 if ((type & DEVCG_DEV_BLOCK) && !(ex->type & DEVCG_DEV_BLOCK))
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400361 continue;
Roman Gushchin67e306f2017-11-05 08:15:30 -0500362 if ((type & DEVCG_DEV_CHAR) && !(ex->type & DEVCG_DEV_CHAR))
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400363 continue;
364 /*
365 * We must be sure that both the exception and the provided
366 * range aren't masking all devices
367 */
368 if (ex->major != ~0 && major != ~0 && ex->major != major)
369 continue;
370 if (ex->minor != ~0 && minor != ~0 && ex->minor != minor)
371 continue;
372 /*
373 * In order to make sure the provided range isn't matching
374 * an exception, all its access bits shouldn't match the
375 * exception's access bits
376 */
377 if (!(access & ex->access))
378 continue;
379 return true;
380 }
381 return false;
382}
383
384/**
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400385 * verify_new_ex - verifies if a new exception is allowed by parent cgroup's permissions
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400386 * @dev_cgroup: dev cgroup to be tested against
387 * @refex: new exception
388 * @behavior: behavior of the exception's dev_cgroup
Aristeu Rozanskif5f3cf6f2014-04-24 15:33:21 -0400389 *
390 * This is used to make sure a child cgroup won't have more privileges
391 * than its parent
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400392 */
393static bool verify_new_ex(struct dev_cgroup *dev_cgroup,
394 struct dev_exception_item *refex,
395 enum devcg_behavior behavior)
396{
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700397 bool match = false;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700398
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700399 RCU_LOCKDEP_WARN(!rcu_read_lock_held() &&
Paul E. McKenneydc3a04d2015-09-02 17:11:22 -0700400 !lockdep_is_held(&devcgroup_mutex),
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700401 "device_cgroup:verify_new_ex called without proper synchronization");
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700402
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500403 if (dev_cgroup->behavior == DEVCG_DEFAULT_ALLOW) {
404 if (behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400405 /*
406 * new exception in the child doesn't matter, only
407 * adding extra restrictions
408 */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500409 return true;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500410 } else {
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400411 /*
412 * new exception in the child will add more devices
413 * that can be acessed, so it can't match any of
414 * parent's exceptions, even slightly
415 */
416 match = match_exception_partial(&dev_cgroup->exceptions,
417 refex->type,
418 refex->major,
419 refex->minor,
420 refex->access);
421
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500422 if (match)
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500423 return false;
424 return true;
425 }
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500426 } else {
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400427 /*
428 * Only behavior == DEVCG_DEFAULT_DENY allowed here, therefore
429 * the new exception will add access to more devices and must
430 * be contained completely in an parent's exception to be
431 * allowed
432 */
433 match = match_exception(&dev_cgroup->exceptions, refex->type,
434 refex->major, refex->minor,
435 refex->access);
436
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500437 if (match)
438 /* parent has an exception that matches the proposed */
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500439 return true;
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500440 else
441 return false;
Aristeu Rozanski26898fd2013-02-15 11:55:44 -0500442 }
443 return false;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700444}
445
446/*
447 * parent_has_perm:
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700448 * when adding a new allow rule to a device exception list, the rule
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700449 * must be allowed in the parent device
450 */
Paul Menagef92523e2008-07-25 01:47:03 -0700451static int parent_has_perm(struct dev_cgroup *childcg,
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700452 struct dev_exception_item *ex)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700453{
Tejun Heo5c9d5352014-05-16 13:22:48 -0400454 struct dev_cgroup *parent = css_to_devcgroup(childcg->css.parent);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700455
Tejun Heo63876982013-08-08 20:11:23 -0400456 if (!parent)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700457 return 1;
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400458 return verify_new_ex(parent, ex, childcg->behavior);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700459}
460
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700461/**
Aristeu Rozanskid2c2b112014-05-05 11:18:59 -0400462 * parent_allows_removal - verify if it's ok to remove an exception
463 * @childcg: child cgroup from where the exception will be removed
464 * @ex: exception being removed
465 *
466 * When removing an exception in cgroups with default ALLOW policy, it must
467 * be checked if removing it will give the child cgroup more access than the
468 * parent.
469 *
470 * Return: true if it's ok to remove exception, false otherwise
471 */
472static bool parent_allows_removal(struct dev_cgroup *childcg,
473 struct dev_exception_item *ex)
474{
Tejun Heo5c9d5352014-05-16 13:22:48 -0400475 struct dev_cgroup *parent = css_to_devcgroup(childcg->css.parent);
Aristeu Rozanskid2c2b112014-05-05 11:18:59 -0400476
477 if (!parent)
478 return true;
479
480 /* It's always allowed to remove access to devices */
481 if (childcg->behavior == DEVCG_DEFAULT_DENY)
482 return true;
483
484 /*
485 * Make sure you're not removing part or a whole exception existing in
486 * the parent cgroup
487 */
488 return !match_exception_partial(&parent->exceptions, ex->type,
489 ex->major, ex->minor, ex->access);
490}
491
492/**
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700493 * may_allow_all - checks if it's possible to change the behavior to
494 * allow based on parent's rules.
495 * @parent: device cgroup's parent
496 * returns: != 0 in case it's allowed, 0 otherwise
497 */
498static inline int may_allow_all(struct dev_cgroup *parent)
499{
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800500 if (!parent)
501 return 1;
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700502 return parent->behavior == DEVCG_DEFAULT_ALLOW;
503}
504
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500505/**
506 * revalidate_active_exceptions - walks through the active exception list and
507 * revalidates the exceptions based on parent's
508 * behavior and exceptions. The exceptions that
509 * are no longer valid will be removed.
510 * Called with devcgroup_mutex held.
511 * @devcg: cgroup which exceptions will be checked
512 *
513 * This is one of the three key functions for hierarchy implementation.
514 * This function is responsible for re-evaluating all the cgroup's active
515 * exceptions due to a parent's exception change.
Mauro Carvalho Chehabda82c922019-06-27 13:08:35 -0300516 * Refer to Documentation/admin-guide/cgroup-v1/devices.rst for more details.
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500517 */
518static void revalidate_active_exceptions(struct dev_cgroup *devcg)
519{
520 struct dev_exception_item *ex;
521 struct list_head *this, *tmp;
522
523 list_for_each_safe(this, tmp, &devcg->exceptions) {
524 ex = container_of(this, struct dev_exception_item, list);
525 if (!parent_has_perm(devcg, ex))
526 dev_exception_rm(devcg, ex);
527 }
528}
529
530/**
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500531 * propagate_exception - propagates a new exception to the children
532 * @devcg_root: device cgroup that added a new exception
533 * @ex: new exception to be propagated
534 *
535 * returns: 0 in case of success, != 0 in case of error
536 */
537static int propagate_exception(struct dev_cgroup *devcg_root,
538 struct dev_exception_item *ex)
539{
Tejun Heo492eb212013-08-08 20:11:25 -0400540 struct cgroup_subsys_state *pos;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500541 int rc = 0;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500542
Tejun Heod591fb52013-05-24 10:55:38 +0900543 rcu_read_lock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500544
Tejun Heo492eb212013-08-08 20:11:25 -0400545 css_for_each_descendant_pre(pos, &devcg_root->css) {
546 struct dev_cgroup *devcg = css_to_devcgroup(pos);
Tejun Heod591fb52013-05-24 10:55:38 +0900547
548 /*
549 * Because devcgroup_mutex is held, no devcg will become
550 * online or offline during the tree walk (see on/offline
551 * methods), and online ones are safe to access outside RCU
552 * read lock without bumping refcnt.
553 */
Tejun Heobd8815a2013-08-08 20:11:27 -0400554 if (pos == &devcg_root->css || !is_devcg_online(devcg))
Tejun Heod591fb52013-05-24 10:55:38 +0900555 continue;
556
557 rcu_read_unlock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500558
559 /*
560 * in case both root's behavior and devcg is allow, a new
561 * restriction means adding to the exception list
562 */
563 if (devcg_root->behavior == DEVCG_DEFAULT_ALLOW &&
564 devcg->behavior == DEVCG_DEFAULT_ALLOW) {
565 rc = dev_exception_add(devcg, ex);
566 if (rc)
Jann Horn0fcc4c82019-03-19 02:36:59 +0100567 return rc;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500568 } else {
569 /*
570 * in the other possible cases:
571 * root's behavior: allow, devcg's: deny
572 * root's behavior: deny, devcg's: deny
573 * the exception will be removed
574 */
575 dev_exception_rm(devcg, ex);
576 }
577 revalidate_active_exceptions(devcg);
578
Tejun Heod591fb52013-05-24 10:55:38 +0900579 rcu_read_lock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500580 }
Tejun Heod591fb52013-05-24 10:55:38 +0900581
582 rcu_read_unlock();
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500583 return rc;
584}
585
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700586/*
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700587 * Modify the exception list using allow/deny rules.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700588 * CAP_SYS_ADMIN is needed for this. It's at least separate from CAP_MKNOD
589 * so we can give a container CAP_MKNOD to let it create devices but not
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700590 * modify the exception list.
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700591 * It seems likely we'll want to add a CAP_CONTAINER capability to allow
592 * us to also grant CAP_SYS_ADMIN to containers without giving away the
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700593 * device exception list controls, but for now we'll stick with CAP_SYS_ADMIN
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700594 *
595 * Taking rules away is always allowed (given CAP_SYS_ADMIN). Granting
596 * new access is only allowed if you're in the top-level cgroup, or your
597 * parent cgroup has the access you're asking for.
598 */
Paul Menagef92523e2008-07-25 01:47:03 -0700599static int devcgroup_update_access(struct dev_cgroup *devcgroup,
Tejun Heo4d3bb512014-03-19 10:23:54 -0400600 int filetype, char *buffer)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700601{
Paul Menagef92523e2008-07-25 01:47:03 -0700602 const char *b;
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700603 char temp[12]; /* 11 + 1 characters needed for a u32 */
Aristeu Rozanskic39a2a32013-02-15 11:55:45 -0500604 int count, rc = 0;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700605 struct dev_exception_item ex;
Tejun Heo5c9d5352014-05-16 13:22:48 -0400606 struct dev_cgroup *parent = css_to_devcgroup(devcgroup->css.parent);
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700607
608 if (!capable(CAP_SYS_ADMIN))
609 return -EPERM;
610
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700611 memset(&ex, 0, sizeof(ex));
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700612 b = buffer;
613
614 switch (*b) {
615 case 'a':
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700616 switch (filetype) {
617 case DEVCG_ALLOW:
Tejun Heo7a3bb242014-05-16 13:22:52 -0400618 if (css_has_online_children(&devcgroup->css))
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500619 return -EINVAL;
620
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700621 if (!may_allow_all(parent))
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700622 return -EPERM;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700623 dev_exception_clean(devcgroup);
Aristeu Rozanski64e10472012-11-06 07:25:04 -0800624 devcgroup->behavior = DEVCG_DEFAULT_ALLOW;
625 if (!parent)
626 break;
627
Aristeu Rozanski4cef7292012-10-25 13:37:45 -0700628 rc = dev_exceptions_copy(&devcgroup->exceptions,
629 &parent->exceptions);
630 if (rc)
631 return rc;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700632 break;
633 case DEVCG_DENY:
Tejun Heo7a3bb242014-05-16 13:22:52 -0400634 if (css_has_online_children(&devcgroup->css))
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500635 return -EINVAL;
636
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700637 dev_exception_clean(devcgroup);
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700638 devcgroup->behavior = DEVCG_DEFAULT_DENY;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700639 break;
640 default:
641 return -EINVAL;
642 }
643 return 0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700644 case 'b':
Roman Gushchin67e306f2017-11-05 08:15:30 -0500645 ex.type = DEVCG_DEV_BLOCK;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700646 break;
647 case 'c':
Roman Gushchin67e306f2017-11-05 08:15:30 -0500648 ex.type = DEVCG_DEV_CHAR;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700649 break;
650 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700651 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700652 }
653 b++;
Paul Menagef92523e2008-07-25 01:47:03 -0700654 if (!isspace(*b))
655 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700656 b++;
657 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700658 ex.major = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700659 b++;
660 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700661 memset(temp, 0, sizeof(temp));
662 for (count = 0; count < sizeof(temp) - 1; count++) {
663 temp[count] = *b;
664 b++;
665 if (!isdigit(*b))
666 break;
667 }
668 rc = kstrtou32(temp, 10, &ex.major);
669 if (rc)
670 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700671 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700672 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700673 }
Paul Menagef92523e2008-07-25 01:47:03 -0700674 if (*b != ':')
675 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700676 b++;
677
678 /* read minor */
679 if (*b == '*') {
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700680 ex.minor = ~0;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700681 b++;
682 } else if (isdigit(*b)) {
Aristeu Rozanski26fd8402012-10-25 13:37:41 -0700683 memset(temp, 0, sizeof(temp));
684 for (count = 0; count < sizeof(temp) - 1; count++) {
685 temp[count] = *b;
686 b++;
687 if (!isdigit(*b))
688 break;
689 }
690 rc = kstrtou32(temp, 10, &ex.minor);
691 if (rc)
692 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700693 } else {
Paul Menagef92523e2008-07-25 01:47:03 -0700694 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700695 }
Paul Menagef92523e2008-07-25 01:47:03 -0700696 if (!isspace(*b))
697 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700698 for (b++, count = 0; count < 3; count++, b++) {
699 switch (*b) {
700 case 'r':
Roman Gushchin67e306f2017-11-05 08:15:30 -0500701 ex.access |= DEVCG_ACC_READ;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700702 break;
703 case 'w':
Roman Gushchin67e306f2017-11-05 08:15:30 -0500704 ex.access |= DEVCG_ACC_WRITE;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700705 break;
706 case 'm':
Roman Gushchin67e306f2017-11-05 08:15:30 -0500707 ex.access |= DEVCG_ACC_MKNOD;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700708 break;
709 case '\n':
710 case '\0':
711 count = 3;
712 break;
713 default:
Paul Menagef92523e2008-07-25 01:47:03 -0700714 return -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700715 }
716 }
717
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700718 switch (filetype) {
719 case DEVCG_ALLOW:
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700720 /*
721 * If the default policy is to allow by default, try to remove
722 * an matching exception instead. And be silent about it: we
723 * don't want to break compatibility
724 */
Aristeu Rozanski5b7aa7d2012-10-25 13:37:38 -0700725 if (devcgroup->behavior == DEVCG_DEFAULT_ALLOW) {
Aristeu Rozanskid2c2b112014-05-05 11:18:59 -0400726 /* Check if the parent allows removing it first */
727 if (!parent_allows_removal(devcgroup, &ex))
728 return -EPERM;
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700729 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskid2c2b112014-05-05 11:18:59 -0400730 break;
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700731 }
Aristeu Rozanskid2c2b112014-05-05 11:18:59 -0400732
733 if (!parent_has_perm(devcgroup, &ex))
734 return -EPERM;
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500735 rc = dev_exception_add(devcgroup, &ex);
736 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700737 case DEVCG_DENY:
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700738 /*
739 * If the default policy is to deny by default, try to remove
740 * an matching exception instead. And be silent about it: we
741 * don't want to break compatibility
742 */
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500743 if (devcgroup->behavior == DEVCG_DEFAULT_DENY)
Aristeu Rozanskidb9aeca2012-10-04 17:15:20 -0700744 dev_exception_rm(devcgroup, &ex);
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500745 else
746 rc = dev_exception_add(devcgroup, &ex);
747
748 if (rc)
749 break;
750 /* we only propagate new restrictions */
751 rc = propagate_exception(devcgroup, &ex);
752 break;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700753 default:
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500754 rc = -EINVAL;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700755 }
Aristeu Rozanskibd2953e2013-02-15 11:55:47 -0500756 return rc;
Paul Menagef92523e2008-07-25 01:47:03 -0700757}
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700758
Tejun Heo451af502014-05-13 12:16:21 -0400759static ssize_t devcgroup_access_write(struct kernfs_open_file *of,
760 char *buf, size_t nbytes, loff_t off)
Paul Menagef92523e2008-07-25 01:47:03 -0700761{
762 int retval;
Li Zefanb4046f02009-04-02 16:57:32 -0700763
764 mutex_lock(&devcgroup_mutex);
Tejun Heo451af502014-05-13 12:16:21 -0400765 retval = devcgroup_update_access(css_to_devcgroup(of_css(of)),
766 of_cft(of)->private, strstrip(buf));
Li Zefanb4046f02009-04-02 16:57:32 -0700767 mutex_unlock(&devcgroup_mutex);
Tejun Heo451af502014-05-13 12:16:21 -0400768 return retval ?: nbytes;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700769}
770
771static struct cftype dev_cgroup_files[] = {
772 {
773 .name = "allow",
Tejun Heo451af502014-05-13 12:16:21 -0400774 .write = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700775 .private = DEVCG_ALLOW,
776 },
777 {
778 .name = "deny",
Tejun Heo451af502014-05-13 12:16:21 -0400779 .write = devcgroup_access_write,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700780 .private = DEVCG_DENY,
781 },
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700782 {
783 .name = "list",
Tejun Heo2da8ca82013-12-05 12:28:04 -0500784 .seq_show = devcgroup_seq_show,
Serge E. Hallyn29486df2008-04-29 01:00:14 -0700785 .private = DEVCG_LIST,
786 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700787 { } /* terminate */
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700788};
789
Tejun Heo073219e2014-02-08 10:36:58 -0500790struct cgroup_subsys devices_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -0800791 .css_alloc = devcgroup_css_alloc,
792 .css_free = devcgroup_css_free,
Aristeu Rozanski1909554c2013-02-15 11:55:46 -0500793 .css_online = devcgroup_online,
794 .css_offline = devcgroup_offline,
Tejun Heo55779642014-07-15 11:05:09 -0400795 .legacy_cftypes = dev_cgroup_files,
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700796};
797
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700798/**
Odin Ugedaleec8fd02020-04-03 19:55:28 +0200799 * devcgroup_legacy_check_permission - checks if an inode operation is permitted
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700800 * @dev_cgroup: the dev cgroup to be tested against
801 * @type: device type
802 * @major: device major number
803 * @minor: device minor number
Roman Gushchin67e306f2017-11-05 08:15:30 -0500804 * @access: combination of DEVCG_ACC_WRITE, DEVCG_ACC_READ and DEVCG_ACC_MKNOD
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700805 *
806 * returns 0 on success, -EPERM case the operation is not permitted
807 */
Odin Ugedaleec8fd02020-04-03 19:55:28 +0200808static int devcgroup_legacy_check_permission(short type, u32 major, u32 minor,
Harish Kasiviswanathan4b7d4d42019-05-16 11:37:16 -0400809 short access)
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700810{
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700811 struct dev_cgroup *dev_cgroup;
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400812 bool rc;
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700813
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700814 rcu_read_lock();
Jiri Slaby8c9506d2012-10-25 13:37:34 -0700815 dev_cgroup = task_devcgroup(current);
Aristeu Rozanski79d71972014-04-21 12:13:03 -0400816 if (dev_cgroup->behavior == DEVCG_DEFAULT_ALLOW)
817 /* Can't match any of the exceptions, even partially */
818 rc = !match_exception_partial(&dev_cgroup->exceptions,
819 type, major, minor, access);
820 else
821 /* Need to match completely one exception to be allowed */
822 rc = match_exception(&dev_cgroup->exceptions, type, major,
823 minor, access);
Pavel Emelyanov4efd1a12008-07-25 01:47:07 -0700824 rcu_read_unlock();
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700825
Aristeu Rozanskiad676072012-10-04 17:15:17 -0700826 if (!rc)
827 return -EPERM;
828
829 return 0;
830}
Harish Kasiviswanathan4b7d4d42019-05-16 11:37:16 -0400831
Odin Ugedaleec8fd02020-04-03 19:55:28 +0200832#endif /* CONFIG_CGROUP_DEVICE */
833
834#if defined(CONFIG_CGROUP_DEVICE) || defined(CONFIG_CGROUP_BPF)
835
Harish Kasiviswanathan4b7d4d42019-05-16 11:37:16 -0400836int devcgroup_check_permission(short type, u32 major, u32 minor, short access)
837{
838 int rc = BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type, major, minor, access);
839
840 if (rc)
841 return -EPERM;
842
Odin Ugedaleec8fd02020-04-03 19:55:28 +0200843 #ifdef CONFIG_CGROUP_DEVICE
844 return devcgroup_legacy_check_permission(type, major, minor, access);
845
846 #else /* CONFIG_CGROUP_DEVICE */
847 return 0;
848
849 #endif /* CONFIG_CGROUP_DEVICE */
Harish Kasiviswanathan4b7d4d42019-05-16 11:37:16 -0400850}
851EXPORT_SYMBOL(devcgroup_check_permission);
Odin Ugedaleec8fd02020-04-03 19:55:28 +0200852#endif /* defined(CONFIG_CGROUP_DEVICE) || defined(CONFIG_CGROUP_BPF) */