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 <linux/if_arp.h>
25
#include <net/net_namespace.h>
26
#include <net/netlink.h>
L
Linus Torvalds 已提交
27 28 29 30
#include <net/pkt_sched.h>
#include <linux/tc_act/tc_mirred.h>
#include <net/tc_act/tc_mirred.h>

31
static LIST_HEAD(mirred_list);
32
static DEFINE_SPINLOCK(mirred_list_lock);
L
Linus Torvalds 已提交
33

34 35 36 37 38
static bool tcf_mirred_is_act_redirect(int action)
{
	return action == TCA_EGRESS_REDIR || action == TCA_INGRESS_REDIR;
}

39
static bool tcf_mirred_act_wants_ingress(int action)
40 41 42 43
{
	switch (action) {
	case TCA_EGRESS_REDIR:
	case TCA_EGRESS_MIRROR:
44
		return false;
45 46
	case TCA_INGRESS_REDIR:
	case TCA_INGRESS_MIRROR:
47
		return true;
48 49 50 51 52
	default:
		BUG();
	}
}

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

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

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

71
static unsigned int mirred_net_id;
72
static struct tc_action_ops act_mirred_ops;
73

74
static int tcf_mirred_init(struct net *net, struct nlattr *nla,
75
			   struct nlattr *est, struct tc_action **a, int ovr,
76
			   int bind)
L
Linus Torvalds 已提交
77
{
78
	struct tc_action_net *tn = net_generic(net, mirred_net_id);
79
	struct nlattr *tb[TCA_MIRRED_MAX + 1];
80
	bool mac_header_xmit = false;
L
Linus Torvalds 已提交
81
	struct tc_mirred *parm;
82
	struct tcf_mirred *m;
C
Changli Gao 已提交
83
	struct net_device *dev;
84
	bool exists = false;
85
	int ret;
L
Linus Torvalds 已提交
86

87
	if (nla == NULL)
L
Linus Torvalds 已提交
88
		return -EINVAL;
89
	ret = nla_parse_nested(tb, TCA_MIRRED_MAX, nla, mirred_policy, NULL);
C
Changli Gao 已提交
90 91
	if (ret < 0)
		return ret;
92
	if (tb[TCA_MIRRED_PARMS] == NULL)
L
Linus Torvalds 已提交
93
		return -EINVAL;
94
	parm = nla_data(tb[TCA_MIRRED_PARMS]);
95

96
	exists = tcf_idr_check(tn, parm->index, a, bind);
97 98 99
	if (exists && bind)
		return 0;

C
Changli Gao 已提交
100 101 102
	switch (parm->eaction) {
	case TCA_EGRESS_MIRROR:
	case TCA_EGRESS_REDIR:
103 104
	case TCA_INGRESS_REDIR:
	case TCA_INGRESS_MIRROR:
C
Changli Gao 已提交
105 106
		break;
	default:
107
		if (exists)
108
			tcf_idr_release(*a, bind);
C
Changli Gao 已提交
109 110
		return -EINVAL;
	}
L
Linus Torvalds 已提交
111
	if (parm->ifindex) {
112
		dev = __dev_get_by_index(net, parm->ifindex);
113 114
		if (dev == NULL) {
			if (exists)
115
				tcf_idr_release(*a, bind);
L
Linus Torvalds 已提交
116
			return -ENODEV;
117
		}
118
		mac_header_xmit = dev_is_mac_header_xmit(dev);
C
Changli Gao 已提交
119 120
	} else {
		dev = NULL;
L
Linus Torvalds 已提交
121 122
	}

123
	if (!exists) {
C
Changli Gao 已提交
124
		if (dev == NULL)
L
Linus Torvalds 已提交
125
			return -EINVAL;
126 127
		ret = tcf_idr_create(tn, parm->index, est, a,
				     &act_mirred_ops, bind, true);
128 129
		if (ret)
			return ret;
L
Linus Torvalds 已提交
130 131
		ret = ACT_P_CREATED;
	} else {
132
		tcf_idr_release(*a, bind);
W
WANG Cong 已提交
133
		if (!ovr)
L
Linus Torvalds 已提交
134 135
			return -EEXIST;
	}
136
	m = to_mirred(*a);
L
Linus Torvalds 已提交
137

138
	ASSERT_RTNL();
139 140
	m->tcf_action = parm->action;
	m->tcfm_eaction = parm->eaction;
C
Changli Gao 已提交
141
	if (dev != NULL) {
142
		m->tcfm_ifindex = parm->ifindex;
143
		m->net = net;
L
Linus Torvalds 已提交
144
		if (ret != ACT_P_CREATED)
145
			dev_put(rcu_dereference_protected(m->tcfm_dev, 1));
L
Linus Torvalds 已提交
146
		dev_hold(dev);
147
		rcu_assign_pointer(m->tcfm_dev, dev);
148
		m->tcfm_mac_header_xmit = mac_header_xmit;
L
Linus Torvalds 已提交
149
	}
150

151
	if (ret == ACT_P_CREATED) {
152
		spin_lock_bh(&mirred_list_lock);
153
		list_add(&m->tcfm_list, &mirred_list);
154
		spin_unlock_bh(&mirred_list_lock);
155
		tcf_idr_insert(tn, *a);
156
	}
L
Linus Torvalds 已提交
157 158 159 160

	return ret;
}

