blob: 0471db4032c5ea6eb839229124762cbf1901e53f [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 */
Jan Engelhardte281b192010-04-19 14:17:47 +020013#include <linux/module.h>
Jan Engelhardte281b192010-04-19 14:17:47 +020014#include <linux/skbuff.h>
Pablo Neira Ayusobbde9fc2015-05-31 17:54:44 +020015#include <linux/route.h>
Jan Engelhardte281b192010-04-19 14:17:47 +020016#include <linux/netfilter/x_tables.h>
Pablo Neira Ayusobbde9fc2015-05-31 17:54:44 +020017#include <net/route.h>
18#include <net/netfilter/ipv4/nf_dup_ipv4.h>
19#include <net/netfilter/ipv6/nf_dup_ipv6.h>
Jan Engelhardte281b192010-04-19 14:17:47 +020020#include <linux/netfilter/xt_TEE.h>
Jan Engelhardte281b192010-04-19 14:17:47 +020021
Patrick McHardy22265a52010-04-20 15:07:32 +020022struct xt_tee_priv {
23 struct notifier_block notifier;
24 struct xt_tee_tginfo *tginfo;
25 int oif;
26};
27
Jan Engelhardte281b192010-04-19 14:17:47 +020028static const union nf_inet_addr tee_zero_address;
29
Jan Engelhardte281b192010-04-19 14:17:47 +020030static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +020031tee_tg4(struct sk_buff *skb, const struct xt_action_param *par)
Jan Engelhardte281b192010-04-19 14:17:47 +020032{
33 const struct xt_tee_tginfo *info = par->targinfo;
Eric Dumazet45efccd2015-10-19 18:02:01 -070034 int oif = info->priv ? info->priv->oif : 0;
Jan Engelhardte281b192010-04-19 14:17:47 +020035
David S. Millerd9c7dbc2015-11-04 20:47:50 -050036 nf_dup_ipv4(par->net, skb, par->hooknum, &info->gw.in, oif);
Jan Engelhardte281b192010-04-19 14:17:47 +020037
Jan Engelhardte281b192010-04-19 14:17:47 +020038 return XT_CONTINUE;
39}
40
Arnd Bergmann08a7f5d2016-02-05 10:20:21 +010041#if IS_ENABLED(CONFIG_IPV6)
Jan Engelhardte281b192010-04-19 14:17:47 +020042static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +020043tee_tg6(struct sk_buff *skb, const struct xt_action_param *par)
Jan Engelhardte281b192010-04-19 14:17:47 +020044{
45 const struct xt_tee_tginfo *info = par->targinfo;
Eric Dumazet45efccd2015-10-19 18:02:01 -070046 int oif = info->priv ? info->priv->oif : 0;
Jan Engelhardte281b192010-04-19 14:17:47 +020047
David S. Millerd9c7dbc2015-11-04 20:47:50 -050048 nf_dup_ipv6(par->net, skb, par->hooknum, &info->gw.in6, oif);
Jan Engelhardte281b192010-04-19 14:17:47 +020049
Jan Engelhardte281b192010-04-19 14:17:47 +020050 return XT_CONTINUE;
51}
Eric Dumazetdfd56b82011-12-10 09:48:31 +000052#endif
Jan Engelhardte281b192010-04-19 14:17:47 +020053
Patrick McHardy22265a52010-04-20 15:07:32 +020054static int tee_netdev_event(struct notifier_block *this, unsigned long event,
55 void *ptr)
56{
Jiri Pirko351638e2013-05-28 01:30:21 +000057 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Patrick McHardy22265a52010-04-20 15:07:32 +020058 struct xt_tee_priv *priv;
59
60 priv = container_of(this, struct xt_tee_priv, notifier);
61 switch (event) {
62 case NETDEV_REGISTER:
63 if (!strcmp(dev->name, priv->tginfo->oif))
64 priv->oif = dev->ifindex;
65 break;
66 case NETDEV_UNREGISTER:
67 if (dev->ifindex == priv->oif)
68 priv->oif = -1;
69 break;
70 case NETDEV_CHANGENAME:
71 if (!strcmp(dev->name, priv->tginfo->oif))
72 priv->oif = dev->ifindex;
73 else if (dev->ifindex == priv->oif)
74 priv->oif = -1;
75 break;
76 }
77
78 return NOTIFY_DONE;
79}
80
Jan Engelhardte281b192010-04-19 14:17:47 +020081static int tee_tg_check(const struct xt_tgchk_param *par)
82{
Patrick McHardy22265a52010-04-20 15:07:32 +020083 struct xt_tee_tginfo *info = par->targinfo;
84 struct xt_tee_priv *priv;
Jan Engelhardte281b192010-04-19 14:17:47 +020085
Jan Engelhardte281b192010-04-19 14:17:47 +020086 /* 0.0.0.0 and :: not allowed */
Patrick McHardy22265a52010-04-20 15:07:32 +020087 if (memcmp(&info->gw, &tee_zero_address,
88 sizeof(tee_zero_address)) == 0)
89 return -EINVAL;
90
91 if (info->oif[0]) {
Gao Feng4e6577d2016-09-09 23:25:09 +080092 int ret;
93
Patrick McHardy22265a52010-04-20 15:07:32 +020094 if (info->oif[sizeof(info->oif)-1] != '\0')
95 return -EINVAL;
96
97 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
98 if (priv == NULL)
99 return -ENOMEM;
100
101 priv->tginfo = info;
102 priv->oif = -1;
103 priv->notifier.notifier_call = tee_netdev_event;
104 info->priv = priv;
105
Gao Feng4e6577d2016-09-09 23:25:09 +0800106 ret = register_netdevice_notifier(&priv->notifier);
107 if (ret) {
108 kfree(priv);
109 return ret;
110 }
Patrick McHardy22265a52010-04-20 15:07:32 +0200111 } else
112 info->priv = NULL;
113
Florian Westphaldcebd312015-07-14 17:51:09 +0200114 static_key_slow_inc(&xt_tee_enabled);
Patrick McHardy22265a52010-04-20 15:07:32 +0200115 return 0;
116}
117
118static void tee_tg_destroy(const struct xt_tgdtor_param *par)
119{
120 struct xt_tee_tginfo *info = par->targinfo;
121
122 if (info->priv) {
123 unregister_netdevice_notifier(&info->priv->notifier);
124 kfree(info->priv);
125 }
Florian Westphaldcebd312015-07-14 17:51:09 +0200126 static_key_slow_dec(&xt_tee_enabled);
Jan Engelhardte281b192010-04-19 14:17:47 +0200127}
128
129static struct xt_target tee_tg_reg[] __read_mostly = {
130 {
131 .name = "TEE",
132 .revision = 1,
133 .family = NFPROTO_IPV4,
134 .target = tee_tg4,
135 .targetsize = sizeof(struct xt_tee_tginfo),
136 .checkentry = tee_tg_check,
Patrick McHardy22265a52010-04-20 15:07:32 +0200137 .destroy = tee_tg_destroy,
Jan Engelhardte281b192010-04-19 14:17:47 +0200138 .me = THIS_MODULE,
139 },
Arnd Bergmann08a7f5d2016-02-05 10:20:21 +0100140#if IS_ENABLED(CONFIG_IPV6)
Jan Engelhardte281b192010-04-19 14:17:47 +0200141 {
142 .name = "TEE",
143 .revision = 1,
144 .family = NFPROTO_IPV6,
145 .target = tee_tg6,
146 .targetsize = sizeof(struct xt_tee_tginfo),
147 .checkentry = tee_tg_check,
Patrick McHardy22265a52010-04-20 15:07:32 +0200148 .destroy = tee_tg_destroy,
Jan Engelhardte281b192010-04-19 14:17:47 +0200149 .me = THIS_MODULE,
150 },
151#endif
152};
153
154static int __init tee_tg_init(void)
155{
156 return xt_register_targets(tee_tg_reg, ARRAY_SIZE(tee_tg_reg));
157}
158
159static void __exit tee_tg_exit(void)
160{
161 xt_unregister_targets(tee_tg_reg, ARRAY_SIZE(tee_tg_reg));
162}
163
164module_init(tee_tg_init);
165module_exit(tee_tg_exit);
166MODULE_AUTHOR("Sebastian Claßen <sebastian.classen@freenet.ag>");
167MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
168MODULE_DESCRIPTION("Xtables: Reroute packet copy");
169MODULE_LICENSE("GPL");
170MODULE_ALIAS("ipt_TEE");
171MODULE_ALIAS("ip6t_TEE");