GNU Linux-libre 4.9.309-gnu1
[releases.git] / net / ipv6 / sit.c
1 /*
2  *      IPv6 over IPv4 tunnel device - Simple Internet Transition (SIT)
3  *      Linux INET6 implementation
4  *
5  *      Authors:
6  *      Pedro Roque             <roque@di.fc.ul.pt>
7  *      Alexey Kuznetsov        <kuznet@ms2.inr.ac.ru>
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  *      as published by the Free Software Foundation; either version
12  *      2 of the License, or (at your option) any later version.
13  *
14  *      Changes:
15  * Roger Venning <r.venning@telstra.com>:       6to4 support
16  * Nate Thompson <nate@thebog.net>:             6to4 support
17  * Fred Templin <fred.l.templin@boeing.com>:    isatap support
18  */
19
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
22 #include <linux/module.h>
23 #include <linux/capability.h>
24 #include <linux/errno.h>
25 #include <linux/types.h>
26 #include <linux/socket.h>
27 #include <linux/sockios.h>
28 #include <linux/net.h>
29 #include <linux/in6.h>
30 #include <linux/netdevice.h>
31 #include <linux/if_arp.h>
32 #include <linux/icmp.h>
33 #include <linux/slab.h>
34 #include <asm/uaccess.h>
35 #include <linux/init.h>
36 #include <linux/netfilter_ipv4.h>
37 #include <linux/if_ether.h>
38
39 #include <net/sock.h>
40 #include <net/snmp.h>
41
42 #include <net/ipv6.h>
43 #include <net/protocol.h>
44 #include <net/transp_v6.h>
45 #include <net/ip6_fib.h>
46 #include <net/ip6_route.h>
47 #include <net/ndisc.h>
48 #include <net/addrconf.h>
49 #include <net/ip.h>
50 #include <net/udp.h>
51 #include <net/icmp.h>
52 #include <net/ip_tunnels.h>
53 #include <net/inet_ecn.h>
54 #include <net/xfrm.h>
55 #include <net/dsfield.h>
56 #include <net/net_namespace.h>
57 #include <net/netns/generic.h>
58
59 /*
60    This version of net/ipv6/sit.c is cloned of net/ipv4/ip_gre.c
61
62    For comments look at net/ipv4/ip_gre.c --ANK
63  */
64
65 #define IP6_SIT_HASH_SIZE  16
66 #define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF)
67
68 static bool log_ecn_error = true;
69 module_param(log_ecn_error, bool, 0644);
70 MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
71
72 static int ipip6_tunnel_init(struct net_device *dev);
73 static void ipip6_tunnel_setup(struct net_device *dev);
74 static void ipip6_dev_free(struct net_device *dev);
75 static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst,
76                       __be32 *v4dst);
77 static struct rtnl_link_ops sit_link_ops __read_mostly;
78
79 static int sit_net_id __read_mostly;
80 struct sit_net {
81         struct ip_tunnel __rcu *tunnels_r_l[IP6_SIT_HASH_SIZE];
82         struct ip_tunnel __rcu *tunnels_r[IP6_SIT_HASH_SIZE];
83         struct ip_tunnel __rcu *tunnels_l[IP6_SIT_HASH_SIZE];
84         struct ip_tunnel __rcu *tunnels_wc[1];
85         struct ip_tunnel __rcu **tunnels[4];
86
87         struct net_device *fb_tunnel_dev;
88 };
89
90 /*
91  * Must be invoked with rcu_read_lock
92  */
93 static struct ip_tunnel *ipip6_tunnel_lookup(struct net *net,
94                 struct net_device *dev, __be32 remote, __be32 local)
95 {
96         unsigned int h0 = HASH(remote);
97         unsigned int h1 = HASH(local);
98         struct ip_tunnel *t;
99         struct sit_net *sitn = net_generic(net, sit_net_id);
100
101         for_each_ip_tunnel_rcu(t, sitn->tunnels_r_l[h0 ^ h1]) {
102                 if (local == t->parms.iph.saddr &&
103                     remote == t->parms.iph.daddr &&
104                     (!dev || !t->parms.link || dev->ifindex == t->parms.link) &&
105                     (t->dev->flags & IFF_UP))
106                         return t;
107         }
108         for_each_ip_tunnel_rcu(t, sitn->tunnels_r[h0]) {
109                 if (remote == t->parms.iph.daddr &&
110                     (!dev || !t->parms.link || dev->ifindex == t->parms.link) &&
111                     (t->dev->flags & IFF_UP))
112                         return t;
113         }
114         for_each_ip_tunnel_rcu(t, sitn->tunnels_l[h1]) {
115                 if (local == t->parms.iph.saddr &&
116                     (!dev || !t->parms.link || dev->ifindex == t->parms.link) &&
117                     (t->dev->flags & IFF_UP))
118                         return t;
119         }
120         t = rcu_dereference(sitn->tunnels_wc[0]);
121         if (t && (t->dev->flags & IFF_UP))
122                 return t;
123         return NULL;
124 }
125
126 static struct ip_tunnel __rcu **__ipip6_bucket(struct sit_net *sitn,
127                 struct ip_tunnel_parm *parms)
128 {
129         __be32 remote = parms->iph.daddr;
130         __be32 local = parms->iph.saddr;
131         unsigned int h = 0;
132         int prio = 0;
133
134         if (remote) {
135                 prio |= 2;
136                 h ^= HASH(remote);
137         }
138         if (local) {
139                 prio |= 1;
140                 h ^= HASH(local);
141         }
142         return &sitn->tunnels[prio][h];
143 }
144
145 static inline struct ip_tunnel __rcu **ipip6_bucket(struct sit_net *sitn,
146                 struct ip_tunnel *t)
147 {
148         return __ipip6_bucket(sitn, &t->parms);
149 }
150
151 static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
152 {
153         struct ip_tunnel __rcu **tp;
154         struct ip_tunnel *iter;
155
156         for (tp = ipip6_bucket(sitn, t);
157              (iter = rtnl_dereference(*tp)) != NULL;
158              tp = &iter->next) {
159                 if (t == iter) {
160                         rcu_assign_pointer(*tp, t->next);
161                         break;
162                 }
163         }
164 }
165
166 static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
167 {
168         struct ip_tunnel __rcu **tp = ipip6_bucket(sitn, t);
169
170         rcu_assign_pointer(t->next, rtnl_dereference(*tp));
171         rcu_assign_pointer(*tp, t);
172 }
173
174 static void ipip6_tunnel_clone_6rd(struct net_device *dev, struct sit_net *sitn)
175 {
176 #ifdef CONFIG_IPV6_SIT_6RD
177         struct ip_tunnel *t = netdev_priv(dev);
178
179         if (dev == sitn->fb_tunnel_dev) {
180                 ipv6_addr_set(&t->ip6rd.prefix, htonl(0x20020000), 0, 0, 0);
181                 t->ip6rd.relay_prefix = 0;
182                 t->ip6rd.prefixlen = 16;
183                 t->ip6rd.relay_prefixlen = 0;
184         } else {
185                 struct ip_tunnel *t0 = netdev_priv(sitn->fb_tunnel_dev);
186                 memcpy(&t->ip6rd, &t0->ip6rd, sizeof(t->ip6rd));
187         }
188 #endif
189 }
190
191 static int ipip6_tunnel_create(struct net_device *dev)
192 {
193         struct ip_tunnel *t = netdev_priv(dev);
194         struct net *net = dev_net(dev);
195         struct sit_net *sitn = net_generic(net, sit_net_id);
196         int err;
197
198         memcpy(dev->dev_addr, &t->parms.iph.saddr, 4);
199         memcpy(dev->broadcast, &t->parms.iph.daddr, 4);
200
201         if ((__force u16)t->parms.i_flags & SIT_ISATAP)
202                 dev->priv_flags |= IFF_ISATAP;
203
204         dev->rtnl_link_ops = &sit_link_ops;
205
206         err = register_netdevice(dev);
207         if (err < 0)
208                 goto out;
209
210         ipip6_tunnel_clone_6rd(dev, sitn);
211
212         ipip6_tunnel_link(sitn, t);
213         return 0;
214
215 out:
216         return err;
217 }
218
219 static struct ip_tunnel *ipip6_tunnel_locate(struct net *net,
220                 struct ip_tunnel_parm *parms, int create)
221 {
222         __be32 remote = parms->iph.daddr;
223         __be32 local = parms->iph.saddr;
224         struct ip_tunnel *t, *nt;
225         struct ip_tunnel __rcu **tp;
226         struct net_device *dev;
227         char name[IFNAMSIZ];
228         struct sit_net *sitn = net_generic(net, sit_net_id);
229
230         for (tp = __ipip6_bucket(sitn, parms);
231             (t = rtnl_dereference(*tp)) != NULL;
232              tp = &t->next) {
233                 if (local == t->parms.iph.saddr &&
234                     remote == t->parms.iph.daddr &&
235                     parms->link == t->parms.link) {
236                         if (create)
237                                 return NULL;
238                         else
239                                 return t;
240                 }
241         }
242         if (!create)
243                 goto failed;
244
245         if (parms->name[0]) {
246                 if (!dev_valid_name(parms->name))
247                         goto failed;
248                 strlcpy(name, parms->name, IFNAMSIZ);
249         } else {
250                 strcpy(name, "sit%d");
251         }
252         dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
253                            ipip6_tunnel_setup);
254         if (!dev)
255                 return NULL;
256
257         dev_net_set(dev, net);
258
259         nt = netdev_priv(dev);
260
261         nt->parms = *parms;
262         if (ipip6_tunnel_create(dev) < 0)
263                 goto failed_free;
264
265         return nt;
266
267 failed_free:
268         ipip6_dev_free(dev);
269 failed:
270         return NULL;
271 }
272
273 #define for_each_prl_rcu(start)                 \
274         for (prl = rcu_dereference(start);      \
275              prl;                               \
276              prl = rcu_dereference(prl->next))
277
278 static struct ip_tunnel_prl_entry *
279 __ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
280 {
281         struct ip_tunnel_prl_entry *prl;
282
283         for_each_prl_rcu(t->prl)
284                 if (prl->addr == addr)
285                         break;
286         return prl;
287
288 }
289
290 static int ipip6_tunnel_get_prl(struct ip_tunnel *t,
291                                 struct ip_tunnel_prl __user *a)
292 {
293         struct ip_tunnel_prl kprl, *kp;
294         struct ip_tunnel_prl_entry *prl;
295         unsigned int cmax, c = 0, ca, len;
296         int ret = 0;
297
298         if (copy_from_user(&kprl, a, sizeof(kprl)))
299                 return -EFAULT;
300         cmax = kprl.datalen / sizeof(kprl);
301         if (cmax > 1 && kprl.addr != htonl(INADDR_ANY))
302                 cmax = 1;
303
304         /* For simple GET or for root users,
305          * we try harder to allocate.
306          */
307         kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
308                 kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
309                 NULL;
310
311         rcu_read_lock();
312
313         ca = t->prl_count < cmax ? t->prl_count : cmax;
314
315         if (!kp) {
316                 /* We don't try hard to allocate much memory for
317                  * non-root users.
318                  * For root users, retry allocating enough memory for
319                  * the answer.
320                  */
321                 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
322                 if (!kp) {
323                         ret = -ENOMEM;
324                         goto out;
325                 }
326         }
327
328         c = 0;
329         for_each_prl_rcu(t->prl) {
330                 if (c >= cmax)
331                         break;
332                 if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr)
333                         continue;
334                 kp[c].addr = prl->addr;
335                 kp[c].flags = prl->flags;
336                 c++;
337                 if (kprl.addr != htonl(INADDR_ANY))
338                         break;
339         }
340 out:
341         rcu_read_unlock();
342
343         len = sizeof(*kp) * c;
344         ret = 0;
345         if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen))
346                 ret = -EFAULT;
347
348         kfree(kp);
349
350         return ret;
351 }
352
353 static int
354 ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
355 {
356         struct ip_tunnel_prl_entry *p;
357         int err = 0;
358
359         if (a->addr == htonl(INADDR_ANY))
360                 return -EINVAL;
361
362         ASSERT_RTNL();
363
364         for (p = rtnl_dereference(t->prl); p; p = rtnl_dereference(p->next)) {
365                 if (p->addr == a->addr) {
366                         if (chg) {
367                                 p->flags = a->flags;
368                                 goto out;
369                         }
370                         err = -EEXIST;
371                         goto out;
372                 }
373         }
374
375         if (chg) {
376                 err = -ENXIO;
377                 goto out;
378         }
379
380         p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
381         if (!p) {
382                 err = -ENOBUFS;
383                 goto out;
384         }
385
386         p->next = t->prl;
387         p->addr = a->addr;
388         p->flags = a->flags;
389         t->prl_count++;
390         rcu_assign_pointer(t->prl, p);
391 out:
392         return err;
393 }
394
395 static void prl_list_destroy_rcu(struct rcu_head *head)
396 {
397         struct ip_tunnel_prl_entry *p, *n;
398
399         p = container_of(head, struct ip_tunnel_prl_entry, rcu_head);
400         do {
401                 n = rcu_dereference_protected(p->next, 1);
402                 kfree(p);
403                 p = n;
404         } while (p);
405 }
406
407 static int
408 ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
409 {
410         struct ip_tunnel_prl_entry *x;
411         struct ip_tunnel_prl_entry __rcu **p;
412         int err = 0;
413
414         ASSERT_RTNL();
415
416         if (a && a->addr != htonl(INADDR_ANY)) {
417                 for (p = &t->prl;
418                      (x = rtnl_dereference(*p)) != NULL;
419                      p = &x->next) {
420                         if (x->addr == a->addr) {
421                                 *p = x->next;
422                                 kfree_rcu(x, rcu_head);
423                                 t->prl_count--;
424                                 goto out;
425                         }
426                 }
427                 err = -ENXIO;
428         } else {
429                 x = rtnl_dereference(t->prl);
430                 if (x) {
431                         t->prl_count = 0;
432                         call_rcu(&x->rcu_head, prl_list_destroy_rcu);
433                         t->prl = NULL;
434                 }
435         }
436 out:
437         return err;
438 }
439
440 static int
441 isatap_chksrc(struct sk_buff *skb, const struct iphdr *iph, struct ip_tunnel *t)
442 {
443         struct ip_tunnel_prl_entry *p;
444         int ok = 1;
445
446         rcu_read_lock();
447         p = __ipip6_tunnel_locate_prl(t, iph->saddr);
448         if (p) {
449                 if (p->flags & PRL_DEFAULT)
450                         skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
451                 else
452                         skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
453         } else {
454                 const struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
455
456                 if (ipv6_addr_is_isatap(addr6) &&
457                     (addr6->s6_addr32[3] == iph->saddr) &&
458                     ipv6_chk_prefix(addr6, t->dev))
459                         skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
460                 else
461                         ok = 0;
462         }
463         rcu_read_unlock();
464         return ok;
465 }
466
467 static void ipip6_tunnel_uninit(struct net_device *dev)
468 {
469         struct ip_tunnel *tunnel = netdev_priv(dev);
470         struct sit_net *sitn = net_generic(tunnel->net, sit_net_id);
471
472         if (dev == sitn->fb_tunnel_dev) {
473                 RCU_INIT_POINTER(sitn->tunnels_wc[0], NULL);
474         } else {
475                 ipip6_tunnel_unlink(sitn, tunnel);
476                 ipip6_tunnel_del_prl(tunnel, NULL);
477         }
478         dst_cache_reset(&tunnel->dst_cache);
479         dev_put(dev);
480 }
481
482 static int ipip6_err(struct sk_buff *skb, u32 info)
483 {
484         const struct iphdr *iph = (const struct iphdr *)skb->data;
485         const int type = icmp_hdr(skb)->type;
486         const int code = icmp_hdr(skb)->code;
487         unsigned int data_len = 0;
488         struct ip_tunnel *t;
489         int err;
490
491         switch (type) {
492         default:
493         case ICMP_PARAMETERPROB:
494                 return 0;
495
496         case ICMP_DEST_UNREACH:
497                 switch (code) {
498                 case ICMP_SR_FAILED:
499                         /* Impossible event. */
500                         return 0;
501                 default:
502                         /* All others are translated to HOST_UNREACH.
503                            rfc2003 contains "deep thoughts" about NET_UNREACH,
504                            I believe they are just ether pollution. --ANK
505                          */
506                         break;
507                 }
508                 break;
509         case ICMP_TIME_EXCEEDED:
510                 if (code != ICMP_EXC_TTL)
511                         return 0;
512                 data_len = icmp_hdr(skb)->un.reserved[1] * 4; /* RFC 4884 4.1 */
513                 break;
514         case ICMP_REDIRECT:
515                 break;
516         }
517
518         err = -ENOENT;
519
520         t = ipip6_tunnel_lookup(dev_net(skb->dev),
521                                 skb->dev,
522                                 iph->daddr,
523                                 iph->saddr);
524         if (!t)
525                 goto out;
526
527         if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED) {
528                 ipv4_update_pmtu(skb, dev_net(skb->dev), info,
529                                  t->parms.link, 0, iph->protocol, 0);
530                 err = 0;
531                 goto out;
532         }
533         if (type == ICMP_REDIRECT) {
534                 ipv4_redirect(skb, dev_net(skb->dev), t->parms.link, 0,
535                               iph->protocol, 0);
536                 err = 0;
537                 goto out;
538         }
539
540         err = 0;
541         if (__in6_dev_get(skb->dev) &&
542             !ip6_err_gen_icmpv6_unreach(skb, iph->ihl * 4, type, data_len))
543                 goto out;
544
545         if (t->parms.iph.daddr == 0)
546                 goto out;
547
548         if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
549                 goto out;
550
551         if (time_before(jiffies, t->err_time + IPTUNNEL_ERR_TIMEO))
552                 t->err_count++;
553         else
554                 t->err_count = 1;
555         t->err_time = jiffies;
556 out:
557         return err;
558 }
559
560 static inline bool is_spoofed_6rd(struct ip_tunnel *tunnel, const __be32 v4addr,
561                                   const struct in6_addr *v6addr)
562 {
563         __be32 v4embed = 0;
564         if (check_6rd(tunnel, v6addr, &v4embed) && v4addr != v4embed)
565                 return true;
566         return false;
567 }
568
569 /* Checks if an address matches an address on the tunnel interface.
570  * Used to detect the NAT of proto 41 packets and let them pass spoofing test.
571  * Long story:
572  * This function is called after we considered the packet as spoofed
573  * in is_spoofed_6rd.
574  * We may have a router that is doing NAT for proto 41 packets
575  * for an internal station. Destination a.a.a.a/PREFIX:bbbb:bbbb
576  * will be translated to n.n.n.n/PREFIX:bbbb:bbbb. And is_spoofed_6rd
577  * function will return true, dropping the packet.
578  * But, we can still check if is spoofed against the IP
579  * addresses associated with the interface.
580  */
581 static bool only_dnatted(const struct ip_tunnel *tunnel,
582         const struct in6_addr *v6dst)
583 {
584         int prefix_len;
585
586 #ifdef CONFIG_IPV6_SIT_6RD
587         prefix_len = tunnel->ip6rd.prefixlen + 32
588                 - tunnel->ip6rd.relay_prefixlen;
589 #else
590         prefix_len = 48;
591 #endif
592         return ipv6_chk_custom_prefix(v6dst, prefix_len, tunnel->dev);
593 }
594
595 /* Returns true if a packet is spoofed */
596 static bool packet_is_spoofed(struct sk_buff *skb,
597                               const struct iphdr *iph,
598                               struct ip_tunnel *tunnel)
599 {
600         const struct ipv6hdr *ipv6h;
601
602         if (tunnel->dev->priv_flags & IFF_ISATAP) {
603                 if (!isatap_chksrc(skb, iph, tunnel))
604                         return true;
605
606                 return false;
607         }
608
609         if (tunnel->dev->flags & IFF_POINTOPOINT)
610                 return false;
611
612         ipv6h = ipv6_hdr(skb);
613
614         if (unlikely(is_spoofed_6rd(tunnel, iph->saddr, &ipv6h->saddr))) {
615                 net_warn_ratelimited("Src spoofed %pI4/%pI6c -> %pI4/%pI6c\n",
616                                      &iph->saddr, &ipv6h->saddr,
617                                      &iph->daddr, &ipv6h->daddr);
618                 return true;
619         }
620
621         if (likely(!is_spoofed_6rd(tunnel, iph->daddr, &ipv6h->daddr)))
622                 return false;
623
624         if (only_dnatted(tunnel, &ipv6h->daddr))
625                 return false;
626
627         net_warn_ratelimited("Dst spoofed %pI4/%pI6c -> %pI4/%pI6c\n",
628                              &iph->saddr, &ipv6h->saddr,
629                              &iph->daddr, &ipv6h->daddr);
630         return true;
631 }
632
633 static int ipip6_rcv(struct sk_buff *skb)
634 {
635         const struct iphdr *iph = ip_hdr(skb);
636         struct ip_tunnel *tunnel;
637         int err;
638
639         tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
640                                      iph->saddr, iph->daddr);
641         if (tunnel) {
642                 struct pcpu_sw_netstats *tstats;
643
644                 if (tunnel->parms.iph.protocol != IPPROTO_IPV6 &&
645                     tunnel->parms.iph.protocol != 0)
646                         goto out;
647
648                 skb->mac_header = skb->network_header;
649                 skb_reset_network_header(skb);
650                 IPCB(skb)->flags = 0;
651                 skb->dev = tunnel->dev;
652
653                 if (packet_is_spoofed(skb, iph, tunnel)) {
654                         tunnel->dev->stats.rx_errors++;
655                         goto out;
656                 }
657
658                 if (iptunnel_pull_header(skb, 0, htons(ETH_P_IPV6),
659                     !net_eq(tunnel->net, dev_net(tunnel->dev))))
660                         goto out;
661
662                 /* skb can be uncloned in iptunnel_pull_header, so
663                  * old iph is no longer valid
664                  */
665                 iph = (const struct iphdr *)skb_mac_header(skb);
666                 err = IP_ECN_decapsulate(iph, skb);
667                 if (unlikely(err)) {
668                         if (log_ecn_error)
669                                 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
670                                                      &iph->saddr, iph->tos);
671                         if (err > 1) {
672                                 ++tunnel->dev->stats.rx_frame_errors;
673                                 ++tunnel->dev->stats.rx_errors;
674                                 goto out;
675                         }
676                 }
677
678                 tstats = this_cpu_ptr(tunnel->dev->tstats);
679                 u64_stats_update_begin(&tstats->syncp);
680                 tstats->rx_packets++;
681                 tstats->rx_bytes += skb->len;
682                 u64_stats_update_end(&tstats->syncp);
683
684                 netif_rx(skb);
685
686                 return 0;
687         }
688
689         /* no tunnel matched,  let upstream know, ipsec may handle it */
690         return 1;
691 out:
692         kfree_skb(skb);
693         return 0;
694 }
695
696 static const struct tnl_ptk_info ipip_tpi = {
697         /* no tunnel info required for ipip. */
698         .proto = htons(ETH_P_IP),
699 };
700
701 #if IS_ENABLED(CONFIG_MPLS)
702 static const struct tnl_ptk_info mplsip_tpi = {
703         /* no tunnel info required for mplsip. */
704         .proto = htons(ETH_P_MPLS_UC),
705 };
706 #endif
707
708 static int sit_tunnel_rcv(struct sk_buff *skb, u8 ipproto)
709 {
710         const struct iphdr *iph;
711         struct ip_tunnel *tunnel;
712
713         iph = ip_hdr(skb);
714         tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
715                                      iph->saddr, iph->daddr);
716         if (tunnel) {
717                 const struct tnl_ptk_info *tpi;
718
719                 if (tunnel->parms.iph.protocol != ipproto &&
720                     tunnel->parms.iph.protocol != 0)
721                         goto drop;
722
723                 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
724                         goto drop;
725 #if IS_ENABLED(CONFIG_MPLS)
726                 if (ipproto == IPPROTO_MPLS)
727                         tpi = &mplsip_tpi;
728                 else
729 #endif
730                         tpi = &ipip_tpi;
731                 if (iptunnel_pull_header(skb, 0, tpi->proto, false))
732                         goto drop;
733                 return ip_tunnel_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
734         }
735
736         return 1;
737
738 drop:
739         kfree_skb(skb);
740         return 0;
741 }
742
743 static int ipip_rcv(struct sk_buff *skb)
744 {
745         return sit_tunnel_rcv(skb, IPPROTO_IPIP);
746 }
747
748 #if IS_ENABLED(CONFIG_MPLS)
749 static int mplsip_rcv(struct sk_buff *skb)
750 {
751         return sit_tunnel_rcv(skb, IPPROTO_MPLS);
752 }
753 #endif
754
755 /*
756  * If the IPv6 address comes from 6rd / 6to4 (RFC 3056) addr space this function
757  * stores the embedded IPv4 address in v4dst and returns true.
758  */
759 static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst,
760                       __be32 *v4dst)
761 {
762 #ifdef CONFIG_IPV6_SIT_6RD
763         if (ipv6_prefix_equal(v6dst, &tunnel->ip6rd.prefix,
764                               tunnel->ip6rd.prefixlen)) {
765                 unsigned int pbw0, pbi0;
766                 int pbi1;
767                 u32 d;
768
769                 pbw0 = tunnel->ip6rd.prefixlen >> 5;
770                 pbi0 = tunnel->ip6rd.prefixlen & 0x1f;
771
772                 d = tunnel->ip6rd.relay_prefixlen < 32 ?
773                         (ntohl(v6dst->s6_addr32[pbw0]) << pbi0) >>
774                     tunnel->ip6rd.relay_prefixlen : 0;
775
776                 pbi1 = pbi0 - tunnel->ip6rd.relay_prefixlen;
777                 if (pbi1 > 0)
778                         d |= ntohl(v6dst->s6_addr32[pbw0 + 1]) >>
779                              (32 - pbi1);
780
781                 *v4dst = tunnel->ip6rd.relay_prefix | htonl(d);
782                 return true;
783         }
784 #else
785         if (v6dst->s6_addr16[0] == htons(0x2002)) {
786                 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
787                 memcpy(v4dst, &v6dst->s6_addr16[1], 4);
788                 return true;
789         }
790 #endif
791         return false;
792 }
793
794 static inline __be32 try_6rd(struct ip_tunnel *tunnel,
795                              const struct in6_addr *v6dst)
796 {
797         __be32 dst = 0;
798         check_6rd(tunnel, v6dst, &dst);
799         return dst;
800 }
801
802 /*
803  *      This function assumes it is being called from dev_queue_xmit()
804  *      and that skb is filled properly by that function.
805  */
806
807 static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
808                                      struct net_device *dev)
809 {
810         struct ip_tunnel *tunnel = netdev_priv(dev);
811         const struct iphdr  *tiph = &tunnel->parms.iph;
812         const struct ipv6hdr *iph6 = ipv6_hdr(skb);
813         u8     tos = tunnel->parms.iph.tos;
814         __be16 df = tiph->frag_off;
815         struct rtable *rt;              /* Route to the other host */
816         struct net_device *tdev;        /* Device to other host */
817         unsigned int max_headroom;      /* The extra header space needed */
818         __be32 dst = tiph->daddr;
819         struct flowi4 fl4;
820         int    mtu;
821         const struct in6_addr *addr6;
822         int addr_type;
823         u8 ttl;
824         u8 protocol = IPPROTO_IPV6;
825         int t_hlen = tunnel->hlen + sizeof(struct iphdr);
826
827         if (tos == 1)
828                 tos = ipv6_get_dsfield(iph6);
829
830         /* ISATAP (RFC4214) - must come before 6to4 */
831         if (dev->priv_flags & IFF_ISATAP) {
832                 struct neighbour *neigh = NULL;
833                 bool do_tx_error = false;
834
835                 if (skb_dst(skb))
836                         neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
837
838                 if (!neigh) {
839                         net_dbg_ratelimited("nexthop == NULL\n");
840                         goto tx_error;
841                 }
842
843                 addr6 = (const struct in6_addr *)&neigh->primary_key;
844                 addr_type = ipv6_addr_type(addr6);
845
846                 if ((addr_type & IPV6_ADDR_UNICAST) &&
847                      ipv6_addr_is_isatap(addr6))
848                         dst = addr6->s6_addr32[3];
849                 else
850                         do_tx_error = true;
851
852                 neigh_release(neigh);
853                 if (do_tx_error)
854                         goto tx_error;
855         }
856
857         if (!dst)
858                 dst = try_6rd(tunnel, &iph6->daddr);
859
860         if (!dst) {
861                 struct neighbour *neigh = NULL;
862                 bool do_tx_error = false;
863
864                 if (skb_dst(skb))
865                         neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
866
867                 if (!neigh) {
868                         net_dbg_ratelimited("nexthop == NULL\n");
869                         goto tx_error;
870                 }
871
872                 addr6 = (const struct in6_addr *)&neigh->primary_key;
873                 addr_type = ipv6_addr_type(addr6);
874
875                 if (addr_type == IPV6_ADDR_ANY) {
876                         addr6 = &ipv6_hdr(skb)->daddr;
877                         addr_type = ipv6_addr_type(addr6);
878                 }
879
880                 if ((addr_type & IPV6_ADDR_COMPATv4) != 0)
881                         dst = addr6->s6_addr32[3];
882                 else
883                         do_tx_error = true;
884
885                 neigh_release(neigh);
886                 if (do_tx_error)
887                         goto tx_error;
888         }
889
890         rt = ip_route_output_ports(tunnel->net, &fl4, NULL,
891                                    dst, tiph->saddr,
892                                    0, 0,
893                                    IPPROTO_IPV6, RT_TOS(tos),
894                                    tunnel->parms.link);
895         if (IS_ERR(rt)) {
896                 dev->stats.tx_carrier_errors++;
897                 goto tx_error_icmp;
898         }
899         if (rt->rt_type != RTN_UNICAST) {
900                 ip_rt_put(rt);
901                 dev->stats.tx_carrier_errors++;
902                 goto tx_error_icmp;
903         }
904         tdev = rt->dst.dev;
905
906         if (tdev == dev) {
907                 ip_rt_put(rt);
908                 dev->stats.collisions++;
909                 goto tx_error;
910         }
911
912         if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP4)) {
913                 ip_rt_put(rt);
914                 goto tx_error;
915         }
916
917         if (df) {
918                 mtu = dst_mtu(&rt->dst) - t_hlen;
919
920                 if (mtu < 68) {
921                         dev->stats.collisions++;
922                         ip_rt_put(rt);
923                         goto tx_error;
924                 }
925
926                 if (mtu < IPV6_MIN_MTU) {
927                         mtu = IPV6_MIN_MTU;
928                         df = 0;
929                 }
930
931                 if (tunnel->parms.iph.daddr && skb_dst(skb))
932                         skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
933
934                 if (skb->len > mtu && !skb_is_gso(skb)) {
935                         icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
936                         ip_rt_put(rt);
937                         goto tx_error;
938                 }
939         }
940
941         if (tunnel->err_count > 0) {
942                 if (time_before(jiffies,
943                                 tunnel->err_time + IPTUNNEL_ERR_TIMEO)) {
944                         tunnel->err_count--;
945                         dst_link_failure(skb);
946                 } else
947                         tunnel->err_count = 0;
948         }
949
950         /*
951          * Okay, now see if we can stuff it in the buffer as-is.
952          */
953         max_headroom = LL_RESERVED_SPACE(tdev) + t_hlen;
954
955         if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
956             (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
957                 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
958                 if (!new_skb) {
959                         ip_rt_put(rt);
960                         dev->stats.tx_dropped++;
961                         kfree_skb(skb);
962                         return NETDEV_TX_OK;
963                 }
964                 if (skb->sk)
965                         skb_set_owner_w(new_skb, skb->sk);
966                 dev_kfree_skb(skb);
967                 skb = new_skb;
968                 iph6 = ipv6_hdr(skb);
969         }
970         ttl = tiph->ttl;
971         if (ttl == 0)
972                 ttl = iph6->hop_limit;
973         tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
974
975         if (ip_tunnel_encap(skb, tunnel, &protocol, &fl4) < 0) {
976                 ip_rt_put(rt);
977                 goto tx_error;
978         }
979
980         skb_set_inner_ipproto(skb, IPPROTO_IPV6);
981
982         iptunnel_xmit(NULL, rt, skb, fl4.saddr, fl4.daddr, protocol, tos, ttl,
983                       df, !net_eq(tunnel->net, dev_net(dev)));
984         return NETDEV_TX_OK;
985
986 tx_error_icmp:
987         dst_link_failure(skb);
988 tx_error:
989         kfree_skb(skb);
990         dev->stats.tx_errors++;
991         return NETDEV_TX_OK;
992 }
993
994 static netdev_tx_t sit_tunnel_xmit__(struct sk_buff *skb,
995                                      struct net_device *dev, u8 ipproto)
996 {
997         struct ip_tunnel *tunnel = netdev_priv(dev);
998         const struct iphdr  *tiph = &tunnel->parms.iph;
999
1000         if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP4))
1001                 goto tx_error;
1002
1003         skb_set_inner_ipproto(skb, ipproto);
1004
1005         ip_tunnel_xmit(skb, dev, tiph, ipproto);
1006         return NETDEV_TX_OK;
1007 tx_error:
1008         kfree_skb(skb);
1009         dev->stats.tx_errors++;
1010         return NETDEV_TX_OK;
1011 }
1012
1013 static netdev_tx_t sit_tunnel_xmit(struct sk_buff *skb,
1014                                    struct net_device *dev)
1015 {
1016         switch (skb->protocol) {
1017         case htons(ETH_P_IP):
1018                 sit_tunnel_xmit__(skb, dev, IPPROTO_IPIP);
1019                 break;
1020         case htons(ETH_P_IPV6):
1021                 ipip6_tunnel_xmit(skb, dev);
1022                 break;
1023 #if IS_ENABLED(CONFIG_MPLS)
1024         case htons(ETH_P_MPLS_UC):
1025                 sit_tunnel_xmit__(skb, dev, IPPROTO_MPLS);
1026                 break;
1027 #endif
1028         default:
1029                 goto tx_err;
1030         }
1031
1032         return NETDEV_TX_OK;
1033
1034 tx_err:
1035         dev->stats.tx_errors++;
1036         kfree_skb(skb);
1037         return NETDEV_TX_OK;
1038
1039 }
1040
1041 static void ipip6_tunnel_bind_dev(struct net_device *dev)
1042 {
1043         struct net_device *tdev = NULL;
1044         struct ip_tunnel *tunnel;
1045         const struct iphdr *iph;
1046         struct flowi4 fl4;
1047
1048         tunnel = netdev_priv(dev);
1049         iph = &tunnel->parms.iph;
1050
1051         if (iph->daddr) {
1052                 struct rtable *rt = ip_route_output_ports(tunnel->net, &fl4,
1053                                                           NULL,
1054                                                           iph->daddr, iph->saddr,
1055                                                           0, 0,
1056                                                           IPPROTO_IPV6,
1057                                                           RT_TOS(iph->tos),
1058                                                           tunnel->parms.link);
1059
1060                 if (!IS_ERR(rt)) {
1061                         tdev = rt->dst.dev;
1062                         ip_rt_put(rt);
1063                 }
1064                 dev->flags |= IFF_POINTOPOINT;
1065         }
1066
1067         if (!tdev && tunnel->parms.link)
1068                 tdev = __dev_get_by_index(tunnel->net, tunnel->parms.link);
1069
1070         if (tdev && !netif_is_l3_master(tdev)) {
1071                 int t_hlen = tunnel->hlen + sizeof(struct iphdr);
1072
1073                 dev->mtu = tdev->mtu - t_hlen;
1074                 if (dev->mtu < IPV6_MIN_MTU)
1075                         dev->mtu = IPV6_MIN_MTU;
1076         }
1077 }
1078
1079 static void ipip6_tunnel_update(struct ip_tunnel *t, struct ip_tunnel_parm *p)
1080 {
1081         struct net *net = t->net;
1082         struct sit_net *sitn = net_generic(net, sit_net_id);
1083
1084         ipip6_tunnel_unlink(sitn, t);
1085         synchronize_net();
1086         t->parms.iph.saddr = p->iph.saddr;
1087         t->parms.iph.daddr = p->iph.daddr;
1088         memcpy(t->dev->dev_addr, &p->iph.saddr, 4);
1089         memcpy(t->dev->broadcast, &p->iph.daddr, 4);
1090         ipip6_tunnel_link(sitn, t);
1091         t->parms.iph.ttl = p->iph.ttl;
1092         t->parms.iph.tos = p->iph.tos;
1093         t->parms.iph.frag_off = p->iph.frag_off;
1094         if (t->parms.link != p->link) {
1095                 t->parms.link = p->link;
1096                 ipip6_tunnel_bind_dev(t->dev);
1097         }
1098         dst_cache_reset(&t->dst_cache);
1099         netdev_state_change(t->dev);
1100 }
1101
1102 #ifdef CONFIG_IPV6_SIT_6RD
1103 static int ipip6_tunnel_update_6rd(struct ip_tunnel *t,
1104                                    struct ip_tunnel_6rd *ip6rd)
1105 {
1106         struct in6_addr prefix;
1107         __be32 relay_prefix;
1108
1109         if (ip6rd->relay_prefixlen > 32 ||
1110             ip6rd->prefixlen + (32 - ip6rd->relay_prefixlen) > 64)
1111                 return -EINVAL;
1112
1113         ipv6_addr_prefix(&prefix, &ip6rd->prefix, ip6rd->prefixlen);
1114         if (!ipv6_addr_equal(&prefix, &ip6rd->prefix))
1115                 return -EINVAL;
1116         if (ip6rd->relay_prefixlen)
1117                 relay_prefix = ip6rd->relay_prefix &
1118                                htonl(0xffffffffUL <<
1119                                      (32 - ip6rd->relay_prefixlen));
1120         else
1121                 relay_prefix = 0;
1122         if (relay_prefix != ip6rd->relay_prefix)
1123                 return -EINVAL;
1124
1125         t->ip6rd.prefix = prefix;
1126         t->ip6rd.relay_prefix = relay_prefix;
1127         t->ip6rd.prefixlen = ip6rd->prefixlen;
1128         t->ip6rd.relay_prefixlen = ip6rd->relay_prefixlen;
1129         dst_cache_reset(&t->dst_cache);
1130         netdev_state_change(t->dev);
1131         return 0;
1132 }
1133 #endif
1134
1135 static bool ipip6_valid_ip_proto(u8 ipproto)
1136 {
1137         return ipproto == IPPROTO_IPV6 ||
1138                 ipproto == IPPROTO_IPIP ||
1139 #if IS_ENABLED(CONFIG_MPLS)
1140                 ipproto == IPPROTO_MPLS ||
1141 #endif
1142                 ipproto == 0;
1143 }
1144
1145 static int
1146 ipip6_tunnel_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1147 {
1148         int err = 0;
1149         struct ip_tunnel_parm p;
1150         struct ip_tunnel_prl prl;
1151         struct ip_tunnel *t = netdev_priv(dev);
1152         struct net *net = t->net;
1153         struct sit_net *sitn = net_generic(net, sit_net_id);
1154 #ifdef CONFIG_IPV6_SIT_6RD
1155         struct ip_tunnel_6rd ip6rd;
1156 #endif
1157
1158         switch (cmd) {
1159         case SIOCGETTUNNEL:
1160 #ifdef CONFIG_IPV6_SIT_6RD
1161         case SIOCGET6RD:
1162 #endif
1163                 if (dev == sitn->fb_tunnel_dev) {
1164                         if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1165                                 err = -EFAULT;
1166                                 break;
1167                         }
1168                         t = ipip6_tunnel_locate(net, &p, 0);
1169                         if (!t)
1170                                 t = netdev_priv(dev);
1171                 }
1172
1173                 err = -EFAULT;
1174                 if (cmd == SIOCGETTUNNEL) {
1175                         memcpy(&p, &t->parms, sizeof(p));
1176                         if (copy_to_user(ifr->ifr_ifru.ifru_data, &p,
1177                                          sizeof(p)))
1178                                 goto done;
1179 #ifdef CONFIG_IPV6_SIT_6RD
1180                 } else {
1181                         ip6rd.prefix = t->ip6rd.prefix;
1182                         ip6rd.relay_prefix = t->ip6rd.relay_prefix;
1183                         ip6rd.prefixlen = t->ip6rd.prefixlen;
1184                         ip6rd.relay_prefixlen = t->ip6rd.relay_prefixlen;
1185                         if (copy_to_user(ifr->ifr_ifru.ifru_data, &ip6rd,
1186                                          sizeof(ip6rd)))
1187                                 goto done;
1188 #endif
1189                 }
1190                 err = 0;
1191                 break;
1192
1193         case SIOCADDTUNNEL:
1194         case SIOCCHGTUNNEL:
1195                 err = -EPERM;
1196                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1197                         goto done;
1198
1199                 err = -EFAULT;
1200                 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1201                         goto done;
1202
1203                 err = -EINVAL;
1204                 if (!ipip6_valid_ip_proto(p.iph.protocol))
1205                         goto done;
1206                 if (p.iph.version != 4 ||
1207                     p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
1208                         goto done;
1209                 if (p.iph.ttl)
1210                         p.iph.frag_off |= htons(IP_DF);
1211
1212                 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
1213
1214                 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
1215                         if (t) {
1216                                 if (t->dev != dev) {
1217                                         err = -EEXIST;
1218                                         break;
1219                                 }
1220                         } else {
1221                                 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
1222                                     (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
1223                                         err = -EINVAL;
1224                                         break;
1225                                 }
1226                                 t = netdev_priv(dev);
1227                         }
1228
1229                         ipip6_tunnel_update(t, &p);
1230                 }
1231
1232                 if (t) {
1233                         err = 0;
1234                         if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
1235                                 err = -EFAULT;
1236                 } else
1237                         err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1238                 break;
1239
1240         case SIOCDELTUNNEL:
1241                 err = -EPERM;
1242                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1243                         goto done;
1244
1245                 if (dev == sitn->fb_tunnel_dev) {
1246                         err = -EFAULT;
1247                         if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1248                                 goto done;
1249                         err = -ENOENT;
1250                         t = ipip6_tunnel_locate(net, &p, 0);
1251                         if (!t)
1252                                 goto done;
1253                         err = -EPERM;
1254                         if (t == netdev_priv(sitn->fb_tunnel_dev))
1255                                 goto done;
1256                         dev = t->dev;
1257                 }
1258                 unregister_netdevice(dev);
1259                 err = 0;
1260                 break;
1261
1262         case SIOCGETPRL:
1263                 err = -EINVAL;
1264                 if (dev == sitn->fb_tunnel_dev)
1265                         goto done;
1266                 err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
1267                 break;
1268
1269         case SIOCADDPRL:
1270         case SIOCDELPRL:
1271         case SIOCCHGPRL:
1272                 err = -EPERM;
1273                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1274                         goto done;
1275                 err = -EINVAL;
1276                 if (dev == sitn->fb_tunnel_dev)
1277                         goto done;
1278                 err = -EFAULT;
1279                 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
1280                         goto done;
1281
1282                 switch (cmd) {
1283                 case SIOCDELPRL:
1284                         err = ipip6_tunnel_del_prl(t, &prl);
1285                         break;
1286                 case SIOCADDPRL:
1287                 case SIOCCHGPRL:
1288                         err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
1289                         break;
1290                 }
1291                 dst_cache_reset(&t->dst_cache);
1292                 netdev_state_change(dev);
1293                 break;
1294
1295 #ifdef CONFIG_IPV6_SIT_6RD
1296         case SIOCADD6RD:
1297         case SIOCCHG6RD:
1298         case SIOCDEL6RD:
1299                 err = -EPERM;
1300                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1301                         goto done;
1302
1303                 err = -EFAULT;
1304                 if (copy_from_user(&ip6rd, ifr->ifr_ifru.ifru_data,
1305                                    sizeof(ip6rd)))
1306                         goto done;
1307
1308                 if (cmd != SIOCDEL6RD) {
1309                         err = ipip6_tunnel_update_6rd(t, &ip6rd);
1310                         if (err < 0)
1311                                 goto done;
1312                 } else
1313                         ipip6_tunnel_clone_6rd(dev, sitn);
1314
1315                 err = 0;
1316                 break;
1317 #endif
1318
1319         default:
1320                 err = -EINVAL;
1321         }
1322
1323 done:
1324         return err;
1325 }
1326
1327 static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
1328 {
1329         struct ip_tunnel *tunnel = netdev_priv(dev);
1330         int t_hlen = tunnel->hlen + sizeof(struct iphdr);
1331
1332         if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - t_hlen)
1333                 return -EINVAL;
1334         dev->mtu = new_mtu;
1335         return 0;
1336 }
1337
1338 static const struct net_device_ops ipip6_netdev_ops = {
1339         .ndo_init       = ipip6_tunnel_init,
1340         .ndo_uninit     = ipip6_tunnel_uninit,
1341         .ndo_start_xmit = sit_tunnel_xmit,
1342         .ndo_do_ioctl   = ipip6_tunnel_ioctl,
1343         .ndo_change_mtu = ipip6_tunnel_change_mtu,
1344         .ndo_get_stats64 = ip_tunnel_get_stats64,
1345         .ndo_get_iflink = ip_tunnel_get_iflink,
1346 };
1347
1348 static void ipip6_dev_free(struct net_device *dev)
1349 {
1350         struct ip_tunnel *tunnel = netdev_priv(dev);
1351
1352         dst_cache_destroy(&tunnel->dst_cache);
1353         free_percpu(dev->tstats);
1354         free_netdev(dev);
1355 }
1356
1357 #define SIT_FEATURES (NETIF_F_SG           | \
1358                       NETIF_F_FRAGLIST     | \
1359                       NETIF_F_HIGHDMA      | \
1360                       NETIF_F_GSO_SOFTWARE | \
1361                       NETIF_F_HW_CSUM)
1362
1363 static void ipip6_tunnel_setup(struct net_device *dev)
1364 {
1365         struct ip_tunnel *tunnel = netdev_priv(dev);
1366         int t_hlen = tunnel->hlen + sizeof(struct iphdr);
1367
1368         dev->netdev_ops         = &ipip6_netdev_ops;
1369         dev->destructor         = ipip6_dev_free;
1370
1371         dev->type               = ARPHRD_SIT;
1372         dev->mtu                = ETH_DATA_LEN - t_hlen;
1373         dev->flags              = IFF_NOARP;
1374         netif_keep_dst(dev);
1375         dev->addr_len           = 4;
1376         dev->features           |= NETIF_F_LLTX;
1377         dev->features           |= SIT_FEATURES;
1378         dev->hw_features        |= SIT_FEATURES;
1379 }
1380
1381 static int ipip6_tunnel_init(struct net_device *dev)
1382 {
1383         struct ip_tunnel *tunnel = netdev_priv(dev);
1384         int err;
1385
1386         tunnel->dev = dev;
1387         tunnel->net = dev_net(dev);
1388         strcpy(tunnel->parms.name, dev->name);
1389
1390         ipip6_tunnel_bind_dev(dev);
1391         dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1392         if (!dev->tstats)
1393                 return -ENOMEM;
1394
1395         err = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
1396         if (err) {
1397                 free_percpu(dev->tstats);
1398                 dev->tstats = NULL;
1399                 return err;
1400         }
1401         dev_hold(dev);
1402         return 0;
1403 }
1404
1405 static void __net_init ipip6_fb_tunnel_init(struct net_device *dev)
1406 {
1407         struct ip_tunnel *tunnel = netdev_priv(dev);
1408         struct iphdr *iph = &tunnel->parms.iph;
1409         struct net *net = dev_net(dev);
1410         struct sit_net *sitn = net_generic(net, sit_net_id);
1411
1412         iph->version            = 4;
1413         iph->protocol           = IPPROTO_IPV6;
1414         iph->ihl                = 5;
1415         iph->ttl                = 64;
1416
1417         rcu_assign_pointer(sitn->tunnels_wc[0], tunnel);
1418 }
1419
1420 static int ipip6_validate(struct nlattr *tb[], struct nlattr *data[])
1421 {
1422         u8 proto;
1423
1424         if (!data || !data[IFLA_IPTUN_PROTO])
1425                 return 0;
1426
1427         proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1428         if (!ipip6_valid_ip_proto(proto))
1429                 return -EINVAL;
1430
1431         return 0;
1432 }
1433
1434 static void ipip6_netlink_parms(struct nlattr *data[],
1435                                 struct ip_tunnel_parm *parms)
1436 {
1437         memset(parms, 0, sizeof(*parms));
1438
1439         parms->iph.version = 4;
1440         parms->iph.protocol = IPPROTO_IPV6;
1441         parms->iph.ihl = 5;
1442         parms->iph.ttl = 64;
1443
1444         if (!data)
1445                 return;
1446
1447         if (data[IFLA_IPTUN_LINK])
1448                 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1449
1450         if (data[IFLA_IPTUN_LOCAL])
1451                 parms->iph.saddr = nla_get_be32(data[IFLA_IPTUN_LOCAL]);
1452
1453         if (data[IFLA_IPTUN_REMOTE])
1454                 parms->iph.daddr = nla_get_be32(data[IFLA_IPTUN_REMOTE]);
1455
1456         if (data[IFLA_IPTUN_TTL]) {
1457                 parms->iph.ttl = nla_get_u8(data[IFLA_IPTUN_TTL]);
1458                 if (parms->iph.ttl)
1459                         parms->iph.frag_off = htons(IP_DF);
1460         }
1461
1462         if (data[IFLA_IPTUN_TOS])
1463                 parms->iph.tos = nla_get_u8(data[IFLA_IPTUN_TOS]);
1464
1465         if (!data[IFLA_IPTUN_PMTUDISC] || nla_get_u8(data[IFLA_IPTUN_PMTUDISC]))
1466                 parms->iph.frag_off = htons(IP_DF);
1467
1468         if (data[IFLA_IPTUN_FLAGS])
1469                 parms->i_flags = nla_get_be16(data[IFLA_IPTUN_FLAGS]);
1470
1471         if (data[IFLA_IPTUN_PROTO])
1472                 parms->iph.protocol = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1473
1474 }
1475
1476 /* This function returns true when ENCAP attributes are present in the nl msg */
1477 static bool ipip6_netlink_encap_parms(struct nlattr *data[],
1478                                       struct ip_tunnel_encap *ipencap)
1479 {
1480         bool ret = false;
1481
1482         memset(ipencap, 0, sizeof(*ipencap));
1483
1484         if (!data)
1485                 return ret;
1486
1487         if (data[IFLA_IPTUN_ENCAP_TYPE]) {
1488                 ret = true;
1489                 ipencap->type = nla_get_u16(data[IFLA_IPTUN_ENCAP_TYPE]);
1490         }
1491
1492         if (data[IFLA_IPTUN_ENCAP_FLAGS]) {
1493                 ret = true;
1494                 ipencap->flags = nla_get_u16(data[IFLA_IPTUN_ENCAP_FLAGS]);
1495         }
1496
1497         if (data[IFLA_IPTUN_ENCAP_SPORT]) {
1498                 ret = true;
1499                 ipencap->sport = nla_get_be16(data[IFLA_IPTUN_ENCAP_SPORT]);
1500         }
1501
1502         if (data[IFLA_IPTUN_ENCAP_DPORT]) {
1503                 ret = true;
1504                 ipencap->dport = nla_get_be16(data[IFLA_IPTUN_ENCAP_DPORT]);
1505         }
1506
1507         return ret;
1508 }
1509
1510 #ifdef CONFIG_IPV6_SIT_6RD
1511 /* This function returns true when 6RD attributes are present in the nl msg */
1512 static bool ipip6_netlink_6rd_parms(struct nlattr *data[],
1513                                     struct ip_tunnel_6rd *ip6rd)
1514 {
1515         bool ret = false;
1516         memset(ip6rd, 0, sizeof(*ip6rd));
1517
1518         if (!data)
1519                 return ret;
1520
1521         if (data[IFLA_IPTUN_6RD_PREFIX]) {
1522                 ret = true;
1523                 ip6rd->prefix = nla_get_in6_addr(data[IFLA_IPTUN_6RD_PREFIX]);
1524         }
1525
1526         if (data[IFLA_IPTUN_6RD_RELAY_PREFIX]) {
1527                 ret = true;
1528                 ip6rd->relay_prefix =
1529                         nla_get_be32(data[IFLA_IPTUN_6RD_RELAY_PREFIX]);
1530         }
1531
1532         if (data[IFLA_IPTUN_6RD_PREFIXLEN]) {
1533                 ret = true;
1534                 ip6rd->prefixlen = nla_get_u16(data[IFLA_IPTUN_6RD_PREFIXLEN]);
1535         }
1536
1537         if (data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]) {
1538                 ret = true;
1539                 ip6rd->relay_prefixlen =
1540                         nla_get_u16(data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]);
1541         }
1542
1543         return ret;
1544 }
1545 #endif
1546
1547 static int ipip6_newlink(struct net *src_net, struct net_device *dev,
1548                          struct nlattr *tb[], struct nlattr *data[])
1549 {
1550         struct net *net = dev_net(dev);
1551         struct ip_tunnel *nt;
1552         struct ip_tunnel_encap ipencap;
1553 #ifdef CONFIG_IPV6_SIT_6RD
1554         struct ip_tunnel_6rd ip6rd;
1555 #endif
1556         int err;
1557
1558         nt = netdev_priv(dev);
1559
1560         if (ipip6_netlink_encap_parms(data, &ipencap)) {
1561                 err = ip_tunnel_encap_setup(nt, &ipencap);
1562                 if (err < 0)
1563                         return err;
1564         }
1565
1566         ipip6_netlink_parms(data, &nt->parms);
1567
1568         if (ipip6_tunnel_locate(net, &nt->parms, 0))
1569                 return -EEXIST;
1570
1571         err = ipip6_tunnel_create(dev);
1572         if (err < 0)
1573                 return err;
1574
1575         if (tb[IFLA_MTU]) {
1576                 u32 mtu = nla_get_u32(tb[IFLA_MTU]);
1577
1578                 if (mtu >= IPV6_MIN_MTU && mtu <= 0xFFF8 - dev->hard_header_len)
1579                         dev->mtu = mtu;
1580         }
1581
1582 #ifdef CONFIG_IPV6_SIT_6RD
1583         if (ipip6_netlink_6rd_parms(data, &ip6rd)) {
1584                 err = ipip6_tunnel_update_6rd(nt, &ip6rd);
1585                 if (err < 0)
1586                         unregister_netdevice_queue(dev, NULL);
1587         }
1588 #endif
1589
1590         return err;
1591 }
1592
1593 static int ipip6_changelink(struct net_device *dev, struct nlattr *tb[],
1594                           struct nlattr *data[])
1595 {
1596         struct ip_tunnel *t = netdev_priv(dev);
1597         struct ip_tunnel_parm p;
1598         struct ip_tunnel_encap ipencap;
1599         struct net *net = t->net;
1600         struct sit_net *sitn = net_generic(net, sit_net_id);
1601 #ifdef CONFIG_IPV6_SIT_6RD
1602         struct ip_tunnel_6rd ip6rd;
1603 #endif
1604         int err;
1605
1606         if (dev == sitn->fb_tunnel_dev)
1607                 return -EINVAL;
1608
1609         if (ipip6_netlink_encap_parms(data, &ipencap)) {
1610                 err = ip_tunnel_encap_setup(t, &ipencap);
1611                 if (err < 0)
1612                         return err;
1613         }
1614
1615         ipip6_netlink_parms(data, &p);
1616
1617         if (((dev->flags & IFF_POINTOPOINT) && !p.iph.daddr) ||
1618             (!(dev->flags & IFF_POINTOPOINT) && p.iph.daddr))
1619                 return -EINVAL;
1620
1621         t = ipip6_tunnel_locate(net, &p, 0);
1622
1623         if (t) {
1624                 if (t->dev != dev)
1625                         return -EEXIST;
1626         } else
1627                 t = netdev_priv(dev);
1628
1629         ipip6_tunnel_update(t, &p);
1630
1631 #ifdef CONFIG_IPV6_SIT_6RD
1632         if (ipip6_netlink_6rd_parms(data, &ip6rd))
1633                 return ipip6_tunnel_update_6rd(t, &ip6rd);
1634 #endif
1635
1636         return 0;
1637 }
1638
1639 static size_t ipip6_get_size(const struct net_device *dev)
1640 {
1641         return
1642                 /* IFLA_IPTUN_LINK */
1643                 nla_total_size(4) +
1644                 /* IFLA_IPTUN_LOCAL */
1645                 nla_total_size(4) +
1646                 /* IFLA_IPTUN_REMOTE */
1647                 nla_total_size(4) +
1648                 /* IFLA_IPTUN_TTL */
1649                 nla_total_size(1) +
1650                 /* IFLA_IPTUN_TOS */
1651                 nla_total_size(1) +
1652                 /* IFLA_IPTUN_PMTUDISC */
1653                 nla_total_size(1) +
1654                 /* IFLA_IPTUN_FLAGS */
1655                 nla_total_size(2) +
1656                 /* IFLA_IPTUN_PROTO */
1657                 nla_total_size(1) +
1658 #ifdef CONFIG_IPV6_SIT_6RD
1659                 /* IFLA_IPTUN_6RD_PREFIX */
1660                 nla_total_size(sizeof(struct in6_addr)) +
1661                 /* IFLA_IPTUN_6RD_RELAY_PREFIX */
1662                 nla_total_size(4) +
1663                 /* IFLA_IPTUN_6RD_PREFIXLEN */
1664                 nla_total_size(2) +
1665                 /* IFLA_IPTUN_6RD_RELAY_PREFIXLEN */
1666                 nla_total_size(2) +
1667 #endif
1668                 /* IFLA_IPTUN_ENCAP_TYPE */
1669                 nla_total_size(2) +
1670                 /* IFLA_IPTUN_ENCAP_FLAGS */
1671                 nla_total_size(2) +
1672                 /* IFLA_IPTUN_ENCAP_SPORT */
1673                 nla_total_size(2) +
1674                 /* IFLA_IPTUN_ENCAP_DPORT */
1675                 nla_total_size(2) +
1676                 0;
1677 }
1678
1679 static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev)
1680 {
1681         struct ip_tunnel *tunnel = netdev_priv(dev);
1682         struct ip_tunnel_parm *parm = &tunnel->parms;
1683
1684         if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1685             nla_put_in_addr(skb, IFLA_IPTUN_LOCAL, parm->iph.saddr) ||
1686             nla_put_in_addr(skb, IFLA_IPTUN_REMOTE, parm->iph.daddr) ||
1687             nla_put_u8(skb, IFLA_IPTUN_TTL, parm->iph.ttl) ||
1688             nla_put_u8(skb, IFLA_IPTUN_TOS, parm->iph.tos) ||
1689             nla_put_u8(skb, IFLA_IPTUN_PMTUDISC,
1690                        !!(parm->iph.frag_off & htons(IP_DF))) ||
1691             nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->iph.protocol) ||
1692             nla_put_be16(skb, IFLA_IPTUN_FLAGS, parm->i_flags))
1693                 goto nla_put_failure;
1694
1695 #ifdef CONFIG_IPV6_SIT_6RD
1696         if (nla_put_in6_addr(skb, IFLA_IPTUN_6RD_PREFIX,
1697                              &tunnel->ip6rd.prefix) ||
1698             nla_put_in_addr(skb, IFLA_IPTUN_6RD_RELAY_PREFIX,
1699                             tunnel->ip6rd.relay_prefix) ||
1700             nla_put_u16(skb, IFLA_IPTUN_6RD_PREFIXLEN,
1701                         tunnel->ip6rd.prefixlen) ||
1702             nla_put_u16(skb, IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
1703                         tunnel->ip6rd.relay_prefixlen))
1704                 goto nla_put_failure;
1705 #endif
1706
1707         if (nla_put_u16(skb, IFLA_IPTUN_ENCAP_TYPE,
1708                         tunnel->encap.type) ||
1709             nla_put_be16(skb, IFLA_IPTUN_ENCAP_SPORT,
1710                         tunnel->encap.sport) ||
1711             nla_put_be16(skb, IFLA_IPTUN_ENCAP_DPORT,
1712                         tunnel->encap.dport) ||
1713             nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS,
1714                         tunnel->encap.flags))
1715                 goto nla_put_failure;
1716
1717         return 0;
1718
1719 nla_put_failure:
1720         return -EMSGSIZE;
1721 }
1722
1723 static const struct nla_policy ipip6_policy[IFLA_IPTUN_MAX + 1] = {
1724         [IFLA_IPTUN_LINK]               = { .type = NLA_U32 },
1725         [IFLA_IPTUN_LOCAL]              = { .type = NLA_U32 },
1726         [IFLA_IPTUN_REMOTE]             = { .type = NLA_U32 },
1727         [IFLA_IPTUN_TTL]                = { .type = NLA_U8 },
1728         [IFLA_IPTUN_TOS]                = { .type = NLA_U8 },
1729         [IFLA_IPTUN_PMTUDISC]           = { .type = NLA_U8 },
1730         [IFLA_IPTUN_FLAGS]              = { .type = NLA_U16 },
1731         [IFLA_IPTUN_PROTO]              = { .type = NLA_U8 },
1732 #ifdef CONFIG_IPV6_SIT_6RD
1733         [IFLA_IPTUN_6RD_PREFIX]         = { .len = sizeof(struct in6_addr) },
1734         [IFLA_IPTUN_6RD_RELAY_PREFIX]   = { .type = NLA_U32 },
1735         [IFLA_IPTUN_6RD_PREFIXLEN]      = { .type = NLA_U16 },
1736         [IFLA_IPTUN_6RD_RELAY_PREFIXLEN] = { .type = NLA_U16 },
1737 #endif
1738         [IFLA_IPTUN_ENCAP_TYPE]         = { .type = NLA_U16 },
1739         [IFLA_IPTUN_ENCAP_FLAGS]        = { .type = NLA_U16 },
1740         [IFLA_IPTUN_ENCAP_SPORT]        = { .type = NLA_U16 },
1741         [IFLA_IPTUN_ENCAP_DPORT]        = { .type = NLA_U16 },
1742 };
1743
1744 static void ipip6_dellink(struct net_device *dev, struct list_head *head)
1745 {
1746         struct net *net = dev_net(dev);
1747         struct sit_net *sitn = net_generic(net, sit_net_id);
1748
1749         if (dev != sitn->fb_tunnel_dev)
1750                 unregister_netdevice_queue(dev, head);
1751 }
1752
1753 static struct rtnl_link_ops sit_link_ops __read_mostly = {
1754         .kind           = "sit",
1755         .maxtype        = IFLA_IPTUN_MAX,
1756         .policy         = ipip6_policy,
1757         .priv_size      = sizeof(struct ip_tunnel),
1758         .setup          = ipip6_tunnel_setup,
1759         .validate       = ipip6_validate,
1760         .newlink        = ipip6_newlink,
1761         .changelink     = ipip6_changelink,
1762         .get_size       = ipip6_get_size,
1763         .fill_info      = ipip6_fill_info,
1764         .dellink        = ipip6_dellink,
1765         .get_link_net   = ip_tunnel_get_link_net,
1766 };
1767
1768 static struct xfrm_tunnel sit_handler __read_mostly = {
1769         .handler        =       ipip6_rcv,
1770         .err_handler    =       ipip6_err,
1771         .priority       =       1,
1772 };
1773
1774 static struct xfrm_tunnel ipip_handler __read_mostly = {
1775         .handler        =       ipip_rcv,
1776         .err_handler    =       ipip6_err,
1777         .priority       =       2,
1778 };
1779
1780 #if IS_ENABLED(CONFIG_MPLS)
1781 static struct xfrm_tunnel mplsip_handler __read_mostly = {
1782         .handler        =       mplsip_rcv,
1783         .err_handler    =       ipip6_err,
1784         .priority       =       2,
1785 };
1786 #endif
1787
1788 static void __net_exit sit_destroy_tunnels(struct net *net,
1789                                            struct list_head *head)
1790 {
1791         struct sit_net *sitn = net_generic(net, sit_net_id);
1792         struct net_device *dev, *aux;
1793         int prio;
1794
1795         for_each_netdev_safe(net, dev, aux)
1796                 if (dev->rtnl_link_ops == &sit_link_ops)
1797                         unregister_netdevice_queue(dev, head);
1798
1799         for (prio = 0; prio < 4; prio++) {
1800                 int h;
1801                 for (h = 0; h < (prio ? IP6_SIT_HASH_SIZE : 1); h++) {
1802                         struct ip_tunnel *t;
1803
1804                         t = rtnl_dereference(sitn->tunnels[prio][h]);
1805                         while (t) {
1806                                 /* If dev is in the same netns, it has already
1807                                  * been added to the list by the previous loop.
1808                                  */
1809                                 if (!net_eq(dev_net(t->dev), net))
1810                                         unregister_netdevice_queue(t->dev,
1811                                                                    head);
1812                                 t = rtnl_dereference(t->next);
1813                         }
1814                 }
1815         }
1816 }
1817
1818 static int __net_init sit_init_net(struct net *net)
1819 {
1820         struct sit_net *sitn = net_generic(net, sit_net_id);
1821         struct ip_tunnel *t;
1822         int err;
1823
1824         sitn->tunnels[0] = sitn->tunnels_wc;
1825         sitn->tunnels[1] = sitn->tunnels_l;
1826         sitn->tunnels[2] = sitn->tunnels_r;
1827         sitn->tunnels[3] = sitn->tunnels_r_l;
1828
1829         sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1830                                            NET_NAME_UNKNOWN,
1831                                            ipip6_tunnel_setup);
1832         if (!sitn->fb_tunnel_dev) {
1833                 err = -ENOMEM;
1834                 goto err_alloc_dev;
1835         }
1836         dev_net_set(sitn->fb_tunnel_dev, net);
1837         sitn->fb_tunnel_dev->rtnl_link_ops = &sit_link_ops;
1838         /* FB netdevice is special: we have one, and only one per netns.
1839          * Allowing to move it to another netns is clearly unsafe.
1840          */
1841         sitn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1842
1843         err = register_netdev(sitn->fb_tunnel_dev);
1844         if (err)
1845                 goto err_reg_dev;
1846
1847         ipip6_tunnel_clone_6rd(sitn->fb_tunnel_dev, sitn);
1848         ipip6_fb_tunnel_init(sitn->fb_tunnel_dev);
1849
1850         t = netdev_priv(sitn->fb_tunnel_dev);
1851
1852         strcpy(t->parms.name, sitn->fb_tunnel_dev->name);
1853         return 0;
1854
1855 err_reg_dev:
1856         ipip6_dev_free(sitn->fb_tunnel_dev);
1857 err_alloc_dev:
1858         return err;
1859 }
1860
1861 static void __net_exit sit_exit_net(struct net *net)
1862 {
1863         LIST_HEAD(list);
1864
1865         rtnl_lock();
1866         sit_destroy_tunnels(net, &list);
1867         unregister_netdevice_many(&list);
1868         rtnl_unlock();
1869 }
1870
1871 static struct pernet_operations sit_net_ops = {
1872         .init = sit_init_net,
1873         .exit = sit_exit_net,
1874         .id   = &sit_net_id,
1875         .size = sizeof(struct sit_net),
1876 };
1877
1878 static void __exit sit_cleanup(void)
1879 {
1880         rtnl_link_unregister(&sit_link_ops);
1881         xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
1882         xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
1883 #if IS_ENABLED(CONFIG_MPLS)
1884         xfrm4_tunnel_deregister(&mplsip_handler, AF_MPLS);
1885 #endif
1886
1887         unregister_pernet_device(&sit_net_ops);
1888         rcu_barrier(); /* Wait for completion of call_rcu()'s */
1889 }
1890
1891 static int __init sit_init(void)
1892 {
1893         int err;
1894
1895         pr_info("IPv6, IPv4 and MPLS over IPv4 tunneling driver\n");
1896
1897         err = register_pernet_device(&sit_net_ops);
1898         if (err < 0)
1899                 return err;
1900         err = xfrm4_tunnel_register(&sit_handler, AF_INET6);
1901         if (err < 0) {
1902                 pr_info("%s: can't register ip6ip4\n", __func__);
1903                 goto xfrm_tunnel_failed;
1904         }
1905         err = xfrm4_tunnel_register(&ipip_handler, AF_INET);
1906         if (err < 0) {
1907                 pr_info("%s: can't register ip4ip4\n", __func__);
1908                 goto xfrm_tunnel4_failed;
1909         }
1910 #if IS_ENABLED(CONFIG_MPLS)
1911         err = xfrm4_tunnel_register(&mplsip_handler, AF_MPLS);
1912         if (err < 0) {
1913                 pr_info("%s: can't register mplsip\n", __func__);
1914                 goto xfrm_tunnel_mpls_failed;
1915         }
1916 #endif
1917         err = rtnl_link_register(&sit_link_ops);
1918         if (err < 0)
1919                 goto rtnl_link_failed;
1920
1921 out:
1922         return err;
1923
1924 rtnl_link_failed:
1925 #if IS_ENABLED(CONFIG_MPLS)
1926         xfrm4_tunnel_deregister(&mplsip_handler, AF_MPLS);
1927 xfrm_tunnel_mpls_failed:
1928 #endif
1929         xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
1930 xfrm_tunnel4_failed:
1931         xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
1932 xfrm_tunnel_failed:
1933         unregister_pernet_device(&sit_net_ops);
1934         goto out;
1935 }
1936
1937 module_init(sit_init);
1938 module_exit(sit_cleanup);
1939 MODULE_LICENSE("GPL");
1940 MODULE_ALIAS_RTNL_LINK("sit");
1941 MODULE_ALIAS_NETDEV("sit0");