act_mirred.c 8.1 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * net/sched/act_mirred.c	packet mirroring and redirect actions
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 *		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:	Jamal Hadi Salim (2002-4)
 *
 * TODO: Add ingress support (and socket redirect support)
 *
 */

#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/skbuff.h>
#include <linux/rtnetlink.h>
#include <linux/module.h>
#include <linux/init.h>
23
#include <linux/gfp.h>
24
#include <net/net_namespace.h>
25
#include <net/netlink.h>
L
Linus Torvalds 已提交
26 27 28 29 30 31
#include <net/pkt_sched.h>
#include <linux/tc_act/tc_mirred.h>
#include <net/tc_act/tc_mirred.h>

#include <linux/if_arp.h>

32
#define MIRRED_TAB_MASK     7
33
static LIST_HEAD(mirred_list);
34
static DEFINE_SPINLOCK(mirred_list_lock);
L
Linus Torvalds 已提交
35

W
WANG Cong 已提交
36
static void tcf_mirred_release(struct tc_action *a, int bind)
L
Linus Torvalds 已提交
37
{
38
	struct tcf_mirred *m = to_mirred(a);
39
	struct net_device *dev;
40

41 42
	/* We could be called either in a RCU callback or with RTNL lock held. */
	spin_lock_bh(&mirred_list_lock);
W
WANG Cong 已提交
43
	list_del(&m->tcfm_list);
44
	dev = rcu_dereference_protected(m->tcfm_dev, 1);
45 46
	if (dev)
		dev_put(dev);
47
	spin_unlock_bh(&mirred_list_lock);
L
Linus Torvalds 已提交
48 49
}

50 51 52 53
static const struct nla_policy mirred_policy[TCA_MIRRED_MAX + 1] = {
	[TCA_MIRRED_PARMS]	= { .len = sizeof(struct tc_mirred) },
};

54
static int mirred_net_id;
55
static struct tc_action_ops act_mirred_ops;
56

57
static int tcf_mirred_init(struct net *net, struct nlattr *nla,
58
			   struct nlattr *est, struct tc_action **a, int ovr,
59
			   int bind)
L
Linus Torvalds 已提交
60
{
61
	struct tc_action_net *tn = net_generic(net, mirred_net_id);
62
	struct nlattr *tb[TCA_MIRRED_MAX + 1];
L
Linus Torvalds 已提交
63
	struct tc_mirred *parm;
64
	struct tcf_mirred *m;
C
Changli Gao 已提交
65
	struct net_device *dev;
66 67
	int ret, ok_push = 0;
	bool exists = false;
L
Linus Torvalds 已提交
68

69
	if (nla == NULL)
L
Linus Torvalds 已提交
70
		return -EINVAL;
C
Changli Gao 已提交
71 72 73
	ret = nla_parse_nested(tb, TCA_MIRRED_MAX, nla, mirred_policy);
	if (ret < 0)
		return ret;
74
	if (tb[TCA_MIRRED_PARMS] == NULL)
L
Linus Torvalds 已提交
75
		return -EINVAL;
76
	parm = nla_data(tb[TCA_MIRRED_PARMS]);
77 78 79 80 81

	exists = tcf_hash_check(tn, parm->index, a, bind);
	if (exists && bind)
		return 0;

C
Changli Gao 已提交
82 83 84 85 86
	switch (parm->eaction) {
	case TCA_EGRESS_MIRROR:
	case TCA_EGRESS_REDIR:
		break;
	default:
87
		if (exists)
88
			tcf_hash_release(*a, bind);
C
Changli Gao 已提交
89 90
		return -EINVAL;
	}
L
Linus Torvalds 已提交
91
	if (parm->ifindex) {
92
		dev = __dev_get_by_index(net, parm->ifindex);
93 94
		if (dev == NULL) {
			if (exists)
95
				tcf_hash_release(*a, bind);
L
Linus Torvalds 已提交
96
			return -ENODEV;
97
		}
L
Linus Torvalds 已提交
98
		switch (dev->type) {
C
Changli Gao 已提交
99 100 101 102 103 104 105 106 107 108 109
		case ARPHRD_TUNNEL:
		case ARPHRD_TUNNEL6:
		case ARPHRD_SIT:
		case ARPHRD_IPGRE:
		case ARPHRD_VOID:
		case ARPHRD_NONE:
			ok_push = 0;
			break;
		default:
			ok_push = 1;
			break;
L
Linus Torvalds 已提交
110
		}
C
Changli Gao 已提交
111 112
	} else {
		dev = NULL;
L
Linus Torvalds 已提交
113 114
	}

115
	if (!exists) {
C
Changli Gao 已提交
116
		if (dev == NULL)
L
Linus Torvalds 已提交
117
			return -EINVAL;
118
		ret = tcf_hash_create(tn, parm->index, est, a,
119
				      &act_mirred_ops, bind, true);
120 121
		if (ret)
			return ret;
L
Linus Torvalds 已提交
122 123
		ret = ACT_P_CREATED;
	} else {
124
		tcf_hash_release(*a, bind);
W
WANG Cong 已提交
125
		if (!ovr)
L
Linus Torvalds 已提交
126 127
			return -EEXIST;
	}
128
	m = to_mirred(*a);
L
Linus Torvalds 已提交
129

130
	ASSERT_RTNL();
131 132
	m->tcf_action = parm->action;
	m->tcfm_eaction = parm->eaction;
C
Changli Gao 已提交
133
	if (dev != NULL) {
134
		m->tcfm_ifindex = parm->ifindex;
L
Linus Torvalds 已提交
135
		if (ret != ACT_P_CREATED)
136
			dev_put(rcu_dereference_protected(m->tcfm_dev, 1));
L
Linus Torvalds 已提交
137
		dev_hold(dev);
138
		rcu_assign_pointer(m->tcfm_dev, dev);
139
		m->tcfm_ok_push = ok_push;
L
Linus Torvalds 已提交
140
	}
141

142
	if (ret == ACT_P_CREATED) {
143
		spin_lock_bh(&mirred_list_lock);
144
		list_add(&m->tcfm_list, &mirred_list);
145
		spin_unlock_bh(&mirred_list_lock);
146
		tcf_hash_insert(tn, *a);
147
	}
L
Linus Torvalds 已提交
148 149 150 151

	return ret;
}

