Blame view

net/netfilter/xt_TEE.c 7.43 KB
e281b1989   Jan Engelhardt   netfilter: xtable...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  /*
   *	"TEE" target extension for Xtables
   *	Copyright © Sebastian Claßen, 2007
   *	Jan Engelhardt, 2007-2010
   *
   *	based on ipt_ROUTE.c from Cédric de Launois
   *	<delaunois@info.ucl.be>
   *
   *	This program is free software; you can redistribute it and/or
   *	modify it under the terms of the GNU General Public License
   *	version 2 or later, as published by the Free Software Foundation.
   */
  #include <linux/ip.h>
  #include <linux/module.h>
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
15
  #include <linux/percpu.h>
e281b1989   Jan Engelhardt   netfilter: xtable...
16
17
  #include <linux/route.h>
  #include <linux/skbuff.h>
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
18
  #include <linux/notifier.h>
e281b1989   Jan Engelhardt   netfilter: xtable...
19
20
21
22
23
24
25
26
  #include <net/checksum.h>
  #include <net/icmp.h>
  #include <net/ip.h>
  #include <net/ipv6.h>
  #include <net/ip6_route.h>
  #include <net/route.h>
  #include <linux/netfilter/x_tables.h>
  #include <linux/netfilter/xt_TEE.h>
c0cd11566   Igor Maravić   net:netfilter: us...
27
  #if IS_ENABLED(CONFIG_NF_CONNTRACK)
e281b1989   Jan Engelhardt   netfilter: xtable...
28
29
30
  #	define WITH_CONNTRACK 1
  #	include <net/netfilter/nf_conntrack.h>
  #endif
e281b1989   Jan Engelhardt   netfilter: xtable...
31

22265a5c3   Patrick McHardy   netfilter: xt_TEE...
32
33
34
35
36
  struct xt_tee_priv {
  	struct notifier_block	notifier;
  	struct xt_tee_tginfo	*tginfo;
  	int			oif;
  };
e281b1989   Jan Engelhardt   netfilter: xtable...
37
  static const union nf_inet_addr tee_zero_address;
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
38
  static DEFINE_PER_CPU(bool, tee_active);
e281b1989   Jan Engelhardt   netfilter: xtable...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  
  static struct net *pick_net(struct sk_buff *skb)
  {
  #ifdef CONFIG_NET_NS
  	const struct dst_entry *dst;
  
  	if (skb->dev != NULL)
  		return dev_net(skb->dev);
  	dst = skb_dst(skb);
  	if (dst != NULL && dst->dev != NULL)
  		return dev_net(dst->dev);
  #endif
  	return &init_net;
  }
e281b1989   Jan Engelhardt   netfilter: xtable...
53
54
55
56
57
58
  static bool
  tee_tg_route4(struct sk_buff *skb, const struct xt_tee_tginfo *info)
  {
  	const struct iphdr *iph = ip_hdr(skb);
  	struct net *net = pick_net(skb);
  	struct rtable *rt;
9d6ec9380   David S. Miller   ipv4: Use flowi4 ...
59
  	struct flowi4 fl4;
e281b1989   Jan Engelhardt   netfilter: xtable...
60

9d6ec9380   David S. Miller   ipv4: Use flowi4 ...
61
  	memset(&fl4, 0, sizeof(fl4));
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
62
63
64
  	if (info->priv) {
  		if (info->priv->oif == -1)
  			return false;
9d6ec9380   David S. Miller   ipv4: Use flowi4 ...
65
  		fl4.flowi4_oif = info->priv->oif;
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
66
  	}
9d6ec9380   David S. Miller   ipv4: Use flowi4 ...
67
68
69
  	fl4.daddr = info->gw.ip;
  	fl4.flowi4_tos = RT_TOS(iph->tos);
  	fl4.flowi4_scope = RT_SCOPE_UNIVERSE;
2ad5b9e4b   Eric Dumazet   netfilter: xt_TEE...
70
  	fl4.flowi4_flags = FLOWI_FLAG_KNOWN_NH;
9d6ec9380   David S. Miller   ipv4: Use flowi4 ...
71
  	rt = ip_route_output_key(net, &fl4);
b23dd4fe4   David S. Miller   ipv4: Make output...
72
  	if (IS_ERR(rt))
e281b1989   Jan Engelhardt   netfilter: xtable...
73
  		return false;
50636af71   Eric Dumazet   xt_tee: use skb_d...
74
  	skb_dst_drop(skb);
d8d1f30b9   Changli Gao   net-next: remove ...
75
76
  	skb_dst_set(skb, &rt->dst);
  	skb->dev      = rt->dst.dev;
e281b1989   Jan Engelhardt   netfilter: xtable...
77
78
79
80
81
  	skb->protocol = htons(ETH_P_IP);
  	return true;
  }
  
  static unsigned int
