blob: 8d095b4c2f6fff2f0c8784d3f132ee81279f6862 [file] [log] [blame]
Neil Horman5bc14212011-11-22 05:10:51 +00001/*
2 * net/core/netprio_cgroup.c Priority Control Group
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Neil Horman <nhorman@tuxdriver.com>
10 */
11
Joe Perchese005d192012-05-16 19:58:40 +000012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Neil Horman5bc14212011-11-22 05:10:51 +000014#include <linux/module.h>
15#include <linux/slab.h>
16#include <linux/types.h>
17#include <linux/string.h>
18#include <linux/errno.h>
19#include <linux/skbuff.h>
20#include <linux/cgroup.h>
21#include <linux/rcupdate.h>
22#include <linux/atomic.h>
23#include <net/rtnetlink.h>
24#include <net/pkt_cls.h>
25#include <net/sock.h>
26#include <net/netprio_cgroup.h>
27
John Fastabend406a3c62012-07-20 10:39:25 +000028#include <linux/fdtable.h>
29
Tejun Heo4a6ee252012-11-22 07:32:46 -080030#define PRIOMAP_MIN_SZ 128
Neil Horman5bc14212011-11-22 05:10:51 +000031
Tejun Heo4a6ee252012-11-22 07:32:46 -080032/*
33 * Extend @dev->priomap so that it's large enough to accomodate
34 * @target_idx. @dev->priomap.priomap_len > @target_idx after successful
35 * return. Must be called under rtnl lock.
36 */
37static int extend_netdev_table(struct net_device *dev, u32 target_idx)
Neil Horman5bc14212011-11-22 05:10:51 +000038{
Tejun Heo4a6ee252012-11-22 07:32:46 -080039 struct netprio_map *old, *new;
40 size_t new_sz, new_len;
Neil Horman5bc14212011-11-22 05:10:51 +000041
Tejun Heo4a6ee252012-11-22 07:32:46 -080042 /* is the existing priomap large enough? */
Tejun Heo52bca932012-11-22 07:32:46 -080043 old = rtnl_dereference(dev->priomap);
Tejun Heo4a6ee252012-11-22 07:32:46 -080044 if (old && old->priomap_len > target_idx)
45 return 0;
Neil Horman5bc14212011-11-22 05:10:51 +000046
Tejun Heo4a6ee252012-11-22 07:32:46 -080047 /*
48 * Determine the new size. Let's keep it power-of-two. We start
49 * from PRIOMAP_MIN_SZ and double it until it's large enough to
50 * accommodate @target_idx.
51 */
52 new_sz = PRIOMAP_MIN_SZ;
53 while (true) {
54 new_len = (new_sz - offsetof(struct netprio_map, priomap)) /
55 sizeof(new->priomap[0]);
56 if (new_len > target_idx)
57 break;
58 new_sz *= 2;
59 /* overflowed? */
60 if (WARN_ON(new_sz < PRIOMAP_MIN_SZ))
61 return -ENOSPC;
62 }
63
64 /* allocate & copy */
65 new = kzalloc(new_sz, GFP_KERNEL);
Joe Perches62b59422013-02-04 16:48:16 +000066 if (!new)
Gao fengef209f12012-07-11 21:50:15 +000067 return -ENOMEM;
Neil Horman5bc14212011-11-22 05:10:51 +000068
Tejun Heo52bca932012-11-22 07:32:46 -080069 if (old)
70 memcpy(new->priomap, old->priomap,
71 old->priomap_len * sizeof(old->priomap[0]));
Neil Horman5bc14212011-11-22 05:10:51 +000072
Tejun Heo52bca932012-11-22 07:32:46 -080073 new->priomap_len = new_len;
Neil Horman5bc14212011-11-22 05:10:51 +000074
Tejun Heo4a6ee252012-11-22 07:32:46 -080075 /* install the new priomap */
Tejun Heo52bca932012-11-22 07:32:46 -080076 rcu_assign_pointer(dev->priomap, new);
77 if (old)
78 kfree_rcu(old, rcu);
Gao fengef209f12012-07-11 21:50:15 +000079 return 0;
Neil Horman5bc14212011-11-22 05:10:51 +000080}
81
Tejun Heo666b0eb2012-11-22 07:32:47 -080082/**
83 * netprio_prio - return the effective netprio of a cgroup-net_device pair
Tejun Heo6d37b972013-08-08 20:11:22 -040084 * @css: css part of the target pair
Tejun Heo666b0eb2012-11-22 07:32:47 -080085 * @dev: net_device part of the target pair
86 *
87 * Should be called under RCU read or rtnl lock.
88 */
Tejun Heo6d37b972013-08-08 20:11:22 -040089static u32 netprio_prio(struct cgroup_subsys_state *css, struct net_device *dev)
Tejun Heo666b0eb2012-11-22 07:32:47 -080090{
91 struct netprio_map *map = rcu_dereference_rtnl(dev->priomap);
Tejun Heo6d37b972013-08-08 20:11:22 -040092 int id = css->cgroup->id;
Tejun Heo666b0eb2012-11-22 07:32:47 -080093
Tejun Heo6d37b972013-08-08 20:11:22 -040094 if (map && id < map->priomap_len)
95 return map->priomap[id];
Tejun Heo666b0eb2012-11-22 07:32:47 -080096 return 0;
97}
98
99/**
100 * netprio_set_prio - set netprio on a cgroup-net_device pair
Tejun Heo6d37b972013-08-08 20:11:22 -0400101 * @css: css part of the target pair
Tejun Heo666b0eb2012-11-22 07:32:47 -0800102 * @dev: net_device part of the target pair
103 * @prio: prio to set
104 *
Tejun Heo6d37b972013-08-08 20:11:22 -0400105 * Set netprio to @prio on @css-@dev pair. Should be called under rtnl
Tejun Heo666b0eb2012-11-22 07:32:47 -0800106 * lock and may fail under memory pressure for non-zero @prio.
107 */
Tejun Heo6d37b972013-08-08 20:11:22 -0400108static int netprio_set_prio(struct cgroup_subsys_state *css,
109 struct net_device *dev, u32 prio)
Tejun Heo666b0eb2012-11-22 07:32:47 -0800110{
111 struct netprio_map *map;
Tejun Heo6d37b972013-08-08 20:11:22 -0400112 int id = css->cgroup->id;
Tejun Heo666b0eb2012-11-22 07:32:47 -0800113 int ret;
114
115 /* avoid extending priomap for zero writes */
116 map = rtnl_dereference(dev->priomap);
Tejun Heo6d37b972013-08-08 20:11:22 -0400117 if (!prio && (!map || map->priomap_len <= id))
Tejun Heo666b0eb2012-11-22 07:32:47 -0800118 return 0;
119
Tejun Heo6d37b972013-08-08 20:11:22 -0400120 ret = extend_netdev_table(dev, id);
Tejun Heo666b0eb2012-11-22 07:32:47 -0800121 if (ret)
122 return ret;
123
124 map = rtnl_dereference(dev->priomap);
Tejun Heo6d37b972013-08-08 20:11:22 -0400125 map->priomap[id] = prio;
Tejun Heo666b0eb2012-11-22 07:32:47 -0800126 return 0;
127}
128
Tejun Heoeb954192013-08-08 20:11:23 -0400129static struct cgroup_subsys_state *
130cgrp_css_alloc(struct cgroup_subsys_state *parent_css)
Neil Horman5bc14212011-11-22 05:10:51 +0000131{
Tejun Heo6d37b972013-08-08 20:11:22 -0400132 struct cgroup_subsys_state *css;
Tejun Heo88d642f2012-11-22 07:32:47 -0800133
Tejun Heo6d37b972013-08-08 20:11:22 -0400134 css = kzalloc(sizeof(*css), GFP_KERNEL);
135 if (!css)
Neil Horman5bc14212011-11-22 05:10:51 +0000136 return ERR_PTR(-ENOMEM);
137
Tejun Heo6d37b972013-08-08 20:11:22 -0400138 return css;
Neil Horman5bc14212011-11-22 05:10:51 +0000139}
140
Tejun Heoeb954192013-08-08 20:11:23 -0400141static int cgrp_css_online(struct cgroup_subsys_state *css)
Neil Horman5bc14212011-11-22 05:10:51 +0000142{
Tejun Heoeb954192013-08-08 20:11:23 -0400143 struct cgroup_subsys_state *parent_css = css_parent(css);
Neil Horman5bc14212011-11-22 05:10:51 +0000144 struct net_device *dev;
Tejun Heo811d8d62012-11-22 07:32:47 -0800145 int ret = 0;
146
Tejun Heoeb954192013-08-08 20:11:23 -0400147 if (!parent_css)
Tejun Heo811d8d62012-11-22 07:32:47 -0800148 return 0;
Neil Horman5bc14212011-11-22 05:10:51 +0000149
Neil Horman5bc14212011-11-22 05:10:51 +0000150 rtnl_lock();
Tejun Heo811d8d62012-11-22 07:32:47 -0800151 /*
152 * Inherit prios from the parent. As all prios are set during
153 * onlining, there is no need to clear them on offline.
154 */
155 for_each_netdev(&init_net, dev) {
Tejun Heo6d37b972013-08-08 20:11:22 -0400156 u32 prio = netprio_prio(parent_css, dev);
Tejun Heo811d8d62012-11-22 07:32:47 -0800157
Tejun Heo6d37b972013-08-08 20:11:22 -0400158 ret = netprio_set_prio(css, dev, prio);
Tejun Heo811d8d62012-11-22 07:32:47 -0800159 if (ret)
160 break;
161 }
Neil Horman5bc14212011-11-22 05:10:51 +0000162 rtnl_unlock();
Tejun Heo811d8d62012-11-22 07:32:47 -0800163 return ret;
164}
165
Tejun Heoeb954192013-08-08 20:11:23 -0400166static void cgrp_css_free(struct cgroup_subsys_state *css)
Tejun Heo811d8d62012-11-22 07:32:47 -0800167{
Tejun Heoeb954192013-08-08 20:11:23 -0400168 kfree(css);
Neil Horman5bc14212011-11-22 05:10:51 +0000169}
170
171static u64 read_prioidx(struct cgroup *cgrp, struct cftype *cft)
172{
Tejun Heo88d642f2012-11-22 07:32:47 -0800173 return cgrp->id;
Neil Horman5bc14212011-11-22 05:10:51 +0000174}
175
176static int read_priomap(struct cgroup *cont, struct cftype *cft,
177 struct cgroup_map_cb *cb)
178{
Tejun Heo6d37b972013-08-08 20:11:22 -0400179 struct cgroup_subsys_state *css = cgroup_css(cont, net_prio_subsys_id);
Neil Horman5bc14212011-11-22 05:10:51 +0000180 struct net_device *dev;
Neil Horman5bc14212011-11-22 05:10:51 +0000181
182 rcu_read_lock();
Tejun Heo666b0eb2012-11-22 07:32:47 -0800183 for_each_netdev_rcu(&init_net, dev)
Tejun Heo6d37b972013-08-08 20:11:22 -0400184 cb->fill(cb, dev->name, netprio_prio(css, dev));
Neil Horman5bc14212011-11-22 05:10:51 +0000185 rcu_read_unlock();
186 return 0;
187}
188
189static int write_priomap(struct cgroup *cgrp, struct cftype *cft,
190 const char *buffer)
191{
Tejun Heo6d37b972013-08-08 20:11:22 -0400192 struct cgroup_subsys_state *css = cgroup_css(cgrp, net_prio_subsys_id);
Tejun Heo6d5759d2012-11-22 07:32:46 -0800193 char devname[IFNAMSIZ + 1];
Neil Horman5bc14212011-11-22 05:10:51 +0000194 struct net_device *dev;
Tejun Heo6d5759d2012-11-22 07:32:46 -0800195 u32 prio;
196 int ret;
Neil Horman5bc14212011-11-22 05:10:51 +0000197
Tejun Heo6d5759d2012-11-22 07:32:46 -0800198 if (sscanf(buffer, "%"__stringify(IFNAMSIZ)"s %u", devname, &prio) != 2)
199 return -EINVAL;
Neil Horman5bc14212011-11-22 05:10:51 +0000200
201 dev = dev_get_by_name(&init_net, devname);
202 if (!dev)
Tejun Heo6d5759d2012-11-22 07:32:46 -0800203 return -ENODEV;
Neil Horman5bc14212011-11-22 05:10:51 +0000204
John Fastabend476ad152012-08-14 12:34:35 +0000205 rtnl_lock();
Tejun Heo6d5759d2012-11-22 07:32:46 -0800206
Tejun Heo6d37b972013-08-08 20:11:22 -0400207 ret = netprio_set_prio(css, dev, prio);
Gao fengef209f12012-07-11 21:50:15 +0000208
John Fastabend476ad152012-08-14 12:34:35 +0000209 rtnl_unlock();
Neil Horman5bc14212011-11-22 05:10:51 +0000210 dev_put(dev);
Neil Horman5bc14212011-11-22 05:10:51 +0000211 return ret;
212}
213
Al Viroc3c073f2012-08-21 22:32:06 -0400214static int update_netprio(const void *v, struct file *file, unsigned n)
215{
216 int err;
217 struct socket *sock = sock_from_file(file, &err);
218 if (sock)
219 sock->sk->sk_cgrp_prioidx = (u32)(unsigned long)v;
220 return 0;
221}
222
Tejun Heoeb954192013-08-08 20:11:23 -0400223static void net_prio_attach(struct cgroup_subsys_state *css,
224 struct cgroup_taskset *tset)
John Fastabend406a3c62012-07-20 10:39:25 +0000225{
226 struct task_struct *p;
Al Viroc3c073f2012-08-21 22:32:06 -0400227 void *v;
John Fastabend406a3c62012-07-20 10:39:25 +0000228
Tejun Heoeb954192013-08-08 20:11:23 -0400229 cgroup_taskset_for_each(p, css->cgroup, tset) {
John Fastabend406a3c62012-07-20 10:39:25 +0000230 task_lock(p);
Al Viroc3c073f2012-08-21 22:32:06 -0400231 v = (void *)(unsigned long)task_netprioidx(p);
232 iterate_fd(p->files, 0, update_netprio, v);
John Fastabend406a3c62012-07-20 10:39:25 +0000233 task_unlock(p);
234 }
John Fastabend406a3c62012-07-20 10:39:25 +0000235}
236
Neil Horman5bc14212011-11-22 05:10:51 +0000237static struct cftype ss_files[] = {
238 {
239 .name = "prioidx",
240 .read_u64 = read_prioidx,
241 },
242 {
243 .name = "ifpriomap",
244 .read_map = read_priomap,
245 .write_string = write_priomap,
246 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700247 { } /* terminate */
Neil Horman5bc14212011-11-22 05:10:51 +0000248};
249
Tejun Heo676f7c82012-04-01 12:09:55 -0700250struct cgroup_subsys net_prio_subsys = {
251 .name = "net_prio",
Tejun Heo92fb9742012-11-19 08:13:38 -0800252 .css_alloc = cgrp_css_alloc,
Tejun Heo811d8d62012-11-22 07:32:47 -0800253 .css_online = cgrp_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -0800254 .css_free = cgrp_css_free,
John Fastabend406a3c62012-07-20 10:39:25 +0000255 .attach = net_prio_attach,
Tejun Heo676f7c82012-04-01 12:09:55 -0700256 .subsys_id = net_prio_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -0700257 .base_cftypes = ss_files,
Tejun Heo8c7f6ed2012-09-13 12:20:58 -0700258 .module = THIS_MODULE,
Tejun Heo676f7c82012-04-01 12:09:55 -0700259};
Neil Horman5bc14212011-11-22 05:10:51 +0000260
261static int netprio_device_event(struct notifier_block *unused,
262 unsigned long event, void *ptr)
263{
Jiri Pirko351638e2013-05-28 01:30:21 +0000264 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Neil Horman5bc14212011-11-22 05:10:51 +0000265 struct netprio_map *old;
Neil Horman5bc14212011-11-22 05:10:51 +0000266
267 /*
268 * Note this is called with rtnl_lock held so we have update side
269 * protection on our rcu assignments
270 */
271
272 switch (event) {
Neil Horman5bc14212011-11-22 05:10:51 +0000273 case NETDEV_UNREGISTER:
274 old = rtnl_dereference(dev->priomap);
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000275 RCU_INIT_POINTER(dev->priomap, NULL);
Neil Horman5bc14212011-11-22 05:10:51 +0000276 if (old)
277 kfree_rcu(old, rcu);
278 break;
279 }
280 return NOTIFY_DONE;
281}
282
283static struct notifier_block netprio_device_notifier = {
284 .notifier_call = netprio_device_event
285};
286
287static int __init init_cgroup_netprio(void)
288{
289 int ret;
290
291 ret = cgroup_load_subsys(&net_prio_subsys);
292 if (ret)
293 goto out;
Neil Horman5bc14212011-11-22 05:10:51 +0000294
295 register_netdevice_notifier(&netprio_device_notifier);
296
297out:
298 return ret;
299}
300
301static void __exit exit_cgroup_netprio(void)
302{
303 struct netprio_map *old;
304 struct net_device *dev;
305
306 unregister_netdevice_notifier(&netprio_device_notifier);
307
308 cgroup_unload_subsys(&net_prio_subsys);
309
Neil Horman5bc14212011-11-22 05:10:51 +0000310 rtnl_lock();
311 for_each_netdev(&init_net, dev) {
312 old = rtnl_dereference(dev->priomap);
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000313 RCU_INIT_POINTER(dev->priomap, NULL);
Neil Horman5bc14212011-11-22 05:10:51 +0000314 if (old)
315 kfree_rcu(old, rcu);
316 }
317 rtnl_unlock();
318}
319
320module_init(init_cgroup_netprio);
321module_exit(exit_cgroup_netprio);
322MODULE_LICENSE("GPL v2");