netprio_cgroup.c 7.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * net/core/netprio_cgroup.c	Priority Control Group
 *
 *		This program is free software; you can redistribute it and/or
 *		modify it under the terms of the GNU General Public License
 *		as published by the Free Software Foundation; either version
 *		2 of the License, or (at your option) any later version.
 *
 * Authors:	Neil Horman <nhorman@tuxdriver.com>
 */

J
Joe Perches 已提交
12 13
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

14 15 16 17 18 19 20 21 22 23 24 25 26 27
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/skbuff.h>
#include <linux/cgroup.h>
#include <linux/rcupdate.h>
#include <linux/atomic.h>
#include <net/rtnetlink.h>
#include <net/pkt_cls.h>
#include <net/sock.h>
#include <net/netprio_cgroup.h>

28 29
#include <linux/fdtable.h>

30
#define PRIOMAP_MIN_SZ		128
31

32 33 34 35 36 37
/*
 * Extend @dev->priomap so that it's large enough to accomodate
 * @target_idx.  @dev->priomap.priomap_len > @target_idx after successful
 * return.  Must be called under rtnl lock.
 */
static int extend_netdev_table(struct net_device *dev, u32 target_idx)
38
{
39 40
	struct netprio_map *old, *new;
	size_t new_sz, new_len;
41

42
	/* is the existing priomap large enough? */
43
	old = rtnl_dereference(dev->priomap);
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
	if (old && old->priomap_len > target_idx)
		return 0;

	/*
	 * Determine the new size.  Let's keep it power-of-two.  We start
	 * from PRIOMAP_MIN_SZ and double it until it's large enough to
	 * accommodate @target_idx.
	 */
	new_sz = PRIOMAP_MIN_SZ;
	while (true) {
		new_len = (new_sz - offsetof(struct netprio_map, priomap)) /
			sizeof(new->priomap[0]);
		if (new_len > target_idx)
			break;
		new_sz *= 2;
		/* overflowed? */
		if (WARN_ON(new_sz < PRIOMAP_MIN_SZ))
			return -ENOSPC;
	}
63

64 65
	/* allocate & copy */
	new = kzalloc(new_sz, GFP_KERNEL);
66
	if (!new)
67
		return -ENOMEM;
68

69 70 71
	if (old)
		memcpy(new->priomap, old->priomap,
		       old->priomap_len * sizeof(old->priomap[0]));
72

73
	new->priomap_len = new_len;
74

75
	/* install the new priomap */
76 77 78
	rcu_assign_pointer(dev->priomap, new);
	if (old)
		kfree_rcu(old, rcu);
79 80 81
	return 0;
}

82 83
/**
 * netprio_prio - return the effective netprio of a cgroup-net_device pair
84
 * @css: css part of the target pair
85 86 87 88
 * @dev: net_device part of the target pair
 *
 * Should be called under RCU read or rtnl lock.
 */
89
static u32 netprio_prio(struct cgroup_subsys_state *css, struct net_device *dev)
90 91
{
	struct netprio_map *map = rcu_dereference_rtnl(dev->priomap);
92
	int id = css->cgroup->id;
93

94 95
	if (map && id < map->priomap_len)
		return map->priomap[id];
96 97 98 99 100
	return 0;
}

/**
 * netprio_set_prio - set netprio on a cgroup-net_device pair
101
 * @css: css part of the target pair
102 103 104
 * @dev: net_device part of the target pair
 * @prio: prio to set
 *
105
 * Set netprio to @prio on @css-@dev pair.  Should be called under rtnl
106 107
 * lock and may fail under memory pressure for non-zero @prio.
 */
108 109
static int netprio_set_prio(struct cgroup_subsys_state *css,
			    struct net_device *dev, u32 prio)
110 111
{
	struct netprio_map *map;
112
	int id = css->cgroup->id;
113 114 115 116
	int ret;

	/* avoid extending priomap for zero writes */
	map = rtnl_dereference(dev->priomap);
117
	if (!prio && (!map || map->priomap_len <= id))
118 119
		return 0;

120
	ret = extend_netdev_table(dev, id);
121 122 123 124
	if (ret)
		return ret;

	map = rtnl_dereference(dev->priomap);
125
	map->priomap[id] = prio;
126 127 128
	return 0;
}

129
static struct cgroup_subsys_state *cgrp_css_alloc(struct cgroup *cgrp)
130
{
131
	struct cgroup_subsys_state *css;
132

133 134
	css = kzalloc(sizeof(*css), GFP_KERNEL);
	if (!css)
135 136
		return ERR_PTR(-ENOMEM);

137
	return css;
138 139
}

140
static int cgrp_css_online(struct cgroup *cgrp)
141
{
142 143
	struct cgroup_subsys_state *css = cgroup_css(cgrp, net_prio_subsys_id);
	struct cgroup_subsys_state *parent_css;
144
	struct net_device *dev;
145 146
	int ret = 0;

147
	if (!cgrp->parent)
148
		return 0;
149
	parent_css = cgroup_css(cgrp->parent, net_prio_subsys_id);
150 151

	rtnl_lock();
152 153 154 155 156
	/*
	 * Inherit prios from the parent.  As all prios are set during
	 * onlining, there is no need to clear them on offline.
	 */
	for_each_netdev(&init_net, dev) {
157
		u32 prio = netprio_prio(parent_css, dev);
158

159
		ret = netprio_set_prio(css, dev, prio);
160 161 162
		if (ret)
			break;
	}
163
	rtnl_unlock();
164 165 166 167 168
	return ret;
}