4b560b447   Jan Engelhardt   netfilter: xtable...
82
  tee_tg4(struct sk_buff *skb, const struct xt_action_param *par)
e281b1989   Jan Engelhardt   netfilter: xtable...
83
84
85
  {
  	const struct xt_tee_tginfo *info = par->targinfo;
  	struct iphdr *iph;
19e8d69c5   Alex Shi   net: replace perc...
86
  	if (__this_cpu_read(tee_active))
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
87
  		return XT_CONTINUE;
e281b1989   Jan Engelhardt   netfilter: xtable...
88
89
90
91
92
93
94
95
96
97
98
99
100
  	/*
  	 * Copy the skb, and route the copy. Will later return %XT_CONTINUE for
  	 * the original skb, which should continue on its way as if nothing has
  	 * happened. The copy should be independently delivered to the TEE
  	 * --gateway.
  	 */
  	skb = pskb_copy(skb, GFP_ATOMIC);
  	if (skb == NULL)
  		return XT_CONTINUE;
  
  #ifdef WITH_CONNTRACK
  	/* Avoid counting cloned packets towards the original connection. */
  	nf_conntrack_put(skb->nfct);
5bfddbd46   Eric Dumazet   netfilter: nf_con...
101
  	skb->nfct     = &nf_ct_untracked_get()->ct_general;
e281b1989   Jan Engelhardt   netfilter: xtable...
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  	skb->nfctinfo = IP_CT_NEW;
  	nf_conntrack_get(skb->nfct);
  #endif
  	/*
  	 * If we are in PREROUTING/INPUT, the checksum must be recalculated
  	 * since the length could have changed as a result of defragmentation.
  	 *
  	 * We also decrease the TTL to mitigate potential TEE loops
  	 * between two hosts.
  	 *
  	 * Set %IP_DF so that the original source is notified of a potentially
  	 * decreased MTU on the clone route. IPv6 does this too.
  	 */
  	iph = ip_hdr(skb);
  	iph->frag_off |= htons(IP_DF);
  	if (par->hooknum == NF_INET_PRE_ROUTING ||
  	    par->hooknum == NF_INET_LOCAL_IN)
  		--iph->ttl;
  	ip_send_check(iph);
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
121
  	if (tee_tg_route4(skb, info)) {
19e8d69c5   Alex Shi   net: replace perc...
122
  		__this_cpu_write(tee_active, true);
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
123
  		ip_local_out(skb);
19e8d69c5   Alex Shi   net: replace perc...
124
  		__this_cpu_write(tee_active, false);
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
125
  	} else {
e281b1989   Jan Engelhardt   netfilter: xtable...
126
  		kfree_skb(skb);
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
127
  	}
e281b1989   Jan Engelhardt   netfilter: xtable...
128
129
  	return XT_CONTINUE;
  }
dfd56b8b3   Eric Dumazet   net: use IS_ENABL...
130
  #if IS_ENABLED(CONFIG_IPV6)
