act_mirred.c 9.3 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

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
static bool tcf_mirred_is_act_redirect(int action)
{
	return action == TCA_EGRESS_REDIR || action == TCA_INGRESS_REDIR;
}

static u32 tcf_mirred_act_direction(int action)
{
	switch (action) {
	case TCA_EGRESS_REDIR:
	case TCA_EGRESS_MIRROR:
		return AT_EGRESS;
	case TCA_INGRESS_REDIR:
	case TCA_INGRESS_MIRROR:
		return AT_INGRESS;
	default:
		BUG();
	}
}

W
WANG Cong 已提交
55
static void tcf_mirred_release(struct tc_action *a, int bind)
L
Linus Torvalds 已提交
56
{
57
	struct tcf_mirred *m = to_mirred(a);
58
	struct net_device *dev;
59

60 61
	/* We could be called either in a RCU callback or with RTNL lock held. */
	spin_lock_bh(&mirred_list_lock);
W
WANG Cong 已提交
62
	list_del(&m->tcfm_list);
63
	dev = rcu_dereference_protected(m->tcfm_dev, 1);
64 65
	if (dev)
		dev_put(dev);
66
	spin_unlock_bh(&mirred_list_lock);
L
Linus Torvalds 已提交
67 68
}

69 70 71 72
static const struct nla_policy mirred_policy[TCA_MIRRED_MAX + 1] = {
	[TCA_MIRRED_PARMS]	= { .len = sizeof(struct tc_mirred) },
};

73
static unsigned int mirred_net_id;
74
static struct tc_action_ops act_mirred_ops;
75

76 77 78 79 80 81 82 83 84 85 86 87 88 89
static bool dev_is_mac_header_xmit(const struct net_device *dev)
{
	switch (dev->type) {
	case ARPHRD_TUNNEL:
	case ARPHRD_TUNNEL6:
	case ARPHRD_SIT:
	case ARPHRD_IPGRE:
	case ARPHRD_VOID:
	case ARPHRD_NONE:
		return false;
	}
	return true;
}

90
static int tcf_mirred_init(struct net *net, struct nlattr *nla,
91
			   struct nlattr *est, struct tc_action **a, int ovr,
92
			   int bind)
L
Linus Torvalds 已提交
93
{
94
	struct tc_action_net *tn = net_generic(net, mirred_net_id);
95
	struct nlattr *tb[TCA_MIRRED_MAX + 1];
96
	bool mac_header_xmit = false;
L
Linus Torvalds 已提交
97
	struct tc_mirred *parm;
98
	struct tcf_mirred *m;
C
Changli Gao 已提交
99
	struct net_device *dev;
100
	bool exists = false;
101
	int ret;
L
Linus Torvalds 已提交
102

103
	if (nla == NULL)
L
Linus Torvalds 已提交
104
		return -EINVAL;
C
Changli Gao 已提交
105 106 107
	ret = nla_parse_nested(tb, TCA_MIRRED_MAX, nla, mirred_policy);
	if (ret < 0)
		return ret;
108
	if (tb[TCA_MIRRED_PARMS] == NULL)
L
Linus Torvalds 已提交
109
		return -EINVAL;
110
	parm = nla_data(tb[TCA_MIRRED_PARMS]);
111 112 113 114 115

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

C
Changli Gao 已提交
116 117 118
	switch (parm->eaction) {
	case TCA_EGRESS_MIRROR:
	case TCA_EGRESS_REDIR:
119 120
	case TCA_INGRESS_REDIR:
	case TCA_INGRESS_MIRROR:
C
Changli Gao 已提交
121 122
		break;
	default:
123
		if (exists)
124
			tcf_hash_release(*a, bind);
C
Changli Gao 已提交
125 126
		return -EINVAL;
	}
L
Linus Torvalds 已提交
127
	if (parm->ifindex) {
128
		dev = __dev_get_by_index(net, parm->ifindex);
129 130
		if (dev == NULL) {
			if (exists)
131
				tcf_hash_release(*a, bind);
L
Linus Torvalds 已提交
132
			return -ENODEV;
133
		}
134
		mac_header_xmit = dev_is_mac_header_xmit(dev);
C
Changli Gao 已提交
135 136
	} else {
		dev = NULL;
L
Linus Torvalds 已提交
137 138
	}

139
	if (!exists) {
C
Changli Gao 已提交
140
		if (dev == NULL)
L
Linus Torvalds 已提交
141
			return -EINVAL;
142
		ret = tcf_hash_create(tn, parm->index, est, a,
143
				      &act_mirred_ops, bind, true);
144 145
		if (ret)
			return ret;
L
Linus Torvalds 已提交
146 147
		ret = ACT_P_CREATED;
	} else {
148
		tcf_hash_release(*a, bind);
W
WANG Cong 已提交
149
		if (!ovr)
L
Linus Torvalds 已提交
150 151
			return -EEXIST;
	}
152
	m = to_mirred(*a);
L
Linus Torvalds 已提交
153

154
	ASSERT_RTNL();
155 156
	m->tcf_action = parm->action;
	m->tcfm_eaction = parm->eaction;
C
Changli Gao 已提交
157
	if (dev != NULL) {
158
		m->tcfm_ifindex = parm->ifindex;
L
Linus Torvalds 已提交
159
		if (ret != ACT_P_CREATED)
160
			dev_put(rcu_dereference_protected(m->tcfm_dev, 1));
L
Linus Torvalds 已提交
161
		dev_hold(dev);
162
		rcu_assign_pointer(m->tcfm_dev, dev);
163
		m->tcfm_mac_header_xmit = mac_header_xmit;
L
Linus Torvalds 已提交
164
	}
165

166
	if (ret == ACT_P_CREATED) {
167
		spin_lock_bh(&mirred_list_lock);
168
		list_add(&m->tcfm_list, &mirred_list);
169
		spin_unlock_bh(&mirred_list_lock);
170
		tcf_hash_insert(tn, *a);
171
	}
L
Linus Torvalds 已提交
172 173 174 175

	return ret;
}

