act_mirred.c 7.8 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 40
	struct net_device *dev = rcu_dereference_protected(m->tcfm_dev, 1);

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
	spin_unlock_bh(&mirred_list_lock);
45 46
	if (dev)
		dev_put(dev);
L
Linus Torvalds 已提交
47 48
}

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

53 54
static int mirred_net_id;

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

66
	if (nla == NULL)
L
Linus Torvalds 已提交
67
		return -EINVAL;
C
Changli Gao 已提交
68 69 70
	ret = nla_parse_nested(tb, TCA_MIRRED_MAX, nla, mirred_policy);
	if (ret < 0)
		return ret;
71
	if (tb[TCA_MIRRED_PARMS] == NULL)
L
Linus Torvalds 已提交
72
		return -EINVAL;
73
	parm = nla_data(tb[TCA_MIRRED_PARMS]);
C
Changli Gao 已提交
74 75 76 77 78 79 80
	switch (parm->eaction) {
	case TCA_EGRESS_MIRROR:
	case TCA_EGRESS_REDIR:
		break;
	default:
		return -EINVAL;
	}
L
Linus Torvalds 已提交
81
	if (parm->ifindex) {
82
		dev = __dev_get_by_index(net, parm->ifindex);
L
Linus Torvalds 已提交
83 84 85
		if (dev == NULL)
			return -ENODEV;
		switch (dev->type) {
C
Changli Gao 已提交
86 87 88 89 90 91 92 93 94 95 96
		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 已提交
97
		}
C
Changli Gao 已提交
98 99
	} else {
		dev = NULL;
L
Linus Torvalds 已提交
100 101
	}

102
	if (!tcf_hash_check(tn, parm->index, a, bind)) {
C
Changli Gao 已提交
103
		if (dev == NULL)
L
Linus Torvalds 已提交
104
			return -EINVAL;
105 106
		ret = tcf_hash_create(tn, parm->index, est, a,
				      sizeof(*m), bind, true);
107 108
		if (ret)
			return ret;
L
Linus Torvalds 已提交
109 110
		ret = ACT_P_CREATED;
	} else {
111 112
		if (bind)
			return 0;
W
WANG Cong 已提交
113 114 115

		tcf_hash_release(a, bind);
		if (!ovr)
L
Linus Torvalds 已提交
116 117
			return -EEXIST;
	}
118
	m = to_mirred(a);
L
Linus Torvalds 已提交
119

120
	ASSERT_RTNL();
121 122
	m->tcf_action = parm->action;
	m->tcfm_eaction = parm->eaction;
C
Changli Gao 已提交
123
	if (dev != NULL) {
124
		m->tcfm_ifindex = parm->ifindex;
L
Linus Torvalds 已提交
125
		if (ret != ACT_P_CREATED)
126
			dev_put(rcu_dereference_protected(m->tcfm_dev, 1));
L
Linus Torvalds 已提交
127
		dev_hold(dev);
128
		rcu_assign_pointer(m->tcfm_dev, dev);
129
		m->tcfm_ok_push = ok_push;
L
Linus Torvalds 已提交
130
	}
131

132
	if (ret == ACT_P_CREATED) {
133
		spin_lock_bh(&mirred_list_lock);
134
		list_add(&m->tcfm_list, &mirred_list);
135
		spin_unlock_bh(&mirred_list_lock);
136
		tcf_hash_insert(tn, a);
137
	}
L
Linus Torvalds 已提交
138 139 140 141

	return ret;
}

142
static int tcf_mirred(struct sk_buff *skb, const struct tc_action *a,
143
		      struct tcf_result *res)
L
Linus Torvalds 已提交
144
{
145
	struct tcf_mirred *m = a->priv;
L
Linus Torvalds 已提交
146
	struct net_device *dev;
C
Changli Gao 已提交
147
	struct sk_buff *skb2;
148
	int retval, err;
C
Changli Gao 已提交
149
	u32 at;
L
Linus Torvalds 已提交
150

151 152 153
	tcf_lastuse_update(&m->tcf_tm);

	bstats_cpu_update(this_cpu_ptr(m->common.cpu_bstats), skb);
L
Linus Torvalds 已提交
154

155 156 157 158 159
	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");
160 161 162
		goto out;
	}

163
	if (unlikely(!(dev->flags & IFF_UP))) {
164 165
		net_notice_ratelimited("tc mirred to Houston: device %s is down\n",
				       dev->name);
C
Changli Gao 已提交
166
		goto out;
L
Linus Torvalds 已提交
167 168
	}

169
	at = G_TC_AT(skb->tc_verd);
170
	skb2 = skb_clone(skb, GFP_ATOMIC);
171
	if (!skb2)
