aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-04-19 08:17:47 -0400
committerPatrick McHardy <kaber@trash.net>2010-04-19 08:17:47 -0400
commite281b19897dc21c1071802808d461627d747a877 (patch)
treee779b58643237f00305b016d6749825d7b3426f8 /net
parentf0d57a54aa9fdf3a4d9435d44c69b20388ad0b3b (diff)
netfilter: xtables: inclusion of xt_TEE
xt_TEE can be used to clone and reroute a packet. This can for example be used to copy traffic at a router for logging purposes to another dedicated machine. References: http://www.gossamer-threads.com/lists/iptables/devel/68781 Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/ip_output.c1
-rw-r--r--net/ipv6/ip6_output.c1
-rw-r--r--net/netfilter/Kconfig7
-rw-r--r--net/netfilter/Makefile1
-rw-r--r--net/netfilter/xt_TEE.c256
5 files changed, 266 insertions, 0 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index f09135e1e14f..0abfddec1e26 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -309,6 +309,7 @@ int ip_output(struct sk_buff *skb)
309 ip_finish_output, 309 ip_finish_output,
310 !(IPCB(skb)->flags & IPSKB_REROUTED)); 310 !(IPCB(skb)->flags & IPSKB_REROUTED));
311} 311}
312EXPORT_SYMBOL_GPL(ip_output);
312 313
313int ip_queue_xmit(struct sk_buff *skb, int ipfragok) 314int ip_queue_xmit(struct sk_buff *skb, int ipfragok)
314{ 315{
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
index c10a38a71a5e..d09be7ff8735 100644
--- a/net/ipv6/ip6_output.c
+++ b/net/ipv6/ip6_output.c
@@ -176,6 +176,7 @@ int ip6_output(struct sk_buff *skb)
176 ip6_finish_output, 176 ip6_finish_output,
177 !(IP6CB(skb)->flags & IP6SKB_REROUTED)); 177 !(IP6CB(skb)->flags & IP6SKB_REROUTED));
178} 178}
179EXPORT_SYMBOL_GPL(ip6_output);
179 180
180/* 181/*
181 * xmit an sk_buff (used by TCP) 182 * xmit an sk_buff (used by TCP)
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig
index 8055786b7702..673a6c8f0e95 100644
--- a/net/netfilter/Kconfig
+++ b/net/netfilter/Kconfig
@@ -502,6 +502,13 @@ config NETFILTER_XT_TARGET_RATEEST
502 502
503 To compile it as a module, choose M here. If unsure, say N. 503 To compile it as a module, choose M here. If unsure, say N.
504 504
505config NETFILTER_XT_TARGET_TEE
506 tristate '"TEE" - packet cloning to alternate destiantion'
507 depends on NETFILTER_ADVANCED
508 ---help---
509 This option adds a "TEE" target with which a packet can be cloned and
510 this clone be rerouted to another nexthop.
511
505config NETFILTER_XT_TARGET_TPROXY 512config NETFILTER_XT_TARGET_TPROXY
506 tristate '"TPROXY" target support (EXPERIMENTAL)' 513 tristate '"TPROXY" target support (EXPERIMENTAL)'
507 depends on EXPERIMENTAL 514 depends on EXPERIMENTAL
diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile
index cd31afe0692a..14e3a8fd8180 100644
--- a/net/netfilter/Makefile
+++ b/net/netfilter/Makefile
@@ -59,6 +59,7 @@ obj-$(CONFIG_NETFILTER_XT_TARGET_SECMARK) += xt_SECMARK.o
59obj-$(CONFIG_NETFILTER_XT_TARGET_TPROXY) += xt_TPROXY.o 59obj-$(CONFIG_NETFILTER_XT_TARGET_TPROXY) += xt_TPROXY.o
60obj-$(CONFIG_NETFILTER_XT_TARGET_TCPMSS) += xt_TCPMSS.o 60obj-$(CONFIG_NETFILTER_XT_TARGET_TCPMSS) += xt_TCPMSS.o
61obj-$(CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP) += xt_TCPOPTSTRIP.o 61obj-$(CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP) += xt_TCPOPTSTRIP.o
62obj-$(CONFIG_NETFILTER_XT_TARGET_TEE) += xt_TEE.o
62obj-$(CONFIG_NETFILTER_XT_TARGET_TRACE) += xt_TRACE.o 63obj-$(CONFIG_NETFILTER_XT_TARGET_TRACE) += xt_TRACE.o
63 64
64# matches 65# matches
diff --git a/net/netfilter/xt_TEE.c b/net/netfilter/xt_TEE.c
new file mode 100644
index 000000000000..b3d730163f12
--- /dev/null
+++ b/net/netfilter/xt_TEE.c
@@ -0,0 +1,256 @@
1/*
2 * "TEE" target extension for Xtables
3 * Copyright © Sebastian Claßen, 2007
4 * Jan Engelhardt, 2007-2010
5 *
6 * based on ipt_ROUTE.c from Cédric de Launois
7 * <delaunois@info.ucl.be>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 or later, as published by the Free Software Foundation.
12 */
13#include <linux/ip.h>
14#include <linux/module.h>
15#include <linux/route.h>
16#include <linux/skbuff.h>
17#include <net/checksum.h>
18#include <net/icmp.h>
19#include <net/ip.h>
20#include <net/ipv6.h>
21#include <net/ip6_route.h>
22#include <net/route.h>
23#include <linux/netfilter/x_tables.h>
24#include <linux/netfilter/xt_TEE.h>
25
26#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
27# define WITH_CONNTRACK 1
28# include <net/netfilter/nf_conntrack.h>
29#endif
30#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
31# define WITH_IPV6 1
32#endif
33
34static const union nf_inet_addr tee_zero_address;
35
36static struct net *pick_net(struct sk_buff *skb)
37{
38#ifdef CONFIG_NET_NS
39 const struct dst_entry *dst;
40
41 if (skb->dev != NULL)
42 return dev_net(skb->dev);
43 dst = skb_dst(skb);
44 if (dst != NULL && dst->dev != NULL)
45 return dev_net(dst->dev);
46#endif
47 return &init_net;
48}
49
50static bool tee_tg_route_oif(struct flowi *f, struct net *net,
51 const struct xt_tee_tginfo *info)
52{
53 const struct net_device *dev;
54
55 if (*info->oif != '\0')
56 return true;
57 dev = dev_get_by_name(net, info->oif);
58 if (dev == NULL)
59 return false;
60 f->oif = dev->ifindex;
61 return true;
62}
63
64static bool
65tee_tg_route4(struct sk_buff *skb, const struct xt_tee_tginfo *info)
66{
67 const struct iphdr *iph = ip_hdr(skb);
68 struct net *net = pick_net(skb);
69 struct rtable *rt;
70 struct flowi fl;
71
72 memset(&fl, 0, sizeof(fl));
73 if (!tee_tg_route_oif(&fl, net, info))
74 return false;
75 fl.nl_u.ip4_u.daddr = info->gw.ip;
76 fl.nl_u.ip4_u.tos = RT_TOS(iph->tos);
77 fl.nl_u.ip4_u.scope = RT_SCOPE_UNIVERSE;
78 if (ip_route_output_key(net, &rt, &fl) != 0)
79 return false;
80
81 dst_release(skb_dst(skb));
82 skb_dst_set(skb, &rt->u.dst);
83 skb->dev = rt->u.dst.dev;
84 skb->protocol = htons(ETH_P_IP);
85 return true;
86}
87
88static unsigned int
89tee_tg4(struct sk_buff *skb, const struct xt_target_param *par)
90{
91 const struct xt_tee_tginfo *info = par->targinfo;
92 struct iphdr *iph;
93
94 /*
95 * Copy the skb, and route the copy. Will later return %XT_CONTINUE for
96 * the original skb, which should continue on its way as if nothing has
97 * happened. The copy should be independently delivered to the TEE
98 * --gateway.
99 */
100 skb = pskb_copy(skb, GFP_ATOMIC);
101 if (skb == NULL)
102 return XT_CONTINUE;
103
104#ifdef WITH_CONNTRACK
105 /* Avoid counting cloned packets towards the original connection. */
106 nf_conntrack_put(skb->nfct);
107 skb->nfct = &nf_conntrack_untracked.ct_general;
108 skb->nfctinfo = IP_CT_NEW;
109 nf_conntrack_get(skb->nfct);
110#endif
111 /*
112 * If we are in PREROUTING/INPUT, the checksum must be recalculated
113 * since the length could have changed as a result of defragmentation.
114 *
115 * We also decrease the TTL to mitigate potential TEE loops
116 * between two hosts.
117 *
118 * Set %IP_DF so that the original source is notified of a potentially
119 * decreased MTU on the clone route. IPv6 does this too.
120 */
121 iph = ip_hdr(skb);
122 iph->frag_off |= htons(IP_DF);
123 if (par->hooknum == NF_INET_PRE_ROUTING ||
124 par->hooknum == NF_INET_LOCAL_IN)
125 --iph->ttl;
126 ip_send_check(iph);
127
128 /*
129 * Xtables is not reentrant currently, so a choice has to be made:
130 * 1. return absolute verdict for the original and let the cloned
131 * packet travel through the chains
132 * 2. let the original continue travelling and not pass the clone
133 * to Xtables.
134 * #2 is chosen. Normally, we would use ip_local_out for the clone.
135 * Because iph->check is already correct and we don't pass it to
136 * Xtables anyway, a shortcut to dst_output [forwards to ip_output] can
137 * be taken. %IPSKB_REROUTED needs to be set so that ip_output does not
138 * invoke POSTROUTING on the cloned packet.
139 */
140 IPCB(skb)->flags |= IPSKB_REROUTED;
141 if (tee_tg_route4(skb, info))
142 ip_output(skb);
143 else
144 kfree_skb(skb);
145
146 return XT_CONTINUE;
147}
148
149#ifdef WITH_IPV6
150static bool
151tee_tg_route6(struct sk_buff *skb, const struct xt_tee_tginfo *info)
152{
153 const struct ipv6hdr *iph = ipv6_hdr(skb);
154 struct net *net = pick_net(skb);
155 struct dst_entry *dst;
156 struct flowi fl;
157
158 memset(&fl, 0, sizeof(fl));
159 if (!tee_tg_route_oif(&fl, net, info))
160 return false;
161 fl.nl_u.ip6_u.daddr = info->gw.in6;
162 fl.nl_u.ip6_u.flowlabel = ((iph->flow_lbl[0] & 0xF) << 16) |
163 (iph->flow_lbl[1] << 8) | iph->flow_lbl[2];
164 dst = ip6_route_output(net, NULL, &fl);
165 if (dst == NULL)
166 return false;
167
168 dst_release(skb_dst(skb));
169 skb_dst_set(skb, dst);
170 skb->dev = dst->dev;
171 skb->protocol = htons(ETH_P_IPV6);
172 return true;
173}
174
175static unsigned int
176tee_tg6(struct sk_buff *skb, const struct xt_target_param *par)
177{
178 const struct xt_tee_tginfo *info = par->targinfo;
179
180 skb = pskb_copy(skb, GFP_ATOMIC);
181 if (skb == NULL)
182 return XT_CONTINUE;
183
184#ifdef WITH_CONNTRACK
185 nf_conntrack_put(skb->nfct);
186 skb->nfct = &nf_conntrack_untracked.ct_general;
187 skb->nfctinfo = IP_CT_NEW;
188 nf_conntrack_get(skb->nfct);
189#endif
190 if (par->hooknum == NF_INET_PRE_ROUTING ||
191 par->hooknum == NF_INET_LOCAL_IN) {
192 struct ipv6hdr *iph = ipv6_hdr(skb);
193 --iph->hop_limit;
194 }
195 IP6CB(skb)->flags |= IP6SKB_REROUTED;
196 if (tee_tg_route6(skb, info))
197 ip6_output(skb);
198 else
199 kfree_skb(skb);
200
201 return XT_CONTINUE;
202}
203#endif /* WITH_IPV6 */
204
205static int tee_tg_check(const struct xt_tgchk_param *par)
206{
207 const struct xt_tee_tginfo *info = par->targinfo;
208
209 if (info->oif[sizeof(info->oif)-1] != '\0')
210 return -EINVAL;
211 /* 0.0.0.0 and :: not allowed */
212 return (memcmp(&info->gw, &tee_zero_address,
213 sizeof(tee_zero_address)) == 0) ? -EINVAL : 0;
214}
215
216static struct xt_target tee_tg_reg[] __read_mostly = {
217 {
218 .name = "TEE",
219 .revision = 1,
220 .family = NFPROTO_IPV4,
221 .target = tee_tg4,
222 .targetsize = sizeof(struct xt_tee_tginfo),
223 .checkentry = tee_tg_check,
224 .me = THIS_MODULE,
225 },
226#ifdef WITH_IPV6
227 {
228 .name = "TEE",
229 .revision = 1,
230 .family = NFPROTO_IPV6,
231 .target = tee_tg6,
232 .targetsize = sizeof(struct xt_tee_tginfo),
233 .checkentry = tee_tg_check,
234 .me = THIS_MODULE,
235 },
236#endif
237};
238
239static int __init tee_tg_init(void)
240{
241 return xt_register_targets(tee_tg_reg, ARRAY_SIZE(tee_tg_reg));
242}
243
244static void __exit tee_tg_exit(void)
245{
246 xt_unregister_targets(tee_tg_reg, ARRAY_SIZE(tee_tg_reg));
247}
248
249module_init(tee_tg_init);
250module_exit(tee_tg_exit);
251MODULE_AUTHOR("Sebastian Claßen <sebastian.classen@freenet.ag>");
252MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
253MODULE_DESCRIPTION("Xtables: Reroute packet copy");
254MODULE_LICENSE("GPL");
255MODULE_ALIAS("ipt_TEE");
256MODULE_ALIAS("ip6t_TEE");