176
static int tcf_mirred(struct sk_buff *skb, const struct tc_action *a,
177
		      struct tcf_result *res)
L
Linus Torvalds 已提交
178
{
179
	struct tcf_mirred *m = to_mirred(a);
180
	bool m_mac_header_xmit;
L
Linus Torvalds 已提交
181
	struct net_device *dev;
C
Changli Gao 已提交
182
	struct sk_buff *skb2;
183 184 185
	int retval, err = 0;
	int m_eaction;
	int mac_len;
C
Changli Gao 已提交
186
	u32 at;
L
Linus Torvalds 已提交
187

188 189
	tcf_lastuse_update(&m->tcf_tm);
	bstats_cpu_update(this_cpu_ptr(m->common.cpu_bstats), skb);
L
Linus Torvalds 已提交
190

191
	rcu_read_lock();
192 193
	m_mac_header_xmit = READ_ONCE(m->tcfm_mac_header_xmit);
	m_eaction = READ_ONCE(m->tcfm_eaction);
194 195 196 197
	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");
198 199 200
		goto out;
	}

201
	if (unlikely(!(dev->flags & IFF_UP))) {
202 203
		net_notice_ratelimited("tc mirred to Houston: device %s is down\n",
				       dev->name);
C
Changli Gao 已提交
204
		goto out;
L
Linus Torvalds 已提交
205 206
	}

207
	at = G_TC_AT(skb->tc_verd);
208
	skb2 = skb_clone(skb, GFP_ATOMIC);
209
	if (!skb2)
C
Changli Gao 已提交
210
		goto out;
L
Linus Torvalds 已提交
211

212 213 214 215 216 217 218 219 220 221 222
	/* If action's target direction differs than filter's direction,
	 * and devices expect a mac header on xmit, then mac push/pull is
	 * needed.
	 */
	if (at != tcf_mirred_act_direction(m_eaction) && m_mac_header_xmit) {
		if (at & AT_EGRESS) {
			/* caught at egress, act ingress: pull mac */
			mac_len = skb_network_header(skb) - skb_mac_header(skb);
			skb_pull_rcsum(skb2, mac_len);
		} else {
			/* caught at ingress, act egress: push mac */
223
			skb_push_rcsum(skb2, skb->mac_len);
224
		}
C
Changli Gao 已提交
225
	}
L
Linus Torvalds 已提交
226 227

	/* mirror is always swallowed */
228
	if (tcf_mirred_is_act_redirect(m_eaction))
L
Linus Torvalds 已提交
229 230
		skb2->tc_verd = SET_TC_FROM(skb2->tc_verd, at);

231
	skb2->skb_iif = skb->dev->ifindex;
232
	skb2->dev = dev;
233 234 235 236
	if (tcf_mirred_act_direction(m_eaction) & AT_EGRESS)
		err = dev_queue_xmit(skb2);
	else
		err = netif_receive_skb(skb2);
C
Changli Gao 已提交
237 238

	if (err) {
239 240
out:
		qstats_overlimit_inc(this_cpu_ptr(m->common.cpu_qstats));
241
		if (tcf_mirred_is_act_redirect(m_eaction))
242
			retval = TC_ACT_SHOT;
243 244
	}
	rcu_read_unlock();