e281b1989   Jan Engelhardt   netfilter: xtable...
131
132
133
134
135
136
  static bool
  tee_tg_route6(struct sk_buff *skb, const struct xt_tee_tginfo *info)
  {
  	const struct ipv6hdr *iph = ipv6_hdr(skb);
  	struct net *net = pick_net(skb);
  	struct dst_entry *dst;
4c9483b2f   David S. Miller   ipv6: Convert to ...
137
  	struct flowi6 fl6;
e281b1989   Jan Engelhardt   netfilter: xtable...
138

4c9483b2f   David S. Miller   ipv6: Convert to ...
139
  	memset(&fl6, 0, sizeof(fl6));
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
140
141
142
  	if (info->priv) {
  		if (info->priv->oif == -1)
  			return false;
4c9483b2f   David S. Miller   ipv6: Convert to ...
143
  		fl6.flowi6_oif = info->priv->oif;
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
144
  	}
4c9483b2f   David S. Miller   ipv6: Convert to ...
145
146
  	fl6.daddr = info->gw.in6;
  	fl6.flowlabel = ((iph->flow_lbl[0] & 0xF) << 16) |
5811662b1   Changli Gao   net: use the macr...
147
  			   (iph->flow_lbl[1] << 8) | iph->flow_lbl[2];
4c9483b2f   David S. Miller   ipv6: Convert to ...
148
  	dst = ip6_route_output(net, NULL, &fl6);
5d38b1f8c   RongQing.Li   netfilter: ip6_ro...
149
150
  	if (dst->error) {
  		dst_release(dst);
e281b1989   Jan Engelhardt   netfilter: xtable...
151
  		return false;
5d38b1f8c   RongQing.Li   netfilter: ip6_ro...
152
  	}
50636af71   Eric Dumazet   xt_tee: use skb_d...
153
  	skb_dst_drop(skb);
e281b1989   Jan Engelhardt   netfilter: xtable...
154
155
156
157
158
159
160
  	skb_dst_set(skb, dst);
  	skb->dev      = dst->dev;
  	skb->protocol = htons(ETH_P_IPV6);
  	return true;
  }
  
  static unsigned int
4b560b447   Jan Engelhardt   netfilter: xtable...
161
  tee_tg6(struct sk_buff *skb, const struct xt_action_param *par)
e281b1989   Jan Engelhardt   netfilter: xtable...
162
163
  {
  	const struct xt_tee_tginfo *info = par->targinfo;
19e8d69c5   Alex Shi   net: replace perc...
164
  	if (__this_cpu_read(tee_active))
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
165
  		return XT_CONTINUE;
e281b1989   Jan Engelhardt   netfilter: xtable...
166
167
168
169
170
171
  	skb = pskb_copy(skb, GFP_ATOMIC);
  	if (skb == NULL)
  		return XT_CONTINUE;
  
  #ifdef WITH_CONNTRACK
  	nf_conntrack_put(skb->nfct);
5bfddbd46   Eric Dumazet   netfilter: nf_con...
172
  	skb->nfct     = &nf_ct_untracked_get()->ct_general;
e281b1989   Jan Engelhardt   netfilter: xtable...
173
174
175
176
177
178
179
180
  	skb->nfctinfo = IP_CT_NEW;
  	nf_conntrack_get(skb->nfct);
  #endif
  	if (par->hooknum == NF_INET_PRE_ROUTING ||
  	    par->hooknum == NF_INET_LOCAL_IN) {
  		struct ipv6hdr *iph = ipv6_hdr(skb);
  		--iph->hop_limit;
  	}
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
181
  	if (tee_tg_route6(skb, info)) {
19e8d69c5   Alex Shi   net: replace perc...
182
  		__this_cpu_write(tee_active, true);
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
183
  		ip6_local_out(skb);
19e8d69c5   Alex Shi   net: replace perc...
184
  		__this_cpu_write(tee_active, false);
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
185
  	} else {
e281b1989   Jan Engelhardt   netfilter: xtable...
186
  		kfree_skb(skb);
cd58bcd97   Jan Engelhardt   netfilter: xt_TEE...
187
  	}
e281b1989   Jan Engelhardt   netfilter: xtable...
188
189
  	return XT_CONTINUE;
  }
dfd56b8b3   Eric Dumazet   net: use IS_ENABL...
190
  #endif
e281b1989   Jan Engelhardt   netfilter: xtable...
191

