netprio_cgroup.c 7.1 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

static inline struct cgroup_netprio_state *cgrp_netprio_state(struct cgroup *cgrp)
{
	return container_of(cgroup_subsys_state(cgrp, net_prio_subsys_id),
			    struct cgroup_netprio_state, css);
}

38 39 40 41 42 43
/*
 * 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)
44
{
45 46
	struct netprio_map *old, *new;
	size_t new_sz, new_len;
47

48
	/* is the existing priomap large enough? */
49
	old = rtnl_dereference(dev->priomap);
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
	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;
	}
69

70 71
	/* allocate & copy */
	new = kzalloc(new_sz, GFP_KERNEL);
72
	if (!new)
73
		return -ENOMEM;
74

75 76 77
	if (old)
		memcpy(new->priomap, old->priomap,
		       old->priomap_len * sizeof(old->priomap[0]));
78

79
	new->priomap_len = new_len;
80

81
	/* install the new priomap */
82 83 84
	rcu_assign_pointer(dev->priomap, new);
	if (old)
		kfree_rcu(old, rcu);
85 86 87
	return 0;
}

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
/**
 * netprio_prio - return the effective netprio of a cgroup-net_device pair
 * @cgrp: cgroup part of the target pair
 * @dev: net_device part of the target pair
 *
 * Should be called under RCU read or rtnl lock.
 */
static u32 netprio_prio(struct cgroup *cgrp, struct net_device *dev)
{
	struct netprio_map *map = rcu_dereference_rtnl(dev->priomap);

	if (map && cgrp->id < map->priomap_len)
		return map->priomap[cgrp->id];
	return 0;
}

/**
 * netprio_set_prio - set netprio on a cgroup-net_device pair
 * @cgrp: cgroup part of the target pair
 * @dev: net_device part of the target pair
 * @prio: prio to set
 *
 * Set netprio to @prio on @cgrp-@dev pair.  Should be called under rtnl
 * lock and may fail under memory pressure for non-zero @prio.
 */
static int netprio_set_prio(struct cgroup *cgrp, struct net_device *dev,
			    u32 prio)
{
	struct netprio_map *map;
	int ret;

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

	ret = extend_netdev_table(dev, cgrp->id);
	if (ret)
		return ret;

	map = rtnl_dereference(dev->priomap);
	map->priomap[cgrp->id] = prio;
	return 0;
}

133
static struct cgroup_subsys_state *cgrp_css_alloc(struct cgroup *cgrp)
134 135
{
	struct cgroup_netprio_state *cs;
136

137 138 139 140 141 142 143
	cs = kzalloc(sizeof(*cs), GFP_KERNEL);
	if (!cs)
		return ERR_PTR(-ENOMEM);

	return &cs->css;
}

144
static int cgrp_css_online(struct cgroup *cgrp)
145
{
146
	struct cgroup *parent = cgrp->parent;
147
	struct net_device *dev;
148 149 150 151
	int ret = 0;

	if (!parent)
		return 0;
152 153

	rtnl_lock();
154 155 156 157 158 159 160 161 162 163 164
	/*
	 * 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) {
		u32 prio = netprio_prio(parent, dev);

		ret = netprio_set_prio(cgrp, dev, prio);
		if (ret)
			break;
	}
165
	rtnl_unlock();
166 167 168 169 170 171
	return ret;
}

static void cgrp_css_free(struct cgroup *cgrp)
{
	kfree(cgrp_netprio_state(cgrp));
172 173 174 175
}

static u64 read_prioidx(struct cgroup *cgrp, struct cftype *cft)
{
176
	return cgrp->id;
177 178 179 180 181 182 183 184
}

static int read_priomap(struct cgroup *cont, struct cftype *cft,
			struct cgroup_map_cb *cb)
{
	struct net_device *dev;

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

static int write_priomap(struct cgroup *cgrp, struct cftype *cft,
			 const char *buffer)
{
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(cgrp, 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 264 265 266 267 268 269 270 271 272 273 274

static int netprio_device_event(struct notifier_block *unused,
				unsigned long event, void *ptr)
{
	struct net_device *dev = ptr;
	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");