C
Changli Gao 已提交
245 246

	return retval;
L
Linus Torvalds 已提交
247 248
}

249 250 251
static void tcf_stats_update(struct tc_action *a, u64 bytes, u32 packets,
			     u64 lastuse)
{
252 253 254
	struct tcf_mirred *m = to_mirred(a);
	struct tcf_t *tm = &m->tcf_tm;

255
	_bstats_cpu_update(this_cpu_ptr(a->cpu_bstats), bytes, packets);
256
	tm->lastuse = lastuse;
257 258
}

J
Jamal Hadi Salim 已提交
259 260
static int tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a, int bind,
			   int ref)
L
Linus Torvalds 已提交
261
{
262
	unsigned char *b = skb_tail_pointer(skb);
263
	struct tcf_mirred *m = to_mirred(a);
264 265 266 267 268 269 270 271
	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 已提交
272 273
	struct tcf_t t;

274 275
	if (nla_put(skb, TCA_MIRRED_PARMS, sizeof(opt), &opt))
		goto nla_put_failure;
276 277

	tcf_tm_dump(&t, &m->tcf_tm);
278
	if (nla_put_64bit(skb, TCA_MIRRED_TM, sizeof(t), &t, TCA_MIRRED_PAD))
279
		goto nla_put_failure;
L
Linus Torvalds 已提交
280 281
	return skb->len;

282
nla_put_failure:
283
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
284 285 286
	return -1;
}

287 288
static int tcf_mirred_walker(struct net *net, struct sk_buff *skb,
			     struct netlink_callback *cb, int type,
289
			     const struct tc_action_ops *ops)
290 291 292
{
	struct tc_action_net *tn = net_generic(net, mirred_net_id);

293
	return tcf_generic_walker(tn, skb, cb, type, ops);
294 295
}

296
static int tcf_mirred_search(struct net *net, struct tc_action **a, u32 index)
297 298 299 300 301 302
{
	struct tc_action_net *tn = net_generic(net, mirred_net_id);

	return tcf_hash_search(tn, a, index);
}

303 304 305
static int mirred_device_event(struct notifier_block *unused,
			       unsigned long event, void *ptr)
{
306
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
307 308
	struct tcf_mirred *m;

309
	ASSERT_RTNL();
310 311
	if (event == NETDEV_UNREGISTER) {
		spin_lock_bh(&mirred_list_lock);
312
		list_for_each_entry(m, &mirred_list, tcfm_list) {
313
			if (rcu_access_pointer(m->tcfm_dev) == dev) {
314
				dev_put(dev);
315 316 317 318
				/* Note : no rcu grace period necessary, as
				 * net_device are already rcu protected.
				 */
				RCU_INIT_POINTER(m->tcfm_dev, NULL);
319 320
			}
		}
321 322
		spin_unlock_bh(&mirred_list_lock);
	}
323 324 325 326 327 328 329 330

	return NOTIFY_DONE;
}

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

L
Linus Torvalds 已提交
331 332 333 334 335
static struct tc_action_ops act_mirred_ops = {
	.kind		=	"mirred",
	.type		=	TCA_ACT_MIRRED,
	.owner		=	THIS_MODULE,
	.act		=	tcf_mirred,
336
	.stats_update	=	tcf_stats_update,
L
Linus Torvalds 已提交
337
	.dump		=	tcf_mirred_dump,
338
	.cleanup	=	tcf_mirred_release,
L
Linus Torvalds 已提交
339
	.init		=	tcf_mirred_init,
340 341
	.walk		=	tcf_mirred_walker,
	.lookup		=	tcf_mirred_search,
342
	.size		=	sizeof(struct tcf_mirred),
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
};

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 已提交
364 365 366 367 368 369
};

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

370
static int __init mirred_init_module(void)
L
Linus Torvalds 已提交
371
{
372 373 374 375
	int err = register_netdevice_notifier(&mirred_device_notifier);
	if (err)
		return err;

376
	pr_info("Mirror/redirect action on\n");
377
	return tcf_register_action(&act_mirred_ops, &mirred_net_ops);
L
Linus Torvalds 已提交
378 379
}

380
static void __exit mirred_cleanup_module(void)
L
Linus Torvalds 已提交
381
{
382
	tcf_unregister_action(&act_mirred_ops, &mirred_net_ops);
383
	unregister_netdevice_notifier(&mirred_device_notifier);
L
Linus Torvalds 已提交
384 385 386 387
}

module_init(mirred_init_module);
module_exit(mirred_cleanup_module);