161
static int tcf_mirred(struct sk_buff *skb, const struct tc_action *a,
162
		      struct tcf_result *res)
L
Linus Torvalds 已提交
163
{
164
	struct tcf_mirred *m = to_mirred(a);
165
	bool m_mac_header_xmit;
L
Linus Torvalds 已提交
166
	struct net_device *dev;
C
Changli Gao 已提交
167
	struct sk_buff *skb2;
168 169 170
	int retval, err = 0;
	int m_eaction;
	int mac_len;
L
Linus Torvalds 已提交
171

172 173
	tcf_lastuse_update(&m->tcf_tm);
	bstats_cpu_update(this_cpu_ptr(m->common.cpu_bstats), skb);
L
Linus Torvalds 已提交
174

175
	rcu_read_lock();
176 177
	m_mac_header_xmit = READ_ONCE(m->tcfm_mac_header_xmit);
	m_eaction = READ_ONCE(m->tcfm_eaction);
178 179 180 181
	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");
182 183 184
		goto out;
	}

185
	if (unlikely(!(dev->flags & IFF_UP))) {
186 187
		net_notice_ratelimited("tc mirred to Houston: device %s is down\n",
				       dev->name);
C
Changli Gao 已提交
188
		goto out;
L
Linus Torvalds 已提交
189 190
	}

191
	skb2 = skb_clone(skb, GFP_ATOMIC);
192
	if (!skb2)
C
Changli Gao 已提交
193
		goto out;
L
Linus Torvalds 已提交
194

195 196 197 198
	/* If action's target direction differs than filter's direction,
	 * and devices expect a mac header on xmit, then mac push/pull is
	 * needed.
	 */
199
	if (skb_at_tc_ingress(skb) != tcf_mirred_act_wants_ingress(m_eaction) &&
200 201
	    m_mac_header_xmit) {
		if (!skb_at_tc_ingress(skb)) {
202 203 204 205 206
			/* 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 */
207
			skb_push_rcsum(skb2, skb->mac_len);
208
		}
C
Changli Gao 已提交
209
	}
L
Linus Torvalds 已提交
210 211

	/* mirror is always swallowed */
212 213 214 215
	if (tcf_mirred_is_act_redirect(m_eaction)) {
		skb2->tc_redirected = 1;
		skb2->tc_from_ingress = skb2->tc_at_ingress;
	}
L
Linus Torvalds 已提交
216

217
	skb2->skb_iif = skb->dev->ifindex;
218
	skb2->dev = dev;
219
	if (!tcf_mirred_act_wants_ingress(m_eaction))
220 221 222
		err = dev_queue_xmit(skb2);
	else
		err = netif_receive_skb(skb2);
C
Changli Gao 已提交
223 224

	if (err) {
225 226
out:
		qstats_overlimit_inc(this_cpu_ptr(m->common.cpu_qstats));
227
		if (tcf_mirred_is_act_redirect(m_eaction))
228
			retval = TC_ACT_SHOT;
229 230
	}
	rcu_read_unlock();
C
Changli Gao 已提交
231 232

	return retval;
L
Linus Torvalds 已提交
233 234
}

235 236 237
static void tcf_stats_update(struct tc_action *a, u64 bytes, u32 packets,
			     u64 lastuse)
{
238 239 240
	struct tcf_mirred *m = to_mirred(a);
	struct tcf_t *tm = &m->tcf_tm;

241
	_bstats_cpu_update(this_cpu_ptr(a->cpu_bstats), bytes, packets);
242
	tm->lastuse = lastuse;
243 244
}

