GNU Linux-libre 4.14.290-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 <linux/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 unsigned 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         free_netdev(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 | __GFP_NOWARN) :
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         flowi4_init_output(&fl4, tunnel->parms.link, tunnel->fwmark,
889                            RT_TOS(tos), RT_SCOPE_UNIVERSE, IPPROTO_IPV6,
890                            0, dst, tiph->saddr, 0, 0,
891                            sock_net_uid(tunnel->net, NULL));
892         rt = ip_route_output_flow(tunnel->net, &fl4, NULL);
893
894         if (IS_ERR(rt)) {
895                 dev->stats.tx_carrier_errors++;
896                 goto tx_error_icmp;
897         }
898         if (rt->rt_type != RTN_UNICAST) {
899                 ip_rt_put(rt);
900                 dev->stats.tx_carrier_errors++;
901                 goto tx_error_icmp;
902         }
903         tdev = rt->dst.dev;
904
905         if (tdev == dev) {
906                 ip_rt_put(rt);
907                 dev->stats.collisions++;
908                 goto tx_error;
909         }
910
911         if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP4)) {
912                 ip_rt_put(rt);
913                 goto tx_error;
914         }
915
916         if (df) {
917                 mtu = dst_mtu(&rt->dst) - t_hlen;
918
919                 if (mtu < 68) {
920                         dev->stats.collisions++;
921                         ip_rt_put(rt);
922                         goto tx_error;
923                 }
924
925                 if (mtu < IPV6_MIN_MTU) {
926                         mtu = IPV6_MIN_MTU;
927                         df = 0;
928                 }
929
930                 if (tunnel->parms.iph.daddr)
931                         skb_dst_update_pmtu_no_confirm(skb, mtu);
932
933                 if (skb->len > mtu && !skb_is_gso(skb)) {
934                         icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
935                         ip_rt_put(rt);
936                         goto tx_error;
937                 }
938         }
939
940         if (tunnel->err_count > 0) {
941                 if (time_before(jiffies,
942                                 tunnel->err_time + IPTUNNEL_ERR_TIMEO)) {
943                         tunnel->err_count--;
944                         dst_link_failure(skb);
945                 } else
946                         tunnel->err_count = 0;
947         }
948
949         /*
950          * Okay, now see if we can stuff it in the buffer as-is.
951          */
952         max_headroom = LL_RESERVED_SPACE(tdev) + t_hlen;
953
954         if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
955             (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
956                 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
957                 if (!new_skb) {
958                         ip_rt_put(rt);
959                         dev->stats.tx_dropped++;
960                         kfree_skb(skb);
961                         return NETDEV_TX_OK;
962                 }
963                 if (skb->sk)
964                         skb_set_owner_w(new_skb, skb->sk);
965                 dev_kfree_skb(skb);
966                 skb = new_skb;
967                 iph6 = ipv6_hdr(skb);
968         }
969         ttl = tiph->ttl;
970         if (ttl == 0)
971                 ttl = iph6->hop_limit;
972         tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
973
974         if (ip_tunnel_encap(skb, tunnel, &protocol, &fl4) < 0) {
975                 ip_rt_put(rt);
976                 goto tx_error;
977         }
978
979         skb_set_inner_ipproto(skb, IPPROTO_IPV6);
980
981         iptunnel_xmit(NULL, rt, skb, fl4.saddr, fl4.daddr, protocol, tos, ttl,
982                       df, !net_eq(tunnel->net, dev_net(dev)));
983         return NETDEV_TX_OK;
984
985 tx_error_icmp:
986         dst_link_failure(skb);
987 tx_error:
988         kfree_skb(skb);
989         dev->stats.tx_errors++;
990         return NETDEV_TX_OK;
991 }
992
993 static netdev_tx_t sit_tunnel_xmit__(struct sk_buff *skb,
994                                      struct net_device *dev, u8 ipproto)
995 {
996         struct ip_tunnel *tunnel = netdev_priv(dev);
997         const struct iphdr  *tiph = &tunnel->parms.iph;
998
999         if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP4))
1000                 goto tx_error;
1001
1002         skb_set_inner_ipproto(skb, ipproto);
1003
1004         ip_tunnel_xmit(skb, dev, tiph, ipproto);
1005         return NETDEV_TX_OK;
1006 tx_error:
1007         kfree_skb(skb);
1008         dev->stats.tx_errors++;
1009         return NETDEV_TX_OK;
1010 }
1011
1012 static netdev_tx_t sit_tunnel_xmit(struct sk_buff *skb,
1013                                    struct net_device *dev)
1014 {
1015         switch (skb->protocol) {
1016         case htons(ETH_P_IP):
1017                 sit_tunnel_xmit__(skb, dev, IPPROTO_IPIP);
1018                 break;
1019         case htons(ETH_P_IPV6):
1020                 ipip6_tunnel_xmit(skb, dev);
1021                 break;
1022 #if IS_ENABLED(CONFIG_MPLS)
1023         case htons(ETH_P_MPLS_UC):
1024                 sit_tunnel_xmit__(skb, dev, IPPROTO_MPLS);
1025                 break;
1026 #endif
1027         default:
1028                 goto tx_err;
1029         }
1030
1031         return NETDEV_TX_OK;
1032
1033 tx_err:
1034         dev->stats.tx_errors++;
1035         kfree_skb(skb);
1036         return NETDEV_TX_OK;
1037
1038 }
1039
1040 static void ipip6_tunnel_bind_dev(struct net_device *dev)
1041 {
1042         struct net_device *tdev = NULL;
1043         struct ip_tunnel *tunnel;
1044         const struct iphdr *iph;
1045         struct flowi4 fl4;
1046
1047         tunnel = netdev_priv(dev);
1048         iph = &tunnel->parms.iph;
1049
1050         if (iph->daddr) {
1051                 struct rtable *rt = ip_route_output_ports(tunnel->net, &fl4,
1052                                                           NULL,
1053                                                           iph->daddr, iph->saddr,
1054                                                           0, 0,
1055                                                           IPPROTO_IPV6,
1056                                                           RT_TOS(iph->tos),
1057                                                           tunnel->parms.link);
1058
1059                 if (!IS_ERR(rt)) {
1060                         tdev = rt->dst.dev;
1061                         ip_rt_put(rt);
1062                 }
1063                 dev->flags |= IFF_POINTOPOINT;
1064         }
1065
1066         if (!tdev && tunnel->parms.link)
1067                 tdev = __dev_get_by_index(tunnel->net, tunnel->parms.link);
1068
1069         if (tdev && !netif_is_l3_master(tdev)) {
1070                 int t_hlen = tunnel->hlen + sizeof(struct iphdr);
1071
1072                 dev->mtu = tdev->mtu - t_hlen;
1073                 if (dev->mtu < IPV6_MIN_MTU)
1074                         dev->mtu = IPV6_MIN_MTU;
1075         }
1076 }
1077
1078 static void ipip6_tunnel_update(struct ip_tunnel *t, struct ip_tunnel_parm *p,
1079                                 __u32 fwmark)
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 || t->fwmark != fwmark) {
1095                 t->parms.link = p->link;
1096                 t->fwmark = fwmark;
1097                 ipip6_tunnel_bind_dev(t->dev);
1098         }
1099         dst_cache_reset(&t->dst_cache);
1100         netdev_state_change(t->dev);
1101 }
1102
1103 #ifdef CONFIG_IPV6_SIT_6RD
1104 static int ipip6_tunnel_update_6rd(struct ip_tunnel *t,
1105                                    struct ip_tunnel_6rd *ip6rd)
1106 {
1107         struct in6_addr prefix;
1108         __be32 relay_prefix;
1109
1110         if (ip6rd->relay_prefixlen > 32 ||
1111             ip6rd->prefixlen + (32 - ip6rd->relay_prefixlen) > 64)
1112                 return -EINVAL;
1113
1114         ipv6_addr_prefix(&prefix, &ip6rd->prefix, ip6rd->prefixlen);
1115         if (!ipv6_addr_equal(&prefix, &ip6rd->prefix))
1116                 return -EINVAL;
1117         if (ip6rd->relay_prefixlen)
1118                 relay_prefix = ip6rd->relay_prefix &
1119                                htonl(0xffffffffUL <<
1120                                      (32 - ip6rd->relay_prefixlen));
1121         else
1122                 relay_prefix = 0;
1123         if (relay_prefix != ip6rd->relay_prefix)
1124                 return -EINVAL;
1125
1126         t->ip6rd.prefix = prefix;
1127         t->ip6rd.relay_prefix = relay_prefix;
1128         t->ip6rd.prefixlen = ip6rd->prefixlen;
1129         t->ip6rd.relay_prefixlen = ip6rd->relay_prefixlen;
1130         dst_cache_reset(&t->dst_cache);
1131         netdev_state_change(t->dev);
1132         return 0;
1133 }
1134 #endif
1135
1136 static bool ipip6_valid_ip_proto(u8 ipproto)
1137 {
1138         return ipproto == IPPROTO_IPV6 ||
1139                 ipproto == IPPROTO_IPIP ||
1140 #if IS_ENABLED(CONFIG_MPLS)
1141                 ipproto == IPPROTO_MPLS ||
1142 #endif
1143                 ipproto == 0;
1144 }
1145
1146 static int
1147 ipip6_tunnel_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1148 {
1149         int err = 0;
1150         struct ip_tunnel_parm p;
1151         struct ip_tunnel_prl prl;
1152         struct ip_tunnel *t = netdev_priv(dev);
1153         struct net *net = t->net;
1154         struct sit_net *sitn = net_generic(net, sit_net_id);
1155 #ifdef CONFIG_IPV6_SIT_6RD
1156         struct ip_tunnel_6rd ip6rd;
1157 #endif
1158
1159         switch (cmd) {
1160         case SIOCGETTUNNEL:
1161 #ifdef CONFIG_IPV6_SIT_6RD
1162         case SIOCGET6RD:
1163 #endif
1164                 if (dev == sitn->fb_tunnel_dev) {
1165                         if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1166                                 err = -EFAULT;
1167                                 break;
1168                         }
1169                         t = ipip6_tunnel_locate(net, &p, 0);
1170                         if (!t)
1171                                 t = netdev_priv(dev);
1172                 }
1173
1174                 err = -EFAULT;
1175                 if (cmd == SIOCGETTUNNEL) {
1176                         memcpy(&p, &t->parms, sizeof(p));
1177                         if (copy_to_user(ifr->ifr_ifru.ifru_data, &p,
1178                                          sizeof(p)))
1179                                 goto done;
1180 #ifdef CONFIG_IPV6_SIT_6RD
1181                 } else {
1182                         ip6rd.prefix = t->ip6rd.prefix;
1183                         ip6rd.relay_prefix = t->ip6rd.relay_prefix;
1184                         ip6rd.prefixlen = t->ip6rd.prefixlen;
1185                         ip6rd.relay_prefixlen = t->ip6rd.relay_prefixlen;
1186                         if (copy_to_user(ifr->ifr_ifru.ifru_data, &ip6rd,
1187                                          sizeof(ip6rd)))
1188                                 goto done;
1189 #endif
1190                 }
1191                 err = 0;
1192                 break;
1193
1194         case SIOCADDTUNNEL:
1195         case SIOCCHGTUNNEL:
1196                 err = -EPERM;
1197                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1198                         goto done;
1199
1200                 err = -EFAULT;
1201                 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1202                         goto done;
1203
1204                 err = -EINVAL;
1205                 if (!ipip6_valid_ip_proto(p.iph.protocol))
1206                         goto done;
1207                 if (p.iph.version != 4 ||
1208                     p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
1209                         goto done;
1210                 if (p.iph.ttl)
1211                         p.iph.frag_off |= htons(IP_DF);
1212
1213                 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
1214
1215                 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
1216                         if (t) {
1217                                 if (t->dev != dev) {
1218                                         err = -EEXIST;
1219                                         break;
1220                                 }
1221                         } else {
1222                                 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
1223                                     (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
1224                                         err = -EINVAL;
1225                                         break;
1226                                 }
1227                                 t = netdev_priv(dev);
1228                         }
1229
1230                         ipip6_tunnel_update(t, &p, t->fwmark);
1231                 }
1232
1233                 if (t) {
1234                         err = 0;
1235                         if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
1236                                 err = -EFAULT;
1237                 } else
1238                         err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1239                 break;
1240
1241         case SIOCDELTUNNEL:
1242                 err = -EPERM;
1243                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1244                         goto done;
1245
1246                 if (dev == sitn->fb_tunnel_dev) {
1247                         err = -EFAULT;
1248                         if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1249                                 goto done;
1250                         err = -ENOENT;
1251                         t = ipip6_tunnel_locate(net, &p, 0);
1252                         if (!t)
1253                                 goto done;
1254                         err = -EPERM;
1255                         if (t == netdev_priv(sitn->fb_tunnel_dev))
1256                                 goto done;
1257                         dev = t->dev;
1258                 }
1259                 unregister_netdevice(dev);
1260                 err = 0;
1261                 break;
1262
1263         case SIOCGETPRL:
1264                 err = -EINVAL;
1265                 if (dev == sitn->fb_tunnel_dev)
1266                         goto done;
1267                 err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
1268                 break;
1269
1270         case SIOCADDPRL:
1271         case SIOCDELPRL:
1272         case SIOCCHGPRL:
1273                 err = -EPERM;
1274                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1275                         goto done;
1276                 err = -EINVAL;
1277                 if (dev == sitn->fb_tunnel_dev)
1278                         goto done;
1279                 err = -EFAULT;
1280                 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
1281                         goto done;
1282
1283                 switch (cmd) {
1284                 case SIOCDELPRL:
1285                         err = ipip6_tunnel_del_prl(t, &prl);
1286                         break;
1287                 case SIOCADDPRL:
1288                 case SIOCCHGPRL:
1289                         err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
1290                         break;
1291                 }
1292                 dst_cache_reset(&t->dst_cache);
1293                 netdev_state_change(dev);
1294                 break;
1295
1296 #ifdef CONFIG_IPV6_SIT_6RD
1297         case SIOCADD6RD:
1298         case SIOCCHG6RD:
1299         case SIOCDEL6RD:
1300                 err = -EPERM;
1301                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1302                         goto done;
1303
1304                 err = -EFAULT;
1305                 if (copy_from_user(&ip6rd, ifr->ifr_ifru.ifru_data,
1306                                    sizeof(ip6rd)))
1307                         goto done;
1308
1309                 if (cmd != SIOCDEL6RD) {
1310                         err = ipip6_tunnel_update_6rd(t, &ip6rd);
1311                         if (err < 0)
1312                                 goto done;
1313                 } else
1314                         ipip6_tunnel_clone_6rd(dev, sitn);
1315
1316                 err = 0;
1317                 break;
1318 #endif
1319
1320         default:
1321                 err = -EINVAL;
1322         }
1323
1324 done:
1325         return err;
1326 }
1327
1328 static const struct net_device_ops ipip6_netdev_ops = {
1329         .ndo_init       = ipip6_tunnel_init,
1330         .ndo_uninit     = ipip6_tunnel_uninit,
1331         .ndo_start_xmit = sit_tunnel_xmit,
1332         .ndo_do_ioctl   = ipip6_tunnel_ioctl,
1333         .ndo_get_stats64 = ip_tunnel_get_stats64,
1334         .ndo_get_iflink = ip_tunnel_get_iflink,
1335 };
1336
1337 static void ipip6_dev_free(struct net_device *dev)
1338 {
1339         struct ip_tunnel *tunnel = netdev_priv(dev);
1340
1341         dst_cache_destroy(&tunnel->dst_cache);
1342         free_percpu(dev->tstats);
1343 }
1344
1345 #define SIT_FEATURES (NETIF_F_SG           | \
1346                       NETIF_F_FRAGLIST     | \
1347                       NETIF_F_HIGHDMA      | \
1348                       NETIF_F_GSO_SOFTWARE | \
1349                       NETIF_F_HW_CSUM)
1350
1351 static void ipip6_tunnel_setup(struct net_device *dev)
1352 {
1353         struct ip_tunnel *tunnel = netdev_priv(dev);
1354         int t_hlen = tunnel->hlen + sizeof(struct iphdr);
1355
1356         dev->netdev_ops         = &ipip6_netdev_ops;
1357         dev->needs_free_netdev  = true;
1358         dev->priv_destructor    = ipip6_dev_free;
1359
1360         dev->type               = ARPHRD_SIT;
1361         dev->mtu                = ETH_DATA_LEN - t_hlen;
1362         dev->min_mtu            = IPV6_MIN_MTU;
1363         dev->max_mtu            = IP6_MAX_MTU - t_hlen;
1364         dev->flags              = IFF_NOARP;
1365         netif_keep_dst(dev);
1366         dev->addr_len           = 4;
1367         dev->features           |= NETIF_F_LLTX;
1368         dev->features           |= SIT_FEATURES;
1369         dev->hw_features        |= SIT_FEATURES;
1370 }
1371
1372 static int ipip6_tunnel_init(struct net_device *dev)
1373 {
1374         struct ip_tunnel *tunnel = netdev_priv(dev);
1375         int err;
1376
1377         tunnel->dev = dev;
1378         tunnel->net = dev_net(dev);
1379         strcpy(tunnel->parms.name, dev->name);
1380
1381         ipip6_tunnel_bind_dev(dev);
1382         dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1383         if (!dev->tstats)
1384                 return -ENOMEM;
1385
1386         err = dst_cache_init(&tunnel->dst_cache, GFP_KERNEL);
1387         if (err) {
1388                 free_percpu(dev->tstats);
1389                 dev->tstats = NULL;
1390                 return err;
1391         }
1392         dev_hold(dev);
1393         return 0;
1394 }
1395
1396 static void __net_init ipip6_fb_tunnel_init(struct net_device *dev)
1397 {
1398         struct ip_tunnel *tunnel = netdev_priv(dev);
1399         struct iphdr *iph = &tunnel->parms.iph;
1400         struct net *net = dev_net(dev);
1401         struct sit_net *sitn = net_generic(net, sit_net_id);
1402
1403         iph->version            = 4;
1404         iph->protocol           = IPPROTO_IPV6;
1405         iph->ihl                = 5;
1406         iph->ttl                = 64;
1407
1408         rcu_assign_pointer(sitn->tunnels_wc[0], tunnel);
1409 }
1410
1411 static int ipip6_validate(struct nlattr *tb[], struct nlattr *data[],
1412                           struct netlink_ext_ack *extack)
1413 {
1414         u8 proto;
1415
1416         if (!data || !data[IFLA_IPTUN_PROTO])
1417                 return 0;
1418
1419         proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1420         if (!ipip6_valid_ip_proto(proto))
1421                 return -EINVAL;
1422
1423         return 0;
1424 }
1425
1426 static void ipip6_netlink_parms(struct nlattr *data[],
1427                                 struct ip_tunnel_parm *parms,
1428                                 __u32 *fwmark)
1429 {
1430         memset(parms, 0, sizeof(*parms));
1431
1432         parms->iph.version = 4;
1433         parms->iph.protocol = IPPROTO_IPV6;
1434         parms->iph.ihl = 5;
1435         parms->iph.ttl = 64;
1436
1437         if (!data)
1438                 return;
1439
1440         if (data[IFLA_IPTUN_LINK])
1441                 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1442
1443         if (data[IFLA_IPTUN_LOCAL])
1444                 parms->iph.saddr = nla_get_be32(data[IFLA_IPTUN_LOCAL]);
1445
1446         if (data[IFLA_IPTUN_REMOTE])
1447                 parms->iph.daddr = nla_get_be32(data[IFLA_IPTUN_REMOTE]);
1448
1449         if (data[IFLA_IPTUN_TTL]) {
1450                 parms->iph.ttl = nla_get_u8(data[IFLA_IPTUN_TTL]);
1451                 if (parms->iph.ttl)
1452                         parms->iph.frag_off = htons(IP_DF);
1453         }
1454
1455         if (data[IFLA_IPTUN_TOS])
1456                 parms->iph.tos = nla_get_u8(data[IFLA_IPTUN_TOS]);
1457
1458         if (!data[IFLA_IPTUN_PMTUDISC] || nla_get_u8(data[IFLA_IPTUN_PMTUDISC]))
1459                 parms->iph.frag_off = htons(IP_DF);
1460
1461         if (data[IFLA_IPTUN_FLAGS])
1462                 parms->i_flags = nla_get_be16(data[IFLA_IPTUN_FLAGS]);
1463
1464         if (data[IFLA_IPTUN_PROTO])
1465                 parms->iph.protocol = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1466
1467         if (data[IFLA_IPTUN_FWMARK])
1468                 *fwmark = nla_get_u32(data[IFLA_IPTUN_FWMARK]);
1469 }
1470
1471 /* This function returns true when ENCAP attributes are present in the nl msg */
1472 static bool ipip6_netlink_encap_parms(struct nlattr *data[],
1473                                       struct ip_tunnel_encap *ipencap)
1474 {
1475         bool ret = false;
1476
1477         memset(ipencap, 0, sizeof(*ipencap));
1478
1479         if (!data)
1480                 return ret;
1481
1482         if (data[IFLA_IPTUN_ENCAP_TYPE]) {
1483                 ret = true;
1484                 ipencap->type = nla_get_u16(data[IFLA_IPTUN_ENCAP_TYPE]);
1485         }
1486
1487         if (data[IFLA_IPTUN_ENCAP_FLAGS]) {
1488                 ret = true;
1489                 ipencap->flags = nla_get_u16(data[IFLA_IPTUN_ENCAP_FLAGS]);
1490         }
1491
1492         if (data[IFLA_IPTUN_ENCAP_SPORT]) {
1493                 ret = true;
1494                 ipencap->sport = nla_get_be16(data[IFLA_IPTUN_ENCAP_SPORT]);
1495         }
1496
1497         if (data[IFLA_IPTUN_ENCAP_DPORT]) {
1498                 ret = true;
1499                 ipencap->dport = nla_get_be16(data[IFLA_IPTUN_ENCAP_DPORT]);
1500         }
1501
1502         return ret;
1503 }
1504
1505 #ifdef CONFIG_IPV6_SIT_6RD
1506 /* This function returns true when 6RD attributes are present in the nl msg */
1507 static bool ipip6_netlink_6rd_parms(struct nlattr *data[],
1508                                     struct ip_tunnel_6rd *ip6rd)
1509 {
1510         bool ret = false;
1511         memset(ip6rd, 0, sizeof(*ip6rd));
1512
1513         if (!data)
1514                 return ret;
1515
1516         if (data[IFLA_IPTUN_6RD_PREFIX]) {
1517                 ret = true;
1518                 ip6rd->prefix = nla_get_in6_addr(data[IFLA_IPTUN_6RD_PREFIX]);
1519         }
1520
1521         if (data[IFLA_IPTUN_6RD_RELAY_PREFIX]) {
1522                 ret = true;
1523                 ip6rd->relay_prefix =
1524                         nla_get_be32(data[IFLA_IPTUN_6RD_RELAY_PREFIX]);
1525         }
1526
1527         if (data[IFLA_IPTUN_6RD_PREFIXLEN]) {
1528                 ret = true;
1529                 ip6rd->prefixlen = nla_get_u16(data[IFLA_IPTUN_6RD_PREFIXLEN]);
1530         }
1531
1532         if (data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]) {
1533                 ret = true;
1534                 ip6rd->relay_prefixlen =
1535                         nla_get_u16(data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]);
1536         }
1537
1538         return ret;
1539 }
1540 #endif
1541
1542 static int ipip6_newlink(struct net *src_net, struct net_device *dev,
1543                          struct nlattr *tb[], struct nlattr *data[],
1544                          struct netlink_ext_ack *extack)
1545 {
1546         struct net *net = dev_net(dev);
1547         struct ip_tunnel *nt;
1548         struct ip_tunnel_encap ipencap;
1549 #ifdef CONFIG_IPV6_SIT_6RD
1550         struct ip_tunnel_6rd ip6rd;
1551 #endif
1552         int err;
1553
1554         nt = netdev_priv(dev);
1555
1556         if (ipip6_netlink_encap_parms(data, &ipencap)) {
1557                 err = ip_tunnel_encap_setup(nt, &ipencap);
1558                 if (err < 0)
1559                         return err;
1560         }
1561
1562         ipip6_netlink_parms(data, &nt->parms, &nt->fwmark);
1563
1564         if (ipip6_tunnel_locate(net, &nt->parms, 0))
1565                 return -EEXIST;
1566
1567         err = ipip6_tunnel_create(dev);
1568         if (err < 0)
1569                 return err;
1570
1571         if (tb[IFLA_MTU]) {
1572                 u32 mtu = nla_get_u32(tb[IFLA_MTU]);
1573
1574                 if (mtu >= IPV6_MIN_MTU &&
1575                     mtu <= IP6_MAX_MTU - dev->hard_header_len)
1576                         dev->mtu = mtu;
1577         }
1578
1579 #ifdef CONFIG_IPV6_SIT_6RD
1580         if (ipip6_netlink_6rd_parms(data, &ip6rd)) {
1581                 err = ipip6_tunnel_update_6rd(nt, &ip6rd);
1582                 if (err < 0)
1583                         unregister_netdevice_queue(dev, NULL);
1584         }
1585 #endif
1586
1587         return err;
1588 }
1589
1590 static int ipip6_changelink(struct net_device *dev, struct nlattr *tb[],
1591                             struct nlattr *data[],
1592                             struct netlink_ext_ack *extack)
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         __u32 fwmark = t->fwmark;
1603         int err;
1604
1605         if (dev == sitn->fb_tunnel_dev)
1606                 return -EINVAL;
1607
1608         if (ipip6_netlink_encap_parms(data, &ipencap)) {
1609                 err = ip_tunnel_encap_setup(t, &ipencap);
1610                 if (err < 0)
1611                         return err;
1612         }
1613
1614         ipip6_netlink_parms(data, &p, &fwmark);
1615
1616         if (((dev->flags & IFF_POINTOPOINT) && !p.iph.daddr) ||
1617             (!(dev->flags & IFF_POINTOPOINT) && p.iph.daddr))
1618                 return -EINVAL;
1619
1620         t = ipip6_tunnel_locate(net, &p, 0);
1621
1622         if (t) {
1623                 if (t->dev != dev)
1624                         return -EEXIST;
1625         } else
1626                 t = netdev_priv(dev);
1627
1628         ipip6_tunnel_update(t, &p, fwmark);
1629
1630 #ifdef CONFIG_IPV6_SIT_6RD
1631         if (ipip6_netlink_6rd_parms(data, &ip6rd))
1632                 return ipip6_tunnel_update_6rd(t, &ip6rd);
1633 #endif
1634
1635         return 0;
1636 }
1637
1638 static size_t ipip6_get_size(const struct net_device *dev)
1639 {
1640         return
1641                 /* IFLA_IPTUN_LINK */
1642                 nla_total_size(4) +
1643                 /* IFLA_IPTUN_LOCAL */
1644                 nla_total_size(4) +
1645                 /* IFLA_IPTUN_REMOTE */
1646                 nla_total_size(4) +
1647                 /* IFLA_IPTUN_TTL */
1648                 nla_total_size(1) +
1649                 /* IFLA_IPTUN_TOS */
1650                 nla_total_size(1) +
1651                 /* IFLA_IPTUN_PMTUDISC */
1652                 nla_total_size(1) +
1653                 /* IFLA_IPTUN_FLAGS */
1654                 nla_total_size(2) +
1655                 /* IFLA_IPTUN_PROTO */
1656                 nla_total_size(1) +
1657 #ifdef CONFIG_IPV6_SIT_6RD
1658                 /* IFLA_IPTUN_6RD_PREFIX */
1659                 nla_total_size(sizeof(struct in6_addr)) +
1660                 /* IFLA_IPTUN_6RD_RELAY_PREFIX */
1661                 nla_total_size(4) +
1662                 /* IFLA_IPTUN_6RD_PREFIXLEN */
1663                 nla_total_size(2) +
1664                 /* IFLA_IPTUN_6RD_RELAY_PREFIXLEN */
1665                 nla_total_size(2) +
1666 #endif
1667                 /* IFLA_IPTUN_ENCAP_TYPE */
1668                 nla_total_size(2) +
1669                 /* IFLA_IPTUN_ENCAP_FLAGS */
1670                 nla_total_size(2) +
1671                 /* IFLA_IPTUN_ENCAP_SPORT */
1672                 nla_total_size(2) +
1673                 /* IFLA_IPTUN_ENCAP_DPORT */
1674                 nla_total_size(2) +
1675                 /* IFLA_IPTUN_FWMARK */
1676                 nla_total_size(4) +
1677                 0;
1678 }
1679
1680 static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev)
1681 {
1682         struct ip_tunnel *tunnel = netdev_priv(dev);
1683         struct ip_tunnel_parm *parm = &tunnel->parms;
1684
1685         if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1686             nla_put_in_addr(skb, IFLA_IPTUN_LOCAL, parm->iph.saddr) ||
1687             nla_put_in_addr(skb, IFLA_IPTUN_REMOTE, parm->iph.daddr) ||
1688             nla_put_u8(skb, IFLA_IPTUN_TTL, parm->iph.ttl) ||
1689             nla_put_u8(skb, IFLA_IPTUN_TOS, parm->iph.tos) ||
1690             nla_put_u8(skb, IFLA_IPTUN_PMTUDISC,
1691                        !!(parm->iph.frag_off & htons(IP_DF))) ||
1692             nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->iph.protocol) ||
1693             nla_put_be16(skb, IFLA_IPTUN_FLAGS, parm->i_flags) ||
1694             nla_put_u32(skb, IFLA_IPTUN_FWMARK, tunnel->fwmark))
1695                 goto nla_put_failure;
1696
1697 #ifdef CONFIG_IPV6_SIT_6RD
1698         if (nla_put_in6_addr(skb, IFLA_IPTUN_6RD_PREFIX,
1699                              &tunnel->ip6rd.prefix) ||
1700             nla_put_in_addr(skb, IFLA_IPTUN_6RD_RELAY_PREFIX,
1701                             tunnel->ip6rd.relay_prefix) ||
1702             nla_put_u16(skb, IFLA_IPTUN_6RD_PREFIXLEN,
1703                         tunnel->ip6rd.prefixlen) ||
1704             nla_put_u16(skb, IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
1705                         tunnel->ip6rd.relay_prefixlen))
1706                 goto nla_put_failure;
1707 #endif
1708
1709         if (nla_put_u16(skb, IFLA_IPTUN_ENCAP_TYPE,
1710                         tunnel->encap.type) ||
1711             nla_put_be16(skb, IFLA_IPTUN_ENCAP_SPORT,
1712                         tunnel->encap.sport) ||
1713             nla_put_be16(skb, IFLA_IPTUN_ENCAP_DPORT,
1714                         tunnel->encap.dport) ||
1715             nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS,
1716                         tunnel->encap.flags))
1717                 goto nla_put_failure;
1718
1719         return 0;
1720
1721 nla_put_failure:
1722         return -EMSGSIZE;
1723 }
1724
1725 static const struct nla_policy ipip6_policy[IFLA_IPTUN_MAX + 1] = {
1726         [IFLA_IPTUN_LINK]               = { .type = NLA_U32 },
1727         [IFLA_IPTUN_LOCAL]              = { .type = NLA_U32 },
1728         [IFLA_IPTUN_REMOTE]             = { .type = NLA_U32 },
1729         [IFLA_IPTUN_TTL]                = { .type = NLA_U8 },
1730         [IFLA_IPTUN_TOS]                = { .type = NLA_U8 },
1731         [IFLA_IPTUN_PMTUDISC]           = { .type = NLA_U8 },
1732         [IFLA_IPTUN_FLAGS]              = { .type = NLA_U16 },
1733         [IFLA_IPTUN_PROTO]              = { .type = NLA_U8 },
1734 #ifdef CONFIG_IPV6_SIT_6RD
1735         [IFLA_IPTUN_6RD_PREFIX]         = { .len = sizeof(struct in6_addr) },
1736         [IFLA_IPTUN_6RD_RELAY_PREFIX]   = { .type = NLA_U32 },
1737         [IFLA_IPTUN_6RD_PREFIXLEN]      = { .type = NLA_U16 },
1738         [IFLA_IPTUN_6RD_RELAY_PREFIXLEN] = { .type = NLA_U16 },
1739 #endif
1740         [IFLA_IPTUN_ENCAP_TYPE]         = { .type = NLA_U16 },
1741         [IFLA_IPTUN_ENCAP_FLAGS]        = { .type = NLA_U16 },
1742         [IFLA_IPTUN_ENCAP_SPORT]        = { .type = NLA_U16 },
1743         [IFLA_IPTUN_ENCAP_DPORT]        = { .type = NLA_U16 },
1744         [IFLA_IPTUN_FWMARK]             = { .type = NLA_U32 },
1745 };
1746
1747 static void ipip6_dellink(struct net_device *dev, struct list_head *head)
1748 {
1749         struct net *net = dev_net(dev);
1750         struct sit_net *sitn = net_generic(net, sit_net_id);
1751
1752         if (dev != sitn->fb_tunnel_dev)
1753                 unregister_netdevice_queue(dev, head);
1754 }
1755
1756 static struct rtnl_link_ops sit_link_ops __read_mostly = {
1757         .kind           = "sit",
1758         .maxtype        = IFLA_IPTUN_MAX,
1759         .policy         = ipip6_policy,
1760         .priv_size      = sizeof(struct ip_tunnel),
1761         .setup          = ipip6_tunnel_setup,
1762         .validate       = ipip6_validate,
1763         .newlink        = ipip6_newlink,
1764         .changelink     = ipip6_changelink,
1765         .get_size       = ipip6_get_size,
1766         .fill_info      = ipip6_fill_info,
1767         .dellink        = ipip6_dellink,
1768         .get_link_net   = ip_tunnel_get_link_net,
1769 };
1770
1771 static struct xfrm_tunnel sit_handler __read_mostly = {
1772         .handler        =       ipip6_rcv,
1773         .err_handler    =       ipip6_err,
1774         .priority       =       1,
1775 };
1776
1777 static struct xfrm_tunnel ipip_handler __read_mostly = {
1778         .handler        =       ipip_rcv,
1779         .err_handler    =       ipip6_err,
1780         .priority       =       2,
1781 };
1782
1783 #if IS_ENABLED(CONFIG_MPLS)
1784 static struct xfrm_tunnel mplsip_handler __read_mostly = {
1785         .handler        =       mplsip_rcv,
1786         .err_handler    =       ipip6_err,
1787         .priority       =       2,
1788 };
1789 #endif
1790
1791 static void __net_exit sit_destroy_tunnels(struct net *net,
1792                                            struct list_head *head)
1793 {
1794         struct sit_net *sitn = net_generic(net, sit_net_id);
1795         struct net_device *dev, *aux;
1796         int prio;
1797
1798         for_each_netdev_safe(net, dev, aux)
1799                 if (dev->rtnl_link_ops == &sit_link_ops)
1800                         unregister_netdevice_queue(dev, head);
1801
1802         for (prio = 0; prio < 4; prio++) {
1803                 int h;
1804                 for (h = 0; h < (prio ? IP6_SIT_HASH_SIZE : 1); h++) {
1805                         struct ip_tunnel *t;
1806
1807                         t = rtnl_dereference(sitn->tunnels[prio][h]);
1808                         while (t) {
1809                                 /* If dev is in the same netns, it has already
1810                                  * been added to the list by the previous loop.
1811                                  */
1812                                 if (!net_eq(dev_net(t->dev), net))
1813                                         unregister_netdevice_queue(t->dev,
1814                                                                    head);
1815                                 t = rtnl_dereference(t->next);
1816                         }
1817                 }
1818         }
1819 }
1820
1821 static int __net_init sit_init_net(struct net *net)
1822 {
1823         struct sit_net *sitn = net_generic(net, sit_net_id);
1824         struct ip_tunnel *t;
1825         int err;
1826
1827         sitn->tunnels[0] = sitn->tunnels_wc;
1828         sitn->tunnels[1] = sitn->tunnels_l;
1829         sitn->tunnels[2] = sitn->tunnels_r;
1830         sitn->tunnels[3] = sitn->tunnels_r_l;
1831
1832         sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1833                                            NET_NAME_UNKNOWN,
1834                                            ipip6_tunnel_setup);
1835         if (!sitn->fb_tunnel_dev) {
1836                 err = -ENOMEM;
1837                 goto err_alloc_dev;
1838         }
1839         dev_net_set(sitn->fb_tunnel_dev, net);
1840         sitn->fb_tunnel_dev->rtnl_link_ops = &sit_link_ops;
1841         /* FB netdevice is special: we have one, and only one per netns.
1842          * Allowing to move it to another netns is clearly unsafe.
1843          */
1844         sitn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
1845
1846         err = register_netdev(sitn->fb_tunnel_dev);
1847         if (err)
1848                 goto err_reg_dev;
1849
1850         ipip6_tunnel_clone_6rd(sitn->fb_tunnel_dev, sitn);
1851         ipip6_fb_tunnel_init(sitn->fb_tunnel_dev);
1852
1853         t = netdev_priv(sitn->fb_tunnel_dev);
1854
1855         strcpy(t->parms.name, sitn->fb_tunnel_dev->name);
1856         return 0;
1857
1858 err_reg_dev:
1859         free_netdev(sitn->fb_tunnel_dev);
1860 err_alloc_dev:
1861         return err;
1862 }
1863
1864 static void __net_exit sit_exit_net(struct net *net)
1865 {
1866         LIST_HEAD(list);
1867
1868         rtnl_lock();
1869         sit_destroy_tunnels(net, &list);
1870         unregister_netdevice_many(&list);
1871         rtnl_unlock();
1872 }
1873
1874 static struct pernet_operations sit_net_ops = {
1875         .init = sit_init_net,
1876         .exit = sit_exit_net,
1877         .id   = &sit_net_id,
1878         .size = sizeof(struct sit_net),
1879 };
1880
1881 static void __exit sit_cleanup(void)
1882 {
1883         rtnl_link_unregister(&sit_link_ops);
1884         xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
1885         xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
1886 #if IS_ENABLED(CONFIG_MPLS)
1887         xfrm4_tunnel_deregister(&mplsip_handler, AF_MPLS);
1888 #endif
1889
1890         unregister_pernet_device(&sit_net_ops);
1891         rcu_barrier(); /* Wait for completion of call_rcu()'s */
1892 }
1893
1894 static int __init sit_init(void)
1895 {
1896         int err;
1897
1898         pr_info("IPv6, IPv4 and MPLS over IPv4 tunneling driver\n");
1899
1900         err = register_pernet_device(&sit_net_ops);
1901         if (err < 0)
1902                 return err;
1903         err = xfrm4_tunnel_register(&sit_handler, AF_INET6);
1904         if (err < 0) {
1905                 pr_info("%s: can't register ip6ip4\n", __func__);
1906                 goto xfrm_tunnel_failed;
1907         }
1908         err = xfrm4_tunnel_register(&ipip_handler, AF_INET);
1909         if (err < 0) {
1910                 pr_info("%s: can't register ip4ip4\n", __func__);
1911                 goto xfrm_tunnel4_failed;
1912         }
1913 #if IS_ENABLED(CONFIG_MPLS)
1914         err = xfrm4_tunnel_register(&mplsip_handler, AF_MPLS);
1915         if (err < 0) {
1916                 pr_info("%s: can't register mplsip\n", __func__);
1917                 goto xfrm_tunnel_mpls_failed;
1918         }
1919 #endif
1920         err = rtnl_link_register(&sit_link_ops);
1921         if (err < 0)
1922                 goto rtnl_link_failed;
1923
1924 out:
1925         return err;
1926
1927 rtnl_link_failed:
1928 #if IS_ENABLED(CONFIG_MPLS)
1929         xfrm4_tunnel_deregister(&mplsip_handler, AF_MPLS);
1930 xfrm_tunnel_mpls_failed:
1931 #endif
1932         xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
1933 xfrm_tunnel4_failed:
1934         xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
1935 xfrm_tunnel_failed:
1936         unregister_pernet_device(&sit_net_ops);
1937         goto out;
1938 }
1939
1940 module_init(sit_init);
1941 module_exit(sit_cleanup);
1942 MODULE_LICENSE("GPL");
1943 MODULE_ALIAS_RTNL_LINK("sit");
1944 MODULE_ALIAS_NETDEV("sit0");