static void cgrp_css_free(struct cgroup *cgrp)
{
169
	kfree(cgroup_css(cgrp, net_prio_subsys_id));
170 171 172 173
}

static u64 read_prioidx(struct cgroup *cgrp, struct cftype *cft)
{
174
	return cgrp->id;
175 176 177 178 179
}

static int read_priomap(struct cgroup *cont, struct cftype *cft,
			struct cgroup_map_cb *cb)
{
180
	struct cgroup_subsys_state *css = cgroup_css(cont, net_prio_subsys_id);
181 182 183
	struct net_device *dev;

	rcu_read_lock();
184
	for_each_netdev_rcu(&init_net, dev)
185
		cb->fill(cb, dev->name, netprio_prio(css, dev));
186 187 188 189 190 191 192
	rcu_read_unlock();
	return 0;
}

static int write_priomap(struct cgroup *cgrp, struct cftype *cft,
			 const char *buffer)
{
193
	struct cgroup_subsys_state *css = cgroup_css(cgrp, net_prio_subsys_id);
194
	char devname[IFNAMSIZ + 1];
195
	struct net_device *dev;
196 197
	u32 prio;
	int ret;
198

199 200
	if (sscanf(buffer, "%"__stringify(IFNAMSIZ)"s %u", devname, &prio) != 2)
		return -EINVAL;
201 202 203

	dev = dev_get_by_name(&init_net, devname);
	if (!dev)
204
		return -ENODEV;
205

206
	rtnl_lock();
207

208
	ret = netprio_set_prio(css, dev, prio);
209

210
	rtnl_unlock();
211 212 213 214
	dev_put(dev);
	return ret;
}

A
Al Viro 已提交
215 216 217 218 219 220 221 222 223
static int update_netprio(const void *v, struct file *file, unsigned n)
{
	int err;
	struct socket *sock = sock_from_file(file, &err);
	if (sock)
		sock->sk->sk_cgrp_prioidx = (u32)(unsigned long)v;
	return 0;
}

224
static void net_prio_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
225 226
{
	struct task_struct *p;
A
Al Viro 已提交
227
	void *v;
228 229 230

	cgroup_taskset_for_each(p, cgrp, tset) {
		task_lock(p);
A
Al Viro 已提交
231 232
		v = (void *)(unsigned long)task_netprioidx(p);
		iterate_fd(p->files, 0, update_netprio, v);
233 234 235 236
		task_unlock(p);
	}
}

237 238 239 240 241 242 243 244 245 246
static struct cftype ss_files[] = {
	{
		.name = "prioidx",
		.read_u64 = read_prioidx,
	},
	{
		.name = "ifpriomap",
		.read_map = read_priomap,
		.write_string = write_priomap,
	},
247
	{ }	/* terminate */
248 249
};

250 251
struct cgroup_subsys net_prio_subsys = {
	.name		= "net_prio",
252
	.css_alloc	= cgrp_css_alloc,
253
	.css_online	= cgrp_css_online,
254
	.css_free	= cgrp_css_free,
255
	.attach		= net_prio_attach,
256
	.subsys_id	= net_prio_subsys_id,
257
	.base_cftypes	= ss_files,
258
	.module		= THIS_MODULE,
259
};
260 261 262 263

static int netprio_device_event(struct notifier_block *unused,
				unsigned long event, void *ptr)
{
264
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
265 266 267 268 269 270 271 272 273 274
	struct netprio_map *old;

	/*
	 * Note this is called with rtnl_lock held so we have update side
	 * protection on our rcu assignments
	 */

	switch (event) {
	case NETDEV_UNREGISTER:
		old = rtnl_dereference(dev->priomap);
275
		RCU_INIT_POINTER(dev->priomap, NULL);
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
		if (old)
			kfree_rcu(old, rcu);
		break;
	}
	return NOTIFY_DONE;
}

static struct notifier_block netprio_device_notifier = {
	.notifier_call = netprio_device_event
};

static int __init init_cgroup_netprio(void)
{
	int ret;

	ret = cgroup_load_subsys(&net_prio_subsys);
	if (ret)
		goto out;

	register_netdevice_notifier(&netprio_device_notifier);

out:
	return ret;
}

static void __exit exit_cgroup_netprio(void)
{
	struct netprio_map *old;
	struct net_device *dev;

	unregister_netdevice_notifier(&netprio_device_notifier);

	cgroup_unload_subsys(&net_prio_subsys);

	rtnl_lock();
	for_each_netdev(&init_net, dev) {
		old = rtnl_dereference(dev->priomap);
313
		RCU_INIT_POINTER(dev->priomap, NULL);
314 315 316 317 318 319 320 321 322
		if (old)
			kfree_rcu(old, rcu);
	}
	rtnl_unlock();
}

module_init(init_cgroup_netprio);
module_exit(exit_cgroup_netprio);
MODULE_LICENSE("GPL v2");