J
Jamal Hadi Salim 已提交
245 246
static int tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a, int bind,
			   int ref)
L
Linus Torvalds 已提交
247
{
248
	unsigned char *b = skb_tail_pointer(skb);
249
	struct tcf_mirred *m = to_mirred(a);
250 251 252 253 254 255 256 257
	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 已提交
258 259
	struct tcf_t t;

260 261
	if (nla_put(skb, TCA_MIRRED_PARMS, sizeof(opt), &opt))
		goto nla_put_failure;
262 263

	tcf_tm_dump(&t, &m->tcf_tm);
264
	if (nla_put_64bit(skb, TCA_MIRRED_TM, sizeof(t), &t, TCA_MIRRED_PAD))
265
		goto nla_put_failure;
L
Linus Torvalds 已提交
266 267
	return skb->len;

268
nla_put_failure:
269
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
270 271 272
	return -1;
}

273 274
static int tcf_mirred_walker(struct net *net, struct sk_buff *skb,
			     struct netlink_callback *cb, int type,
275
			     const struct tc_action_ops *ops)
276 277 278
{
	struct tc_action_net *tn = net_generic(net, mirred_net_id);

279
	return tcf_generic_walker(tn, skb, cb, type, ops);
280 281
}

282
static int tcf_mirred_search(struct net *net, struct tc_action **a, u32 index)
283 284 285
{
	struct tc_action_net *tn = net_generic(net, mirred_net_id);

286
	return tcf_idr_search(tn, a, index);
287 288
}

289 290 291
static int mirred_device_event(struct notifier_block *unused,
			       unsigned long event, void *ptr)
{
292
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
293 294
	struct tcf_mirred *m;

295
	ASSERT_RTNL();
296 297
	if (event == NETDEV_UNREGISTER) {
		spin_lock_bh(&mirred_list_lock);
298
		list_for_each_entry(m, &mirred_list, tcfm_list) {
299
			if (rcu_access_pointer(m->tcfm_dev) == dev) {
300
				dev_put(dev);
301 302 303 304
				/* Note : no rcu grace period necessary, as
				 * net_device are already rcu protected.
				 */
				RCU_INIT_POINTER(m->tcfm_dev, NULL);
305 306
			}
		}
307 308
		spin_unlock_bh(&mirred_list_lock);
	}
309 310 311 312 313 314 315 316

	return NOTIFY_DONE;
}

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

317
static struct net_device *tcf_mirred_get_dev(const struct tc_action *a)
318
{
319
	struct tcf_mirred *m = to_mirred(a);
320

321
	return __dev_get_by_index(m->net, m->tcfm_ifindex);
322 323
}

L
Linus Torvalds 已提交
324 325 326 327 328
static struct tc_action_ops act_mirred_ops = {
	.kind		=	"mirred",
	.type		=	TCA_ACT_MIRRED,
	.owner		=	THIS_MODULE,
	.act		=	tcf_mirred,
329
	.stats_update	=	tcf_stats_update,
L
Linus Torvalds 已提交
330
	.dump		=	tcf_mirred_dump,
331
	.cleanup	=	tcf_mirred_release,
L
Linus Torvalds 已提交
332
	.init		=	tcf_mirred_init,
333 334
	.walk		=	tcf_mirred_walker,
	.lookup		=	tcf_mirred_search,
335
	.size		=	sizeof(struct tcf_mirred),
336
	.get_dev	=	tcf_mirred_get_dev,
337 338 339 340 341 342
};

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

343
	return tc_action_net_init(tn, &act_mirred_ops);
344 345 346 347 348 349 350 351 352 353 354 355 356 357
}

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 已提交
358 359 360 361 362 363
};

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

364
static int __init mirred_init_module(void)
L
Linus Torvalds 已提交
365
{
366 367 368 369
	int err = register_netdevice_notifier(&mirred_device_notifier);
	if (err)
		return err;

370
	pr_info("Mirror/redirect action on\n");
371
	return tcf_register_action(&act_mirred_ops, &mirred_net_ops);
L
Linus Torvalds 已提交
372 373
}

374
static void __exit mirred_cleanup_module(void)
L
Linus Torvalds 已提交
375
{
376
	tcf_unregister_action(&act_mirred_ops, &mirred_net_ops);
377
	unregister_netdevice_notifier(&mirred_device_notifier);
L
Linus Torvalds 已提交
378 379 380 381
}

module_init(mirred_init_module);
module_exit(mirred_cleanup_module);