blob: b2ccbc4731277d5215d2c82c0d29d1387ae81e13 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * IPv6 over IPv4 tunnel device - Simple Internet Transition (SIT)
4 * Linux INET6 implementation
5 *
6 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09007 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Changes:
11 * Roger Venning <r.venning@telstra.com>: 6to4 support
12 * Nate Thompson <nate@thebog.net>: 6to4 support
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -040013 * Fred Templin <fred.l.templin@boeing.com>: isatap support
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Joe Perchesf3213832012-05-15 14:11:53 +000016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080019#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/errno.h>
21#include <linux/types.h>
22#include <linux/socket.h>
23#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/net.h>
25#include <linux/in6.h>
26#include <linux/netdevice.h>
27#include <linux/if_arp.h>
28#include <linux/icmp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080030#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/init.h>
32#include <linux/netfilter_ipv4.h>
Kris Katterjohn46f25df2006-01-05 16:35:42 -080033#include <linux/if_ether.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <net/sock.h>
36#include <net/snmp.h>
37
38#include <net/ipv6.h>
39#include <net/protocol.h>
40#include <net/transp_v6.h>
41#include <net/ip6_fib.h>
42#include <net/ip6_route.h>
43#include <net/ndisc.h>
44#include <net/addrconf.h>
45#include <net/ip.h>
46#include <net/udp.h>
47#include <net/icmp.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000048#include <net/ip_tunnels.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/inet_ecn.h>
50#include <net/xfrm.h>
51#include <net/dsfield.h>
Pavel Emelyanov8190d902008-04-16 01:15:17 -070052#include <net/net_namespace.h>
53#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*
56 This version of net/ipv6/sit.c is cloned of net/ipv4/ip_gre.c
57
58 For comments look at net/ipv4/ip_gre.c --ANK
59 */
60
Jiri Kosinae87a8f22016-08-10 11:03:35 +020061#define IP6_SIT_HASH_SIZE 16
Al Viroe69a4ad2006-11-14 20:56:00 -080062#define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +000064static bool log_ecn_error = true;
65module_param(log_ecn_error, bool, 0644);
66MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
67
Eric Dumazet15fc1f72010-09-27 00:38:18 +000068static int ipip6_tunnel_init(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static void ipip6_tunnel_setup(struct net_device *dev);
Eric Dumazet15fc1f72010-09-27 00:38:18 +000070static void ipip6_dev_free(struct net_device *dev);
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +000071static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst,
72 __be32 *v4dst);
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +000073static struct rtnl_link_ops sit_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030075static unsigned int sit_net_id __read_mostly;
Pavel Emelyanov8190d902008-04-16 01:15:17 -070076struct sit_net {
Jiri Kosinae87a8f22016-08-10 11:03:35 +020077 struct ip_tunnel __rcu *tunnels_r_l[IP6_SIT_HASH_SIZE];
78 struct ip_tunnel __rcu *tunnels_r[IP6_SIT_HASH_SIZE];
79 struct ip_tunnel __rcu *tunnels_l[IP6_SIT_HASH_SIZE];
Eric Dumazet3a43be32010-09-15 11:35:10 +000080 struct ip_tunnel __rcu *tunnels_wc[1];
81 struct ip_tunnel __rcu **tunnels[4];
Pavel Emelyanov29182172008-04-16 01:16:38 -070082
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -070083 struct net_device *fb_tunnel_dev;
Pavel Emelyanov8190d902008-04-16 01:15:17 -070084};
85
Eric Dumazet4543c102009-10-23 17:52:14 +000086/*
87 * Must be invoked with rcu_read_lock
88 */
Eldad Zack3e866702012-04-01 07:49:01 +000089static struct ip_tunnel *ipip6_tunnel_lookup(struct net *net,
David Ahern3051fbe2017-10-30 10:07:17 -070090 struct net_device *dev,
91 __be32 remote, __be32 local,
92 int sifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Eric Dumazet3a43be32010-09-15 11:35:10 +000094 unsigned int h0 = HASH(remote);
95 unsigned int h1 = HASH(local);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 struct ip_tunnel *t;
Pavel Emelyanov29182172008-04-16 01:16:38 -070097 struct sit_net *sitn = net_generic(net, sit_net_id);
David Ahern3051fbe2017-10-30 10:07:17 -070098 int ifindex = dev ? dev->ifindex : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Amerigo Wange086cad2012-11-11 21:52:34 +0000100 for_each_ip_tunnel_rcu(t, sitn->tunnels_r_l[h0 ^ h1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (local == t->parms.iph.saddr &&
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000102 remote == t->parms.iph.daddr &&
David Ahern3051fbe2017-10-30 10:07:17 -0700103 (!dev || !t->parms.link || ifindex == t->parms.link ||
104 sifindex == t->parms.link) &&
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000105 (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return t;
107 }
Amerigo Wange086cad2012-11-11 21:52:34 +0000108 for_each_ip_tunnel_rcu(t, sitn->tunnels_r[h0]) {
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000109 if (remote == t->parms.iph.daddr &&
David Ahern3051fbe2017-10-30 10:07:17 -0700110 (!dev || !t->parms.link || ifindex == t->parms.link ||
111 sifindex == t->parms.link) &&
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000112 (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return t;
114 }
Amerigo Wange086cad2012-11-11 21:52:34 +0000115 for_each_ip_tunnel_rcu(t, sitn->tunnels_l[h1]) {
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000116 if (local == t->parms.iph.saddr &&
David Ahern3051fbe2017-10-30 10:07:17 -0700117 (!dev || !t->parms.link || ifindex == t->parms.link ||
118 sifindex == t->parms.link) &&
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000119 (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return t;
121 }
Eric Dumazet4543c102009-10-23 17:52:14 +0000122 t = rcu_dereference(sitn->tunnels_wc[0]);
Ian Morris53b24b82015-03-29 14:00:05 +0100123 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return t;
125 return NULL;
126}
127
Eric Dumazet3a43be32010-09-15 11:35:10 +0000128static struct ip_tunnel __rcu **__ipip6_bucket(struct sit_net *sitn,
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700129 struct ip_tunnel_parm *parms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900131 __be32 remote = parms->iph.daddr;
132 __be32 local = parms->iph.saddr;
Eric Dumazet3a43be32010-09-15 11:35:10 +0000133 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 int prio = 0;
135
136 if (remote) {
137 prio |= 2;
138 h ^= HASH(remote);
139 }
140 if (local) {
141 prio |= 1;
142 h ^= HASH(local);
143 }
Pavel Emelyanov29182172008-04-16 01:16:38 -0700144 return &sitn->tunnels[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Eric Dumazet3a43be32010-09-15 11:35:10 +0000147static inline struct ip_tunnel __rcu **ipip6_bucket(struct sit_net *sitn,
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700148 struct ip_tunnel *t)
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900149{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700150 return __ipip6_bucket(sitn, &t->parms);
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900151}
152
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700153static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Eric Dumazet3a43be32010-09-15 11:35:10 +0000155 struct ip_tunnel __rcu **tp;
156 struct ip_tunnel *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Eric Dumazet3a43be32010-09-15 11:35:10 +0000158 for (tp = ipip6_bucket(sitn, t);
159 (iter = rtnl_dereference(*tp)) != NULL;
160 tp = &iter->next) {
161 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000162 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 break;
164 }
165 }
166}
167
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700168static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Eric Dumazet3a43be32010-09-15 11:35:10 +0000170 struct ip_tunnel __rcu **tp = ipip6_bucket(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric Dumazetcf778b02012-01-12 04:41:32 +0000172 rcu_assign_pointer(t->next, rtnl_dereference(*tp));
173 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +0000176static void ipip6_tunnel_clone_6rd(struct net_device *dev, struct sit_net *sitn)
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000177{
178#ifdef CONFIG_IPV6_SIT_6RD
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +0000179 struct ip_tunnel *t = netdev_priv(dev);
180
Eric Dumazet79134e62018-03-08 12:51:41 -0800181 if (dev == sitn->fb_tunnel_dev || !sitn->fb_tunnel_dev) {
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000182 ipv6_addr_set(&t->ip6rd.prefix, htonl(0x20020000), 0, 0, 0);
183 t->ip6rd.relay_prefix = 0;
184 t->ip6rd.prefixlen = 16;
185 t->ip6rd.relay_prefixlen = 0;
186 } else {
187 struct ip_tunnel *t0 = netdev_priv(sitn->fb_tunnel_dev);
188 memcpy(&t->ip6rd, &t0->ip6rd, sizeof(t->ip6rd));
189 }
190#endif
191}
192
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000193static int ipip6_tunnel_create(struct net_device *dev)
194{
195 struct ip_tunnel *t = netdev_priv(dev);
196 struct net *net = dev_net(dev);
197 struct sit_net *sitn = net_generic(net, sit_net_id);
198 int err;
199
Steffen Klassertebe084a2014-11-03 09:19:29 +0100200 memcpy(dev->dev_addr, &t->parms.iph.saddr, 4);
201 memcpy(dev->broadcast, &t->parms.iph.daddr, 4);
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000202
Nicolas Dichteld440b722012-11-15 04:06:41 +0000203 if ((__force u16)t->parms.i_flags & SIT_ISATAP)
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000204 dev->priv_flags |= IFF_ISATAP;
205
Thadeu Lima de Souza Cascardo87e57392016-01-25 11:29:19 -0200206 dev->rtnl_link_ops = &sit_link_ops;
207
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000208 err = register_netdevice(dev);
209 if (err < 0)
210 goto out;
211
Steffen Klassertebe084a2014-11-03 09:19:29 +0100212 ipip6_tunnel_clone_6rd(dev, sitn);
213
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000214 dev_hold(dev);
215
216 ipip6_tunnel_link(sitn, t);
217 return 0;
218
219out:
220 return err;
221}
222
Eric Dumazet3a43be32010-09-15 11:35:10 +0000223static struct ip_tunnel *ipip6_tunnel_locate(struct net *net,
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700224 struct ip_tunnel_parm *parms, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Al Viroe69a4ad2006-11-14 20:56:00 -0800226 __be32 remote = parms->iph.daddr;
227 __be32 local = parms->iph.saddr;
Eric Dumazet3a43be32010-09-15 11:35:10 +0000228 struct ip_tunnel *t, *nt;
229 struct ip_tunnel __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 char name[IFNAMSIZ];
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700232 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Eric Dumazet3a43be32010-09-15 11:35:10 +0000234 for (tp = __ipip6_bucket(sitn, parms);
235 (t = rtnl_dereference(*tp)) != NULL;
236 tp = &t->next) {
Sascha Hlusiak8db99e52009-05-19 12:56:48 +0000237 if (local == t->parms.iph.saddr &&
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000238 remote == t->parms.iph.daddr &&
239 parms->link == t->parms.link) {
Sascha Hlusiak8db99e52009-05-19 12:56:48 +0000240 if (create)
241 return NULL;
242 else
243 return t;
244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246 if (!create)
247 goto failed;
248
Eric Dumazetb95211e2018-04-05 06:39:28 -0700249 if (parms->name[0]) {
250 if (!dev_valid_name(parms->name))
251 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 strlcpy(name, parms->name, IFNAMSIZ);
Eric Dumazetb95211e2018-04-05 06:39:28 -0700253 } else {
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000254 strcpy(name, "sit%d");
Eric Dumazetb95211e2018-04-05 06:39:28 -0700255 }
Tom Gundersenc835a672014-07-14 16:37:24 +0200256 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
257 ipip6_tunnel_setup);
Ian Morris63159f22015-03-29 14:00:04 +0100258 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return NULL;
260
Pavel Emelyanov7a971462008-04-16 01:17:18 -0700261 dev_net_set(dev, net);
262
Patrick McHardy2941a482006-01-08 22:05:26 -0800263 nt = netdev_priv(dev);
Stephen Hemminger1326c3d2008-11-20 20:33:56 -0800264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 nt->parms = *parms;
Nicolas Dichtelf37234162012-11-14 05:14:07 +0000266 if (ipip6_tunnel_create(dev) < 0)
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800267 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return nt;
270
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800271failed_free:
David S. Millercf124db2017-05-08 12:52:56 -0400272 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273failed:
274 return NULL;
275}
276
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000277#define for_each_prl_rcu(start) \
278 for (prl = rcu_dereference(start); \
279 prl; \
280 prl = rcu_dereference(prl->next))
281
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400282static struct ip_tunnel_prl_entry *
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900283__ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400284{
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000285 struct ip_tunnel_prl_entry *prl;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400286
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000287 for_each_prl_rcu(t->prl)
288 if (prl->addr == addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400289 break;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000290 return prl;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400291
292}
293
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700294static int ipip6_tunnel_get_prl(struct ip_tunnel *t,
295 struct ip_tunnel_prl __user *a)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900296{
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700297 struct ip_tunnel_prl kprl, *kp;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900298 struct ip_tunnel_prl_entry *prl;
299 unsigned int cmax, c = 0, ca, len;
300 int ret = 0;
301
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700302 if (copy_from_user(&kprl, a, sizeof(kprl)))
303 return -EFAULT;
304 cmax = kprl.datalen / sizeof(kprl);
305 if (cmax > 1 && kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900306 cmax = 1;
307
308 /* For simple GET or for root users,
309 * we try harder to allocate.
310 */
311 kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
WANG Cong0ccc22f2017-06-22 15:29:33 -0700312 kcalloc(cmax, sizeof(*kp), GFP_KERNEL | __GFP_NOWARN) :
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900313 NULL;
314
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000315 rcu_read_lock();
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900316
317 ca = t->prl_count < cmax ? t->prl_count : cmax;
318
319 if (!kp) {
320 /* We don't try hard to allocate much memory for
321 * non-root users.
322 * For root users, retry allocating enough memory for
323 * the answer.
324 */
325 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
326 if (!kp) {
327 ret = -ENOMEM;
328 goto out;
329 }
330 }
331
332 c = 0;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000333 for_each_prl_rcu(t->prl) {
Sascha Hlusiak298bf122009-09-29 11:27:05 +0000334 if (c >= cmax)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900335 break;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700336 if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900337 continue;
338 kp[c].addr = prl->addr;
339 kp[c].flags = prl->flags;
340 c++;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700341 if (kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900342 break;
343 }
344out:
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000345 rcu_read_unlock();
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900346
347 len = sizeof(*kp) * c;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700348 ret = 0;
349 if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen))
350 ret = -EFAULT;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900351
352 kfree(kp);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900353
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700354 return ret;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900355}
356
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400357static int
358ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
359{
360 struct ip_tunnel_prl_entry *p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900361 int err = 0;
362
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900363 if (a->addr == htonl(INADDR_ANY))
364 return -EINVAL;
365
Eric Dumazetaac4ddd2010-06-01 00:26:58 -0700366 ASSERT_RTNL();
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400367
Eric Dumazet3a43be32010-09-15 11:35:10 +0000368 for (p = rtnl_dereference(t->prl); p; p = rtnl_dereference(p->next)) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900369 if (p->addr == a->addr) {
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000370 if (chg) {
371 p->flags = a->flags;
372 goto out;
373 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900374 err = -EEXIST;
375 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400376 }
377 }
378
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900379 if (chg) {
380 err = -ENXIO;
381 goto out;
382 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400383
384 p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900385 if (!p) {
386 err = -ENOBUFS;
387 goto out;
388 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400389
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400390 p->next = t->prl;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900391 p->addr = a->addr;
392 p->flags = a->flags;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000393 t->prl_count++;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000394 rcu_assign_pointer(t->prl, p);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900395out:
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900396 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400397}
398
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000399static void prl_list_destroy_rcu(struct rcu_head *head)
400{
401 struct ip_tunnel_prl_entry *p, *n;
402
403 p = container_of(head, struct ip_tunnel_prl_entry, rcu_head);
404 do {
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000405 n = rcu_dereference_protected(p->next, 1);
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000406 kfree(p);
407 p = n;
408 } while (p);
409}
410
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400411static int
412ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
413{
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000414 struct ip_tunnel_prl_entry *x;
415 struct ip_tunnel_prl_entry __rcu **p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900416 int err = 0;
417
Eric Dumazetaac4ddd2010-06-01 00:26:58 -0700418 ASSERT_RTNL();
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400419
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900420 if (a && a->addr != htonl(INADDR_ANY)) {
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000421 for (p = &t->prl;
422 (x = rtnl_dereference(*p)) != NULL;
423 p = &x->next) {
424 if (x->addr == a->addr) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400425 *p = x->next;
Paul E. McKenney11c476f32011-05-02 00:56:57 -0700426 kfree_rcu(x, rcu_head);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900427 t->prl_count--;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900428 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400429 }
430 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900431 err = -ENXIO;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400432 } else {
Eric Dumazet753ea8e2011-01-20 07:16:24 +0000433 x = rtnl_dereference(t->prl);
434 if (x) {
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000435 t->prl_count = 0;
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000436 call_rcu(&x->rcu_head, prl_list_destroy_rcu);
437 t->prl = NULL;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400438 }
439 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900440out:
Sascha Hlusiak4b27960172009-05-19 12:56:50 +0000441 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400442}
443
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400444static int
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000445isatap_chksrc(struct sk_buff *skb, const struct iphdr *iph, struct ip_tunnel *t)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400446{
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900447 struct ip_tunnel_prl_entry *p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400448 int ok = 1;
449
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000450 rcu_read_lock();
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900451 p = __ipip6_tunnel_locate_prl(t, iph->saddr);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400452 if (p) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900453 if (p->flags & PRL_DEFAULT)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400454 skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
455 else
456 skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
457 } else {
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000458 const struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
459
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400460 if (ipv6_addr_is_isatap(addr6) &&
461 (addr6->s6_addr32[3] == iph->saddr) &&
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -0400462 ipv6_chk_prefix(addr6, t->dev))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400463 skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
464 else
465 ok = 0;
466 }
Eric Dumazetef9a9d12009-10-23 17:51:26 +0000467 rcu_read_unlock();
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400468 return ok;
469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471static void ipip6_tunnel_uninit(struct net_device *dev)
472{
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +0200473 struct ip_tunnel *tunnel = netdev_priv(dev);
474 struct sit_net *sitn = net_generic(tunnel->net, sit_net_id);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700475
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700476 if (dev == sitn->fb_tunnel_dev) {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000477 RCU_INIT_POINTER(sitn->tunnels_wc[0], NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 } else {
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +0200479 ipip6_tunnel_unlink(sitn, tunnel);
480 ipip6_tunnel_del_prl(tunnel, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
Paolo Abenie09acdd2016-02-12 15:43:55 +0100482 dst_cache_reset(&tunnel->dst_cache);
Eric Dumazet3a43be32010-09-15 11:35:10 +0000483 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800486static int ipip6_err(struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000488 const struct iphdr *iph = (const struct iphdr *)skb->data;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300489 const int type = icmp_hdr(skb)->type;
490 const int code = icmp_hdr(skb)->code;
Eric Dumazet20e19542016-06-18 21:52:06 -0700491 unsigned int data_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct ip_tunnel *t;
David Ahern3051fbe2017-10-30 10:07:17 -0700493 int sifindex;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800494 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 switch (type) {
497 default:
498 case ICMP_PARAMETERPROB:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 case ICMP_DEST_UNREACH:
502 switch (code) {
503 case ICMP_SR_FAILED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* Impossible event. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800505 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 default:
507 /* All others are translated to HOST_UNREACH.
508 rfc2003 contains "deep thoughts" about NET_UNREACH,
509 I believe they are just ether pollution. --ANK
510 */
511 break;
512 }
513 break;
514 case ICMP_TIME_EXCEEDED:
515 if (code != ICMP_EXC_TTL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800516 return 0;
Eric Dumazet20e19542016-06-18 21:52:06 -0700517 data_len = icmp_hdr(skb)->un.reserved[1] * 4; /* RFC 4884 4.1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700519 case ICMP_REDIRECT:
520 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800523 err = -ENOENT;
524
David Ahern3051fbe2017-10-30 10:07:17 -0700525 sifindex = netif_is_l3_master(skb->dev) ? IPCB(skb)->iif : 0;
526 t = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
527 iph->daddr, iph->saddr, sifindex);
Ian Morris63159f22015-03-29 14:00:04 +0100528 if (!t)
David S. Miller36393392012-06-14 22:21:46 -0700529 goto out;
530
531 if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED) {
532 ipv4_update_pmtu(skb, dev_net(skb->dev), info,
Maciej Żenczykowskid888f392018-09-25 20:56:26 -0700533 t->parms.link, iph->protocol);
David S. Miller36393392012-06-14 22:21:46 -0700534 err = 0;
535 goto out;
536 }
David S. Millerec18d9a2012-07-12 00:25:15 -0700537 if (type == ICMP_REDIRECT) {
Maciej Żenczykowski1042caa2018-09-25 20:56:27 -0700538 ipv4_redirect(skb, dev_net(skb->dev), t->parms.link,
539 iph->protocol);
David S. Millerec18d9a2012-07-12 00:25:15 -0700540 err = 0;
541 goto out;
542 }
David S. Miller36393392012-06-14 22:21:46 -0700543
Eric Dumazet2d7a3b22016-06-18 21:52:04 -0700544 err = 0;
Hangbin Liu173656a2019-02-07 18:36:11 +0800545 if (__in6_dev_get(skb->dev) &&
546 !ip6_err_gen_icmpv6_unreach(skb, iph->ihl * 4, type, data_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 goto out;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800548
Eric Dumazet2d7a3b22016-06-18 21:52:04 -0700549 if (t->parms.iph.daddr == 0)
Oussama Ghorbelca15a072013-11-22 16:23:20 +0100550 goto out;
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
553 goto out;
554
Wei Yongjunbb800872009-02-24 23:37:19 -0800555 if (time_before(jiffies, t->err_time + IPTUNNEL_ERR_TIMEO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 t->err_count++;
557 else
558 t->err_count = 1;
559 t->err_time = jiffies;
560out:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800561 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000564static inline bool is_spoofed_6rd(struct ip_tunnel *tunnel, const __be32 v4addr,
565 const struct in6_addr *v6addr)
566{
567 __be32 v4embed = 0;
568 if (check_6rd(tunnel, v6addr, &v4embed) && v4addr != v4embed)
569 return true;
570 return false;
571}
572
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +0300573/* Checks if an address matches an address on the tunnel interface.
574 * Used to detect the NAT of proto 41 packets and let them pass spoofing test.
575 * Long story:
576 * This function is called after we considered the packet as spoofed
577 * in is_spoofed_6rd.
578 * We may have a router that is doing NAT for proto 41 packets
579 * for an internal station. Destination a.a.a.a/PREFIX:bbbb:bbbb
580 * will be translated to n.n.n.n/PREFIX:bbbb:bbbb. And is_spoofed_6rd
581 * function will return true, dropping the packet.
582 * But, we can still check if is spoofed against the IP
583 * addresses associated with the interface.
584 */
585static bool only_dnatted(const struct ip_tunnel *tunnel,
586 const struct in6_addr *v6dst)
587{
588 int prefix_len;
589
590#ifdef CONFIG_IPV6_SIT_6RD
591 prefix_len = tunnel->ip6rd.prefixlen + 32
592 - tunnel->ip6rd.relay_prefixlen;
593#else
594 prefix_len = 48;
595#endif
596 return ipv6_chk_custom_prefix(v6dst, prefix_len, tunnel->dev);
597}
598
599/* Returns true if a packet is spoofed */
600static bool packet_is_spoofed(struct sk_buff *skb,
601 const struct iphdr *iph,
602 struct ip_tunnel *tunnel)
603{
604 const struct ipv6hdr *ipv6h;
605
606 if (tunnel->dev->priv_flags & IFF_ISATAP) {
607 if (!isatap_chksrc(skb, iph, tunnel))
608 return true;
609
610 return false;
611 }
612
613 if (tunnel->dev->flags & IFF_POINTOPOINT)
614 return false;
615
616 ipv6h = ipv6_hdr(skb);
617
618 if (unlikely(is_spoofed_6rd(tunnel, iph->saddr, &ipv6h->saddr))) {
619 net_warn_ratelimited("Src spoofed %pI4/%pI6c -> %pI4/%pI6c\n",
620 &iph->saddr, &ipv6h->saddr,
621 &iph->daddr, &ipv6h->daddr);
622 return true;
623 }
624
625 if (likely(!is_spoofed_6rd(tunnel, iph->daddr, &ipv6h->daddr)))
626 return false;
627
628 if (only_dnatted(tunnel, &ipv6h->daddr))
629 return false;
630
631 net_warn_ratelimited("Dst spoofed %pI4/%pI6c -> %pI4/%pI6c\n",
632 &iph->saddr, &ipv6h->saddr,
633 &iph->daddr, &ipv6h->daddr);
634 return true;
635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637static int ipip6_rcv(struct sk_buff *skb)
638{
Hannes Frederic Sowa1ad759d2013-01-18 09:18:17 +0000639 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct ip_tunnel *tunnel;
David Ahern3051fbe2017-10-30 10:07:17 -0700641 int sifindex;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000642 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
David Ahern3051fbe2017-10-30 10:07:17 -0700644 sifindex = netif_is_l3_master(skb->dev) ? IPCB(skb)->iif : 0;
Sascha Hlusiak4fddbf52009-05-19 12:56:49 +0000645 tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
David Ahern3051fbe2017-10-30 10:07:17 -0700646 iph->saddr, iph->daddr, sifindex);
Ian Morris53b24b82015-03-29 14:00:05 +0100647 if (tunnel) {
Li RongQing8f849852014-01-04 13:57:59 +0800648 struct pcpu_sw_netstats *tstats;
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000649
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +0000650 if (tunnel->parms.iph.protocol != IPPROTO_IPV6 &&
651 tunnel->parms.iph.protocol != 0)
652 goto out;
653
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700654 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700655 skb_reset_network_header(skb);
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800656 IPCB(skb)->flags = 0;
Jesse Grossa09a4c82016-03-19 09:32:02 -0700657 skb->dev = tunnel->dev;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100658
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +0300659 if (packet_is_spoofed(skb, iph, tunnel)) {
660 tunnel->dev->stats.rx_errors++;
661 goto out;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000662 }
663
Jesse Grossa09a4c82016-03-19 09:32:02 -0700664 if (iptunnel_pull_header(skb, 0, htons(ETH_P_IPV6),
665 !net_eq(tunnel->net, dev_net(tunnel->dev))))
666 goto out;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000667
Lorenzo Bianconibb9bd812019-04-04 16:37:53 +0200668 /* skb can be uncloned in iptunnel_pull_header, so
669 * old iph is no longer valid
670 */
671 iph = (const struct iphdr *)skb_mac_header(skb);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000672 err = IP_ECN_decapsulate(iph, skb);
673 if (unlikely(err)) {
674 if (log_ecn_error)
675 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
676 &iph->saddr, iph->tos);
677 if (err > 1) {
678 ++tunnel->dev->stats.rx_frame_errors;
679 ++tunnel->dev->stats.rx_errors;
680 goto out;
681 }
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100682 }
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700683
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000684 tstats = this_cpu_ptr(tunnel->dev->tstats);
Li RongQingc3ac17c2014-01-02 08:49:36 +0800685 u64_stats_update_begin(&tstats->syncp);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000686 tstats->rx_packets++;
687 tstats->rx_bytes += skb->len;
Li RongQingc3ac17c2014-01-02 08:49:36 +0800688 u64_stats_update_end(&tstats->syncp);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000689
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000690 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return 0;
693 }
694
David McCullough6dcdd1b2010-11-29 19:32:34 +0000695 /* no tunnel matched, let upstream know, ipsec may handle it */
David McCullough6dcdd1b2010-11-29 19:32:34 +0000696 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697out:
David S. Miller36ca34c2008-05-08 23:40:26 -0700698 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return 0;
700}
701
Simon Horman49dbe7a2016-07-07 07:56:13 +0200702static const struct tnl_ptk_info ipip_tpi = {
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +0000703 /* no tunnel info required for ipip. */
704 .proto = htons(ETH_P_IP),
705};
706
Simon Horman49dbe7a2016-07-07 07:56:13 +0200707#if IS_ENABLED(CONFIG_MPLS)
708static const struct tnl_ptk_info mplsip_tpi = {
709 /* no tunnel info required for mplsip. */
710 .proto = htons(ETH_P_MPLS_UC),
711};
712#endif
713
714static int sit_tunnel_rcv(struct sk_buff *skb, u8 ipproto)
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +0000715{
Pravin B Shelar3d7b46c2013-06-17 17:50:02 -0700716 const struct iphdr *iph;
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +0000717 struct ip_tunnel *tunnel;
David Ahern3051fbe2017-10-30 10:07:17 -0700718 int sifindex;
719
720 sifindex = netif_is_l3_master(skb->dev) ? IPCB(skb)->iif : 0;
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +0000721
Pravin B Shelar3d7b46c2013-06-17 17:50:02 -0700722 iph = ip_hdr(skb);
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +0000723 tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
David Ahern3051fbe2017-10-30 10:07:17 -0700724 iph->saddr, iph->daddr, sifindex);
Ian Morris53b24b82015-03-29 14:00:05 +0100725 if (tunnel) {
Simon Horman49dbe7a2016-07-07 07:56:13 +0200726 const struct tnl_ptk_info *tpi;
727
728 if (tunnel->parms.iph.protocol != ipproto &&
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +0000729 tunnel->parms.iph.protocol != 0)
730 goto drop;
731
732 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
733 goto drop;
Simon Horman49dbe7a2016-07-07 07:56:13 +0200734#if IS_ENABLED(CONFIG_MPLS)
735 if (ipproto == IPPROTO_MPLS)
736 tpi = &mplsip_tpi;
737 else
738#endif
739 tpi = &ipip_tpi;
740 if (iptunnel_pull_header(skb, 0, tpi->proto, false))
Li Hongjun737e8282013-08-28 11:54:50 +0200741 goto drop;
Simon Horman49dbe7a2016-07-07 07:56:13 +0200742 return ip_tunnel_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +0000743 }
744
745 return 1;
746
747drop:
748 kfree_skb(skb);
749 return 0;
750}
751
Simon Horman49dbe7a2016-07-07 07:56:13 +0200752static int ipip_rcv(struct sk_buff *skb)
753{
754 return sit_tunnel_rcv(skb, IPPROTO_IPIP);
755}
756
757#if IS_ENABLED(CONFIG_MPLS)
758static int mplsip_rcv(struct sk_buff *skb)
759{
760 return sit_tunnel_rcv(skb, IPPROTO_MPLS);
761}
762#endif
763
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000764/*
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000765 * If the IPv6 address comes from 6rd / 6to4 (RFC 3056) addr space this function
766 * stores the embedded IPv4 address in v4dst and returns true.
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000767 */
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000768static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst,
769 __be32 *v4dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000771#ifdef CONFIG_IPV6_SIT_6RD
772 if (ipv6_prefix_equal(v6dst, &tunnel->ip6rd.prefix,
773 tunnel->ip6rd.prefixlen)) {
Eric Dumazet3a43be32010-09-15 11:35:10 +0000774 unsigned int pbw0, pbi0;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000775 int pbi1;
776 u32 d;
777
778 pbw0 = tunnel->ip6rd.prefixlen >> 5;
779 pbi0 = tunnel->ip6rd.prefixlen & 0x1f;
780
Miaohe Lina843dc42019-03-11 16:29:32 +0800781 d = tunnel->ip6rd.relay_prefixlen < 32 ?
782 (ntohl(v6dst->s6_addr32[pbw0]) << pbi0) >>
783 tunnel->ip6rd.relay_prefixlen : 0;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000784
785 pbi1 = pbi0 - tunnel->ip6rd.relay_prefixlen;
786 if (pbi1 > 0)
YOSHIFUJI Hideaki / 吉藤英明e7db38c2009-10-11 03:44:45 +0000787 d |= ntohl(v6dst->s6_addr32[pbw0 + 1]) >>
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000788 (32 - pbi1);
789
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000790 *v4dst = tunnel->ip6rd.relay_prefix | htonl(d);
791 return true;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000792 }
793#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (v6dst->s6_addr16[0] == htons(0x2002)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900795 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000796 memcpy(v4dst, &v6dst->s6_addr16[1], 4);
797 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +0000799#endif
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000800 return false;
801}
802
803static inline __be32 try_6rd(struct ip_tunnel *tunnel,
804 const struct in6_addr *v6dst)
805{
806 __be32 dst = 0;
807 check_6rd(tunnel, v6dst, &dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return dst;
809}
810
811/*
812 * This function assumes it is being called from dev_queue_xmit()
813 * and that skb is filled properly by that function.
814 */
815
Stephen Hemminger6fef4c02009-08-31 19:50:41 +0000816static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
817 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Patrick McHardy2941a482006-01-08 22:05:26 -0800819 struct ip_tunnel *tunnel = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000820 const struct iphdr *tiph = &tunnel->parms.iph;
821 const struct ipv6hdr *iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 u8 tos = tunnel->parms.iph.tos;
Herbert Xu292f4f32009-11-09 08:42:01 +0000823 __be16 df = tiph->frag_off;
Ian Morris67ba4152014-08-24 21:53:10 +0100824 struct rtable *rt; /* Route to the other host */
825 struct net_device *tdev; /* Device to other host */
826 unsigned int max_headroom; /* The extra header space needed */
Al Viroe69a4ad2006-11-14 20:56:00 -0800827 __be32 dst = tiph->daddr;
David S. Miller31e4543d2011-05-03 20:25:42 -0700828 struct flowi4 fl4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 int mtu;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000830 const struct in6_addr *addr6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 int addr_type;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -0700832 u8 ttl;
Tom Herbert14909662014-09-17 12:25:59 -0700833 u8 protocol = IPPROTO_IPV6;
834 int t_hlen = tunnel->hlen + sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Lionel Elie Mamanec2bceb32011-08-13 14:04:38 +0000836 if (tos == 1)
837 tos = ipv6_get_dsfield(iph6);
838
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100839 /* ISATAP (RFC4214) - must come before 6to4 */
840 if (dev->priv_flags & IFF_ISATAP) {
841 struct neighbour *neigh = NULL;
David S. Miller1e2927b2012-01-26 15:23:21 -0500842 bool do_tx_error = false;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100843
Eric Dumazetadf30902009-06-02 05:19:30 +0000844 if (skb_dst(skb))
David S. Miller1e2927b2012-01-26 15:23:21 -0500845 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100846
Ian Morris63159f22015-03-29 14:00:04 +0100847 if (!neigh) {
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +0300848 net_dbg_ratelimited("nexthop == NULL\n");
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100849 goto tx_error;
850 }
851
Eldad Zack3e866702012-04-01 07:49:01 +0000852 addr6 = (const struct in6_addr *)&neigh->primary_key;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100853 addr_type = ipv6_addr_type(addr6);
854
855 if ((addr_type & IPV6_ADDR_UNICAST) &&
856 ipv6_addr_is_isatap(addr6))
857 dst = addr6->s6_addr32[3];
858 else
David S. Miller1e2927b2012-01-26 15:23:21 -0500859 do_tx_error = true;
860
861 neigh_release(neigh);
862 if (do_tx_error)
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100863 goto tx_error;
864 }
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (!dst)
Hannes Frederic Sowa218774d2013-01-29 08:24:25 +0000867 dst = try_6rd(tunnel, &iph6->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 if (!dst) {
870 struct neighbour *neigh = NULL;
David S. Miller1e2927b2012-01-26 15:23:21 -0500871 bool do_tx_error = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Eric Dumazetadf30902009-06-02 05:19:30 +0000873 if (skb_dst(skb))
David S. Miller1e2927b2012-01-26 15:23:21 -0500874 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Ian Morris63159f22015-03-29 14:00:04 +0100876 if (!neigh) {
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +0300877 net_dbg_ratelimited("nexthop == NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 goto tx_error;
879 }
880
Eldad Zack3e866702012-04-01 07:49:01 +0000881 addr6 = (const struct in6_addr *)&neigh->primary_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 addr_type = ipv6_addr_type(addr6);
883
884 if (addr_type == IPV6_ADDR_ANY) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700885 addr6 = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 addr_type = ipv6_addr_type(addr6);
887 }
888
David S. Miller1e2927b2012-01-26 15:23:21 -0500889 if ((addr_type & IPV6_ADDR_COMPATv4) != 0)
890 dst = addr6->s6_addr32[3];
891 else
892 do_tx_error = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
David S. Miller1e2927b2012-01-26 15:23:21 -0500894 neigh_release(neigh);
895 if (do_tx_error)
896 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898
Craig Gallek9830ad42017-04-19 12:30:54 -0400899 flowi4_init_output(&fl4, tunnel->parms.link, tunnel->fwmark,
900 RT_TOS(tos), RT_SCOPE_UNIVERSE, IPPROTO_IPV6,
901 0, dst, tiph->saddr, 0, 0,
902 sock_net_uid(tunnel->net, NULL));
Craig Gallek9830ad42017-04-19 12:30:54 -0400903
Haishuang Yan6e3d1bb2019-07-14 21:31:22 +0800904 rt = dst_cache_get_ip4(&tunnel->dst_cache, &fl4.saddr);
905 if (!rt) {
906 rt = ip_route_output_flow(tunnel->net, &fl4, NULL);
907 if (IS_ERR(rt)) {
908 dev->stats.tx_carrier_errors++;
909 goto tx_error_icmp;
910 }
911 dst_cache_set_ip4(&tunnel->dst_cache, &rt->dst, fl4.saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
Haishuang Yan6e3d1bb2019-07-14 21:31:22 +0800913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (rt->rt_type != RTN_UNICAST) {
915 ip_rt_put(rt);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000916 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 goto tx_error_icmp;
918 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700919 tdev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 if (tdev == dev) {
922 ip_rt_put(rt);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000923 dev->stats.collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 goto tx_error;
925 }
926
Tom Herbert7e133182016-05-18 09:06:10 -0700927 if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP4)) {
Tom Herbert14909662014-09-17 12:25:59 -0700928 ip_rt_put(rt);
Alexander Duyckaed069d2016-04-14 15:33:37 -0400929 goto tx_error;
Tom Herbert14909662014-09-17 12:25:59 -0700930 }
931
Herbert Xu292f4f32009-11-09 08:42:01 +0000932 if (df) {
Tom Herbert14909662014-09-17 12:25:59 -0700933 mtu = dst_mtu(&rt->dst) - t_hlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Herbert Xu292f4f32009-11-09 08:42:01 +0000935 if (mtu < 68) {
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000936 dev->stats.collisions++;
Herbert Xu292f4f32009-11-09 08:42:01 +0000937 ip_rt_put(rt);
938 goto tx_error;
939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Herbert Xu292f4f32009-11-09 08:42:01 +0000941 if (mtu < IPV6_MIN_MTU) {
942 mtu = IPV6_MIN_MTU;
943 df = 0;
944 }
945
Nicolas Dichtelf15ca722018-01-25 19:03:03 +0100946 if (tunnel->parms.iph.daddr)
947 skb_dst_update_pmtu(skb, mtu);
Herbert Xu292f4f32009-11-09 08:42:01 +0000948
Eric Dumazet58a47822013-12-16 06:31:23 -0800949 if (skb->len > mtu && !skb_is_gso(skb)) {
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000950 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Herbert Xu292f4f32009-11-09 08:42:01 +0000951 ip_rt_put(rt);
952 goto tx_error;
953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955
956 if (tunnel->err_count > 0) {
Wei Yongjunbb800872009-02-24 23:37:19 -0800957 if (time_before(jiffies,
958 tunnel->err_time + IPTUNNEL_ERR_TIMEO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 tunnel->err_count--;
960 dst_link_failure(skb);
961 } else
962 tunnel->err_count = 0;
963 }
964
965 /*
966 * Okay, now see if we can stuff it in the buffer as-is.
967 */
Tom Herbert14909662014-09-17 12:25:59 -0700968 max_headroom = LL_RESERVED_SPACE(tdev) + t_hlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Patrick McHardycfbba492007-07-09 15:33:40 -0700970 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
971 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
973 if (!new_skb) {
974 ip_rt_put(rt);
Eric Dumazet15fc1f72010-09-27 00:38:18 +0000975 dev->stats.tx_dropped++;
Gao feng66028312013-11-25 17:21:24 +0800976 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000977 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979 if (skb->sk)
980 skb_set_owner_w(new_skb, skb->sk);
981 dev_kfree_skb(skb);
982 skb = new_skb;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700983 iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -0700985 ttl = tiph->ttl;
986 if (ttl == 0)
987 ttl = iph6->hop_limit;
988 tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Tom Herbert14909662014-09-17 12:25:59 -0700990 if (ip_tunnel_encap(skb, tunnel, &protocol, &fl4) < 0) {
Li RongQing6a9eadc2013-12-20 17:20:12 +0800991 ip_rt_put(rt);
Tom Herbert14909662014-09-17 12:25:59 -0700992 goto tx_error;
Li RongQing6a9eadc2013-12-20 17:20:12 +0800993 }
Hannes Frederic Sowa3d483052013-08-18 13:46:52 +0200994
Tom Herbert469471c2014-09-29 20:22:30 -0700995 skb_set_inner_ipproto(skb, IPPROTO_IPV6);
996
Pravin B Shelar039f5062015-12-24 14:34:54 -0800997 iptunnel_xmit(NULL, rt, skb, fl4.saddr, fl4.daddr, protocol, tos, ttl,
998 df, !net_eq(tunnel->net, dev_net(dev)));
Patrick McHardy6ed10652009-06-23 06:03:08 +0000999 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001tx_error_icmp:
1002 dst_link_failure(skb);
1003tx_error:
Gao feng66028312013-11-25 17:21:24 +08001004 kfree_skb(skb);
Eric Dumazet61c1db72013-10-20 20:47:30 -07001005 dev->stats.tx_errors++;
Patrick McHardy6ed10652009-06-23 06:03:08 +00001006 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
Simon Horman49dbe7a2016-07-07 07:56:13 +02001009static netdev_tx_t sit_tunnel_xmit__(struct sk_buff *skb,
1010 struct net_device *dev, u8 ipproto)
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001011{
1012 struct ip_tunnel *tunnel = netdev_priv(dev);
1013 const struct iphdr *tiph = &tunnel->parms.iph;
1014
Tom Herbert7e133182016-05-18 09:06:10 -07001015 if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP4))
Alexander Duyckaed069d2016-04-14 15:33:37 -04001016 goto tx_error;
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001017
Simon Horman49dbe7a2016-07-07 07:56:13 +02001018 skb_set_inner_ipproto(skb, ipproto);
Tom Herbert469471c2014-09-29 20:22:30 -07001019
Simon Horman49dbe7a2016-07-07 07:56:13 +02001020 ip_tunnel_xmit(skb, dev, tiph, ipproto);
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001021 return NETDEV_TX_OK;
Alexander Duyckaed069d2016-04-14 15:33:37 -04001022tx_error:
1023 kfree_skb(skb);
Eric Dumazet61c1db72013-10-20 20:47:30 -07001024 dev->stats.tx_errors++;
1025 return NETDEV_TX_OK;
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001026}
1027
1028static netdev_tx_t sit_tunnel_xmit(struct sk_buff *skb,
1029 struct net_device *dev)
1030{
Willem de Bruijncb9f1b72018-12-30 17:24:36 -05001031 if (!pskb_inet_may_pull(skb))
1032 goto tx_err;
1033
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001034 switch (skb->protocol) {
1035 case htons(ETH_P_IP):
Simon Horman49dbe7a2016-07-07 07:56:13 +02001036 sit_tunnel_xmit__(skb, dev, IPPROTO_IPIP);
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001037 break;
1038 case htons(ETH_P_IPV6):
1039 ipip6_tunnel_xmit(skb, dev);
1040 break;
Simon Horman49dbe7a2016-07-07 07:56:13 +02001041#if IS_ENABLED(CONFIG_MPLS)
1042 case htons(ETH_P_MPLS_UC):
1043 sit_tunnel_xmit__(skb, dev, IPPROTO_MPLS);
1044 break;
1045#endif
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001046 default:
1047 goto tx_err;
1048 }
1049
1050 return NETDEV_TX_OK;
1051
1052tx_err:
1053 dev->stats.tx_errors++;
Gao feng66028312013-11-25 17:21:24 +08001054 kfree_skb(skb);
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001055 return NETDEV_TX_OK;
1056
1057}
1058
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001059static void ipip6_tunnel_bind_dev(struct net_device *dev)
1060{
1061 struct net_device *tdev = NULL;
1062 struct ip_tunnel *tunnel;
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001063 const struct iphdr *iph;
David S. Miller31e4543d2011-05-03 20:25:42 -07001064 struct flowi4 fl4;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001065
1066 tunnel = netdev_priv(dev);
1067 iph = &tunnel->parms.iph;
1068
1069 if (iph->daddr) {
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +02001070 struct rtable *rt = ip_route_output_ports(tunnel->net, &fl4,
1071 NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -05001072 iph->daddr, iph->saddr,
1073 0, 0,
1074 IPPROTO_IPV6,
1075 RT_TOS(iph->tos),
1076 tunnel->parms.link);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001077
1078 if (!IS_ERR(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001079 tdev = rt->dst.dev;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001080 ip_rt_put(rt);
1081 }
1082 dev->flags |= IFF_POINTOPOINT;
1083 }
1084
1085 if (!tdev && tunnel->parms.link)
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +02001086 tdev = __dev_get_by_index(tunnel->net, tunnel->parms.link);
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001087
Stephen Suryaputraff6ab322019-05-06 15:00:01 -04001088 if (tdev && !netif_is_l3_master(tdev)) {
Tom Herbert14909662014-09-17 12:25:59 -07001089 int t_hlen = tunnel->hlen + sizeof(struct iphdr);
1090
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001091 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
Tom Herbert14909662014-09-17 12:25:59 -07001092 dev->mtu = tdev->mtu - t_hlen;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001093 if (dev->mtu < IPV6_MIN_MTU)
1094 dev->mtu = IPV6_MIN_MTU;
1095 }
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001096}
1097
Craig Gallek9830ad42017-04-19 12:30:54 -04001098static void ipip6_tunnel_update(struct ip_tunnel *t, struct ip_tunnel_parm *p,
1099 __u32 fwmark)
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001100{
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +02001101 struct net *net = t->net;
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001102 struct sit_net *sitn = net_generic(net, sit_net_id);
1103
1104 ipip6_tunnel_unlink(sitn, t);
1105 synchronize_net();
1106 t->parms.iph.saddr = p->iph.saddr;
1107 t->parms.iph.daddr = p->iph.daddr;
1108 memcpy(t->dev->dev_addr, &p->iph.saddr, 4);
1109 memcpy(t->dev->broadcast, &p->iph.daddr, 4);
1110 ipip6_tunnel_link(sitn, t);
1111 t->parms.iph.ttl = p->iph.ttl;
1112 t->parms.iph.tos = p->iph.tos;
Hangbin Liuf859b4a2017-11-30 10:41:14 +08001113 t->parms.iph.frag_off = p->iph.frag_off;
Craig Gallek9830ad42017-04-19 12:30:54 -04001114 if (t->parms.link != p->link || t->fwmark != fwmark) {
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001115 t->parms.link = p->link;
Craig Gallek9830ad42017-04-19 12:30:54 -04001116 t->fwmark = fwmark;
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001117 ipip6_tunnel_bind_dev(t->dev);
1118 }
Paolo Abenie09acdd2016-02-12 15:43:55 +01001119 dst_cache_reset(&t->dst_cache);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001120 netdev_state_change(t->dev);
1121}
1122
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001123#ifdef CONFIG_IPV6_SIT_6RD
1124static int ipip6_tunnel_update_6rd(struct ip_tunnel *t,
1125 struct ip_tunnel_6rd *ip6rd)
1126{
1127 struct in6_addr prefix;
1128 __be32 relay_prefix;
1129
1130 if (ip6rd->relay_prefixlen > 32 ||
1131 ip6rd->prefixlen + (32 - ip6rd->relay_prefixlen) > 64)
1132 return -EINVAL;
1133
1134 ipv6_addr_prefix(&prefix, &ip6rd->prefix, ip6rd->prefixlen);
1135 if (!ipv6_addr_equal(&prefix, &ip6rd->prefix))
1136 return -EINVAL;
1137 if (ip6rd->relay_prefixlen)
1138 relay_prefix = ip6rd->relay_prefix &
1139 htonl(0xffffffffUL <<
1140 (32 - ip6rd->relay_prefixlen));
1141 else
1142 relay_prefix = 0;
1143 if (relay_prefix != ip6rd->relay_prefix)
1144 return -EINVAL;
1145
1146 t->ip6rd.prefix = prefix;
1147 t->ip6rd.relay_prefix = relay_prefix;
1148 t->ip6rd.prefixlen = ip6rd->prefixlen;
1149 t->ip6rd.relay_prefixlen = ip6rd->relay_prefixlen;
Paolo Abenie09acdd2016-02-12 15:43:55 +01001150 dst_cache_reset(&t->dst_cache);
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001151 netdev_state_change(t->dev);
1152 return 0;
1153}
1154#endif
1155
Wei Yongjun03ff4972016-08-13 01:54:15 +00001156static bool ipip6_valid_ip_proto(u8 ipproto)
Simon Horman49dbe7a2016-07-07 07:56:13 +02001157{
1158 return ipproto == IPPROTO_IPV6 ||
1159 ipproto == IPPROTO_IPIP ||
1160#if IS_ENABLED(CONFIG_MPLS)
1161 ipproto == IPPROTO_MPLS ||
1162#endif
1163 ipproto == 0;
1164}
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166static int
Ian Morris67ba4152014-08-24 21:53:10 +01001167ipip6_tunnel_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
1169 int err = 0;
1170 struct ip_tunnel_parm p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001171 struct ip_tunnel_prl prl;
Nicolas Dichtel9aad77c2014-04-16 11:19:33 +02001172 struct ip_tunnel *t = netdev_priv(dev);
1173 struct net *net = t->net;
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001174 struct sit_net *sitn = net_generic(net, sit_net_id);
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001175#ifdef CONFIG_IPV6_SIT_6RD
1176 struct ip_tunnel_6rd ip6rd;
1177#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 switch (cmd) {
1180 case SIOCGETTUNNEL:
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001181#ifdef CONFIG_IPV6_SIT_6RD
1182 case SIOCGET6RD:
1183#endif
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001184 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1186 err = -EFAULT;
1187 break;
1188 }
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001189 t = ipip6_tunnel_locate(net, &p, 0);
Ian Morris63159f22015-03-29 14:00:04 +01001190 if (!t)
Nicolas Dichtel9aad77c2014-04-16 11:19:33 +02001191 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001193
1194 err = -EFAULT;
1195 if (cmd == SIOCGETTUNNEL) {
1196 memcpy(&p, &t->parms, sizeof(p));
1197 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p,
1198 sizeof(p)))
1199 goto done;
1200#ifdef CONFIG_IPV6_SIT_6RD
1201 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001202 ip6rd.prefix = t->ip6rd.prefix;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001203 ip6rd.relay_prefix = t->ip6rd.relay_prefix;
1204 ip6rd.prefixlen = t->ip6rd.prefixlen;
1205 ip6rd.relay_prefixlen = t->ip6rd.relay_prefixlen;
1206 if (copy_to_user(ifr->ifr_ifru.ifru_data, &ip6rd,
1207 sizeof(ip6rd)))
1208 goto done;
1209#endif
1210 }
1211 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 break;
1213
1214 case SIOCADDTUNNEL:
1215 case SIOCCHGTUNNEL:
1216 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001217 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 goto done;
1219
1220 err = -EFAULT;
1221 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1222 goto done;
1223
1224 err = -EINVAL;
Simon Horman49dbe7a2016-07-07 07:56:13 +02001225 if (!ipip6_valid_ip_proto(p.iph.protocol))
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001226 goto done;
1227 if (p.iph.version != 4 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
1229 goto done;
1230 if (p.iph.ttl)
1231 p.iph.frag_off |= htons(IP_DF);
1232
Pavel Emelyanovca8def12008-04-16 01:15:39 -07001233 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001235 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +01001236 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 if (t->dev != dev) {
1238 err = -EEXIST;
1239 break;
1240 }
1241 } else {
1242 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
1243 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
1244 err = -EINVAL;
1245 break;
1246 }
Patrick McHardy2941a482006-01-08 22:05:26 -08001247 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 }
Nicolas Dichtelf9cd5a52012-11-14 05:14:04 +00001249
Craig Gallek9830ad42017-04-19 12:30:54 -04001250 ipip6_tunnel_update(t, &p, t->fwmark);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
1252
1253 if (t) {
1254 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
1256 err = -EFAULT;
1257 } else
1258 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1259 break;
1260
1261 case SIOCDELTUNNEL:
1262 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001263 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 goto done;
1265
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001266 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 err = -EFAULT;
1268 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1269 goto done;
1270 err = -ENOENT;
Ian Morrise5d08d72014-11-23 21:28:43 +00001271 t = ipip6_tunnel_locate(net, &p, 0);
Ian Morris63159f22015-03-29 14:00:04 +01001272 if (!t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 goto done;
1274 err = -EPERM;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001275 if (t == netdev_priv(sitn->fb_tunnel_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 goto done;
1277 dev = t->dev;
1278 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001279 unregister_netdevice(dev);
1280 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 break;
1282
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001283 case SIOCGETPRL:
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -07001284 err = -EINVAL;
1285 if (dev == sitn->fb_tunnel_dev)
1286 goto done;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -07001287 err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
1288 break;
1289
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001290 case SIOCADDPRL:
1291 case SIOCDELPRL:
1292 case SIOCCHGPRL:
1293 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001294 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001295 goto done;
1296 err = -EINVAL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001297 if (dev == sitn->fb_tunnel_dev)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001298 goto done;
1299 err = -EFAULT;
1300 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
1301 goto done;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001302
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001303 switch (cmd) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001304 case SIOCDELPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001305 err = ipip6_tunnel_del_prl(t, &prl);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001306 break;
1307 case SIOCADDPRL:
1308 case SIOCCHGPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001309 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +09001310 break;
1311 }
Paolo Abenie09acdd2016-02-12 15:43:55 +01001312 dst_cache_reset(&t->dst_cache);
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -07001313 netdev_state_change(dev);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -04001314 break;
1315
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001316#ifdef CONFIG_IPV6_SIT_6RD
1317 case SIOCADD6RD:
1318 case SIOCCHG6RD:
1319 case SIOCDEL6RD:
1320 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001321 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001322 goto done;
1323
1324 err = -EFAULT;
1325 if (copy_from_user(&ip6rd, ifr->ifr_ifru.ifru_data,
1326 sizeof(ip6rd)))
1327 goto done;
1328
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001329 if (cmd != SIOCDEL6RD) {
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001330 err = ipip6_tunnel_update_6rd(t, &ip6rd);
1331 if (err < 0)
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001332 goto done;
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001333 } else
YOSHIFUJI Hideaki / 吉藤英明e0c93942009-10-11 03:31:34 +00001334 ipip6_tunnel_clone_6rd(dev, sitn);
YOSHIFUJI Hideaki / 吉藤英明fa857af2009-09-22 23:43:14 +00001335
1336 err = 0;
1337 break;
1338#endif
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 default:
1341 err = -EINVAL;
1342 }
1343
1344done:
1345 return err;
1346}
1347
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001348static const struct net_device_ops ipip6_netdev_ops = {
Steffen Klassertebe084a2014-11-03 09:19:29 +01001349 .ndo_init = ipip6_tunnel_init,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001350 .ndo_uninit = ipip6_tunnel_uninit,
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001351 .ndo_start_xmit = sit_tunnel_xmit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001352 .ndo_do_ioctl = ipip6_tunnel_ioctl,
Pravin B Shelarf61dd382013-03-25 14:50:00 +00001353 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtel1e995842015-04-02 17:07:02 +02001354 .ndo_get_iflink = ip_tunnel_get_iflink,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001355};
1356
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001357static void ipip6_dev_free(struct net_device *dev)
1358{
Nicolas Dichtelcf71d2bc2014-02-20 10:19:31 +01001359 struct ip_tunnel *tunnel = netdev_priv(dev);
1360
Paolo Abenie09acdd2016-02-12 15:43:55 +01001361 dst_cache_destroy(&tunnel->dst_cache);
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001362 free_percpu(dev->tstats);
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001363}
1364
Eric Dumazet61c1db72013-10-20 20:47:30 -07001365#define SIT_FEATURES (NETIF_F_SG | \
1366 NETIF_F_FRAGLIST | \
1367 NETIF_F_HIGHDMA | \
1368 NETIF_F_GSO_SOFTWARE | \
1369 NETIF_F_HW_CSUM)
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371static void ipip6_tunnel_setup(struct net_device *dev)
1372{
Tom Herbert14909662014-09-17 12:25:59 -07001373 struct ip_tunnel *tunnel = netdev_priv(dev);
1374 int t_hlen = tunnel->hlen + sizeof(struct iphdr);
1375
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001376 dev->netdev_ops = &ipip6_netdev_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001377 dev->needs_free_netdev = true;
1378 dev->priv_destructor = ipip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 dev->type = ARPHRD_SIT;
Tom Herbert14909662014-09-17 12:25:59 -07001381 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1382 dev->mtu = ETH_DATA_LEN - t_hlen;
Jarod Wilsonb96f9af2016-10-20 13:55:24 -04001383 dev->min_mtu = IPV6_MIN_MTU;
Nicolas Dichtelf7ff1fd2018-05-31 10:59:33 +02001384 dev->max_mtu = IP6_MAX_MTU - t_hlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 dev->flags = IFF_NOARP;
Eric Dumazet02875872014-10-05 18:38:35 -07001386 netif_keep_dst(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 dev->addr_len = 4;
Eric Dumazet8df40d12010-09-28 02:53:41 +00001388 dev->features |= NETIF_F_LLTX;
Eric Dumazet61c1db72013-10-20 20:47:30 -07001389 dev->features |= SIT_FEATURES;
1390 dev->hw_features |= SIT_FEATURES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001393static int ipip6_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001395 struct ip_tunnel *tunnel = netdev_priv(dev);
Paolo Abenie09acdd2016-02-12 15:43:55 +01001396 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 tunnel->dev = dev;
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +02001399 tunnel->net = dev_net(dev);
Steffen Klassertebe084a2014-11-03 09:19:29 +01001400 strcpy(tunnel->parms.name, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001402 ipip6_tunnel_bind_dev(dev);
WANG Cong1c213bd2014-02-13 11:46:28 -08001403 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001404 if (!dev->tstats)
1405 return -ENOMEM;
1406
Paolo Abenie09acdd2016-02-12 15:43:55 +01001407 err = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
1408 if (err) {
Nicolas Dichtelcf71d2bc2014-02-20 10:19:31 +01001409 free_percpu(dev->tstats);
WANG Congd7426c62017-02-08 10:02:13 -08001410 dev->tstats = NULL;
Paolo Abenie09acdd2016-02-12 15:43:55 +01001411 return err;
Nicolas Dichtelcf71d2bc2014-02-20 10:19:31 +01001412 }
1413
Eric Dumazet15fc1f72010-09-27 00:38:18 +00001414 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
Eric Dumazet4ece9002015-11-02 17:08:19 -08001417static void __net_init ipip6_fb_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
Patrick McHardy2941a482006-01-08 22:05:26 -08001419 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 struct iphdr *iph = &tunnel->parms.iph;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001421 struct net *net = dev_net(dev);
1422 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 iph->version = 4;
1425 iph->protocol = IPPROTO_IPV6;
1426 iph->ihl = 5;
1427 iph->ttl = 64;
1428
1429 dev_hold(dev);
Eric Dumazetcf778b02012-01-12 04:41:32 +00001430 rcu_assign_pointer(sitn->tunnels_wc[0], tunnel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001433static int ipip6_validate(struct nlattr *tb[], struct nlattr *data[],
1434 struct netlink_ext_ack *extack)
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001435{
1436 u8 proto;
1437
Nicolas Dichtelc2ff6822013-06-19 12:03:13 +02001438 if (!data || !data[IFLA_IPTUN_PROTO])
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001439 return 0;
1440
1441 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
Simon Horman49dbe7a2016-07-07 07:56:13 +02001442 if (!ipip6_valid_ip_proto(proto))
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001443 return -EINVAL;
1444
1445 return 0;
1446}
1447
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001448static void ipip6_netlink_parms(struct nlattr *data[],
Craig Gallek9830ad42017-04-19 12:30:54 -04001449 struct ip_tunnel_parm *parms,
1450 __u32 *fwmark)
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001451{
1452 memset(parms, 0, sizeof(*parms));
1453
1454 parms->iph.version = 4;
1455 parms->iph.protocol = IPPROTO_IPV6;
1456 parms->iph.ihl = 5;
1457 parms->iph.ttl = 64;
1458
1459 if (!data)
1460 return;
1461
1462 if (data[IFLA_IPTUN_LINK])
1463 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1464
1465 if (data[IFLA_IPTUN_LOCAL])
Nicolas Dichteld440b722012-11-15 04:06:41 +00001466 parms->iph.saddr = nla_get_be32(data[IFLA_IPTUN_LOCAL]);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001467
1468 if (data[IFLA_IPTUN_REMOTE])
Nicolas Dichteld440b722012-11-15 04:06:41 +00001469 parms->iph.daddr = nla_get_be32(data[IFLA_IPTUN_REMOTE]);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001470
1471 if (data[IFLA_IPTUN_TTL]) {
1472 parms->iph.ttl = nla_get_u8(data[IFLA_IPTUN_TTL]);
1473 if (parms->iph.ttl)
1474 parms->iph.frag_off = htons(IP_DF);
1475 }
1476
1477 if (data[IFLA_IPTUN_TOS])
1478 parms->iph.tos = nla_get_u8(data[IFLA_IPTUN_TOS]);
1479
1480 if (!data[IFLA_IPTUN_PMTUDISC] || nla_get_u8(data[IFLA_IPTUN_PMTUDISC]))
1481 parms->iph.frag_off = htons(IP_DF);
1482
1483 if (data[IFLA_IPTUN_FLAGS])
Nicolas Dichteld440b722012-11-15 04:06:41 +00001484 parms->i_flags = nla_get_be16(data[IFLA_IPTUN_FLAGS]);
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001485
1486 if (data[IFLA_IPTUN_PROTO])
1487 parms->iph.protocol = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1488
Craig Gallek9830ad42017-04-19 12:30:54 -04001489 if (data[IFLA_IPTUN_FWMARK])
1490 *fwmark = nla_get_u32(data[IFLA_IPTUN_FWMARK]);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001491}
1492
Tom Herbert14909662014-09-17 12:25:59 -07001493/* This function returns true when ENCAP attributes are present in the nl msg */
1494static bool ipip6_netlink_encap_parms(struct nlattr *data[],
1495 struct ip_tunnel_encap *ipencap)
1496{
1497 bool ret = false;
1498
1499 memset(ipencap, 0, sizeof(*ipencap));
1500
1501 if (!data)
1502 return ret;
1503
1504 if (data[IFLA_IPTUN_ENCAP_TYPE]) {
1505 ret = true;
1506 ipencap->type = nla_get_u16(data[IFLA_IPTUN_ENCAP_TYPE]);
1507 }
1508
1509 if (data[IFLA_IPTUN_ENCAP_FLAGS]) {
1510 ret = true;
1511 ipencap->flags = nla_get_u16(data[IFLA_IPTUN_ENCAP_FLAGS]);
1512 }
1513
1514 if (data[IFLA_IPTUN_ENCAP_SPORT]) {
1515 ret = true;
Eric Dumazeta409cae2015-02-04 15:12:04 -08001516 ipencap->sport = nla_get_be16(data[IFLA_IPTUN_ENCAP_SPORT]);
Tom Herbert14909662014-09-17 12:25:59 -07001517 }
1518
1519 if (data[IFLA_IPTUN_ENCAP_DPORT]) {
1520 ret = true;
Eric Dumazeta409cae2015-02-04 15:12:04 -08001521 ipencap->dport = nla_get_be16(data[IFLA_IPTUN_ENCAP_DPORT]);
Tom Herbert14909662014-09-17 12:25:59 -07001522 }
1523
1524 return ret;
1525}
1526
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001527#ifdef CONFIG_IPV6_SIT_6RD
1528/* This function returns true when 6RD attributes are present in the nl msg */
1529static bool ipip6_netlink_6rd_parms(struct nlattr *data[],
1530 struct ip_tunnel_6rd *ip6rd)
1531{
1532 bool ret = false;
1533 memset(ip6rd, 0, sizeof(*ip6rd));
1534
1535 if (!data)
1536 return ret;
1537
1538 if (data[IFLA_IPTUN_6RD_PREFIX]) {
1539 ret = true;
Jiri Benc67b61f62015-03-29 16:59:26 +02001540 ip6rd->prefix = nla_get_in6_addr(data[IFLA_IPTUN_6RD_PREFIX]);
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001541 }
1542
1543 if (data[IFLA_IPTUN_6RD_RELAY_PREFIX]) {
1544 ret = true;
1545 ip6rd->relay_prefix =
1546 nla_get_be32(data[IFLA_IPTUN_6RD_RELAY_PREFIX]);
1547 }
1548
1549 if (data[IFLA_IPTUN_6RD_PREFIXLEN]) {
1550 ret = true;
1551 ip6rd->prefixlen = nla_get_u16(data[IFLA_IPTUN_6RD_PREFIXLEN]);
1552 }
1553
1554 if (data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]) {
1555 ret = true;
1556 ip6rd->relay_prefixlen =
1557 nla_get_u16(data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]);
1558 }
1559
1560 return ret;
1561}
1562#endif
1563
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001564static int ipip6_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02001565 struct nlattr *tb[], struct nlattr *data[],
1566 struct netlink_ext_ack *extack)
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001567{
1568 struct net *net = dev_net(dev);
1569 struct ip_tunnel *nt;
Tom Herbert14909662014-09-17 12:25:59 -07001570 struct ip_tunnel_encap ipencap;
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001571#ifdef CONFIG_IPV6_SIT_6RD
1572 struct ip_tunnel_6rd ip6rd;
1573#endif
1574 int err;
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001575
1576 nt = netdev_priv(dev);
Tom Herbert14909662014-09-17 12:25:59 -07001577
1578 if (ipip6_netlink_encap_parms(data, &ipencap)) {
1579 err = ip_tunnel_encap_setup(nt, &ipencap);
1580 if (err < 0)
1581 return err;
1582 }
1583
Craig Gallek9830ad42017-04-19 12:30:54 -04001584 ipip6_netlink_parms(data, &nt->parms, &nt->fwmark);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001585
1586 if (ipip6_tunnel_locate(net, &nt->parms, 0))
1587 return -EEXIST;
1588
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001589 err = ipip6_tunnel_create(dev);
1590 if (err < 0)
1591 return err;
1592
Xin Long2b3957c2018-02-27 19:19:41 +08001593 if (tb[IFLA_MTU]) {
1594 u32 mtu = nla_get_u32(tb[IFLA_MTU]);
1595
Nicolas Dichtelf7ff1fd2018-05-31 10:59:33 +02001596 if (mtu >= IPV6_MIN_MTU &&
1597 mtu <= IP6_MAX_MTU - dev->hard_header_len)
Xin Long2b3957c2018-02-27 19:19:41 +08001598 dev->mtu = mtu;
1599 }
1600
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001601#ifdef CONFIG_IPV6_SIT_6RD
1602 if (ipip6_netlink_6rd_parms(data, &ip6rd))
1603 err = ipip6_tunnel_update_6rd(nt, &ip6rd);
1604#endif
1605
1606 return err;
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001607}
1608
1609static int ipip6_changelink(struct net_device *dev, struct nlattr *tb[],
Matthias Schifferad744b22017-06-25 23:56:00 +02001610 struct nlattr *data[],
1611 struct netlink_ext_ack *extack)
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001612{
Nicolas Dichtel86bd68b2013-07-03 17:00:34 +02001613 struct ip_tunnel *t = netdev_priv(dev);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001614 struct ip_tunnel_parm p;
Tom Herbert14909662014-09-17 12:25:59 -07001615 struct ip_tunnel_encap ipencap;
Nicolas Dichtel86bd68b2013-07-03 17:00:34 +02001616 struct net *net = t->net;
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001617 struct sit_net *sitn = net_generic(net, sit_net_id);
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001618#ifdef CONFIG_IPV6_SIT_6RD
1619 struct ip_tunnel_6rd ip6rd;
1620#endif
Craig Gallek9830ad42017-04-19 12:30:54 -04001621 __u32 fwmark = t->fwmark;
Tom Herbert14909662014-09-17 12:25:59 -07001622 int err;
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001623
1624 if (dev == sitn->fb_tunnel_dev)
1625 return -EINVAL;
1626
Tom Herbert14909662014-09-17 12:25:59 -07001627 if (ipip6_netlink_encap_parms(data, &ipencap)) {
1628 err = ip_tunnel_encap_setup(t, &ipencap);
1629 if (err < 0)
1630 return err;
1631 }
1632
Craig Gallek9830ad42017-04-19 12:30:54 -04001633 ipip6_netlink_parms(data, &p, &fwmark);
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001634
1635 if (((dev->flags & IFF_POINTOPOINT) && !p.iph.daddr) ||
1636 (!(dev->flags & IFF_POINTOPOINT) && p.iph.daddr))
1637 return -EINVAL;
1638
1639 t = ipip6_tunnel_locate(net, &p, 0);
1640
1641 if (t) {
1642 if (t->dev != dev)
1643 return -EEXIST;
1644 } else
1645 t = netdev_priv(dev);
1646
Craig Gallek9830ad42017-04-19 12:30:54 -04001647 ipip6_tunnel_update(t, &p, fwmark);
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001648
1649#ifdef CONFIG_IPV6_SIT_6RD
1650 if (ipip6_netlink_6rd_parms(data, &ip6rd))
1651 return ipip6_tunnel_update_6rd(t, &ip6rd);
1652#endif
1653
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001654 return 0;
1655}
1656
Nicolas Dichtele4c94a92012-11-14 05:14:06 +00001657static size_t ipip6_get_size(const struct net_device *dev)
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001658{
1659 return
1660 /* IFLA_IPTUN_LINK */
1661 nla_total_size(4) +
1662 /* IFLA_IPTUN_LOCAL */
1663 nla_total_size(4) +
1664 /* IFLA_IPTUN_REMOTE */
1665 nla_total_size(4) +
1666 /* IFLA_IPTUN_TTL */
1667 nla_total_size(1) +
1668 /* IFLA_IPTUN_TOS */
1669 nla_total_size(1) +
Nicolas Dichtela12c9a82012-11-14 05:14:05 +00001670 /* IFLA_IPTUN_PMTUDISC */
1671 nla_total_size(1) +
1672 /* IFLA_IPTUN_FLAGS */
1673 nla_total_size(2) +
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001674 /* IFLA_IPTUN_PROTO */
1675 nla_total_size(1) +
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001676#ifdef CONFIG_IPV6_SIT_6RD
1677 /* IFLA_IPTUN_6RD_PREFIX */
1678 nla_total_size(sizeof(struct in6_addr)) +
1679 /* IFLA_IPTUN_6RD_RELAY_PREFIX */
1680 nla_total_size(4) +
1681 /* IFLA_IPTUN_6RD_PREFIXLEN */
1682 nla_total_size(2) +
1683 /* IFLA_IPTUN_6RD_RELAY_PREFIXLEN */
1684 nla_total_size(2) +
1685#endif
Tom Herbert14909662014-09-17 12:25:59 -07001686 /* IFLA_IPTUN_ENCAP_TYPE */
1687 nla_total_size(2) +
1688 /* IFLA_IPTUN_ENCAP_FLAGS */
1689 nla_total_size(2) +
1690 /* IFLA_IPTUN_ENCAP_SPORT */
1691 nla_total_size(2) +
1692 /* IFLA_IPTUN_ENCAP_DPORT */
1693 nla_total_size(2) +
Craig Gallek9830ad42017-04-19 12:30:54 -04001694 /* IFLA_IPTUN_FWMARK */
1695 nla_total_size(4) +
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001696 0;
1697}
1698
Nicolas Dichtele4c94a92012-11-14 05:14:06 +00001699static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001700{
1701 struct ip_tunnel *tunnel = netdev_priv(dev);
1702 struct ip_tunnel_parm *parm = &tunnel->parms;
1703
1704 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
Jiri Benc930345e2015-03-29 16:59:25 +02001705 nla_put_in_addr(skb, IFLA_IPTUN_LOCAL, parm->iph.saddr) ||
1706 nla_put_in_addr(skb, IFLA_IPTUN_REMOTE, parm->iph.daddr) ||
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001707 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->iph.ttl) ||
Nicolas Dichtela12c9a82012-11-14 05:14:05 +00001708 nla_put_u8(skb, IFLA_IPTUN_TOS, parm->iph.tos) ||
1709 nla_put_u8(skb, IFLA_IPTUN_PMTUDISC,
1710 !!(parm->iph.frag_off & htons(IP_DF))) ||
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001711 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->iph.protocol) ||
Craig Gallek9830ad42017-04-19 12:30:54 -04001712 nla_put_be16(skb, IFLA_IPTUN_FLAGS, parm->i_flags) ||
1713 nla_put_u32(skb, IFLA_IPTUN_FWMARK, tunnel->fwmark))
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001714 goto nla_put_failure;
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001715
1716#ifdef CONFIG_IPV6_SIT_6RD
Jiri Benc930345e2015-03-29 16:59:25 +02001717 if (nla_put_in6_addr(skb, IFLA_IPTUN_6RD_PREFIX,
1718 &tunnel->ip6rd.prefix) ||
1719 nla_put_in_addr(skb, IFLA_IPTUN_6RD_RELAY_PREFIX,
1720 tunnel->ip6rd.relay_prefix) ||
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001721 nla_put_u16(skb, IFLA_IPTUN_6RD_PREFIXLEN,
1722 tunnel->ip6rd.prefixlen) ||
1723 nla_put_u16(skb, IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
1724 tunnel->ip6rd.relay_prefixlen))
1725 goto nla_put_failure;
1726#endif
1727
Tom Herbert14909662014-09-17 12:25:59 -07001728 if (nla_put_u16(skb, IFLA_IPTUN_ENCAP_TYPE,
1729 tunnel->encap.type) ||
Eric Dumazeta409cae2015-02-04 15:12:04 -08001730 nla_put_be16(skb, IFLA_IPTUN_ENCAP_SPORT,
Tom Herbert14909662014-09-17 12:25:59 -07001731 tunnel->encap.sport) ||
Eric Dumazeta409cae2015-02-04 15:12:04 -08001732 nla_put_be16(skb, IFLA_IPTUN_ENCAP_DPORT,
Tom Herbert14909662014-09-17 12:25:59 -07001733 tunnel->encap.dport) ||
1734 nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS,
Tom Herberte1b2cb62014-11-05 16:49:38 -08001735 tunnel->encap.flags))
Tom Herbert14909662014-09-17 12:25:59 -07001736 goto nla_put_failure;
1737
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001738 return 0;
1739
1740nla_put_failure:
1741 return -EMSGSIZE;
1742}
1743
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001744static const struct nla_policy ipip6_policy[IFLA_IPTUN_MAX + 1] = {
1745 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1746 [IFLA_IPTUN_LOCAL] = { .type = NLA_U32 },
1747 [IFLA_IPTUN_REMOTE] = { .type = NLA_U32 },
1748 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1749 [IFLA_IPTUN_TOS] = { .type = NLA_U8 },
1750 [IFLA_IPTUN_PMTUDISC] = { .type = NLA_U8 },
1751 [IFLA_IPTUN_FLAGS] = { .type = NLA_U16 },
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001752 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
Nicolas Dichtele2f1f072012-11-19 22:41:45 +00001753#ifdef CONFIG_IPV6_SIT_6RD
1754 [IFLA_IPTUN_6RD_PREFIX] = { .len = sizeof(struct in6_addr) },
1755 [IFLA_IPTUN_6RD_RELAY_PREFIX] = { .type = NLA_U32 },
1756 [IFLA_IPTUN_6RD_PREFIXLEN] = { .type = NLA_U16 },
1757 [IFLA_IPTUN_6RD_RELAY_PREFIXLEN] = { .type = NLA_U16 },
1758#endif
Tom Herbert14909662014-09-17 12:25:59 -07001759 [IFLA_IPTUN_ENCAP_TYPE] = { .type = NLA_U16 },
1760 [IFLA_IPTUN_ENCAP_FLAGS] = { .type = NLA_U16 },
1761 [IFLA_IPTUN_ENCAP_SPORT] = { .type = NLA_U16 },
1762 [IFLA_IPTUN_ENCAP_DPORT] = { .type = NLA_U16 },
Craig Gallek9830ad42017-04-19 12:30:54 -04001763 [IFLA_IPTUN_FWMARK] = { .type = NLA_U32 },
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001764};
1765
Willem de Bruijn94342662013-11-13 21:27:38 -05001766static void ipip6_dellink(struct net_device *dev, struct list_head *head)
1767{
1768 struct net *net = dev_net(dev);
1769 struct sit_net *sitn = net_generic(net, sit_net_id);
1770
1771 if (dev != sitn->fb_tunnel_dev)
1772 unregister_netdevice_queue(dev, head);
1773}
1774
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001775static struct rtnl_link_ops sit_link_ops __read_mostly = {
1776 .kind = "sit",
1777 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001778 .policy = ipip6_policy,
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001779 .priv_size = sizeof(struct ip_tunnel),
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001780 .setup = ipip6_tunnel_setup,
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001781 .validate = ipip6_validate,
Nicolas Dichtelf37234162012-11-14 05:14:07 +00001782 .newlink = ipip6_newlink,
1783 .changelink = ipip6_changelink,
Nicolas Dichtele4c94a92012-11-14 05:14:06 +00001784 .get_size = ipip6_get_size,
1785 .fill_info = ipip6_fill_info,
Willem de Bruijn94342662013-11-13 21:27:38 -05001786 .dellink = ipip6_dellink,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001787 .get_link_net = ip_tunnel_get_link_net,
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001788};
1789
Eric Dumazet6dcd8142010-08-30 07:04:14 +00001790static struct xfrm_tunnel sit_handler __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 .handler = ipip6_rcv,
1792 .err_handler = ipip6_err,
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001793 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794};
1795
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001796static struct xfrm_tunnel ipip_handler __read_mostly = {
1797 .handler = ipip_rcv,
1798 .err_handler = ipip6_err,
1799 .priority = 2,
1800};
1801
Simon Horman49dbe7a2016-07-07 07:56:13 +02001802#if IS_ENABLED(CONFIG_MPLS)
1803static struct xfrm_tunnel mplsip_handler __read_mostly = {
1804 .handler = mplsip_rcv,
1805 .err_handler = ipip6_err,
1806 .priority = 2,
1807};
1808#endif
1809
Willem de Bruijn94342662013-11-13 21:27:38 -05001810static void __net_exit sit_destroy_tunnels(struct net *net,
1811 struct list_head *head)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001812{
Willem de Bruijn94342662013-11-13 21:27:38 -05001813 struct sit_net *sitn = net_generic(net, sit_net_id);
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +02001814 struct net_device *dev, *aux;
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001815 int prio;
1816
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +02001817 for_each_netdev_safe(net, dev, aux)
1818 if (dev->rtnl_link_ops == &sit_link_ops)
1819 unregister_netdevice_queue(dev, head);
1820
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001821 for (prio = 1; prio < 4; prio++) {
1822 int h;
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001823 for (h = 0; h < IP6_SIT_HASH_SIZE; h++) {
Eric Dumazet753ea8e2011-01-20 07:16:24 +00001824 struct ip_tunnel *t;
Eric Dumazet62808f92009-10-28 04:37:43 +00001825
Eric Dumazet753ea8e2011-01-20 07:16:24 +00001826 t = rtnl_dereference(sitn->tunnels[prio][h]);
Ian Morris53b24b82015-03-29 14:00:05 +01001827 while (t) {
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +02001828 /* If dev is in the same netns, it has already
1829 * been added to the list by the previous loop.
1830 */
Nicolas Dichtelfc8f9992013-08-13 17:51:10 +02001831 if (!net_eq(dev_net(t->dev), net))
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +02001832 unregister_netdevice_queue(t->dev,
1833 head);
Eric Dumazet753ea8e2011-01-20 07:16:24 +00001834 t = rtnl_dereference(t->next);
Eric Dumazet62808f92009-10-28 04:37:43 +00001835 }
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001836 }
1837 }
1838}
1839
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001840static int __net_init sit_init_net(struct net *net)
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001841{
Eric W. Biederman67101172009-11-29 15:46:16 +00001842 struct sit_net *sitn = net_generic(net, sit_net_id);
Ted Feng72b36012011-12-08 00:46:21 +00001843 struct ip_tunnel *t;
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001844 int err;
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001845
Pavel Emelyanov29182172008-04-16 01:16:38 -07001846 sitn->tunnels[0] = sitn->tunnels_wc;
1847 sitn->tunnels[1] = sitn->tunnels_l;
1848 sitn->tunnels[2] = sitn->tunnels_r;
1849 sitn->tunnels[3] = sitn->tunnels_r_l;
1850
Eric Dumazet79134e62018-03-08 12:51:41 -08001851 if (!net_has_fallback_tunnels(net))
1852 return 0;
1853
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001854 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001855 NET_NAME_UNKNOWN,
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001856 ipip6_tunnel_setup);
1857 if (!sitn->fb_tunnel_dev) {
1858 err = -ENOMEM;
1859 goto err_alloc_dev;
1860 }
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001861 dev_net_set(sitn->fb_tunnel_dev, net);
Nicolas Dichtel205983c2013-10-01 18:04:59 +02001862 sitn->fb_tunnel_dev->rtnl_link_ops = &sit_link_ops;
Nicolas Dichtel5e6700b2013-06-26 16:11:28 +02001863 /* FB netdevice is special: we have one, and only one per netns.
1864 * Allowing to move it to another netns is clearly unsafe.
1865 */
1866 sitn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001867
Ian Morrise5d08d72014-11-23 21:28:43 +00001868 err = register_netdev(sitn->fb_tunnel_dev);
1869 if (err)
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001870 goto err_reg_dev;
1871
Eric Dumazet4ece9002015-11-02 17:08:19 -08001872 ipip6_tunnel_clone_6rd(sitn->fb_tunnel_dev, sitn);
1873 ipip6_fb_tunnel_init(sitn->fb_tunnel_dev);
1874
Ted Feng72b36012011-12-08 00:46:21 +00001875 t = netdev_priv(sitn->fb_tunnel_dev);
1876
1877 strcpy(t->parms.name, sitn->fb_tunnel_dev->name);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001878 return 0;
1879
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001880err_reg_dev:
Eric Dumazetdd4080e2010-09-28 02:17:58 +00001881 ipip6_dev_free(sitn->fb_tunnel_dev);
Mao Wenan07f12b22019-03-01 23:06:40 +08001882 free_netdev(sitn->fb_tunnel_dev);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001883err_alloc_dev:
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001884 return err;
1885}
1886
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001887static void __net_exit sit_exit_batch_net(struct list_head *net_list)
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001888{
Eric Dumazet62808f92009-10-28 04:37:43 +00001889 LIST_HEAD(list);
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001890 struct net *net;
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001891
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001892 rtnl_lock();
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001893 list_for_each_entry(net, net_list, exit_list)
1894 sit_destroy_tunnels(net, &list);
1895
Eric Dumazet62808f92009-10-28 04:37:43 +00001896 unregister_netdevice_many(&list);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001897 rtnl_unlock();
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001898}
1899
1900static struct pernet_operations sit_net_ops = {
1901 .init = sit_init_net,
Eric Dumazetbb401ca2017-09-19 16:27:08 -07001902 .exit_batch = sit_exit_batch_net,
Eric W. Biederman67101172009-11-29 15:46:16 +00001903 .id = &sit_net_id,
1904 .size = sizeof(struct sit_net),
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001905};
1906
Adrian Bunk89c89452006-11-20 16:56:48 -08001907static void __exit sit_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908{
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001909 rtnl_link_unregister(&sit_link_ops);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001910 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001911 xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
Simon Horman49dbe7a2016-07-07 07:56:13 +02001912#if IS_ENABLED(CONFIG_MPLS)
1913 xfrm4_tunnel_deregister(&mplsip_handler, AF_MPLS);
1914#endif
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001915
Eric W. Biederman67101172009-11-29 15:46:16 +00001916 unregister_pernet_device(&sit_net_ops);
Eric Dumazetef9a9d12009-10-23 17:51:26 +00001917 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918}
1919
Adrian Bunk89c89452006-11-20 16:56:48 -08001920static int __init sit_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
1922 int err;
1923
Simon Horman49dbe7a2016-07-07 07:56:13 +02001924 pr_info("IPv6, IPv4 and MPLS over IPv4 tunneling driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Eric W. Biederman67101172009-11-29 15:46:16 +00001926 err = register_pernet_device(&sit_net_ops);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001927 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001928 return err;
1929 err = xfrm4_tunnel_register(&sit_handler, AF_INET6);
1930 if (err < 0) {
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001931 pr_info("%s: can't register ip6ip4\n", __func__);
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001932 goto xfrm_tunnel_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001933 }
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001934 err = xfrm4_tunnel_register(&ipip_handler, AF_INET);
1935 if (err < 0) {
1936 pr_info("%s: can't register ip4ip4\n", __func__);
1937 goto xfrm_tunnel4_failed;
1938 }
Simon Horman49dbe7a2016-07-07 07:56:13 +02001939#if IS_ENABLED(CONFIG_MPLS)
1940 err = xfrm4_tunnel_register(&mplsip_handler, AF_MPLS);
1941 if (err < 0) {
1942 pr_info("%s: can't register mplsip\n", __func__);
1943 goto xfrm_tunnel_mpls_failed;
1944 }
1945#endif
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001946 err = rtnl_link_register(&sit_link_ops);
1947 if (err < 0)
1948 goto rtnl_link_failed;
1949
1950out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 return err;
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001952
1953rtnl_link_failed:
Simon Horman49dbe7a2016-07-07 07:56:13 +02001954#if IS_ENABLED(CONFIG_MPLS)
1955 xfrm4_tunnel_deregister(&mplsip_handler, AF_MPLS);
1956xfrm_tunnel_mpls_failed:
1957#endif
Nicolas Dichtel32b8a8e2013-05-27 23:48:16 +00001958 xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
1959xfrm_tunnel4_failed:
Nicolas Dichtelba3e3f52012-11-09 06:10:00 +00001960 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
1961xfrm_tunnel_failed:
1962 unregister_pernet_device(&sit_net_ops);
1963 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964}
Joerg Roedel989e5b92006-10-10 14:47:44 -07001965
1966module_init(sit_init);
1967module_exit(sit_cleanup);
Jan Dittmer39c85082006-10-13 15:05:53 -07001968MODULE_LICENSE("GPL");
Tom Gundersenf98f89a2014-05-15 23:21:30 +02001969MODULE_ALIAS_RTNL_LINK("sit");
Vasiliy Kulikov8909c9a2011-03-02 00:33:13 +03001970MODULE_ALIAS_NETDEV("sit0");