GNU Linux-libre 4.19.264-gnu1
[releases.git] / net / ipv4 / ip_vti.c
1 /*
2  *      Linux NET3: IP/IP protocol decoder modified to support
3  *                  virtual tunnel interface
4  *
5  *      Authors:
6  *              Saurabh Mohan (saurabh.mohan@vyatta.com) 05/07/2012
7  *
8  *      This program is free software; you can redistribute it and/or
9  *      modify it under the terms of the GNU General Public License
10  *      as published by the Free Software Foundation; either version
11  *      2 of the License, or (at your option) any later version.
12  *
13  */
14
15 /*
16    This version of net/ipv4/ip_vti.c is cloned of net/ipv4/ipip.c
17
18    For comments look at net/ipv4/ip_gre.c --ANK
19  */
20
21
22 #include <linux/capability.h>
23 #include <linux/module.h>
24 #include <linux/types.h>
25 #include <linux/kernel.h>
26 #include <linux/uaccess.h>
27 #include <linux/skbuff.h>
28 #include <linux/netdevice.h>
29 #include <linux/in.h>
30 #include <linux/tcp.h>
31 #include <linux/udp.h>
32 #include <linux/if_arp.h>
33 #include <linux/init.h>
34 #include <linux/netfilter_ipv4.h>
35 #include <linux/if_ether.h>
36 #include <linux/icmpv6.h>
37
38 #include <net/sock.h>
39 #include <net/ip.h>
40 #include <net/icmp.h>
41 #include <net/ip_tunnels.h>
42 #include <net/inet_ecn.h>
43 #include <net/xfrm.h>
44 #include <net/net_namespace.h>
45 #include <net/netns/generic.h>
46
47 static struct rtnl_link_ops vti_link_ops __read_mostly;
48
49 static unsigned int vti_net_id __read_mostly;
50 static int vti_tunnel_init(struct net_device *dev);
51
52 static int vti_input(struct sk_buff *skb, int nexthdr, __be32 spi,
53                      int encap_type, bool update_skb_dev)
54 {
55         struct ip_tunnel *tunnel;
56         const struct iphdr *iph = ip_hdr(skb);
57         struct net *net = dev_net(skb->dev);
58         struct ip_tunnel_net *itn = net_generic(net, vti_net_id);
59
60         tunnel = ip_tunnel_lookup(itn, skb->dev->ifindex, TUNNEL_NO_KEY,
61                                   iph->saddr, iph->daddr, 0);
62         if (tunnel) {
63                 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
64                         goto drop;
65
66                 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4 = tunnel;
67
68                 if (update_skb_dev)
69                         skb->dev = tunnel->dev;
70
71                 return xfrm_input(skb, nexthdr, spi, encap_type);
72         }
73
74         return -EINVAL;
75 drop:
76         kfree_skb(skb);
77         return 0;
78 }
79
80 static int vti_input_proto(struct sk_buff *skb, int nexthdr, __be32 spi,
81                            int encap_type)
82 {
83         return vti_input(skb, nexthdr, spi, encap_type, false);
84 }
85
86 static int vti_rcv(struct sk_buff *skb, __be32 spi, bool update_skb_dev)
87 {
88         XFRM_SPI_SKB_CB(skb)->family = AF_INET;
89         XFRM_SPI_SKB_CB(skb)->daddroff = offsetof(struct iphdr, daddr);
90
91         return vti_input(skb, ip_hdr(skb)->protocol, spi, 0, update_skb_dev);
92 }
93
94 static int vti_rcv_proto(struct sk_buff *skb)
95 {
96         return vti_rcv(skb, 0, false);
97 }
98
99 static int vti_rcv_tunnel(struct sk_buff *skb)
100 {
101         struct ip_tunnel_net *itn = net_generic(dev_net(skb->dev), vti_net_id);
102         const struct iphdr *iph = ip_hdr(skb);
103         struct ip_tunnel *tunnel;
104
105         tunnel = ip_tunnel_lookup(itn, skb->dev->ifindex, TUNNEL_NO_KEY,
106                                   iph->saddr, iph->daddr, 0);
107         if (tunnel) {
108                 struct tnl_ptk_info tpi = {
109                         .proto = htons(ETH_P_IP),
110                 };
111
112                 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
113                         goto drop;
114                 if (iptunnel_pull_header(skb, 0, tpi.proto, false))
115                         goto drop;
116                 return ip_tunnel_rcv(tunnel, skb, &tpi, NULL, false);
117         }
118
119         return -EINVAL;
120 drop:
121         kfree_skb(skb);
122         return 0;
123 }
124
125 static int vti_rcv_cb(struct sk_buff *skb, int err)
126 {
127         unsigned short family;
128         struct net_device *dev;
129         struct pcpu_sw_netstats *tstats;
130         struct xfrm_state *x;
131         struct xfrm_mode *inner_mode;
132         struct ip_tunnel *tunnel = XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4;
133         u32 orig_mark = skb->mark;
134         int ret;
135
136         if (!tunnel)
137                 return 1;
138
139         dev = tunnel->dev;
140
141         if (err) {
142                 dev->stats.rx_errors++;
143                 dev->stats.rx_dropped++;
144
145                 return 0;
146         }
147
148         x = xfrm_input_state(skb);
149
150         inner_mode = x->inner_mode;
151
152         if (x->sel.family == AF_UNSPEC) {
153                 inner_mode = xfrm_ip2inner_mode(x, XFRM_MODE_SKB_CB(skb)->protocol);
154                 if (inner_mode == NULL) {
155                         XFRM_INC_STATS(dev_net(skb->dev),
156                                        LINUX_MIB_XFRMINSTATEMODEERROR);
157                         return -EINVAL;
158                 }
159         }
160
161         family = inner_mode->afinfo->family;
162
163         skb->mark = be32_to_cpu(tunnel->parms.i_key);
164         ret = xfrm_policy_check(NULL, XFRM_POLICY_IN, skb, family);
165         skb->mark = orig_mark;
166
167         if (!ret)
168                 return -EPERM;
169
170         skb_scrub_packet(skb, !net_eq(tunnel->net, dev_net(skb->dev)));
171         skb->dev = dev;
172
173         tstats = this_cpu_ptr(dev->tstats);
174
175         u64_stats_update_begin(&tstats->syncp);
176         tstats->rx_packets++;
177         tstats->rx_bytes += skb->len;
178         u64_stats_update_end(&tstats->syncp);
179
180         return 0;
181 }
182
183 static bool vti_state_check(const struct xfrm_state *x, __be32 dst, __be32 src)
184 {
185         xfrm_address_t *daddr = (xfrm_address_t *)&dst;
186         xfrm_address_t *saddr = (xfrm_address_t *)&src;
187
188         /* if there is no transform then this tunnel is not functional.
189          * Or if the xfrm is not mode tunnel.
190          */
191         if (!x || x->props.mode != XFRM_MODE_TUNNEL ||
192             x->props.family != AF_INET)
193                 return false;
194
195         if (!dst)
196                 return xfrm_addr_equal(saddr, &x->props.saddr, AF_INET);
197
198         if (!xfrm_state_addr_check(x, daddr, saddr, AF_INET))
199                 return false;
200
201         return true;
202 }
203
204 static netdev_tx_t vti_xmit(struct sk_buff *skb, struct net_device *dev,
205                             struct flowi *fl)
206 {
207         struct ip_tunnel *tunnel = netdev_priv(dev);
208         struct ip_tunnel_parm *parms = &tunnel->parms;
209         struct dst_entry *dst = skb_dst(skb);
210         struct net_device *tdev;        /* Device to other host */
211         int pkt_len = skb->len;
212         int err;
213         int mtu;
214
215         if (!dst) {
216                 switch (skb->protocol) {
217                 case htons(ETH_P_IP): {
218                         struct rtable *rt;
219
220                         fl->u.ip4.flowi4_oif = dev->ifindex;
221                         fl->u.ip4.flowi4_flags |= FLOWI_FLAG_ANYSRC;
222                         rt = __ip_route_output_key(dev_net(dev), &fl->u.ip4);
223                         if (IS_ERR(rt)) {
224                                 dev->stats.tx_carrier_errors++;
225                                 goto tx_error_icmp;
226                         }
227                         dst = &rt->dst;
228                         skb_dst_set(skb, dst);
229                         break;
230                 }
231 #if IS_ENABLED(CONFIG_IPV6)
232                 case htons(ETH_P_IPV6):
233                         fl->u.ip6.flowi6_oif = dev->ifindex;
234                         fl->u.ip6.flowi6_flags |= FLOWI_FLAG_ANYSRC;
235                         dst = ip6_route_output(dev_net(dev), NULL, &fl->u.ip6);
236                         if (dst->error) {
237                                 dst_release(dst);
238                                 dst = NULL;
239                                 dev->stats.tx_carrier_errors++;
240                                 goto tx_error_icmp;
241                         }
242                         skb_dst_set(skb, dst);
243                         break;
244 #endif
245                 default:
246                         dev->stats.tx_carrier_errors++;
247                         goto tx_error_icmp;
248                 }
249         }
250
251         dst_hold(dst);
252         dst = xfrm_lookup(tunnel->net, dst, fl, NULL, 0);
253         if (IS_ERR(dst)) {
254                 dev->stats.tx_carrier_errors++;
255                 goto tx_error_icmp;
256         }
257
258         if (!vti_state_check(dst->xfrm, parms->iph.daddr, parms->iph.saddr)) {
259                 dev->stats.tx_carrier_errors++;
260                 dst_release(dst);
261                 goto tx_error_icmp;
262         }
263
264         tdev = dst->dev;
265
266         if (tdev == dev) {
267                 dst_release(dst);
268                 dev->stats.collisions++;
269                 goto tx_error;
270         }
271
272         mtu = dst_mtu(dst);
273         if (skb->len > mtu) {
274                 skb_dst_update_pmtu_no_confirm(skb, mtu);
275                 if (skb->protocol == htons(ETH_P_IP)) {
276                         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
277                                   htonl(mtu));
278                 } else {
279                         if (mtu < IPV6_MIN_MTU)
280                                 mtu = IPV6_MIN_MTU;
281
282                         icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
283                 }
284
285                 dst_release(dst);
286                 goto tx_error;
287         }
288
289         skb_scrub_packet(skb, !net_eq(tunnel->net, dev_net(dev)));
290         skb_dst_set(skb, dst);
291         skb->dev = skb_dst(skb)->dev;
292
293         err = dst_output(tunnel->net, skb->sk, skb);
294         if (net_xmit_eval(err) == 0)
295                 err = pkt_len;
296         iptunnel_xmit_stats(dev, err);
297         return NETDEV_TX_OK;
298
299 tx_error_icmp:
300         dst_link_failure(skb);
301 tx_error:
302         dev->stats.tx_errors++;
303         kfree_skb(skb);
304         return NETDEV_TX_OK;
305 }
306
307 /* This function assumes it is being called from dev_queue_xmit()
308  * and that skb is filled properly by that function.
309  */
310 static netdev_tx_t vti_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
311 {
312         struct ip_tunnel *tunnel = netdev_priv(dev);
313         struct flowi fl;
314
315         if (!pskb_inet_may_pull(skb))
316                 goto tx_err;
317
318         memset(&fl, 0, sizeof(fl));
319
320         switch (skb->protocol) {
321         case htons(ETH_P_IP):
322                 xfrm_decode_session(skb, &fl, AF_INET);
323                 memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
324                 break;
325         case htons(ETH_P_IPV6):
326                 xfrm_decode_session(skb, &fl, AF_INET6);
327                 memset(IP6CB(skb), 0, sizeof(*IP6CB(skb)));
328                 break;
329         default:
330                 goto tx_err;
331         }
332
333         /* override mark with tunnel output key */
334         fl.flowi_mark = be32_to_cpu(tunnel->parms.o_key);
335
336         return vti_xmit(skb, dev, &fl);
337
338 tx_err:
339         dev->stats.tx_errors++;
340         kfree_skb(skb);
341         return NETDEV_TX_OK;
342 }
343
344 static int vti4_err(struct sk_buff *skb, u32 info)
345 {
346         __be32 spi;
347         __u32 mark;
348         struct xfrm_state *x;
349         struct ip_tunnel *tunnel;
350         struct ip_esp_hdr *esph;
351         struct ip_auth_hdr *ah ;
352         struct ip_comp_hdr *ipch;
353         struct net *net = dev_net(skb->dev);
354         const struct iphdr *iph = (const struct iphdr *)skb->data;
355         int protocol = iph->protocol;
356         struct ip_tunnel_net *itn = net_generic(net, vti_net_id);
357
358         tunnel = ip_tunnel_lookup(itn, skb->dev->ifindex, TUNNEL_NO_KEY,
359                                   iph->daddr, iph->saddr, 0);
360         if (!tunnel)
361                 return -1;
362
363         mark = be32_to_cpu(tunnel->parms.o_key);
364
365         switch (protocol) {
366         case IPPROTO_ESP:
367                 esph = (struct ip_esp_hdr *)(skb->data+(iph->ihl<<2));
368                 spi = esph->spi;
369                 break;
370         case IPPROTO_AH:
371                 ah = (struct ip_auth_hdr *)(skb->data+(iph->ihl<<2));
372                 spi = ah->spi;
373                 break;
374         case IPPROTO_COMP:
375                 ipch = (struct ip_comp_hdr *)(skb->data+(iph->ihl<<2));
376                 spi = htonl(ntohs(ipch->cpi));
377                 break;
378         default:
379                 return 0;
380         }
381
382         switch (icmp_hdr(skb)->type) {
383         case ICMP_DEST_UNREACH:
384                 if (icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
385                         return 0;
386         case ICMP_REDIRECT:
387                 break;
388         default:
389                 return 0;
390         }
391
392         x = xfrm_state_lookup(net, mark, (const xfrm_address_t *)&iph->daddr,
393                               spi, protocol, AF_INET);
394         if (!x)
395                 return 0;
396
397         if (icmp_hdr(skb)->type == ICMP_DEST_UNREACH)
398                 ipv4_update_pmtu(skb, net, info, 0, 0, protocol, 0);
399         else
400                 ipv4_redirect(skb, net, 0, 0, protocol, 0);
401         xfrm_state_put(x);
402
403         return 0;
404 }
405
406 static int
407 vti_tunnel_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
408 {
409         int err = 0;
410         struct ip_tunnel_parm p;
411
412         if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
413                 return -EFAULT;
414
415         if (cmd == SIOCADDTUNNEL || cmd == SIOCCHGTUNNEL) {
416                 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPIP ||
417                     p.iph.ihl != 5)
418                         return -EINVAL;
419         }
420
421         if (!(p.i_flags & GRE_KEY))
422                 p.i_key = 0;
423         if (!(p.o_flags & GRE_KEY))
424                 p.o_key = 0;
425
426         p.i_flags = VTI_ISVTI;
427
428         err = ip_tunnel_ioctl(dev, &p, cmd);
429         if (err)
430                 return err;
431
432         if (cmd != SIOCDELTUNNEL) {
433                 p.i_flags |= GRE_KEY;
434                 p.o_flags |= GRE_KEY;
435         }
436
437         if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
438                 return -EFAULT;
439         return 0;
440 }
441
442 static const struct net_device_ops vti_netdev_ops = {
443         .ndo_init       = vti_tunnel_init,
444         .ndo_uninit     = ip_tunnel_uninit,
445         .ndo_start_xmit = vti_tunnel_xmit,
446         .ndo_do_ioctl   = vti_tunnel_ioctl,
447         .ndo_change_mtu = ip_tunnel_change_mtu,
448         .ndo_get_stats64 = ip_tunnel_get_stats64,
449         .ndo_get_iflink = ip_tunnel_get_iflink,
450 };
451
452 static void vti_tunnel_setup(struct net_device *dev)
453 {
454         dev->netdev_ops         = &vti_netdev_ops;
455         dev->type               = ARPHRD_TUNNEL;
456         ip_tunnel_setup(dev, vti_net_id);
457 }
458
459 static int vti_tunnel_init(struct net_device *dev)
460 {
461         struct ip_tunnel *tunnel = netdev_priv(dev);
462         struct iphdr *iph = &tunnel->parms.iph;
463
464         memcpy(dev->dev_addr, &iph->saddr, 4);
465         memcpy(dev->broadcast, &iph->daddr, 4);
466
467         dev->flags              = IFF_NOARP;
468         dev->addr_len           = 4;
469         dev->features           |= NETIF_F_LLTX;
470         netif_keep_dst(dev);
471
472         return ip_tunnel_init(dev);
473 }
474
475 static void __net_init vti_fb_tunnel_init(struct net_device *dev)
476 {
477         struct ip_tunnel *tunnel = netdev_priv(dev);
478         struct iphdr *iph = &tunnel->parms.iph;
479
480         iph->version            = 4;
481         iph->protocol           = IPPROTO_IPIP;
482         iph->ihl                = 5;
483 }
484
485 static struct xfrm4_protocol vti_esp4_protocol __read_mostly = {
486         .handler        =       vti_rcv_proto,
487         .input_handler  =       vti_input_proto,
488         .cb_handler     =       vti_rcv_cb,
489         .err_handler    =       vti4_err,
490         .priority       =       100,
491 };
492
493 static struct xfrm4_protocol vti_ah4_protocol __read_mostly = {
494         .handler        =       vti_rcv_proto,
495         .input_handler  =       vti_input_proto,
496         .cb_handler     =       vti_rcv_cb,
497         .err_handler    =       vti4_err,
498         .priority       =       100,
499 };
500
501 static struct xfrm4_protocol vti_ipcomp4_protocol __read_mostly = {
502         .handler        =       vti_rcv_proto,
503         .input_handler  =       vti_input_proto,
504         .cb_handler     =       vti_rcv_cb,
505         .err_handler    =       vti4_err,
506         .priority       =       100,
507 };
508
509 static struct xfrm_tunnel ipip_handler __read_mostly = {
510         .handler        =       vti_rcv_tunnel,
511         .err_handler    =       vti4_err,
512         .priority       =       0,
513 };
514
515 static int __net_init vti_init_net(struct net *net)
516 {
517         int err;
518         struct ip_tunnel_net *itn;
519
520         err = ip_tunnel_init_net(net, vti_net_id, &vti_link_ops, "ip_vti0");
521         if (err)
522                 return err;
523         itn = net_generic(net, vti_net_id);
524         if (itn->fb_tunnel_dev)
525                 vti_fb_tunnel_init(itn->fb_tunnel_dev);
526         return 0;
527 }
528
529 static void __net_exit vti_exit_batch_net(struct list_head *list_net)
530 {
531         ip_tunnel_delete_nets(list_net, vti_net_id, &vti_link_ops);
532 }
533
534 static struct pernet_operations vti_net_ops = {
535         .init = vti_init_net,
536         .exit_batch = vti_exit_batch_net,
537         .id   = &vti_net_id,
538         .size = sizeof(struct ip_tunnel_net),
539 };
540
541 static int vti_tunnel_validate(struct nlattr *tb[], struct nlattr *data[],
542                                struct netlink_ext_ack *extack)
543 {
544         return 0;
545 }
546
547 static void vti_netlink_parms(struct nlattr *data[],
548                               struct ip_tunnel_parm *parms,
549                               __u32 *fwmark)
550 {
551         memset(parms, 0, sizeof(*parms));
552
553         parms->iph.protocol = IPPROTO_IPIP;
554
555         if (!data)
556                 return;
557
558         parms->i_flags = VTI_ISVTI;
559
560         if (data[IFLA_VTI_LINK])
561                 parms->link = nla_get_u32(data[IFLA_VTI_LINK]);
562
563         if (data[IFLA_VTI_IKEY])
564                 parms->i_key = nla_get_be32(data[IFLA_VTI_IKEY]);
565
566         if (data[IFLA_VTI_OKEY])
567                 parms->o_key = nla_get_be32(data[IFLA_VTI_OKEY]);
568
569         if (data[IFLA_VTI_LOCAL])
570                 parms->iph.saddr = nla_get_in_addr(data[IFLA_VTI_LOCAL]);
571
572         if (data[IFLA_VTI_REMOTE])
573                 parms->iph.daddr = nla_get_in_addr(data[IFLA_VTI_REMOTE]);
574
575         if (data[IFLA_VTI_FWMARK])
576                 *fwmark = nla_get_u32(data[IFLA_VTI_FWMARK]);
577 }
578
579 static int vti_newlink(struct net *src_net, struct net_device *dev,
580                        struct nlattr *tb[], struct nlattr *data[],
581                        struct netlink_ext_ack *extack)
582 {
583         struct ip_tunnel_parm parms;
584         __u32 fwmark = 0;
585
586         vti_netlink_parms(data, &parms, &fwmark);
587         return ip_tunnel_newlink(dev, tb, &parms, fwmark);
588 }
589
590 static int vti_changelink(struct net_device *dev, struct nlattr *tb[],
591                           struct nlattr *data[],
592                           struct netlink_ext_ack *extack)
593 {
594         struct ip_tunnel *t = netdev_priv(dev);
595         __u32 fwmark = t->fwmark;
596         struct ip_tunnel_parm p;
597
598         vti_netlink_parms(data, &p, &fwmark);
599         return ip_tunnel_changelink(dev, tb, &p, fwmark);
600 }
601
602 static size_t vti_get_size(const struct net_device *dev)
603 {
604         return
605                 /* IFLA_VTI_LINK */
606                 nla_total_size(4) +
607                 /* IFLA_VTI_IKEY */
608                 nla_total_size(4) +
609                 /* IFLA_VTI_OKEY */
610                 nla_total_size(4) +
611                 /* IFLA_VTI_LOCAL */
612                 nla_total_size(4) +
613                 /* IFLA_VTI_REMOTE */
614                 nla_total_size(4) +
615                 /* IFLA_VTI_FWMARK */
616                 nla_total_size(4) +
617                 0;
618 }
619
620 static int vti_fill_info(struct sk_buff *skb, const struct net_device *dev)
621 {
622         struct ip_tunnel *t = netdev_priv(dev);
623         struct ip_tunnel_parm *p = &t->parms;
624
625         if (nla_put_u32(skb, IFLA_VTI_LINK, p->link) ||
626             nla_put_be32(skb, IFLA_VTI_IKEY, p->i_key) ||
627             nla_put_be32(skb, IFLA_VTI_OKEY, p->o_key) ||
628             nla_put_in_addr(skb, IFLA_VTI_LOCAL, p->iph.saddr) ||
629             nla_put_in_addr(skb, IFLA_VTI_REMOTE, p->iph.daddr) ||
630             nla_put_u32(skb, IFLA_VTI_FWMARK, t->fwmark))
631                 return -EMSGSIZE;
632
633         return 0;
634 }
635
636 static const struct nla_policy vti_policy[IFLA_VTI_MAX + 1] = {
637         [IFLA_VTI_LINK]         = { .type = NLA_U32 },
638         [IFLA_VTI_IKEY]         = { .type = NLA_U32 },
639         [IFLA_VTI_OKEY]         = { .type = NLA_U32 },
640         [IFLA_VTI_LOCAL]        = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
641         [IFLA_VTI_REMOTE]       = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
642         [IFLA_VTI_FWMARK]       = { .type = NLA_U32 },
643 };
644
645 static struct rtnl_link_ops vti_link_ops __read_mostly = {
646         .kind           = "vti",
647         .maxtype        = IFLA_VTI_MAX,
648         .policy         = vti_policy,
649         .priv_size      = sizeof(struct ip_tunnel),
650         .setup          = vti_tunnel_setup,
651         .validate       = vti_tunnel_validate,
652         .newlink        = vti_newlink,
653         .changelink     = vti_changelink,
654         .dellink        = ip_tunnel_dellink,
655         .get_size       = vti_get_size,
656         .fill_info      = vti_fill_info,
657         .get_link_net   = ip_tunnel_get_link_net,
658 };
659
660 static int __init vti_init(void)
661 {
662         const char *msg;
663         int err;
664
665         pr_info("IPv4 over IPsec tunneling driver\n");
666
667         msg = "tunnel device";
668         err = register_pernet_device(&vti_net_ops);
669         if (err < 0)
670                 goto pernet_dev_failed;
671
672         msg = "tunnel protocols";
673         err = xfrm4_protocol_register(&vti_esp4_protocol, IPPROTO_ESP);
674         if (err < 0)
675                 goto xfrm_proto_esp_failed;
676         err = xfrm4_protocol_register(&vti_ah4_protocol, IPPROTO_AH);
677         if (err < 0)
678                 goto xfrm_proto_ah_failed;
679         err = xfrm4_protocol_register(&vti_ipcomp4_protocol, IPPROTO_COMP);
680         if (err < 0)
681                 goto xfrm_proto_comp_failed;
682
683         msg = "ipip tunnel";
684         err = xfrm4_tunnel_register(&ipip_handler, AF_INET);
685         if (err < 0)
686                 goto xfrm_tunnel_failed;
687
688         msg = "netlink interface";
689         err = rtnl_link_register(&vti_link_ops);
690         if (err < 0)
691                 goto rtnl_link_failed;
692
693         return err;
694
695 rtnl_link_failed:
696         xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
697 xfrm_tunnel_failed:
698         xfrm4_protocol_deregister(&vti_ipcomp4_protocol, IPPROTO_COMP);
699 xfrm_proto_comp_failed:
700         xfrm4_protocol_deregister(&vti_ah4_protocol, IPPROTO_AH);
701 xfrm_proto_ah_failed:
702         xfrm4_protocol_deregister(&vti_esp4_protocol, IPPROTO_ESP);
703 xfrm_proto_esp_failed:
704         unregister_pernet_device(&vti_net_ops);
705 pernet_dev_failed:
706         pr_err("vti init: failed to register %s\n", msg);
707         return err;
708 }
709
710 static void __exit vti_fini(void)
711 {
712         rtnl_link_unregister(&vti_link_ops);
713         xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
714         xfrm4_protocol_deregister(&vti_ipcomp4_protocol, IPPROTO_COMP);
715         xfrm4_protocol_deregister(&vti_ah4_protocol, IPPROTO_AH);
716         xfrm4_protocol_deregister(&vti_esp4_protocol, IPPROTO_ESP);
717         unregister_pernet_device(&vti_net_ops);
718 }
719
720 module_init(vti_init);
721 module_exit(vti_fini);
722 MODULE_LICENSE("GPL");
723 MODULE_ALIAS_RTNL_LINK("vti");
724 MODULE_ALIAS_NETDEV("ip_vti0");