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