152
static int tcf_mirred(struct sk_buff *skb, const struct tc_action *a,
153
		      struct tcf_result *res)
L
Linus Torvalds 已提交
154
{
155
	struct tcf_mirred *m = to_mirred(a);
L
Linus Torvalds 已提交
156
	struct net_device *dev;
C
Changli Gao 已提交
157
	struct sk_buff *skb2;
158
	int retval, err;
C
Changli Gao 已提交
159
	u32 at;
L
Linus Torvalds 已提交
160

161 162
	tcf_lastuse_update(&m->tcf_tm);
	bstats_cpu_update(this_cpu_ptr(m->common.cpu_bstats), skb);
L
Linus Torvalds 已提交
163

164 165 166 167 168
	rcu_read_lock();
	retval = READ_ONCE(m->tcf_action);
	dev = rcu_dereference(m->tcfm_dev);
	if (unlikely(!dev)) {
		pr_notice_once("tc mirred: target device is gone\n");
169 170 171
		goto out;
	}

172
	if (unlikely(!(dev->flags & IFF_UP))) {
173 174
		net_notice_ratelimited("tc mirred to Houston: device %s is down\n",
				       dev->name);
C
Changli Gao 已提交
175
		goto out;
L
Linus Torvalds 已提交
176 177
	}

178
	at = G_TC_AT(skb->tc_verd);
179
	skb2 = skb_clone(skb, GFP_ATOMIC);
180
	if (!skb2)
C
Changli Gao 已提交
181
		goto out;
L
Linus Torvalds 已提交
182

C
Changli Gao 已提交
183
	if (!(at & AT_EGRESS)) {
184
		if (m->tcfm_ok_push)
185
			skb_push_rcsum(skb2, skb->mac_len);
C
Changli Gao 已提交
186
	}
L
Linus Torvalds 已提交
187 188

	/* mirror is always swallowed */
189
	if (m->tcfm_eaction != TCA_EGRESS_MIRROR)
L
Linus Torvalds 已提交
190 191
		skb2->tc_verd = SET_TC_FROM(skb2->tc_verd, at);

192
	skb2->skb_iif = skb->dev->ifindex;
193
	skb2->dev = dev;
194
	err = dev_queue_xmit(skb2);
C
Changli Gao 已提交
195 196

	if (err) {
197 198
out:
		qstats_overlimit_inc(this_cpu_ptr(m->common.cpu_qstats));
199 200
		if (m->tcfm_eaction != TCA_EGRESS_MIRROR)
			retval = TC_ACT_SHOT;
201 202
	}
	rcu_read_unlock();
C
Changli Gao 已提交
203 204

	return retval;
L
Linus Torvalds 已提交
205 206
}

207 208 209 210 211 212 213
static void tcf_stats_update(struct tc_action *a, u64 bytes, u32 packets,
			     u64 lastuse)
{
	tcf_lastuse_update(&a->tcfa_tm);
	_bstats_cpu_update(this_cpu_ptr(a->cpu_bstats), bytes, packets);
}

J
Jamal Hadi Salim 已提交
214 215
static int tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a, int bind,
			   int ref)