22265a5c3   Patrick McHardy   netfilter: xt_TEE...
192
193
194
  static int tee_netdev_event(struct notifier_block *this, unsigned long event,
  			    void *ptr)
  {
351638e7d   Jiri Pirko   net: pass info st...
195
  	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
  	struct xt_tee_priv *priv;
  
  	priv = container_of(this, struct xt_tee_priv, notifier);
  	switch (event) {
  	case NETDEV_REGISTER:
  		if (!strcmp(dev->name, priv->tginfo->oif))
  			priv->oif = dev->ifindex;
  		break;
  	case NETDEV_UNREGISTER:
  		if (dev->ifindex == priv->oif)
  			priv->oif = -1;
  		break;
  	case NETDEV_CHANGENAME:
  		if (!strcmp(dev->name, priv->tginfo->oif))
  			priv->oif = dev->ifindex;
  		else if (dev->ifindex == priv->oif)
  			priv->oif = -1;
  		break;
  	}
  
  	return NOTIFY_DONE;
  }
e281b1989   Jan Engelhardt   netfilter: xtable...
218
219
  static int tee_tg_check(const struct xt_tgchk_param *par)
  {
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
220
221
  	struct xt_tee_tginfo *info = par->targinfo;
  	struct xt_tee_priv *priv;
e281b1989   Jan Engelhardt   netfilter: xtable...
222

e281b1989   Jan Engelhardt   netfilter: xtable...
223
  	/* 0.0.0.0 and :: not allowed */
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
  	if (memcmp(&info->gw, &tee_zero_address,
  		   sizeof(tee_zero_address)) == 0)
  		return -EINVAL;
  
  	if (info->oif[0]) {
  		if (info->oif[sizeof(info->oif)-1] != '\0')
  			return -EINVAL;
  
  		priv = kzalloc(sizeof(*priv), GFP_KERNEL);
  		if (priv == NULL)
  			return -ENOMEM;
  
  		priv->tginfo  = info;
  		priv->oif     = -1;
  		priv->notifier.notifier_call = tee_netdev_event;
  		info->priv    = priv;
  
  		register_netdevice_notifier(&priv->notifier);
  	} else
  		info->priv = NULL;
  
  	return 0;
  }
  
  static void tee_tg_destroy(const struct xt_tgdtor_param *par)
  {
  	struct xt_tee_tginfo *info = par->targinfo;
  
  	if (info->priv) {
  		unregister_netdevice_notifier(&info->priv->notifier);
  		kfree(info->priv);
  	}
e281b1989   Jan Engelhardt   netfilter: xtable...
256
257
258
259
260
261
262
263
264
265
  }
  
  static struct xt_target tee_tg_reg[] __read_mostly = {
  	{
  		.name       = "TEE",
  		.revision   = 1,
  		.family     = NFPROTO_IPV4,
  		.target     = tee_tg4,
  		.targetsize = sizeof(struct xt_tee_tginfo),
  		.checkentry = tee_tg_check,
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
266
  		.destroy    = tee_tg_destroy,
e281b1989   Jan Engelhardt   netfilter: xtable...
267
268
  		.me         = THIS_MODULE,
  	},
dfd56b8b3   Eric Dumazet   net: use IS_ENABL...
269
  #if IS_ENABLED(CONFIG_IPV6)
e281b1989   Jan Engelhardt   netfilter: xtable...
270
271
272
273
274
275
276
  	{
  		.name       = "TEE",
  		.revision   = 1,
  		.family     = NFPROTO_IPV6,
  		.target     = tee_tg6,
  		.targetsize = sizeof(struct xt_tee_tginfo),
  		.checkentry = tee_tg_check,
22265a5c3   Patrick McHardy   netfilter: xt_TEE...
277
  		.destroy    = tee_tg_destroy,
e281b1989   Jan Engelhardt   netfilter: xtable...
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
  		.me         = THIS_MODULE,
  	},
  #endif
  };
  
  static int __init tee_tg_init(void)
  {
  	return xt_register_targets(tee_tg_reg, ARRAY_SIZE(tee_tg_reg));
  }
  
  static void __exit tee_tg_exit(void)
  {
  	xt_unregister_targets(tee_tg_reg, ARRAY_SIZE(tee_tg_reg));
  }
  
  module_init(tee_tg_init);
  module_exit(tee_tg_exit);
  MODULE_AUTHOR("Sebastian Claßen <sebastian.classen@freenet.ag>");
  MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
  MODULE_DESCRIPTION("Xtables: Reroute packet copy");
  MODULE_LICENSE("GPL");
  MODULE_ALIAS("ipt_TEE");
  MODULE_ALIAS("ip6t_TEE");