blob: e90b600c7a25fe397214e721c806c358da31a76a [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Saurabh11814122012-07-17 09:44:54 +00002/*
3 * Linux NET3: IP/IP protocol decoder modified to support
4 * virtual tunnel interface
5 *
6 * Authors:
7 * Saurabh Mohan (saurabh.mohan@vyatta.com) 05/07/2012
Saurabh11814122012-07-17 09:44:54 +00008 */
9
10/*
11 This version of net/ipv4/ip_vti.c is cloned of net/ipv4/ipip.c
12
13 For comments look at net/ipv4/ip_gre.c --ANK
14 */
15
16
17#include <linux/capability.h>
18#include <linux/module.h>
19#include <linux/types.h>
20#include <linux/kernel.h>
21#include <linux/uaccess.h>
22#include <linux/skbuff.h>
23#include <linux/netdevice.h>
24#include <linux/in.h>
25#include <linux/tcp.h>
26#include <linux/udp.h>
27#include <linux/if_arp.h>
Saurabh11814122012-07-17 09:44:54 +000028#include <linux/init.h>
29#include <linux/netfilter_ipv4.h>
30#include <linux/if_ether.h>
Steffen Klassert78a010c2014-02-21 08:41:10 +010031#include <linux/icmpv6.h>
Saurabh11814122012-07-17 09:44:54 +000032
33#include <net/sock.h>
34#include <net/ip.h>
35#include <net/icmp.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000036#include <net/ip_tunnels.h>
Saurabh11814122012-07-17 09:44:54 +000037#include <net/inet_ecn.h>
38#include <net/xfrm.h>
39#include <net/net_namespace.h>
40#include <net/netns/generic.h>
41
Saurabh11814122012-07-17 09:44:54 +000042static struct rtnl_link_ops vti_link_ops __read_mostly;
43
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030044static unsigned int vti_net_id __read_mostly;
Saurabh11814122012-07-17 09:44:54 +000045static int vti_tunnel_init(struct net_device *dev);
Saurabh11814122012-07-17 09:44:54 +000046
Steffen Klassertdf3893c2014-02-21 08:41:10 +010047static int vti_input(struct sk_buff *skb, int nexthdr, __be32 spi,
Jeremy Sowdenf981c572019-03-23 14:43:02 +000048 int encap_type, bool update_skb_dev)
Saurabh11814122012-07-17 09:44:54 +000049{
50 struct ip_tunnel *tunnel;
51 const struct iphdr *iph = ip_hdr(skb);
Amerigo Wangb9959fd2013-07-21 10:46:25 +080052 struct net *net = dev_net(skb->dev);
53 struct ip_tunnel_net *itn = net_generic(net, vti_net_id);
Saurabh11814122012-07-17 09:44:54 +000054
Amerigo Wangb9959fd2013-07-21 10:46:25 +080055 tunnel = ip_tunnel_lookup(itn, skb->dev->ifindex, TUNNEL_NO_KEY,
56 iph->saddr, iph->daddr, 0);
Ian Morris00db4122015-04-03 09:17:27 +010057 if (tunnel) {
Steffen Klassertdf3893c2014-02-21 08:41:10 +010058 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
59 goto drop;
Saurabh11814122012-07-17 09:44:54 +000060
Steffen Klassertdf3893c2014-02-21 08:41:10 +010061 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4 = tunnel;
Christophe Gouault7263a512013-10-08 17:21:22 +020062
Jeremy Sowdenf981c572019-03-23 14:43:02 +000063 if (update_skb_dev)
64 skb->dev = tunnel->dev;
Su Yanjundd9ee342019-01-06 21:31:20 -050065
66 return xfrm_input(skb, nexthdr, spi, encap_type);
67 }
68
69 return -EINVAL;
70drop:
71 kfree_skb(skb);
72 return 0;
73}
74
Jeremy Sowdenf981c572019-03-23 14:43:02 +000075static int vti_input_proto(struct sk_buff *skb, int nexthdr, __be32 spi,
76 int encap_type)
Steffen Klassertdf3893c2014-02-21 08:41:10 +010077{
Jeremy Sowdenf981c572019-03-23 14:43:02 +000078 return vti_input(skb, nexthdr, spi, encap_type, false);
Steffen Klassertdf3893c2014-02-21 08:41:10 +010079}
80
Jeremy Sowdenf981c572019-03-23 14:43:02 +000081static int vti_rcv(struct sk_buff *skb, __be32 spi, bool update_skb_dev)
Su Yanjundd9ee342019-01-06 21:31:20 -050082{
83 XFRM_SPI_SKB_CB(skb)->family = AF_INET;
84 XFRM_SPI_SKB_CB(skb)->daddroff = offsetof(struct iphdr, daddr);
85
Jeremy Sowdenf981c572019-03-23 14:43:02 +000086 return vti_input(skb, ip_hdr(skb)->protocol, spi, 0, update_skb_dev);
87}
88
89static int vti_rcv_proto(struct sk_buff *skb)
90{
91 return vti_rcv(skb, 0, false);
92}
93
94static int vti_rcv_tunnel(struct sk_buff *skb)
95{
96 return vti_rcv(skb, ip_hdr(skb)->saddr, true);
Su Yanjundd9ee342019-01-06 21:31:20 -050097}
98
Steffen Klassertdf3893c2014-02-21 08:41:10 +010099static int vti_rcv_cb(struct sk_buff *skb, int err)
100{
101 unsigned short family;
102 struct net_device *dev;
103 struct pcpu_sw_netstats *tstats;
104 struct xfrm_state *x;
Florian Westphal4c145dc2019-03-29 21:16:31 +0100105 const struct xfrm_mode *inner_mode;
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100106 struct ip_tunnel *tunnel = XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4;
Alexander Duyckd55c6702015-05-27 07:16:54 -0700107 u32 orig_mark = skb->mark;
108 int ret;
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100109
110 if (!tunnel)
111 return 1;
112
113 dev = tunnel->dev;
114
115 if (err) {
116 dev->stats.rx_errors++;
117 dev->stats.rx_dropped++;
118
119 return 0;
120 }
121
122 x = xfrm_input_state(skb);
thomas.zeitlhofer+lkml@ze-it.at1fb81e02016-09-07 20:40:38 +0200123
Florian Westphalc9500d72019-03-29 21:16:32 +0100124 inner_mode = &x->inner_mode;
thomas.zeitlhofer+lkml@ze-it.at1fb81e02016-09-07 20:40:38 +0200125
126 if (x->sel.family == AF_UNSPEC) {
127 inner_mode = xfrm_ip2inner_mode(x, XFRM_MODE_SKB_CB(skb)->protocol);
128 if (inner_mode == NULL) {
129 XFRM_INC_STATS(dev_net(skb->dev),
130 LINUX_MIB_XFRMINSTATEMODEERROR);
131 return -EINVAL;
132 }
133 }
134
Florian Westphalb45714b2019-03-29 21:16:23 +0100135 family = inner_mode->family;
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100136
Alexander Duyckd55c6702015-05-27 07:16:54 -0700137 skb->mark = be32_to_cpu(tunnel->parms.i_key);
138 ret = xfrm_policy_check(NULL, XFRM_POLICY_IN, skb, family);
139 skb->mark = orig_mark;
140
141 if (!ret)
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100142 return -EPERM;
143
144 skb_scrub_packet(skb, !net_eq(tunnel->net, dev_net(skb->dev)));
145 skb->dev = dev;
146
147 tstats = this_cpu_ptr(dev->tstats);
148
149 u64_stats_update_begin(&tstats->syncp);
150 tstats->rx_packets++;
151 tstats->rx_bytes += skb->len;
152 u64_stats_update_end(&tstats->syncp);
153
154 return 0;
Saurabh11814122012-07-17 09:44:54 +0000155}
156
Steffen Klassert6e2de802014-02-21 08:41:11 +0100157static bool vti_state_check(const struct xfrm_state *x, __be32 dst, __be32 src)
158{
159 xfrm_address_t *daddr = (xfrm_address_t *)&dst;
160 xfrm_address_t *saddr = (xfrm_address_t *)&src;
161
162 /* if there is no transform then this tunnel is not functional.
163 * Or if the xfrm is not mode tunnel.
164 */
165 if (!x || x->props.mode != XFRM_MODE_TUNNEL ||
166 x->props.family != AF_INET)
167 return false;
168
169 if (!dst)
170 return xfrm_addr_equal(saddr, &x->props.saddr, AF_INET);
171
172 if (!xfrm_state_addr_check(x, daddr, saddr, AF_INET))
173 return false;
174
175 return true;
176}
177
Steffen Klassert78a010c2014-02-21 08:41:10 +0100178static netdev_tx_t vti_xmit(struct sk_buff *skb, struct net_device *dev,
179 struct flowi *fl)
Saurabh11814122012-07-17 09:44:54 +0000180{
181 struct ip_tunnel *tunnel = netdev_priv(dev);
Steffen Klassert6e2de802014-02-21 08:41:11 +0100182 struct ip_tunnel_parm *parms = &tunnel->parms;
Steffen Klasserta34cd4f2014-02-21 08:41:10 +0100183 struct dst_entry *dst = skb_dst(skb);
Saurabh11814122012-07-17 09:44:54 +0000184 struct net_device *tdev; /* Device to other host */
Alexey Kodanev36f6ee22017-09-26 15:14:29 +0300185 int pkt_len = skb->len;
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800186 int err;
Steffen Klassertd6af1a32016-03-16 10:17:37 +0100187 int mtu;
Saurabh11814122012-07-17 09:44:54 +0000188
Steffen Klasserta34cd4f2014-02-21 08:41:10 +0100189 if (!dst) {
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100190 dev->stats.tx_carrier_errors++;
191 goto tx_error_icmp;
192 }
193
Steffen Klasserta34cd4f2014-02-21 08:41:10 +0100194 dst_hold(dst);
Steffen Klassert78a010c2014-02-21 08:41:10 +0100195 dst = xfrm_lookup(tunnel->net, dst, fl, NULL, 0);
Steffen Klasserta34cd4f2014-02-21 08:41:10 +0100196 if (IS_ERR(dst)) {
Saurabh11814122012-07-17 09:44:54 +0000197 dev->stats.tx_carrier_errors++;
198 goto tx_error_icmp;
199 }
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100200
Steffen Klassert6e2de802014-02-21 08:41:11 +0100201 if (!vti_state_check(dst->xfrm, parms->iph.daddr, parms->iph.saddr)) {
Saurabh11814122012-07-17 09:44:54 +0000202 dev->stats.tx_carrier_errors++;
Steffen Klasserta34cd4f2014-02-21 08:41:10 +0100203 dst_release(dst);
Saurabh11814122012-07-17 09:44:54 +0000204 goto tx_error_icmp;
205 }
Steffen Klassert6e2de802014-02-21 08:41:11 +0100206
Steffen Klasserta34cd4f2014-02-21 08:41:10 +0100207 tdev = dst->dev;
Saurabh11814122012-07-17 09:44:54 +0000208
209 if (tdev == dev) {
Steffen Klasserta34cd4f2014-02-21 08:41:10 +0100210 dst_release(dst);
Saurabh11814122012-07-17 09:44:54 +0000211 dev->stats.collisions++;
212 goto tx_error;
213 }
214
Steffen Klassertd6af1a32016-03-16 10:17:37 +0100215 mtu = dst_mtu(dst);
216 if (skb->len > mtu) {
Hangbin Liu8247a792019-12-22 10:51:14 +0800217 skb_dst_update_pmtu_no_confirm(skb, mtu);
Steffen Klassertd6af1a32016-03-16 10:17:37 +0100218 if (skb->protocol == htons(ETH_P_IP)) {
219 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
220 htonl(mtu));
221 } else {
222 if (mtu < IPV6_MIN_MTU)
223 mtu = IPV6_MIN_MTU;
224
225 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
226 }
227
228 dst_release(dst);
229 goto tx_error;
230 }
231
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100232 skb_scrub_packet(skb, !net_eq(tunnel->net, dev_net(dev)));
Steffen Klasserta34cd4f2014-02-21 08:41:10 +0100233 skb_dst_set(skb, dst);
Saurabh11814122012-07-17 09:44:54 +0000234 skb->dev = skb_dst(skb)->dev;
235
Eric W. Biederman13206b62015-10-07 16:48:35 -0500236 err = dst_output(tunnel->net, skb->sk, skb);
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800237 if (net_xmit_eval(err) == 0)
Alexey Kodanev36f6ee22017-09-26 15:14:29 +0300238 err = pkt_len;
Pravin B Shelar039f5062015-12-24 14:34:54 -0800239 iptunnel_xmit_stats(dev, err);
Saurabh11814122012-07-17 09:44:54 +0000240 return NETDEV_TX_OK;
241
242tx_error_icmp:
243 dst_link_failure(skb);
244tx_error:
245 dev->stats.tx_errors++;
Eric Dumazet3acfa1e2014-01-18 18:27:49 -0800246 kfree_skb(skb);
Saurabh11814122012-07-17 09:44:54 +0000247 return NETDEV_TX_OK;
248}
249
Steffen Klassert78a010c2014-02-21 08:41:10 +0100250/* This function assumes it is being called from dev_queue_xmit()
251 * and that skb is filled properly by that function.
252 */
253static netdev_tx_t vti_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
254{
255 struct ip_tunnel *tunnel = netdev_priv(dev);
256 struct flowi fl;
257
Willem de Bruijncb9f1b72018-12-30 17:24:36 -0500258 if (!pskb_inet_may_pull(skb))
259 goto tx_err;
260
Steffen Klassert78a010c2014-02-21 08:41:10 +0100261 memset(&fl, 0, sizeof(fl));
262
Steffen Klassert78a010c2014-02-21 08:41:10 +0100263 switch (skb->protocol) {
264 case htons(ETH_P_IP):
265 xfrm_decode_session(skb, &fl, AF_INET);
266 memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
267 break;
268 case htons(ETH_P_IPV6):
269 xfrm_decode_session(skb, &fl, AF_INET6);
270 memset(IP6CB(skb), 0, sizeof(*IP6CB(skb)));
271 break;
272 default:
Willem de Bruijncb9f1b72018-12-30 17:24:36 -0500273 goto tx_err;
Steffen Klassert78a010c2014-02-21 08:41:10 +0100274 }
275
Alexander Duyckcd5279c2015-05-27 07:16:43 -0700276 /* override mark with tunnel output key */
277 fl.flowi_mark = be32_to_cpu(tunnel->parms.o_key);
278
Steffen Klassert78a010c2014-02-21 08:41:10 +0100279 return vti_xmit(skb, dev, &fl);
Willem de Bruijncb9f1b72018-12-30 17:24:36 -0500280
281tx_err:
282 dev->stats.tx_errors++;
283 kfree_skb(skb);
284 return NETDEV_TX_OK;
Steffen Klassert78a010c2014-02-21 08:41:10 +0100285}
286
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100287static int vti4_err(struct sk_buff *skb, u32 info)
288{
289 __be32 spi;
Steffen Klassert6d004d62014-05-12 09:09:26 +0200290 __u32 mark;
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100291 struct xfrm_state *x;
292 struct ip_tunnel *tunnel;
293 struct ip_esp_hdr *esph;
294 struct ip_auth_hdr *ah ;
295 struct ip_comp_hdr *ipch;
296 struct net *net = dev_net(skb->dev);
297 const struct iphdr *iph = (const struct iphdr *)skb->data;
298 int protocol = iph->protocol;
299 struct ip_tunnel_net *itn = net_generic(net, vti_net_id);
300
301 tunnel = ip_tunnel_lookup(itn, skb->dev->ifindex, TUNNEL_NO_KEY,
302 iph->daddr, iph->saddr, 0);
303 if (!tunnel)
304 return -1;
305
Steffen Klassert6d004d62014-05-12 09:09:26 +0200306 mark = be32_to_cpu(tunnel->parms.o_key);
307
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100308 switch (protocol) {
309 case IPPROTO_ESP:
310 esph = (struct ip_esp_hdr *)(skb->data+(iph->ihl<<2));
311 spi = esph->spi;
312 break;
313 case IPPROTO_AH:
314 ah = (struct ip_auth_hdr *)(skb->data+(iph->ihl<<2));
315 spi = ah->spi;
316 break;
317 case IPPROTO_COMP:
318 ipch = (struct ip_comp_hdr *)(skb->data+(iph->ihl<<2));
319 spi = htonl(ntohs(ipch->cpi));
320 break;
321 default:
322 return 0;
323 }
324
325 switch (icmp_hdr(skb)->type) {
326 case ICMP_DEST_UNREACH:
327 if (icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
328 return 0;
329 case ICMP_REDIRECT:
330 break;
331 default:
332 return 0;
333 }
334
Steffen Klassert6d004d62014-05-12 09:09:26 +0200335 x = xfrm_state_lookup(net, mark, (const xfrm_address_t *)&iph->daddr,
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100336 spi, protocol, AF_INET);
337 if (!x)
338 return 0;
339
340 if (icmp_hdr(skb)->type == ICMP_DEST_UNREACH)
Maciej Żenczykowskid888f392018-09-25 20:56:26 -0700341 ipv4_update_pmtu(skb, net, info, 0, protocol);
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100342 else
Maciej Żenczykowski1042caa2018-09-25 20:56:27 -0700343 ipv4_redirect(skb, net, 0, protocol);
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100344 xfrm_state_put(x);
345
346 return 0;
347}
348
Saurabh11814122012-07-17 09:44:54 +0000349static int
350vti_tunnel_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
351{
352 int err = 0;
353 struct ip_tunnel_parm p;
Saurabh11814122012-07-17 09:44:54 +0000354
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800355 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
356 return -EFAULT;
Saurabh11814122012-07-17 09:44:54 +0000357
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800358 if (cmd == SIOCADDTUNNEL || cmd == SIOCCHGTUNNEL) {
Saurabh11814122012-07-17 09:44:54 +0000359 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPIP ||
360 p.iph.ihl != 5)
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800361 return -EINVAL;
Saurabh11814122012-07-17 09:44:54 +0000362 }
363
Dmitry Popov7c8e6b92014-06-08 02:06:25 +0400364 if (!(p.i_flags & GRE_KEY))
365 p.i_key = 0;
366 if (!(p.o_flags & GRE_KEY))
367 p.o_key = 0;
368
369 p.i_flags = VTI_ISVTI;
370
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800371 err = ip_tunnel_ioctl(dev, &p, cmd);
372 if (err)
373 return err;
Saurabh11814122012-07-17 09:44:54 +0000374
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800375 if (cmd != SIOCDELTUNNEL) {
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100376 p.i_flags |= GRE_KEY;
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800377 p.o_flags |= GRE_KEY;
378 }
379
380 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
381 return -EFAULT;
Saurabh11814122012-07-17 09:44:54 +0000382 return 0;
383}
384
385static const struct net_device_ops vti_netdev_ops = {
386 .ndo_init = vti_tunnel_init,
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800387 .ndo_uninit = ip_tunnel_uninit,
Saurabh11814122012-07-17 09:44:54 +0000388 .ndo_start_xmit = vti_tunnel_xmit,
389 .ndo_do_ioctl = vti_tunnel_ioctl,
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800390 .ndo_change_mtu = ip_tunnel_change_mtu,
Pravin B Shelarf61dd382013-03-25 14:50:00 +0000391 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtel1e995842015-04-02 17:07:02 +0200392 .ndo_get_iflink = ip_tunnel_get_iflink,
Saurabh11814122012-07-17 09:44:54 +0000393};
394
Saurabh11814122012-07-17 09:44:54 +0000395static void vti_tunnel_setup(struct net_device *dev)
396{
397 dev->netdev_ops = &vti_netdev_ops;
Nicolas Dichtel8d89dcd2014-04-11 15:51:19 +0200398 dev->type = ARPHRD_TUNNEL;
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800399 ip_tunnel_setup(dev, vti_net_id);
400}
401
402static int vti_tunnel_init(struct net_device *dev)
403{
404 struct ip_tunnel *tunnel = netdev_priv(dev);
405 struct iphdr *iph = &tunnel->parms.iph;
406
407 memcpy(dev->dev_addr, &iph->saddr, 4);
408 memcpy(dev->broadcast, &iph->daddr, 4);
Saurabh11814122012-07-17 09:44:54 +0000409
Saurabh11814122012-07-17 09:44:54 +0000410 dev->flags = IFF_NOARP;
Saurabh11814122012-07-17 09:44:54 +0000411 dev->addr_len = 4;
Saurabh11814122012-07-17 09:44:54 +0000412 dev->features |= NETIF_F_LLTX;
Eric Dumazet02875872014-10-05 18:38:35 -0700413 netif_keep_dst(dev);
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800414
415 return ip_tunnel_init(dev);
Saurabh11814122012-07-17 09:44:54 +0000416}
417
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800418static void __net_init vti_fb_tunnel_init(struct net_device *dev)
Saurabh11814122012-07-17 09:44:54 +0000419{
420 struct ip_tunnel *tunnel = netdev_priv(dev);
421 struct iphdr *iph = &tunnel->parms.iph;
Saurabh11814122012-07-17 09:44:54 +0000422
Saurabh11814122012-07-17 09:44:54 +0000423 iph->version = 4;
424 iph->protocol = IPPROTO_IPIP;
425 iph->ihl = 5;
Saurabh11814122012-07-17 09:44:54 +0000426}
427
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100428static struct xfrm4_protocol vti_esp4_protocol __read_mostly = {
Jeremy Sowdenf981c572019-03-23 14:43:02 +0000429 .handler = vti_rcv_proto,
430 .input_handler = vti_input_proto,
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100431 .cb_handler = vti_rcv_cb,
432 .err_handler = vti4_err,
433 .priority = 100,
434};
435
436static struct xfrm4_protocol vti_ah4_protocol __read_mostly = {
Jeremy Sowdenf981c572019-03-23 14:43:02 +0000437 .handler = vti_rcv_proto,
438 .input_handler = vti_input_proto,
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100439 .cb_handler = vti_rcv_cb,
440 .err_handler = vti4_err,
441 .priority = 100,
442};
443
444static struct xfrm4_protocol vti_ipcomp4_protocol __read_mostly = {
Jeremy Sowdenf981c572019-03-23 14:43:02 +0000445 .handler = vti_rcv_proto,
446 .input_handler = vti_input_proto,
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100447 .cb_handler = vti_rcv_cb,
448 .err_handler = vti4_err,
449 .priority = 100,
Saurabh11814122012-07-17 09:44:54 +0000450};
451
Su Yanjundd9ee342019-01-06 21:31:20 -0500452static struct xfrm_tunnel ipip_handler __read_mostly = {
Jeremy Sowdenf981c572019-03-23 14:43:02 +0000453 .handler = vti_rcv_tunnel,
Su Yanjundd9ee342019-01-06 21:31:20 -0500454 .err_handler = vti4_err,
455 .priority = 0,
456};
457
Saurabh11814122012-07-17 09:44:54 +0000458static int __net_init vti_init_net(struct net *net)
459{
460 int err;
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800461 struct ip_tunnel_net *itn;
Saurabh11814122012-07-17 09:44:54 +0000462
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800463 err = ip_tunnel_init_net(net, vti_net_id, &vti_link_ops, "ip_vti0");
Saurabh11814122012-07-17 09:44:54 +0000464 if (err)
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800465 return err;
466 itn = net_generic(net, vti_net_id);
Haishuang Yancd1aa9c2018-08-19 15:05:04 +0800467 if (itn->fb_tunnel_dev)
468 vti_fb_tunnel_init(itn->fb_tunnel_dev);
Saurabh11814122012-07-17 09:44:54 +0000469 return 0;
Saurabh11814122012-07-17 09:44:54 +0000470}
471
Eric Dumazet64bc1782017-09-19 16:27:09 -0700472static void __net_exit vti_exit_batch_net(struct list_head *list_net)
Saurabh11814122012-07-17 09:44:54 +0000473{
Eric Dumazet64bc1782017-09-19 16:27:09 -0700474 ip_tunnel_delete_nets(list_net, vti_net_id, &vti_link_ops);
Saurabh11814122012-07-17 09:44:54 +0000475}
476
477static struct pernet_operations vti_net_ops = {
478 .init = vti_init_net,
Eric Dumazet64bc1782017-09-19 16:27:09 -0700479 .exit_batch = vti_exit_batch_net,
Saurabh11814122012-07-17 09:44:54 +0000480 .id = &vti_net_id,
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800481 .size = sizeof(struct ip_tunnel_net),
Saurabh11814122012-07-17 09:44:54 +0000482};
483
Matthias Schiffera8b8a8892017-06-25 23:56:01 +0200484static int vti_tunnel_validate(struct nlattr *tb[], struct nlattr *data[],
485 struct netlink_ext_ack *extack)
Saurabh11814122012-07-17 09:44:54 +0000486{
487 return 0;
488}
489
490static void vti_netlink_parms(struct nlattr *data[],
Craig Gallek9830ad42017-04-19 12:30:54 -0400491 struct ip_tunnel_parm *parms,
492 __u32 *fwmark)
Saurabh11814122012-07-17 09:44:54 +0000493{
494 memset(parms, 0, sizeof(*parms));
495
496 parms->iph.protocol = IPPROTO_IPIP;
497
498 if (!data)
499 return;
500
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100501 parms->i_flags = VTI_ISVTI;
502
Saurabh11814122012-07-17 09:44:54 +0000503 if (data[IFLA_VTI_LINK])
504 parms->link = nla_get_u32(data[IFLA_VTI_LINK]);
505
506 if (data[IFLA_VTI_IKEY])
507 parms->i_key = nla_get_be32(data[IFLA_VTI_IKEY]);
508
509 if (data[IFLA_VTI_OKEY])
510 parms->o_key = nla_get_be32(data[IFLA_VTI_OKEY]);
511
512 if (data[IFLA_VTI_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +0200513 parms->iph.saddr = nla_get_in_addr(data[IFLA_VTI_LOCAL]);
Saurabh11814122012-07-17 09:44:54 +0000514
515 if (data[IFLA_VTI_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +0200516 parms->iph.daddr = nla_get_in_addr(data[IFLA_VTI_REMOTE]);
Saurabh11814122012-07-17 09:44:54 +0000517
Craig Gallek9830ad42017-04-19 12:30:54 -0400518 if (data[IFLA_VTI_FWMARK])
519 *fwmark = nla_get_u32(data[IFLA_VTI_FWMARK]);
Saurabh11814122012-07-17 09:44:54 +0000520}
521
522static int vti_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +0200523 struct nlattr *tb[], struct nlattr *data[],
524 struct netlink_ext_ack *extack)
Saurabh11814122012-07-17 09:44:54 +0000525{
Amerigo Wangb9959fd2013-07-21 10:46:25 +0800526 struct ip_tunnel_parm parms;
Craig Gallek9830ad42017-04-19 12:30:54 -0400527 __u32 fwmark = 0;
Saurabh11814122012-07-17 09:44:54 +0000528
Craig Gallek9830ad42017-04-19 12:30:54 -0400529 vti_netlink_parms(data, &parms, &fwmark);
530 return ip_tunnel_newlink(dev, tb, &parms, fwmark);
Saurabh11814122012-07-17 09:44:54 +0000531}
532
533static int vti_changelink(struct net_device *dev, struct nlattr *tb[],
Matthias Schifferad744b22017-06-25 23:56:00 +0200534 struct nlattr *data[],
535 struct netlink_ext_ack *extack)
Saurabh11814122012-07-17 09:44:54 +0000536{
Craig Gallek9830ad42017-04-19 12:30:54 -0400537 struct ip_tunnel *t = netdev_priv(dev);
538 __u32 fwmark = t->fwmark;
Saurabh11814122012-07-17 09:44:54 +0000539 struct ip_tunnel_parm p;
Saurabh11814122012-07-17 09:44:54 +0000540
Craig Gallek9830ad42017-04-19 12:30:54 -0400541 vti_netlink_parms(data, &p, &fwmark);
542 return ip_tunnel_changelink(dev, tb, &p, fwmark);
Saurabh11814122012-07-17 09:44:54 +0000543}
544
545static size_t vti_get_size(const struct net_device *dev)
546{
547 return
548 /* IFLA_VTI_LINK */
549 nla_total_size(4) +
550 /* IFLA_VTI_IKEY */
551 nla_total_size(4) +
552 /* IFLA_VTI_OKEY */
553 nla_total_size(4) +
554 /* IFLA_VTI_LOCAL */
555 nla_total_size(4) +
556 /* IFLA_VTI_REMOTE */
557 nla_total_size(4) +
Craig Gallek9830ad42017-04-19 12:30:54 -0400558 /* IFLA_VTI_FWMARK */
559 nla_total_size(4) +
Saurabh11814122012-07-17 09:44:54 +0000560 0;
561}
562
563static int vti_fill_info(struct sk_buff *skb, const struct net_device *dev)
564{
565 struct ip_tunnel *t = netdev_priv(dev);
566 struct ip_tunnel_parm *p = &t->parms;
567
Hangbin Liu8ed508f2017-05-08 17:57:13 +0800568 if (nla_put_u32(skb, IFLA_VTI_LINK, p->link) ||
569 nla_put_be32(skb, IFLA_VTI_IKEY, p->i_key) ||
570 nla_put_be32(skb, IFLA_VTI_OKEY, p->o_key) ||
571 nla_put_in_addr(skb, IFLA_VTI_LOCAL, p->iph.saddr) ||
572 nla_put_in_addr(skb, IFLA_VTI_REMOTE, p->iph.daddr) ||
573 nla_put_u32(skb, IFLA_VTI_FWMARK, t->fwmark))
574 return -EMSGSIZE;
Saurabh11814122012-07-17 09:44:54 +0000575
576 return 0;
577}
578
579static const struct nla_policy vti_policy[IFLA_VTI_MAX + 1] = {
580 [IFLA_VTI_LINK] = { .type = NLA_U32 },
581 [IFLA_VTI_IKEY] = { .type = NLA_U32 },
582 [IFLA_VTI_OKEY] = { .type = NLA_U32 },
Pankaj Bharadiyac5936422019-12-09 10:31:43 -0800583 [IFLA_VTI_LOCAL] = { .len = sizeof_field(struct iphdr, saddr) },
584 [IFLA_VTI_REMOTE] = { .len = sizeof_field(struct iphdr, daddr) },
Craig Gallek9830ad42017-04-19 12:30:54 -0400585 [IFLA_VTI_FWMARK] = { .type = NLA_U32 },
Saurabh11814122012-07-17 09:44:54 +0000586};
587
588static struct rtnl_link_ops vti_link_ops __read_mostly = {
589 .kind = "vti",
590 .maxtype = IFLA_VTI_MAX,
591 .policy = vti_policy,
592 .priv_size = sizeof(struct ip_tunnel),
593 .setup = vti_tunnel_setup,
594 .validate = vti_tunnel_validate,
595 .newlink = vti_newlink,
596 .changelink = vti_changelink,
lucien20ea60c2014-11-23 15:04:11 +0800597 .dellink = ip_tunnel_dellink,
Saurabh11814122012-07-17 09:44:54 +0000598 .get_size = vti_get_size,
599 .fill_info = vti_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +0100600 .get_link_net = ip_tunnel_get_link_net,
Saurabh11814122012-07-17 09:44:54 +0000601};
602
603static int __init vti_init(void)
604{
Mathias Krause1990e4f2014-05-09 23:43:42 +0200605 const char *msg;
Saurabh11814122012-07-17 09:44:54 +0000606 int err;
607
Mathias Krause1990e4f2014-05-09 23:43:42 +0200608 pr_info("IPv4 over IPsec tunneling driver\n");
Saurabh11814122012-07-17 09:44:54 +0000609
Mathias Krause1990e4f2014-05-09 23:43:42 +0200610 msg = "tunnel device";
Saurabh11814122012-07-17 09:44:54 +0000611 err = register_pernet_device(&vti_net_ops);
612 if (err < 0)
Mathias Krause1990e4f2014-05-09 23:43:42 +0200613 goto pernet_dev_failed;
614
615 msg = "tunnel protocols";
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100616 err = xfrm4_protocol_register(&vti_esp4_protocol, IPPROTO_ESP);
Mathias Krause1990e4f2014-05-09 23:43:42 +0200617 if (err < 0)
618 goto xfrm_proto_esp_failed;
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100619 err = xfrm4_protocol_register(&vti_ah4_protocol, IPPROTO_AH);
Mathias Krause1990e4f2014-05-09 23:43:42 +0200620 if (err < 0)
621 goto xfrm_proto_ah_failed;
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100622 err = xfrm4_protocol_register(&vti_ipcomp4_protocol, IPPROTO_COMP);
Mathias Krause1990e4f2014-05-09 23:43:42 +0200623 if (err < 0)
624 goto xfrm_proto_comp_failed;
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100625
Su Yanjundd9ee342019-01-06 21:31:20 -0500626 msg = "ipip tunnel";
627 err = xfrm4_tunnel_register(&ipip_handler, AF_INET);
Jeremy Sowden01ce31c2019-03-19 15:39:21 +0000628 if (err < 0)
Su Yanjundd9ee342019-01-06 21:31:20 -0500629 goto xfrm_tunnel_failed;
Su Yanjundd9ee342019-01-06 21:31:20 -0500630
Mathias Krause1990e4f2014-05-09 23:43:42 +0200631 msg = "netlink interface";
Saurabh11814122012-07-17 09:44:54 +0000632 err = rtnl_link_register(&vti_link_ops);
633 if (err < 0)
634 goto rtnl_link_failed;
635
636 return err;
637
638rtnl_link_failed:
Su Yanjundd9ee342019-01-06 21:31:20 -0500639 xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
Jeremy Sowden54838442019-03-19 15:39:20 +0000640xfrm_tunnel_failed:
641 xfrm4_protocol_deregister(&vti_ipcomp4_protocol, IPPROTO_COMP);
Mathias Krause1990e4f2014-05-09 23:43:42 +0200642xfrm_proto_comp_failed:
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100643 xfrm4_protocol_deregister(&vti_ah4_protocol, IPPROTO_AH);
Mathias Krause1990e4f2014-05-09 23:43:42 +0200644xfrm_proto_ah_failed:
Steffen Klassertdf3893c2014-02-21 08:41:10 +0100645 xfrm4_protocol_deregister(&vti_esp4_protocol, IPPROTO_ESP);
Mathias Krause1990e4f2014-05-09 23:43:42 +0200646xfrm_proto_esp_failed:
Saurabh11814122012-07-17 09:44:54 +0000647 unregister_pernet_device(&vti_net_ops);
Mathias Krause1990e4f2014-05-09 23:43:42 +0200648pernet_dev_failed:
649 pr_err("vti init: failed to register %s\n", msg);
Saurabh11814122012-07-17 09:44:54 +0000650 return err;
651}
652
653static void __exit vti_fini(void)
654{
655 rtnl_link_unregister(&vti_link_ops);
Jeremy Sowden54838442019-03-19 15:39:20 +0000656 xfrm4_tunnel_deregister(&ipip_handler, AF_INET);
Mathias Krause1990e4f2014-05-09 23:43:42 +0200657 xfrm4_protocol_deregister(&vti_ipcomp4_protocol, IPPROTO_COMP);
658 xfrm4_protocol_deregister(&vti_ah4_protocol, IPPROTO_AH);
659 xfrm4_protocol_deregister(&vti_esp4_protocol, IPPROTO_ESP);
Saurabh11814122012-07-17 09:44:54 +0000660 unregister_pernet_device(&vti_net_ops);
Saurabh11814122012-07-17 09:44:54 +0000661}
662
663module_init(vti_init);
664module_exit(vti_fini);
665MODULE_LICENSE("GPL");
666MODULE_ALIAS_RTNL_LINK("vti");
667MODULE_ALIAS_NETDEV("ip_vti0");