C
Changli Gao 已提交
172
		goto out;
L
Linus Torvalds 已提交
173

C
Changli Gao 已提交
174
	if (!(at & AT_EGRESS)) {
175
		if (m->tcfm_ok_push)
176
			skb_push(skb2, skb->mac_len);
C
Changli Gao 已提交
177
	}
L
Linus Torvalds 已提交
178 179

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

183
	skb2->skb_iif = skb->dev->ifindex;
184
	skb2->dev = dev;
185
	skb_sender_cpu_clear(skb2);
186
	err = dev_queue_xmit(skb2);
C
Changli Gao 已提交
187 188

	if (err) {
189 190
out:
		qstats_overlimit_inc(this_cpu_ptr(m->common.cpu_qstats));
191 192
		if (m->tcfm_eaction != TCA_EGRESS_MIRROR)
			retval = TC_ACT_SHOT;
193 194
	}
	rcu_read_unlock();
C
Changli Gao 已提交
195 196

	return retval;
L
Linus Torvalds 已提交
197 198
}

199
static int tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
L
Linus Torvalds 已提交
200
{
201
	unsigned char *b = skb_tail_pointer(skb);
202
	struct tcf_mirred *m = a->priv;
203 204 205 206 207 208 209 210
	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 已提交
211 212
	struct tcf_t t;

213 214
	if (nla_put(skb, TCA_MIRRED_PARMS, sizeof(opt), &opt))
		goto nla_put_failure;
215 216 217
	t.install = jiffies_to_clock_t(jiffies - m->tcf_tm.install);
	t.lastuse = jiffies_to_clock_t(jiffies - m->tcf_tm.lastuse);
	t.expires = jiffies_to_clock_t(m->tcf_tm.expires);
218 219
	if (nla_put(skb, TCA_MIRRED_TM, sizeof(t), &t))
		goto nla_put_failure;
L
Linus Torvalds 已提交
220 221
	return skb->len;

222
nla_put_failure:
223
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
224 225 226
	return -1;
}

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
static int tcf_mirred_walker(struct net *net, struct sk_buff *skb,
			     struct netlink_callback *cb, int type,
			     struct tc_action *a)
{
	struct tc_action_net *tn = net_generic(net, mirred_net_id);

	return tcf_generic_walker(tn, skb, cb, type, a);
}

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

	return tcf_hash_search(tn, a, index);
}

243 244 245
static int mirred_device_event(struct notifier_block *unused,
			       unsigned long event, void *ptr)
{
246
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
247 248
	struct tcf_mirred *m;

249
	ASSERT_RTNL();
250 251
	if (event == NETDEV_UNREGISTER) {
		spin_lock_bh(&mirred_list_lock);
252
		list_for_each_entry(m, &mirred_list, tcfm_list) {
253
			if (rcu_access_pointer(m->tcfm_dev) == dev) {
254
				dev_put(dev);
255 256 257 258
				/* Note : no rcu grace period necessary, as
				 * net_device are already rcu protected.
				 */
				RCU_INIT_POINTER(m->tcfm_dev, NULL);
259 260
			}
		}
261 262
		spin_unlock_bh(&mirred_list_lock);
	}
263 264 265 266 267 268 269 270

	return NOTIFY_DONE;
}

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

L
Linus Torvalds 已提交
271 272 273 274 275 276
static struct tc_action_ops act_mirred_ops = {
	.kind		=	"mirred",
	.type		=	TCA_ACT_MIRRED,
	.owner		=	THIS_MODULE,
	.act		=	tcf_mirred,
	.dump		=	tcf_mirred_dump,
277
	.cleanup	=	tcf_mirred_release,
L
Linus Torvalds 已提交
278
	.init		=	tcf_mirred_init,
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
	.walk		=	tcf_mirred_walker,
	.lookup		=	tcf_mirred_search,
};

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 已提交
302 303 304 305 306 307
};

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

308
static int __init mirred_init_module(void)
L
Linus Torvalds 已提交
309
{
310 311 312 313
	int err = register_netdevice_notifier(&mirred_device_notifier);
	if (err)
		return err;

314
	pr_info("Mirror/redirect action on\n");
315
	return tcf_register_action(&act_mirred_ops, &mirred_net_ops);
L
Linus Torvalds 已提交
316 317
}

318
static void __exit mirred_cleanup_module(void)
L
Linus Torvalds 已提交
319
{
320
	tcf_unregister_action(&act_mirred_ops, &mirred_net_ops);
321
	unregister_netdevice_notifier(&mirred_device_notifier);
L
Linus Torvalds 已提交
322 323 324 325
}

module_init(mirred_init_module);
module_exit(mirred_cleanup_module);