L
Linus Torvalds 已提交
216
{
217
	unsigned char *b = skb_tail_pointer(skb);
218
	struct tcf_mirred *m = to_mirred(a);
219 220 221 222 223 224 225 226
	struct tc_mirred opt = {
		.index   = m->tcf_index,
		.action  = m->tcf_action,
		.refcnt  = m->tcf_refcnt - ref,
		.bindcnt = m->tcf_bindcnt - bind,
		.eaction = m->tcfm_eaction,
		.ifindex = m->tcfm_ifindex,
	};
L
Linus Torvalds 已提交
227 228
	struct tcf_t t;

229 230
	if (nla_put(skb, TCA_MIRRED_PARMS, sizeof(opt), &opt))
		goto nla_put_failure;
231 232

	tcf_tm_dump(&t, &m->tcf_tm);
233
	if (nla_put_64bit(skb, TCA_MIRRED_TM, sizeof(t), &t, TCA_MIRRED_PAD))
234
		goto nla_put_failure;
L
Linus Torvalds 已提交
235 236
	return skb->len;

237
nla_put_failure:
238
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
239 240 241
	return -1;
}

242 243
static int tcf_mirred_walker(struct net *net, struct sk_buff *skb,
			     struct netlink_callback *cb, int type,
244
			     const struct tc_action_ops *ops)
245 246 247
{
	struct tc_action_net *tn = net_generic(net, mirred_net_id);

248
	return tcf_generic_walker(tn, skb, cb, type, ops);
249 250
}

251
static int tcf_mirred_search(struct net *net, struct tc_action **a, u32 index)
252 253 254 255 256 257
{
	struct tc_action_net *tn = net_generic(net, mirred_net_id);

	return tcf_hash_search(tn, a, index);
}

258 259 260
static int mirred_device_event(struct notifier_block *unused,
			       unsigned long event, void *ptr)
{
261
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
262 263
	struct tcf_mirred *m;

264
	ASSERT_RTNL();
265 266
	if (event == NETDEV_UNREGISTER) {
		spin_lock_bh(&mirred_list_lock);
267
		list_for_each_entry(m, &mirred_list, tcfm_list) {
268
			if (rcu_access_pointer(m->tcfm_dev) == dev) {
269
				dev_put(dev);
270 271 272 273
				/* Note : no rcu grace period necessary, as
				 * net_device are already rcu protected.
				 */
				RCU_INIT_POINTER(m->tcfm_dev, NULL);
274 275
			}
		}
276 277
		spin_unlock_bh(&mirred_list_lock);
	}
278 279 280 281 282 283 284 285

	return NOTIFY_DONE;
}

static struct notifier_block mirred_device_notifier = {
	.notifier_call = mirred_device_event,
};

L
Linus Torvalds 已提交
286 287 288 289 290
static struct tc_action_ops act_mirred_ops = {
	.kind		=	"mirred",
	.type		=	TCA_ACT_MIRRED,
	.owner		=	THIS_MODULE,
	.act		=	tcf_mirred,
291
	.stats_update	=	tcf_stats_update,
L
Linus Torvalds 已提交
292
	.dump		=	tcf_mirred_dump,
293
	.cleanup	=	tcf_mirred_release,
L
Linus Torvalds 已提交
294
	.init		=	tcf_mirred_init,
295 296
	.walk		=	tcf_mirred_walker,
	.lookup		=	tcf_mirred_search,
297
	.size		=	sizeof(struct tcf_mirred),
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
};

static __net_init int mirred_init_net(struct net *net)
{
	struct tc_action_net *tn = net_generic(net, mirred_net_id);

	return tc_action_net_init(tn, &act_mirred_ops, MIRRED_TAB_MASK);
}

static void __net_exit mirred_exit_net(struct net *net)
{
	struct tc_action_net *tn = net_generic(net, mirred_net_id);

	tc_action_net_exit(tn);
}

static struct pernet_operations mirred_net_ops = {
	.init = mirred_init_net,
	.exit = mirred_exit_net,
	.id   = &mirred_net_id,
	.size = sizeof(struct tc_action_net),
L
Linus Torvalds 已提交
319 320 321 322 323 324
};

MODULE_AUTHOR("Jamal Hadi Salim(2002)");
MODULE_DESCRIPTION("Device Mirror/redirect actions");
MODULE_LICENSE("GPL");

325
static int __init mirred_init_module(void)
L
Linus Torvalds 已提交
326
{
327 328 329 330
	int err = register_netdevice_notifier(&mirred_device_notifier);
	if (err)
		return err;

331
	pr_info("Mirror/redirect action on\n");
332
	return tcf_register_action(&act_mirred_ops, &mirred_net_ops);
L
Linus Torvalds 已提交
333 334
}

335
static void __exit mirred_cleanup_module(void)
L
Linus Torvalds 已提交
336
{
337
	tcf_unregister_action(&act_mirred_ops, &mirred_net_ops);
338
	unregister_netdevice_notifier(&mirred_device_notifier);
L
Linus Torvalds 已提交
339 340 341 342
}

module_init(mirred_init_module);
module_exit(mirred_cleanup_module);