blob: ee2e5bc5a8c7b506842b6d143fba3f7aa04f3a8d [file] [log] [blame]
Jan Engelhardte281b192010-04-19 14:17:47 +02001/*
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>
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +020015#include <linux/percpu.h>
Jan Engelhardte281b192010-04-19 14:17:47 +020016#include <linux/route.h>
17#include <linux/skbuff.h>
Patrick McHardy22265a52010-04-20 15:07:32 +020018#include <linux/notifier.h>
Jan Engelhardte281b192010-04-19 14:17:47 +020019#include <net/checksum.h>
20#include <net/icmp.h>
21#include <net/ip.h>
22#include <net/ipv6.h>
23#include <net/ip6_route.h>
24#include <net/route.h>
25#include <linux/netfilter/x_tables.h>
26#include <linux/netfilter/xt_TEE.h>
27
Igor Maravićc0cd1152011-12-12 02:58:24 +000028#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Jan Engelhardte281b192010-04-19 14:17:47 +020029# define WITH_CONNTRACK 1
30# include <net/netfilter/nf_conntrack.h>
31#endif
Jan Engelhardte281b192010-04-19 14:17:47 +020032
Patrick McHardy22265a52010-04-20 15:07:32 +020033struct xt_tee_priv {
34 struct notifier_block notifier;
35 struct xt_tee_tginfo *tginfo;
36 int oif;
37};
38
Jan Engelhardte281b192010-04-19 14:17:47 +020039static const union nf_inet_addr tee_zero_address;
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +020040static DEFINE_PER_CPU(bool, tee_active);
Jan Engelhardte281b192010-04-19 14:17:47 +020041
42static struct net *pick_net(struct sk_buff *skb)
43{
44#ifdef CONFIG_NET_NS
45 const struct dst_entry *dst;
46
47 if (skb->dev != NULL)
48 return dev_net(skb->dev);
49 dst = skb_dst(skb);
50 if (dst != NULL && dst->dev != NULL)
51 return dev_net(dst->dev);
52#endif
53 return &init_net;
54}
55
Jan Engelhardte281b192010-04-19 14:17:47 +020056static bool
57tee_tg_route4(struct sk_buff *skb, const struct xt_tee_tginfo *info)
58{
59 const struct iphdr *iph = ip_hdr(skb);
60 struct net *net = pick_net(skb);
61 struct rtable *rt;
David S. Miller9d6ec932011-03-12 01:12:47 -050062 struct flowi4 fl4;
Jan Engelhardte281b192010-04-19 14:17:47 +020063
David S. Miller9d6ec932011-03-12 01:12:47 -050064 memset(&fl4, 0, sizeof(fl4));
Patrick McHardy22265a52010-04-20 15:07:32 +020065 if (info->priv) {
66 if (info->priv->oif == -1)
67 return false;
David S. Miller9d6ec932011-03-12 01:12:47 -050068 fl4.flowi4_oif = info->priv->oif;
Patrick McHardy22265a52010-04-20 15:07:32 +020069 }
David S. Miller9d6ec932011-03-12 01:12:47 -050070 fl4.daddr = info->gw.ip;
71 fl4.flowi4_tos = RT_TOS(iph->tos);
72 fl4.flowi4_scope = RT_SCOPE_UNIVERSE;
73 rt = ip_route_output_key(net, &fl4);
David S. Millerb23dd4f2011-03-02 14:31:35 -080074 if (IS_ERR(rt))
Jan Engelhardte281b192010-04-19 14:17:47 +020075 return false;
76
Eric Dumazet50636af2010-05-28 03:41:17 -070077 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -070078 skb_dst_set(skb, &rt->dst);
79 skb->dev = rt->dst.dev;
Jan Engelhardte281b192010-04-19 14:17:47 +020080 skb->protocol = htons(ETH_P_IP);
81 return true;
82}
83
84static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +020085tee_tg4(struct sk_buff *skb, const struct xt_action_param *par)
Jan Engelhardte281b192010-04-19 14:17:47 +020086{
87 const struct xt_tee_tginfo *info = par->targinfo;
88 struct iphdr *iph;
89
Alex Shi19e8d692012-05-14 14:15:31 -070090 if (__this_cpu_read(tee_active))
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +020091 return XT_CONTINUE;
Jan Engelhardte281b192010-04-19 14:17:47 +020092 /*
93 * Copy the skb, and route the copy. Will later return %XT_CONTINUE for
94 * the original skb, which should continue on its way as if nothing has
95 * happened. The copy should be independently delivered to the TEE
96 * --gateway.
97 */
98 skb = pskb_copy(skb, GFP_ATOMIC);
99 if (skb == NULL)
100 return XT_CONTINUE;
101
102#ifdef WITH_CONNTRACK
103 /* Avoid counting cloned packets towards the original connection. */
104 nf_conntrack_put(skb->nfct);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200105 skb->nfct = &nf_ct_untracked_get()->ct_general;
Jan Engelhardte281b192010-04-19 14:17:47 +0200106 skb->nfctinfo = IP_CT_NEW;
107 nf_conntrack_get(skb->nfct);
108#endif
109 /*
110 * If we are in PREROUTING/INPUT, the checksum must be recalculated
111 * since the length could have changed as a result of defragmentation.
112 *
113 * We also decrease the TTL to mitigate potential TEE loops
114 * between two hosts.
115 *
116 * Set %IP_DF so that the original source is notified of a potentially
117 * decreased MTU on the clone route. IPv6 does this too.
118 */
119 iph = ip_hdr(skb);
120 iph->frag_off |= htons(IP_DF);
121 if (par->hooknum == NF_INET_PRE_ROUTING ||
122 par->hooknum == NF_INET_LOCAL_IN)
123 --iph->ttl;
124 ip_send_check(iph);
125
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +0200126 if (tee_tg_route4(skb, info)) {
Alex Shi19e8d692012-05-14 14:15:31 -0700127 __this_cpu_write(tee_active, true);
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +0200128 ip_local_out(skb);
Alex Shi19e8d692012-05-14 14:15:31 -0700129 __this_cpu_write(tee_active, false);
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +0200130 } else {
Jan Engelhardte281b192010-04-19 14:17:47 +0200131 kfree_skb(skb);
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +0200132 }
Jan Engelhardte281b192010-04-19 14:17:47 +0200133 return XT_CONTINUE;
134}
135
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000136#if IS_ENABLED(CONFIG_IPV6)
Jan Engelhardte281b192010-04-19 14:17:47 +0200137static bool
138tee_tg_route6(struct sk_buff *skb, const struct xt_tee_tginfo *info)
139{
140 const struct ipv6hdr *iph = ipv6_hdr(skb);
141 struct net *net = pick_net(skb);
142 struct dst_entry *dst;
David S. Miller4c9483b2011-03-12 16:22:43 -0500143 struct flowi6 fl6;
Jan Engelhardte281b192010-04-19 14:17:47 +0200144
David S. Miller4c9483b2011-03-12 16:22:43 -0500145 memset(&fl6, 0, sizeof(fl6));
Patrick McHardy22265a52010-04-20 15:07:32 +0200146 if (info->priv) {
147 if (info->priv->oif == -1)
148 return false;
David S. Miller4c9483b2011-03-12 16:22:43 -0500149 fl6.flowi6_oif = info->priv->oif;
Patrick McHardy22265a52010-04-20 15:07:32 +0200150 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500151 fl6.daddr = info->gw.in6;
152 fl6.flowlabel = ((iph->flow_lbl[0] & 0xF) << 16) |
Changli Gao58116622010-11-12 18:43:55 +0000153 (iph->flow_lbl[1] << 8) | iph->flow_lbl[2];
David S. Miller4c9483b2011-03-12 16:22:43 -0500154 dst = ip6_route_output(net, NULL, &fl6);
RongQing.Li5d38b1f2012-02-21 22:10:51 +0000155 if (dst->error) {
156 dst_release(dst);
Jan Engelhardte281b192010-04-19 14:17:47 +0200157 return false;
RongQing.Li5d38b1f2012-02-21 22:10:51 +0000158 }
Eric Dumazet50636af2010-05-28 03:41:17 -0700159 skb_dst_drop(skb);
Jan Engelhardte281b192010-04-19 14:17:47 +0200160 skb_dst_set(skb, dst);
161 skb->dev = dst->dev;
162 skb->protocol = htons(ETH_P_IPV6);
163 return true;
164}
165
166static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200167tee_tg6(struct sk_buff *skb, const struct xt_action_param *par)
Jan Engelhardte281b192010-04-19 14:17:47 +0200168{
169 const struct xt_tee_tginfo *info = par->targinfo;
170
Alex Shi19e8d692012-05-14 14:15:31 -0700171 if (__this_cpu_read(tee_active))
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +0200172 return XT_CONTINUE;
Jan Engelhardte281b192010-04-19 14:17:47 +0200173 skb = pskb_copy(skb, GFP_ATOMIC);
174 if (skb == NULL)
175 return XT_CONTINUE;
176
177#ifdef WITH_CONNTRACK
178 nf_conntrack_put(skb->nfct);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200179 skb->nfct = &nf_ct_untracked_get()->ct_general;
Jan Engelhardte281b192010-04-19 14:17:47 +0200180 skb->nfctinfo = IP_CT_NEW;
181 nf_conntrack_get(skb->nfct);
182#endif
183 if (par->hooknum == NF_INET_PRE_ROUTING ||
184 par->hooknum == NF_INET_LOCAL_IN) {
185 struct ipv6hdr *iph = ipv6_hdr(skb);
186 --iph->hop_limit;
187 }
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +0200188 if (tee_tg_route6(skb, info)) {
Alex Shi19e8d692012-05-14 14:15:31 -0700189 __this_cpu_write(tee_active, true);
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +0200190 ip6_local_out(skb);
Alex Shi19e8d692012-05-14 14:15:31 -0700191 __this_cpu_write(tee_active, false);
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +0200192 } else {
Jan Engelhardte281b192010-04-19 14:17:47 +0200193 kfree_skb(skb);
Jan Engelhardtcd58bcd2010-04-19 16:06:52 +0200194 }
Jan Engelhardte281b192010-04-19 14:17:47 +0200195 return XT_CONTINUE;
196}
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000197#endif
Jan Engelhardte281b192010-04-19 14:17:47 +0200198
Patrick McHardy22265a52010-04-20 15:07:32 +0200199static int tee_netdev_event(struct notifier_block *this, unsigned long event,
200 void *ptr)
201{
202 struct net_device *dev = ptr;
203 struct xt_tee_priv *priv;
204
205 priv = container_of(this, struct xt_tee_priv, notifier);
206 switch (event) {
207 case NETDEV_REGISTER:
208 if (!strcmp(dev->name, priv->tginfo->oif))
209 priv->oif = dev->ifindex;
210 break;
211 case NETDEV_UNREGISTER:
212 if (dev->ifindex == priv->oif)
213 priv->oif = -1;
214 break;
215 case NETDEV_CHANGENAME:
216 if (!strcmp(dev->name, priv->tginfo->oif))
217 priv->oif = dev->ifindex;
218 else if (dev->ifindex == priv->oif)
219 priv->oif = -1;
220 break;
221 }
222
223 return NOTIFY_DONE;
224}
225
Jan Engelhardte281b192010-04-19 14:17:47 +0200226static int tee_tg_check(const struct xt_tgchk_param *par)
227{
Patrick McHardy22265a52010-04-20 15:07:32 +0200228 struct xt_tee_tginfo *info = par->targinfo;
229 struct xt_tee_priv *priv;
Jan Engelhardte281b192010-04-19 14:17:47 +0200230
Jan Engelhardte281b192010-04-19 14:17:47 +0200231 /* 0.0.0.0 and :: not allowed */
Patrick McHardy22265a52010-04-20 15:07:32 +0200232 if (memcmp(&info->gw, &tee_zero_address,
233 sizeof(tee_zero_address)) == 0)
234 return -EINVAL;
235
236 if (info->oif[0]) {
237 if (info->oif[sizeof(info->oif)-1] != '\0')
238 return -EINVAL;
239
240 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
241 if (priv == NULL)
242 return -ENOMEM;
243
244 priv->tginfo = info;
245 priv->oif = -1;
246 priv->notifier.notifier_call = tee_netdev_event;
247 info->priv = priv;
248
249 register_netdevice_notifier(&priv->notifier);
250 } else
251 info->priv = NULL;
252
253 return 0;
254}
255
256static void tee_tg_destroy(const struct xt_tgdtor_param *par)
257{
258 struct xt_tee_tginfo *info = par->targinfo;
259
260 if (info->priv) {
261 unregister_netdevice_notifier(&info->priv->notifier);
262 kfree(info->priv);
263 }
Jan Engelhardte281b192010-04-19 14:17:47 +0200264}
265
266static struct xt_target tee_tg_reg[] __read_mostly = {
267 {
268 .name = "TEE",
269 .revision = 1,
270 .family = NFPROTO_IPV4,
271 .target = tee_tg4,
272 .targetsize = sizeof(struct xt_tee_tginfo),
273 .checkentry = tee_tg_check,
Patrick McHardy22265a52010-04-20 15:07:32 +0200274 .destroy = tee_tg_destroy,
Jan Engelhardte281b192010-04-19 14:17:47 +0200275 .me = THIS_MODULE,
276 },
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000277#if IS_ENABLED(CONFIG_IPV6)
Jan Engelhardte281b192010-04-19 14:17:47 +0200278 {
279 .name = "TEE",
280 .revision = 1,
281 .family = NFPROTO_IPV6,
282 .target = tee_tg6,
283 .targetsize = sizeof(struct xt_tee_tginfo),
284 .checkentry = tee_tg_check,
Patrick McHardy22265a52010-04-20 15:07:32 +0200285 .destroy = tee_tg_destroy,
Jan Engelhardte281b192010-04-19 14:17:47 +0200286 .me = THIS_MODULE,
287 },
288#endif
289};
290
291static int __init tee_tg_init(void)
292{
293 return xt_register_targets(tee_tg_reg, ARRAY_SIZE(tee_tg_reg));
294}
295
296static void __exit tee_tg_exit(void)
297{
298 xt_unregister_targets(tee_tg_reg, ARRAY_SIZE(tee_tg_reg));
299}
300
301module_init(tee_tg_init);
302module_exit(tee_tg_exit);
303MODULE_AUTHOR("Sebastian Claßen <sebastian.classen@freenet.ag>");
304MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
305MODULE_DESCRIPTION("Xtables: Reroute packet copy");
306MODULE_LICENSE("GPL");
307MODULE_ALIAS("ipt_TEE");
308MODULE_ALIAS("ip6t_TEE");