blob: 6a66adba0c229a0fd11c5806163a4cb87eb9483c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09002 * IPv6 tunneling device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Ville Nuorvala <vnuorval@tcs.hut.fi>
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09007 * Yasuyuki Kozakai <kozakai@linux-ipv6.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Based on:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090010 * linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * RFC 2473
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 *
19 */
20
Joe Perchesf3213832012-05-15 14:11:53 +000021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080024#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/errno.h>
26#include <linux/types.h>
27#include <linux/sockios.h>
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090028#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/if.h>
30#include <linux/in.h>
31#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/net.h>
33#include <linux/in6.h>
34#include <linux/netdevice.h>
35#include <linux/if_arp.h>
36#include <linux/icmpv6.h>
37#include <linux/init.h>
38#include <linux/route.h>
39#include <linux/rtnetlink.h>
40#include <linux/netfilter_ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000042#include <linux/hash.h>
Nicolas Dichtele8377352013-08-20 12:16:06 +020043#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070046#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090048#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000050#include <net/ip_tunnels.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <net/ip6_route.h>
53#include <net/addrconf.h>
54#include <net/ip6_tunnel.h>
55#include <net/xfrm.h>
56#include <net/dsfield.h>
57#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070058#include <net/net_namespace.h>
59#include <net/netns/generic.h>
Alexei Starovoitov8d792662016-09-15 13:00:30 -070060#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090063MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064MODULE_LICENSE("GPL");
Tom Gundersenf98f89a2014-05-15 23:21:30 +020065MODULE_ALIAS_RTNL_LINK("ip6tnl");
stephen hemminger6dfbd872011-03-10 11:43:19 +000066MODULE_ALIAS_NETDEV("ip6tnl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jiri Kosinae87a8f22016-08-10 11:03:35 +020068#define IP6_TUNNEL_HASH_SIZE_SHIFT 5
69#define IP6_TUNNEL_HASH_SIZE (1 << IP6_TUNNEL_HASH_SIZE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +000071static bool log_ecn_error = true;
72module_param(log_ecn_error, bool, 0644);
73MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
74
Eric Dumazetddbe5032012-07-18 08:11:12 +000075static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
76{
77 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
78
Jiri Kosinae87a8f22016-08-10 11:03:35 +020079 return hash_32(hash, IP6_TUNNEL_HASH_SIZE_SHIFT);
Eric Dumazetddbe5032012-07-18 08:11:12 +000080}
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Eric Dumazet8560f222010-09-28 03:23:34 +000082static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090083static void ip6_tnl_dev_setup(struct net_device *dev);
Nicolas Dichtelc075b132012-11-09 06:10:01 +000084static struct rtnl_link_ops ip6_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Eric Dumazetf99189b2009-11-17 10:42:49 +000086static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070087struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070088 /* the IPv6 tunnel fallback device */
89 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070090 /* lists for storing tunnels in use */
Jiri Kosinae87a8f22016-08-10 11:03:35 +020091 struct ip6_tnl __rcu *tnls_r_l[IP6_TUNNEL_HASH_SIZE];
Eric Dumazet94767632010-09-15 20:25:34 +000092 struct ip6_tnl __rcu *tnls_wc[1];
93 struct ip6_tnl __rcu **tnls[2];
Alexei Starovoitov8d792662016-09-15 13:00:30 -070094 struct ip6_tnl __rcu *collect_md_tun;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070095};
96
Eric Dumazet8560f222010-09-28 03:23:34 +000097static struct net_device_stats *ip6_get_stats(struct net_device *dev)
98{
David S. Miller56a43422014-01-06 17:37:45 -050099 struct pcpu_sw_netstats tmp, sum = { 0 };
Eric Dumazet8560f222010-09-28 03:23:34 +0000100 int i;
101
102 for_each_possible_cpu(i) {
Li RongQingabb60132014-01-02 13:20:12 +0800103 unsigned int start;
Li RongQing8f849852014-01-04 13:57:59 +0800104 const struct pcpu_sw_netstats *tstats =
105 per_cpu_ptr(dev->tstats, i);
Eric Dumazet8560f222010-09-28 03:23:34 +0000106
Li RongQingabb60132014-01-02 13:20:12 +0800107 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700108 start = u64_stats_fetch_begin_irq(&tstats->syncp);
Li RongQingabb60132014-01-02 13:20:12 +0800109 tmp.rx_packets = tstats->rx_packets;
110 tmp.rx_bytes = tstats->rx_bytes;
111 tmp.tx_packets = tstats->tx_packets;
112 tmp.tx_bytes = tstats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700113 } while (u64_stats_fetch_retry_irq(&tstats->syncp, start));
Li RongQingabb60132014-01-02 13:20:12 +0800114
115 sum.rx_packets += tmp.rx_packets;
116 sum.rx_bytes += tmp.rx_bytes;
117 sum.tx_packets += tmp.tx_packets;
118 sum.tx_bytes += tmp.tx_bytes;
Eric Dumazet8560f222010-09-28 03:23:34 +0000119 }
120 dev->stats.rx_packets = sum.rx_packets;
121 dev->stats.rx_bytes = sum.rx_bytes;
122 dev->stats.tx_packets = sum.tx_packets;
123 dev->stats.tx_bytes = sum.tx_bytes;
124 return &dev->stats;
125}
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900128 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900129 * @remote: the address of the tunnel exit-point
130 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900132 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900134 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * else %NULL
136 **/
137
Eric Dumazet2922bc82009-10-23 06:34:34 +0000138#define for_each_ip6_tunnel_rcu(start) \
139 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000142ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000144 unsigned int hash = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700146 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Steffen Klassertea3dc962014-11-05 08:03:50 +0100147 struct in6_addr any;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Eric Dumazetddbe5032012-07-18 08:11:12 +0000149 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (ipv6_addr_equal(local, &t->parms.laddr) &&
151 ipv6_addr_equal(remote, &t->parms.raddr) &&
152 (t->dev->flags & IFF_UP))
153 return t;
154 }
Steffen Klassertea3dc962014-11-05 08:03:50 +0100155
156 memset(&any, 0, sizeof(any));
157 hash = HASH(&any, local);
158 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
159 if (ipv6_addr_equal(local, &t->parms.laddr) &&
160 (t->dev->flags & IFF_UP))
161 return t;
162 }
163
164 hash = HASH(remote, &any);
165 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
166 if (ipv6_addr_equal(remote, &t->parms.raddr) &&
167 (t->dev->flags & IFF_UP))
168 return t;
169 }
170
Alexei Starovoitov8d792662016-09-15 13:00:30 -0700171 t = rcu_dereference(ip6n->collect_md_tun);
172 if (t)
173 return t;
174
Eric Dumazet2922bc82009-10-23 06:34:34 +0000175 t = rcu_dereference(ip6n->tnls_wc[0]);
176 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return t;
178
179 return NULL;
180}
181
182/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900183 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900184 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 *
186 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900187 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 * &struct in6_addr entries laddr and raddr in @p.
189 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900190 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 **/
192
Eric Dumazet94767632010-09-15 20:25:34 +0000193static struct ip6_tnl __rcu **
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000194ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000196 const struct in6_addr *remote = &p->raddr;
197 const struct in6_addr *local = &p->laddr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000198 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 int prio = 0;
200
201 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
202 prio = 1;
Eric Dumazetddbe5032012-07-18 08:11:12 +0000203 h = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700205 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
208/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900209 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * @t: tunnel to be added
211 **/
212
213static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700214ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Eric Dumazet94767632010-09-15 20:25:34 +0000216 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Alexei Starovoitov8d792662016-09-15 13:00:30 -0700218 if (t->parms.collect_md)
219 rcu_assign_pointer(ip6n->collect_md_tun, t);
Eric Dumazetcf778b02012-01-12 04:41:32 +0000220 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
221 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900225 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 * @t: tunnel to be removed
227 **/
228
229static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700230ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Eric Dumazet94767632010-09-15 20:25:34 +0000232 struct ip6_tnl __rcu **tp;
233 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Alexei Starovoitov8d792662016-09-15 13:00:30 -0700235 if (t->parms.collect_md)
236 rcu_assign_pointer(ip6n->collect_md_tun, NULL);
237
Eric Dumazet94767632010-09-15 20:25:34 +0000238 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
239 (iter = rtnl_dereference(*tp)) != NULL;
240 tp = &iter->next) {
241 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000242 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244 }
245 }
246}
247
Eric Dumazet8560f222010-09-28 03:23:34 +0000248static void ip6_dev_free(struct net_device *dev)
249{
Martin KaFai Laucdf34642015-09-15 14:30:07 -0700250 struct ip6_tnl *t = netdev_priv(dev);
251
Tom Herbert0d3c7032016-04-29 17:12:15 -0700252 gro_cells_destroy(&t->gro_cells);
Paolo Abeni607f7252016-02-12 15:43:54 +0100253 dst_cache_destroy(&t->dst_cache);
Eric Dumazet8560f222010-09-28 03:23:34 +0000254 free_percpu(dev->tstats);
255 free_netdev(dev);
256}
257
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000258static int ip6_tnl_create2(struct net_device *dev)
259{
260 struct ip6_tnl *t = netdev_priv(dev);
261 struct net *net = dev_net(dev);
262 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
263 int err;
264
265 t = netdev_priv(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000266
Thadeu Lima de Souza Cascardob6ee3762016-04-01 17:17:50 -0300267 dev->rtnl_link_ops = &ip6_link_ops;
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000268 err = register_netdevice(dev);
269 if (err < 0)
270 goto out;
271
272 strcpy(t->parms.name, dev->name);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000273
274 dev_hold(dev);
275 ip6_tnl_link(ip6n, t);
276 return 0;
277
278out:
279 return err;
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000283 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * @p: tunnel parameters
285 * @pt: pointer to new tunnel
286 *
287 * Description:
288 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900289 *
290 * Return:
Nicolas Dichtel37355562015-03-16 15:56:05 +0100291 * created tunnel or error pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 **/
293
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000294static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct net_device *dev;
297 struct ip6_tnl *t;
298 char name[IFNAMSIZ];
Nicolas Dichtel37355562015-03-16 15:56:05 +0100299 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800301 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800303 else
304 sprintf(name, "ip6tnl%%d");
305
Tom Gundersenc835a672014-07-14 16:37:24 +0200306 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
307 ip6_tnl_dev_setup);
Ian Morris63159f22015-03-29 14:00:04 +0100308 if (!dev)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800309 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700311 dev_net_set(dev, net);
312
Patrick McHardy2941a482006-01-08 22:05:26 -0800313 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 t->parms = *p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200315 t->net = dev_net(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000316 err = ip6_tnl_create2(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +0000317 if (err < 0)
318 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Ville Nuorvala567131a2006-11-24 17:05:41 -0800320 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800321
322failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000323 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800324failed:
Nicolas Dichtel37355562015-03-16 15:56:05 +0100325 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900329 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900330 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * @create: != 0 if allowed to create new tunnel if no match found
332 *
333 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900334 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * based on @parms. If this is unsuccessful, but @create is set a new
336 * tunnel device is created and registered for use.
337 *
338 * Return:
Nicolas Dichtel37355562015-03-16 15:56:05 +0100339 * matching tunnel or error pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 **/
341
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700342static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000343 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000345 const struct in6_addr *remote = &p->raddr;
346 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000347 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700349 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Eric Dumazet94767632010-09-15 20:25:34 +0000351 for (tp = ip6_tnl_bucket(ip6n, p);
352 (t = rtnl_dereference(*tp)) != NULL;
353 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200355 ipv6_addr_equal(remote, &t->parms.raddr)) {
356 if (create)
Nicolas Dichtel37355562015-03-16 15:56:05 +0100357 return ERR_PTR(-EEXIST);
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200358
Ville Nuorvala567131a2006-11-24 17:05:41 -0800359 return t;
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362 if (!create)
Nicolas Dichtel37355562015-03-16 15:56:05 +0100363 return ERR_PTR(-ENODEV);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700364 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900368 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900370 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900372 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 **/
374
375static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900376ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Patrick McHardy2941a482006-01-08 22:05:26 -0800378 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200379 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700380 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Eric Dumazet94767632010-09-15 20:25:34 +0000382 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000383 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000384 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700385 ip6_tnl_unlink(ip6n, t);
Paolo Abeni607f7252016-02-12 15:43:54 +0100386 dst_cache_reset(&t->dst_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 dev_put(dev);
388}
389
390/**
391 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
392 * @skb: received socket buffer
393 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900394 * Return:
395 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * else index to encapsulation limit
397 **/
398
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000399__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000401 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 __u8 nexthdr = ipv6h->nexthdr;
Ian Morris67ba4152014-08-24 21:53:10 +0100403 __u16 off = sizeof(*ipv6h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
406 __u16 optlen = 0;
407 struct ipv6_opt_hdr *hdr;
Ian Morris67ba4152014-08-24 21:53:10 +0100408 if (raw + off + sizeof(*hdr) > skb->data &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
410 break;
411
412 hdr = (struct ipv6_opt_hdr *) (raw + off);
413 if (nexthdr == NEXTHDR_FRAGMENT) {
414 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
415 if (frag_hdr->frag_off)
416 break;
417 optlen = 8;
418 } else if (nexthdr == NEXTHDR_AUTH) {
419 optlen = (hdr->hdrlen + 2) << 2;
420 } else {
421 optlen = ipv6_optlen(hdr);
422 }
423 if (nexthdr == NEXTHDR_DEST) {
424 __u16 i = off + 2;
425 while (1) {
426 struct ipv6_tlv_tnl_enc_lim *tel;
427
428 /* No more room for encapsulation limit */
429 if (i + sizeof (*tel) > off + optlen)
430 break;
431
432 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
433 /* return index of option if found and valid */
434 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
435 tel->length == 1)
436 return i;
437 /* else jump to next option */
438 if (tel->type)
439 i += tel->length + 2;
440 else
441 i++;
442 }
443 }
444 nexthdr = hdr->nexthdr;
445 off += optlen;
446 }
447 return 0;
448}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000449EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900452 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
454 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900455 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * to the specifications in RFC 2473.
457 **/
458
Herbert Xud2acc342006-03-28 01:12:13 -0800459static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900460ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700461 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000463 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct ip6_tnl *t;
465 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700466 u8 rel_type = ICMPV6_DEST_UNREACH;
467 u8 rel_code = ICMPV6_ADDR_UNREACH;
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300468 u8 tproto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 __u32 rel_info = 0;
470 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800471 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900473 /* If the packet doesn't contain the original IPv6 header we are
474 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 processing of the error. */
476
Eric Dumazet2922bc82009-10-23 06:34:34 +0000477 rcu_read_lock();
Ian Morrise5d08d72014-11-23 21:28:43 +0000478 t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr, &ipv6h->saddr);
Ian Morris63159f22015-03-29 14:00:04 +0100479 if (!t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 goto out;
481
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300482 tproto = ACCESS_ONCE(t->parms.proto);
483 if (tproto != ipproto && tproto != 0)
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900484 goto out;
485
Herbert Xud2acc342006-03-28 01:12:13 -0800486 err = 0;
487
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900488 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 __u32 teli;
490 struct ipv6_tlv_tnl_enc_lim *tel;
491 __u32 mtu;
492 case ICMPV6_DEST_UNREACH:
Matt Bennett17a10c92015-09-25 11:01:47 +1200493 net_dbg_ratelimited("%s: Path to destination invalid or inactive!\n",
494 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 rel_msg = 1;
496 break;
497 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900498 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Matt Bennett17a10c92015-09-25 11:01:47 +1200499 net_dbg_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
500 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 rel_msg = 1;
502 }
503 break;
504 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800505 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900506 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000507 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Al Viro704eae12007-07-26 17:33:29 +0100509 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
511 if (tel->encap_limit == 0) {
Matt Bennett17a10c92015-09-25 11:01:47 +1200512 net_dbg_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
513 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 rel_msg = 1;
515 }
Joe Perchese87cc472012-05-13 21:56:26 +0000516 } else {
Matt Bennett17a10c92015-09-25 11:01:47 +1200517 net_dbg_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
518 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520 break;
521 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100522 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (mtu < IPV6_MIN_MTU)
524 mtu = IPV6_MIN_MTU;
525 t->dev->mtu = mtu;
526
Ian Morrise5d08d72014-11-23 21:28:43 +0000527 len = sizeof(*ipv6h) + ntohs(ipv6h->payload_len);
528 if (len > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 rel_type = ICMPV6_PKT_TOOBIG;
530 rel_code = 0;
531 rel_info = mtu;
532 rel_msg = 1;
533 }
534 break;
535 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900536
537 *type = rel_type;
538 *code = rel_code;
539 *info = rel_info;
540 *msg = rel_msg;
541
542out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000543 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900544 return err;
545}
546
547static int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900548ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700549 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900550{
551 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700552 u8 rel_type = type;
553 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100554 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900555 int err;
556 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000557 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900558 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -0700559 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900560
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900561 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
562 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900563 if (err < 0)
564 return err;
565
566 if (rel_msg == 0)
567 return 0;
568
569 switch (rel_type) {
570 case ICMPV6_DEST_UNREACH:
571 if (rel_code != ICMPV6_ADDR_UNREACH)
572 return 0;
573 rel_type = ICMP_DEST_UNREACH;
574 rel_code = ICMP_HOST_UNREACH;
575 break;
576 case ICMPV6_PKT_TOOBIG:
577 if (rel_code != 0)
578 return 0;
579 rel_type = ICMP_DEST_UNREACH;
580 rel_code = ICMP_FRAG_NEEDED;
581 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700582 case NDISC_REDIRECT:
583 rel_type = ICMP_REDIRECT;
584 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900585 default:
586 return 0;
587 }
588
589 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
590 return 0;
591
592 skb2 = skb_clone(skb, GFP_ATOMIC);
593 if (!skb2)
594 return 0;
595
Eric Dumazetadf30902009-06-02 05:19:30 +0000596 skb_dst_drop(skb2);
597
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900598 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700599 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700600 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900601
602 /* Try to guess incoming interface */
David S. Miller31e45432011-05-03 20:25:42 -0700603 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500604 eiph->saddr, 0,
605 0, 0,
606 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800607 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900608 goto out;
609
Changli Gaod8d1f302010-06-10 23:31:35 -0700610 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900611
612 /* route "incoming" packet */
613 if (rt->rt_flags & RTCF_LOCAL) {
614 ip_rt_put(rt);
615 rt = NULL;
David S. Miller31e45432011-05-03 20:25:42 -0700616 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500617 eiph->daddr, eiph->saddr,
618 0, 0,
619 IPPROTO_IPIP,
620 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800621 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700622 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800623 if (!IS_ERR(rt))
624 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900625 goto out;
626 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800627 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900628 } else {
629 ip_rt_put(rt);
630 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
631 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000632 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900633 goto out;
634 }
635
636 /* change mtu on this route */
637 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000638 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900639 goto out;
640
David S. Miller6700c272012-07-17 03:29:28 -0700641 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900642 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700643 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700644 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900645
Al Viro704eae12007-07-26 17:33:29 +0100646 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900647
648out:
649 kfree_skb(skb2);
650 return 0;
651}
652
653static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900654ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700655 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900656{
657 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700658 u8 rel_type = type;
659 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100660 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900661 int err;
662
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900663 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
664 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900665 if (err < 0)
666 return err;
667
668 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 struct rt6_info *rt;
670 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900673 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Eric Dumazetadf30902009-06-02 05:19:30 +0000675 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700677 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700680 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
681 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
David S. Millerd1918542011-12-28 20:19:20 -0500683 if (rt && rt->dst.dev)
684 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000686 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Amerigo Wang94e187c2012-10-29 00:13:19 +0000688 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 kfree_skb(skb2);
691 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900692
693 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000696static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
697 const struct ipv6hdr *ipv6h,
698 struct sk_buff *skb)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900699{
700 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
701
702 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700703 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900704
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000705 return IP6_ECN_decapsulate(ipv6h, skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900706}
707
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000708static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
709 const struct ipv6hdr *ipv6h,
710 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900712 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800713 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000715 return IP6_ECN_decapsulate(ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900717
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000718__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000719 const struct in6_addr *laddr,
720 const struct in6_addr *raddr)
721{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000722 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000723 int ltype = ipv6_addr_type(laddr);
724 int rtype = ipv6_addr_type(raddr);
725 __u32 flags = 0;
726
727 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
728 flags = IP6_TNL_F_CAP_PER_PACKET;
729 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
730 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
731 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
732 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
733 if (ltype&IPV6_ADDR_UNICAST)
734 flags |= IP6_TNL_F_CAP_XMIT;
735 if (rtype&IPV6_ADDR_UNICAST)
736 flags |= IP6_TNL_F_CAP_RCV;
737 }
738 return flags;
739}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000740EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000741
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100742/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000743int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000744 const struct in6_addr *laddr,
745 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800746{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000747 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800748 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200749 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800750
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000751 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
752 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
753 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900754 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800755
756 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100757 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800758
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000759 if ((ipv6_addr_is_multicast(laddr) ||
760 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
761 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800762 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800763 }
764 return ret;
765}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000766EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Tom Herbert0d3c7032016-04-29 17:12:15 -0700768static int __ip6_tnl_rcv(struct ip6_tnl *tunnel, struct sk_buff *skb,
769 const struct tnl_ptk_info *tpi,
770 struct metadata_dst *tun_dst,
771 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
772 const struct ipv6hdr *ipv6h,
773 struct sk_buff *skb),
774 bool log_ecn_err)
775{
776 struct pcpu_sw_netstats *tstats;
777 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
778 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Tom Herbert0d3c7032016-04-29 17:12:15 -0700780 if ((!(tpi->flags & TUNNEL_CSUM) &&
781 (tunnel->parms.i_flags & TUNNEL_CSUM)) ||
782 ((tpi->flags & TUNNEL_CSUM) &&
783 !(tunnel->parms.i_flags & TUNNEL_CSUM))) {
784 tunnel->dev->stats.rx_crc_errors++;
785 tunnel->dev->stats.rx_errors++;
786 goto drop;
787 }
788
789 if (tunnel->parms.i_flags & TUNNEL_SEQ) {
790 if (!(tpi->flags & TUNNEL_SEQ) ||
791 (tunnel->i_seqno &&
792 (s32)(ntohl(tpi->seq) - tunnel->i_seqno) < 0)) {
793 tunnel->dev->stats.rx_fifo_errors++;
794 tunnel->dev->stats.rx_errors++;
795 goto drop;
796 }
797 tunnel->i_seqno = ntohl(tpi->seq) + 1;
798 }
799
800 skb->protocol = tpi->proto;
801
802 /* Warning: All skb pointers will be invalidated! */
803 if (tunnel->dev->type == ARPHRD_ETHER) {
804 if (!pskb_may_pull(skb, ETH_HLEN)) {
805 tunnel->dev->stats.rx_length_errors++;
806 tunnel->dev->stats.rx_errors++;
807 goto drop;
808 }
809
810 ipv6h = ipv6_hdr(skb);
811 skb->protocol = eth_type_trans(skb, tunnel->dev);
812 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
813 } else {
814 skb->dev = tunnel->dev;
815 }
816
817 skb_reset_network_header(skb);
818 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
819
820 __skb_tunnel_rx(skb, tunnel->dev, tunnel->net);
821
822 err = dscp_ecn_decapsulate(tunnel, ipv6h, skb);
823 if (unlikely(err)) {
824 if (log_ecn_err)
825 net_info_ratelimited("non-ECT from %pI6 with DS=%#x\n",
826 &ipv6h->saddr,
827 ipv6_get_dsfield(ipv6h));
828 if (err > 1) {
829 ++tunnel->dev->stats.rx_frame_errors;
830 ++tunnel->dev->stats.rx_errors;
831 goto drop;
832 }
833 }
834
835 tstats = this_cpu_ptr(tunnel->dev->tstats);
836 u64_stats_update_begin(&tstats->syncp);
837 tstats->rx_packets++;
838 tstats->rx_bytes += skb->len;
839 u64_stats_update_end(&tstats->syncp);
840
841 skb_scrub_packet(skb, !net_eq(tunnel->net, dev_net(tunnel->dev)));
842
Alexei Starovoitov8d792662016-09-15 13:00:30 -0700843 if (tun_dst)
844 skb_dst_set(skb, (struct dst_entry *)tun_dst);
845
Tom Herbert0d3c7032016-04-29 17:12:15 -0700846 gro_cells_receive(&tunnel->gro_cells, skb);
847 return 0;
848
849drop:
850 kfree_skb(skb);
851 return 0;
852}
853
854int ip6_tnl_rcv(struct ip6_tnl *t, struct sk_buff *skb,
855 const struct tnl_ptk_info *tpi,
856 struct metadata_dst *tun_dst,
857 bool log_ecn_err)
858{
859 return __ip6_tnl_rcv(t, skb, tpi, NULL, ip6ip6_dscp_ecn_decapsulate,
860 log_ecn_err);
861}
862EXPORT_SYMBOL(ip6_tnl_rcv);
863
864static const struct tnl_ptk_info tpi_v6 = {
865 /* no tunnel info required for ipxip6. */
866 .proto = htons(ETH_P_IPV6),
867};
868
869static const struct tnl_ptk_info tpi_v4 = {
870 /* no tunnel info required for ipxip6. */
871 .proto = htons(ETH_P_IP),
872};
873
874static int ipxip6_rcv(struct sk_buff *skb, u8 ipproto,
875 const struct tnl_ptk_info *tpi,
876 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
877 const struct ipv6hdr *ipv6h,
878 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000881 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Alexei Starovoitov8d792662016-09-15 13:00:30 -0700882 struct metadata_dst *tun_dst = NULL;
Tom Herbert0d3c7032016-04-29 17:12:15 -0700883 int ret = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Eric Dumazet2922bc82009-10-23 06:34:34 +0000885 rcu_read_lock();
Ian Morrise5d08d72014-11-23 21:28:43 +0000886 t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr, &ipv6h->daddr);
Tom Herbert0d3c7032016-04-29 17:12:15 -0700887
Ian Morris53b24b82015-03-29 14:00:05 +0100888 if (t) {
Tom Herbert0d3c7032016-04-29 17:12:15 -0700889 u8 tproto = ACCESS_ONCE(t->parms.proto);
Eric Dumazet8560f222010-09-28 03:23:34 +0000890
Tom Herbert0d3c7032016-04-29 17:12:15 -0700891 if (tproto != ipproto && tproto != 0)
892 goto drop;
893 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
894 goto drop;
895 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr))
896 goto drop;
897 if (iptunnel_pull_header(skb, 0, tpi->proto, false))
898 goto drop;
Alexei Starovoitov8d792662016-09-15 13:00:30 -0700899 if (t->parms.collect_md) {
900 tun_dst = ipv6_tun_rx_dst(skb, 0, 0, 0);
901 if (!tun_dst)
902 return 0;
903 }
904 ret = __ip6_tnl_rcv(t, skb, tpi, tun_dst, dscp_ecn_decapsulate,
Tom Herbert0d3c7032016-04-29 17:12:15 -0700905 log_ecn_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
Herbert Xu50fba2a2006-04-04 13:50:45 -0700907
Tom Herbert0d3c7032016-04-29 17:12:15 -0700908 rcu_read_unlock();
909
910 return ret;
911
912drop:
913 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700914 kfree_skb(skb);
915 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900918static int ip4ip6_rcv(struct sk_buff *skb)
919{
Nicolas Dichtelca4aa972016-05-10 16:08:17 +0200920 return ipxip6_rcv(skb, IPPROTO_IPIP, &tpi_v4,
Tom Herbert0d3c7032016-04-29 17:12:15 -0700921 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900922}
923
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900924static int ip6ip6_rcv(struct sk_buff *skb)
925{
Tom Herbert0d3c7032016-04-29 17:12:15 -0700926 return ipxip6_rcv(skb, IPPROTO_IPV6, &tpi_v6,
927 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900928}
929
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800930struct ipv6_tel_txoption {
931 struct ipv6_txoptions ops;
932 __u8 dst_opt[8];
933};
934
935static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800937 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800939 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
940 opt->dst_opt[3] = 1;
941 opt->dst_opt[4] = encap_limit;
942 opt->dst_opt[5] = IPV6_TLV_PADN;
943 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800945 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
946 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
949/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900950 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900952 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 *
954 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900955 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 * doesn't match source of incoming packet.
957 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900958 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 * 1 if conflict,
960 * 0 else
961 **/
962
Eric Dumazet92113bf2012-05-18 08:14:11 +0200963static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000964ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
967}
968
Steffen Klassertd5005142014-11-05 08:02:48 +0100969int ip6_tnl_xmit_ctl(struct ip6_tnl *t,
970 const struct in6_addr *laddr,
971 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800972{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000973 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800974 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200975 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800976
Steffen Klassertd5005142014-11-05 08:02:48 +0100977 if ((p->flags & IP6_TNL_F_CAP_XMIT) ||
978 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
979 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_XMIT))) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800980 struct net_device *ldev = NULL;
981
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100982 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800983 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100984 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800985
Steffen Klassertd5005142014-11-05 08:02:48 +0100986 if (unlikely(!ipv6_chk_addr(net, laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000987 pr_warn("%s xmit: Local address not yet configured!\n",
988 p->name);
Steffen Klassertd5005142014-11-05 08:02:48 +0100989 else if (!ipv6_addr_is_multicast(raddr) &&
990 unlikely(ipv6_chk_addr(net, raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000991 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
992 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800993 else
994 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100995 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800996 }
997 return ret;
998}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000999EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001/**
Tom Herbert8eb30be2016-04-29 17:12:18 -07001002 * ip6_tnl_xmit - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001004 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001005 * @dsfield: dscp code for outer header
Tom Herbert8eb30be2016-04-29 17:12:18 -07001006 * @fl6: flow of tunneled packet
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001007 * @encap_limit: encapsulation limit
1008 * @pmtu: Path MTU is stored if packet is too big
Tom Herbert8eb30be2016-04-29 17:12:18 -07001009 * @proto: next header value
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 *
1011 * Description:
1012 * Build new header and do some sanity checks on the packet before sending
1013 * it.
1014 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001015 * Return:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001016 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001017 * -1 fail
1018 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 **/
1020
Tom Herbert8eb30be2016-04-29 17:12:18 -07001021int ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev, __u8 dsfield,
1022 struct flowi6 *fl6, int encap_limit, __u32 *pmtu,
1023 __u8 proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Patrick McHardy2941a482006-01-08 22:05:26 -08001025 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001026 struct net *net = t->net;
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001027 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001028 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001029 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001030 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 struct net_device *tdev;
1032 int mtu;
Tom Herbert058214a2016-05-18 09:06:17 -07001033 unsigned int psh_hlen = sizeof(struct ipv6hdr) + t->encap_hlen;
1034 unsigned int max_headroom = psh_hlen;
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001035 u8 hop_limit;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001036 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001038 if (t->parms.collect_md) {
1039 hop_limit = skb_tunnel_info(skb)->key.ttl;
1040 goto route_lookup;
1041 } else {
1042 hop_limit = t->parms.hop_limit;
1043 }
1044
Steffen Klassertea3dc962014-11-05 08:03:50 +01001045 /* NBMA tunnel */
1046 if (ipv6_addr_any(&t->parms.raddr)) {
1047 struct in6_addr *addr6;
1048 struct neighbour *neigh;
1049 int addr_type;
1050
1051 if (!skb_dst(skb))
1052 goto tx_err_link_failure;
1053
1054 neigh = dst_neigh_lookup(skb_dst(skb),
1055 &ipv6_hdr(skb)->daddr);
1056 if (!neigh)
1057 goto tx_err_link_failure;
1058
1059 addr6 = (struct in6_addr *)&neigh->primary_key;
1060 addr_type = ipv6_addr_type(addr6);
1061
1062 if (addr_type == IPV6_ADDR_ANY)
1063 addr6 = &ipv6_hdr(skb)->daddr;
1064
1065 memcpy(&fl6->daddr, addr6, sizeof(fl6->daddr));
1066 neigh_release(neigh);
1067 } else if (!fl6->flowi6_mark)
Paolo Abeni607f7252016-02-12 15:43:54 +01001068 dst = dst_cache_get(&t->dst_cache);
Steffen Klassertd5005142014-11-05 08:02:48 +01001069
1070 if (!ip6_tnl_xmit_ctl(t, &fl6->saddr, &fl6->daddr))
1071 goto tx_err_link_failure;
1072
Eric Dumazet89b02122011-07-28 04:32:25 +00001073 if (!dst) {
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001074route_lookup:
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001075 dst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001077 if (dst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -07001078 goto tx_err_link_failure;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001079 dst = xfrm_lookup(net, dst, flowi6_to_flowi(fl6), NULL, 0);
1080 if (IS_ERR(dst)) {
1081 err = PTR_ERR(dst);
1082 dst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -08001083 goto tx_err_link_failure;
1084 }
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001085 if (t->parms.collect_md &&
1086 ipv6_dev_get_saddr(net, ip6_dst_idev(dst)->dev,
1087 &fl6->daddr, 0, &fl6->saddr))
1088 goto tx_err_link_failure;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001089 ndst = dst;
Patrick McHardya57ebc92005-09-08 14:27:47 -07001090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 tdev = dst->dev;
1093
1094 if (tdev == dev) {
1095 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +00001096 net_warn_ratelimited("%s: Local routing loop detected!\n",
1097 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 goto tx_err_dst_release;
1099 }
Tom Herbert058214a2016-05-18 09:06:17 -07001100 mtu = dst_mtu(dst) - psh_hlen;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001101 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 max_headroom += 8;
1103 mtu -= 8;
1104 }
1105 if (mtu < IPV6_MIN_MTU)
1106 mtu = IPV6_MIN_MTU;
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001107 if (skb_dst(skb) && !t->parms.collect_md)
David S. Miller6700c272012-07-17 03:29:28 -07001108 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Tom Herbert8eb30be2016-04-29 17:12:18 -07001109 if (skb->len > mtu && !skb_is_gso(skb)) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001110 *pmtu = mtu;
1111 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 goto tx_err_dst_release;
1113 }
1114
Tom Herbert8eb30be2016-04-29 17:12:18 -07001115 if (t->err_count > 0) {
1116 if (time_before(jiffies,
1117 t->err_time + IP6TUNNEL_ERR_TIMEO)) {
1118 t->err_count--;
1119
1120 dst_link_failure(skb);
1121 } else {
1122 t->err_count = 0;
1123 }
1124 }
1125
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001126 skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 /*
1129 * Okay, now see if we can stuff it in the buffer as-is.
1130 */
1131 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001132
Patrick McHardycfbba492007-07-09 15:33:40 -07001133 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1134 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001136
Ian Morrise5d08d72014-11-23 21:28:43 +00001137 new_skb = skb_realloc_headroom(skb, max_headroom);
1138 if (!new_skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 goto tx_err_dst_release;
1140
1141 if (skb->sk)
1142 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +00001143 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 skb = new_skb;
1145 }
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001146
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001147 if (t->parms.collect_md) {
1148 if (t->encap.type != TUNNEL_ENCAP_NONE)
1149 goto tx_err_dst_release;
1150 } else {
1151 if (!fl6->flowi6_mark && ndst)
1152 dst_cache_set_ip6(&t->dst_cache, ndst, &fl6->saddr);
1153 }
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001154 skb_dst_set(skb, dst);
1155
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001156 if (encap_limit >= 0) {
1157 init_tel_txopt(&opt, encap_limit);
1158 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1159 }
Hannes Frederic Sowa3d483052013-08-18 13:46:52 +02001160
Tom Herbert058214a2016-05-18 09:06:17 -07001161 /* Calculate max headroom for all the headers and adjust
1162 * needed_headroom if necessary.
1163 */
Tom Herbert8eb30be2016-04-29 17:12:18 -07001164 max_headroom = LL_RESERVED_SPACE(dst->dev) + sizeof(struct ipv6hdr)
Tom Herbert058214a2016-05-18 09:06:17 -07001165 + dst->header_len + t->hlen;
Tom Herbert8eb30be2016-04-29 17:12:18 -07001166 if (max_headroom > dev->needed_headroom)
1167 dev->needed_headroom = max_headroom;
1168
Tom Herbert058214a2016-05-18 09:06:17 -07001169 err = ip6_tnl_encap(skb, t, &proto, fl6);
1170 if (err)
1171 return err;
1172
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001173 skb_push(skb, sizeof(struct ipv6hdr));
1174 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001175 ipv6h = ipv6_hdr(skb);
Tom Herbertcb1ce2e2014-07-01 21:33:10 -07001176 ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield),
Tom Herbert42240902015-07-31 16:52:12 -07001177 ip6_make_flowlabel(net, skb, fl6->flowlabel, true, fl6));
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001178 ipv6h->hop_limit = hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001180 ipv6h->saddr = fl6->saddr;
1181 ipv6h->daddr = fl6->daddr;
David Miller79b16aa2015-04-05 22:19:09 -04001182 ip6tunnel_xmit(NULL, skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return 0;
1184tx_err_link_failure:
1185 stats->tx_carrier_errors++;
1186 dst_link_failure(skb);
1187tx_err_dst_release:
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001188 dst_release(dst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001189 return err;
1190}
Tom Herbert8eb30be2016-04-29 17:12:18 -07001191EXPORT_SYMBOL(ip6_tnl_xmit);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001192
1193static inline int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001194ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1195{
1196 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001197 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001198 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001199 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001200 __u8 dsfield;
1201 __u32 mtu;
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001202 u8 tproto;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001203 int err;
1204
Bernie Harris5146d1f2016-02-22 12:58:05 +13001205 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1206
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001207 tproto = ACCESS_ONCE(t->parms.proto);
Steffen Klassertd5005142014-11-05 08:02:48 +01001208 if (tproto != IPPROTO_IPIP && tproto != 0)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001209 return -1;
1210
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001211 dsfield = ipv4_get_dsfield(iph);
1212
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001213 if (t->parms.collect_md) {
1214 struct ip_tunnel_info *tun_info;
1215 const struct ip_tunnel_key *key;
1216
1217 tun_info = skb_tunnel_info(skb);
1218 if (unlikely(!tun_info || !(tun_info->mode & IP_TUNNEL_INFO_TX) ||
1219 ip_tunnel_info_af(tun_info) != AF_INET6))
1220 return -1;
1221 key = &tun_info->key;
1222 memset(&fl6, 0, sizeof(fl6));
1223 fl6.flowi6_proto = IPPROTO_IPIP;
1224 fl6.daddr = key->u.ipv6.dst;
1225 fl6.flowlabel = key->label;
1226 } else {
1227 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1228 encap_limit = t->parms.encap_limit;
1229
1230 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
1231 fl6.flowi6_proto = IPPROTO_IPIP;
1232
1233 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
1234 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
1235 & IPV6_TCLASS_MASK;
1236 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1237 fl6.flowi6_mark = skb->mark;
1238 }
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001239
Tom Herbertb8921ca2016-05-18 09:06:23 -07001240 if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP6))
1241 return -1;
1242
1243 skb_set_inner_ipproto(skb, IPPROTO_IPIP);
1244
Tom Herbert8eb30be2016-04-29 17:12:18 -07001245 err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
1246 IPPROTO_IPIP);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001247 if (err != 0) {
1248 /* XXX: send ICMP error even if DF is not set. */
1249 if (err == -EMSGSIZE)
1250 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1251 htonl(mtu));
1252 return -1;
1253 }
1254
1255 return 0;
1256}
1257
1258static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001259ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1260{
1261 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001262 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001263 int encap_limit = -1;
1264 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001265 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001266 __u8 dsfield;
1267 __u32 mtu;
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001268 u8 tproto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001269 int err;
1270
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001271 tproto = ACCESS_ONCE(t->parms.proto);
1272 if ((tproto != IPPROTO_IPV6 && tproto != 0) ||
Steffen Klassertd5005142014-11-05 08:02:48 +01001273 ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001274 return -1;
1275
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001276 dsfield = ipv6_get_dsfield(ipv6h);
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001277
1278 if (t->parms.collect_md) {
1279 struct ip_tunnel_info *tun_info;
1280 const struct ip_tunnel_key *key;
1281
1282 tun_info = skb_tunnel_info(skb);
1283 if (unlikely(!tun_info || !(tun_info->mode & IP_TUNNEL_INFO_TX) ||
1284 ip_tunnel_info_af(tun_info) != AF_INET6))
1285 return -1;
1286 key = &tun_info->key;
1287 memset(&fl6, 0, sizeof(fl6));
1288 fl6.flowi6_proto = IPPROTO_IPV6;
1289 fl6.daddr = key->u.ipv6.dst;
1290 fl6.flowlabel = key->label;
1291 } else {
1292 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
1293 if (offset > 0) {
1294 struct ipv6_tlv_tnl_enc_lim *tel;
1295
1296 tel = (void *)&skb_network_header(skb)[offset];
1297 if (tel->encap_limit == 0) {
1298 icmpv6_send(skb, ICMPV6_PARAMPROB,
1299 ICMPV6_HDR_FIELD, offset + 2);
1300 return -1;
1301 }
1302 encap_limit = tel->encap_limit - 1;
1303 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) {
1304 encap_limit = t->parms.encap_limit;
1305 }
1306
1307 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
1308 fl6.flowi6_proto = IPPROTO_IPV6;
1309
1310 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
1311 fl6.flowlabel |= (*(__be32 *)ipv6h & IPV6_TCLASS_MASK);
1312 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
1313 fl6.flowlabel |= ip6_flowlabel(ipv6h);
1314 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1315 fl6.flowi6_mark = skb->mark;
1316 }
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001317
Tom Herbert815d22e2016-05-18 09:06:22 -07001318 if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP6))
1319 return -1;
1320
1321 skb_set_inner_ipproto(skb, IPPROTO_IPV6);
1322
Tom Herbert8eb30be2016-04-29 17:12:18 -07001323 err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu,
1324 IPPROTO_IPV6);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001325 if (err != 0) {
1326 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001327 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001328 return -1;
1329 }
1330
1331 return 0;
1332}
1333
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001334static netdev_tx_t
Tom Herbert8eb30be2016-04-29 17:12:18 -07001335ip6_tnl_start_xmit(struct sk_buff *skb, struct net_device *dev)
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001336{
1337 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001338 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001339 int ret;
1340
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001341 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001342 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001343 ret = ip4ip6_tnl_xmit(skb, dev);
1344 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001345 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001346 ret = ip6ip6_tnl_xmit(skb, dev);
1347 break;
1348 default:
1349 goto tx_err;
1350 }
1351
1352 if (ret < 0)
1353 goto tx_err;
1354
Patrick McHardy6ed10652009-06-23 06:03:08 +00001355 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357tx_err:
1358 stats->tx_errors++;
1359 stats->tx_dropped++;
1360 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001361 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001364static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
1366 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001367 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001368 struct flowi6 *fl6 = &t->fl.u.ip6;
Tom Herbert058214a2016-05-18 09:06:17 -07001369 int t_hlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001371 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1372 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001375 fl6->saddr = p->laddr;
1376 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001377 fl6->flowi6_oif = p->link;
1378 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001381 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001383 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001385 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1386 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1389 dev->flags |= IFF_POINTOPOINT;
1390 else
1391 dev->flags &= ~IFF_POINTOPOINT;
1392
Tom Herbert058214a2016-05-18 09:06:17 -07001393 t->tun_hlen = 0;
1394 t->hlen = t->encap_hlen + t->tun_hlen;
1395 t_hlen = t->hlen + sizeof(struct ipv6hdr);
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001398 int strict = (ipv6_addr_type(&p->raddr) &
1399 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1400
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001401 struct rt6_info *rt = rt6_lookup(t->net,
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001402 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001403 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Ian Morris63159f22015-03-29 14:00:04 +01001405 if (!rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return;
1407
David S. Millerd1918542011-12-28 20:19:20 -05001408 if (rt->dst.dev) {
1409 dev->hard_header_len = rt->dst.dev->hard_header_len +
Tom Herbert058214a2016-05-18 09:06:17 -07001410 t_hlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Tom Herbert058214a2016-05-18 09:06:17 -07001412 dev->mtu = rt->dst.dev->mtu - t_hlen;
Anders Franzen381601e2010-11-24 05:47:18 +00001413 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
Ian Morris67ba4152014-08-24 21:53:10 +01001414 dev->mtu -= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 if (dev->mtu < IPV6_MIN_MTU)
1417 dev->mtu = IPV6_MIN_MTU;
1418 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001419 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
1421}
1422
1423/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001424 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 * @t: tunnel to be changed
1426 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 *
1428 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001429 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 **/
1431
1432static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001433ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001435 t->parms.laddr = p->laddr;
1436 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 t->parms.flags = p->flags;
1438 t->parms.hop_limit = p->hop_limit;
1439 t->parms.encap_limit = p->encap_limit;
1440 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001441 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001442 t->parms.proto = p->proto;
Paolo Abeni607f7252016-02-12 15:43:54 +01001443 dst_cache_reset(&t->dst_cache);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001444 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return 0;
1446}
1447
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001448static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1449{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001450 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001451 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1452 int err;
1453
1454 ip6_tnl_unlink(ip6n, t);
1455 synchronize_net();
1456 err = ip6_tnl_change(t, p);
1457 ip6_tnl_link(ip6n, t);
1458 netdev_state_change(t->dev);
1459 return err;
1460}
1461
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001462static int ip6_tnl0_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1463{
1464 /* for default tnl0 device allow to change only the proto */
1465 t->parms.proto = p->proto;
1466 netdev_state_change(t->dev);
1467 return 0;
1468}
1469
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001470static void
1471ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1472{
1473 p->laddr = u->laddr;
1474 p->raddr = u->raddr;
1475 p->flags = u->flags;
1476 p->hop_limit = u->hop_limit;
1477 p->encap_limit = u->encap_limit;
1478 p->flowinfo = u->flowinfo;
1479 p->link = u->link;
1480 p->proto = u->proto;
1481 memcpy(p->name, u->name, sizeof(u->name));
1482}
1483
1484static void
1485ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1486{
1487 u->laddr = p->laddr;
1488 u->raddr = p->raddr;
1489 u->flags = p->flags;
1490 u->hop_limit = p->hop_limit;
1491 u->encap_limit = p->encap_limit;
1492 u->flowinfo = p->flowinfo;
1493 u->link = p->link;
1494 u->proto = p->proto;
1495 memcpy(u->name, p->name, sizeof(u->name));
1496}
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001499 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 * @dev: virtual device associated with tunnel
1501 * @ifr: parameters passed from userspace
1502 * @cmd: command to be performed
1503 *
1504 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001505 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001506 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 *
1508 * The possible commands are the following:
1509 * %SIOCGETTUNNEL: get tunnel parameters for device
1510 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1511 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1512 * %SIOCDELTUNNEL: delete tunnel
1513 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001514 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 * initialization, can be used for creating other tunnel devices.
1516 *
1517 * Return:
1518 * 0 on success,
1519 * %-EFAULT if unable to copy data to or from userspace,
1520 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1521 * %-EINVAL if passed tunnel parameters are invalid,
1522 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1523 * %-ENODEV if attempting to change or delete a nonexisting device
1524 **/
1525
1526static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001527ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001531 struct __ip6_tnl_parm p1;
Nicolas Dichtel74462f02014-04-16 11:19:34 +02001532 struct ip6_tnl *t = netdev_priv(dev);
1533 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001534 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Tom Herbert0d3c7032016-04-29 17:12:15 -07001536 memset(&p1, 0, sizeof(p1));
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 switch (cmd) {
1539 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001540 if (dev == ip6n->fb_tnl_dev) {
Ian Morris67ba4152014-08-24 21:53:10 +01001541 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 err = -EFAULT;
1543 break;
1544 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001545 ip6_tnl_parm_from_user(&p1, &p);
1546 t = ip6_tnl_locate(net, &p1, 0);
Nicolas Dichtel37355562015-03-16 15:56:05 +01001547 if (IS_ERR(t))
Nicolas Dichtel74462f02014-04-16 11:19:34 +02001548 t = netdev_priv(dev);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001549 } else {
1550 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001551 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001552 ip6_tnl_parm_to_user(&p, &t->parms);
Ian Morris67ba4152014-08-24 21:53:10 +01001553 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 err = -EFAULT;
1555 }
1556 break;
1557 case SIOCADDTUNNEL:
1558 case SIOCCHGTUNNEL:
1559 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001560 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001562 err = -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001563 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001565 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001566 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1567 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001569 ip6_tnl_parm_from_user(&p1, &p);
1570 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001571 if (cmd == SIOCCHGTUNNEL) {
Nicolas Dichtel37355562015-03-16 15:56:05 +01001572 if (!IS_ERR(t)) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001573 if (t->dev != dev) {
1574 err = -EEXIST;
1575 break;
1576 }
1577 } else
1578 t = netdev_priv(dev);
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001579 if (dev == ip6n->fb_tnl_dev)
1580 err = ip6_tnl0_update(t, &p1);
1581 else
1582 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
Nicolas Dichtel37355562015-03-16 15:56:05 +01001584 if (!IS_ERR(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001586 ip6_tnl_parm_to_user(&p, &t->parms);
1587 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001588 err = -EFAULT;
1589
Nicolas Dichtel37355562015-03-16 15:56:05 +01001590 } else {
1591 err = PTR_ERR(t);
1592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 break;
1594 case SIOCDELTUNNEL:
1595 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001596 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 break;
1598
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001599 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001600 err = -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001601 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001603 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001604 ip6_tnl_parm_from_user(&p1, &p);
1605 t = ip6_tnl_locate(net, &p1, 0);
Nicolas Dichtel37355562015-03-16 15:56:05 +01001606 if (IS_ERR(t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001608 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001609 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001611 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001613 err = 0;
1614 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 break;
1616 default:
1617 err = -EINVAL;
1618 }
1619 return err;
1620}
1621
1622/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001623 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 * @dev: virtual device associated with tunnel
1625 * @new_mtu: the new mtu
1626 *
1627 * Return:
1628 * 0 on success,
1629 * %-EINVAL if mtu too small
1630 **/
1631
Tom Herbert79ecb902016-04-29 17:12:20 -07001632int ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001634 struct ip6_tnl *tnl = netdev_priv(dev);
1635
1636 if (tnl->parms.proto == IPPROTO_IPIP) {
1637 if (new_mtu < 68)
1638 return -EINVAL;
1639 } else {
1640 if (new_mtu < IPV6_MIN_MTU)
1641 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001643 if (new_mtu > 0xFFF8 - dev->hard_header_len)
1644 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 dev->mtu = new_mtu;
1646 return 0;
1647}
Tom Herbert79ecb902016-04-29 17:12:20 -07001648EXPORT_SYMBOL(ip6_tnl_change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001650int ip6_tnl_get_iflink(const struct net_device *dev)
1651{
1652 struct ip6_tnl *t = netdev_priv(dev);
1653
1654 return t->parms.link;
1655}
1656EXPORT_SYMBOL(ip6_tnl_get_iflink);
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001657
Tom Herbert058214a2016-05-18 09:06:17 -07001658int ip6_tnl_encap_add_ops(const struct ip6_tnl_encap_ops *ops,
1659 unsigned int num)
1660{
1661 if (num >= MAX_IPTUN_ENCAP_OPS)
1662 return -ERANGE;
1663
1664 return !cmpxchg((const struct ip6_tnl_encap_ops **)
1665 &ip6tun_encaps[num],
1666 NULL, ops) ? 0 : -1;
1667}
1668EXPORT_SYMBOL(ip6_tnl_encap_add_ops);
1669
1670int ip6_tnl_encap_del_ops(const struct ip6_tnl_encap_ops *ops,
1671 unsigned int num)
1672{
1673 int ret;
1674
1675 if (num >= MAX_IPTUN_ENCAP_OPS)
1676 return -ERANGE;
1677
1678 ret = (cmpxchg((const struct ip6_tnl_encap_ops **)
1679 &ip6tun_encaps[num],
1680 ops, NULL) == ops) ? 0 : -1;
1681
1682 synchronize_net();
1683
1684 return ret;
1685}
1686EXPORT_SYMBOL(ip6_tnl_encap_del_ops);
1687
1688int ip6_tnl_encap_setup(struct ip6_tnl *t,
1689 struct ip_tunnel_encap *ipencap)
1690{
1691 int hlen;
1692
1693 memset(&t->encap, 0, sizeof(t->encap));
1694
1695 hlen = ip6_encap_hlen(ipencap);
1696 if (hlen < 0)
1697 return hlen;
1698
1699 t->encap.type = ipencap->type;
1700 t->encap.sport = ipencap->sport;
1701 t->encap.dport = ipencap->dport;
1702 t->encap.flags = ipencap->flags;
1703
1704 t->encap_hlen = hlen;
1705 t->hlen = t->encap_hlen + t->tun_hlen;
1706
1707 return 0;
1708}
1709EXPORT_SYMBOL_GPL(ip6_tnl_encap_setup);
1710
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001711static const struct net_device_ops ip6_tnl_netdev_ops = {
Steffen Klassert6c6151d2014-11-03 09:19:27 +01001712 .ndo_init = ip6_tnl_dev_init,
Eric Dumazet8560f222010-09-28 03:23:34 +00001713 .ndo_uninit = ip6_tnl_dev_uninit,
Tom Herbert8eb30be2016-04-29 17:12:18 -07001714 .ndo_start_xmit = ip6_tnl_start_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001715 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001716 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001717 .ndo_get_stats = ip6_get_stats,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +02001718 .ndo_get_iflink = ip6_tnl_get_iflink,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001719};
1720
Tom Herbert51c052d2016-05-18 09:06:21 -07001721#define IPXIPX_FEATURES (NETIF_F_SG | \
1722 NETIF_F_FRAGLIST | \
1723 NETIF_F_HIGHDMA | \
1724 NETIF_F_GSO_SOFTWARE | \
1725 NETIF_F_HW_CSUM)
Eric Dumazet8560f222010-09-28 03:23:34 +00001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001728 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 * @dev: virtual device associated with tunnel
1730 *
1731 * Description:
1732 * Initialize function pointers and device parameters
1733 **/
1734
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001735static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001737 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001738 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 dev->type = ARPHRD_TUNNEL6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 dev->flags |= IFF_NOARP;
1742 dev->addr_len = sizeof(struct in6_addr);
Tom Herbert058214a2016-05-18 09:06:17 -07001743 dev->features |= NETIF_F_LLTX;
Eric Dumazet02875872014-10-05 18:38:35 -07001744 netif_keep_dst(dev);
Tom Herbert51c052d2016-05-18 09:06:21 -07001745
1746 dev->features |= IPXIPX_FEATURES;
1747 dev->hw_features |= IPXIPX_FEATURES;
1748
Nicolas Dichtele8377352013-08-20 12:16:06 +02001749 /* This perm addr will be used as interface identifier by IPv6 */
1750 dev->addr_assign_type = NET_ADDR_RANDOM;
1751 eth_random_addr(dev->perm_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
1753
1754
1755/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001756 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 * @dev: virtual device associated with tunnel
1758 **/
1759
Eric Dumazet8560f222010-09-28 03:23:34 +00001760static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001761ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Patrick McHardy2941a482006-01-08 22:05:26 -08001763 struct ip6_tnl *t = netdev_priv(dev);
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001764 int ret;
Tom Herbert058214a2016-05-18 09:06:17 -07001765 int t_hlen;
Eric Dumazet8560f222010-09-28 03:23:34 +00001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 t->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001768 t->net = dev_net(dev);
WANG Cong1c213bd2014-02-13 11:46:28 -08001769 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Eric Dumazet8560f222010-09-28 03:23:34 +00001770 if (!dev->tstats)
1771 return -ENOMEM;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001772
Paolo Abeni607f7252016-02-12 15:43:54 +01001773 ret = dst_cache_init(&t->dst_cache, GFP_KERNEL);
Tom Herbert0d3c7032016-04-29 17:12:15 -07001774 if (ret)
1775 goto free_stats;
1776
1777 ret = gro_cells_init(&t->gro_cells, dev);
1778 if (ret)
1779 goto destroy_dst;
Martin KaFai Laucdf34642015-09-15 14:30:07 -07001780
Tom Herbert79ecb902016-04-29 17:12:20 -07001781 t->tun_hlen = 0;
Tom Herbert058214a2016-05-18 09:06:17 -07001782 t->hlen = t->encap_hlen + t->tun_hlen;
1783 t_hlen = t->hlen + sizeof(struct ipv6hdr);
1784
1785 dev->type = ARPHRD_TUNNEL6;
1786 dev->hard_header_len = LL_MAX_HEADER + t_hlen;
1787 dev->mtu = ETH_DATA_LEN - t_hlen;
1788 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1789 dev->mtu -= 8;
Tom Herbert79ecb902016-04-29 17:12:20 -07001790
Eric Dumazet8560f222010-09-28 03:23:34 +00001791 return 0;
Tom Herbert0d3c7032016-04-29 17:12:15 -07001792
1793destroy_dst:
1794 dst_cache_destroy(&t->dst_cache);
1795free_stats:
1796 free_percpu(dev->tstats);
1797 dev->tstats = NULL;
1798
1799 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800}
1801
1802/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001803 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 * @dev: virtual device associated with tunnel
1805 **/
1806
Eric Dumazet8560f222010-09-28 03:23:34 +00001807static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Patrick McHardy2941a482006-01-08 22:05:26 -08001809 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001810 int err = ip6_tnl_dev_init_gen(dev);
1811
1812 if (err)
1813 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001814 ip6_tnl_link_config(t);
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001815 if (t->parms.collect_md) {
1816 dev->features |= NETIF_F_NETNS_LOCAL;
1817 netif_keep_dst(dev);
1818 }
Eric Dumazet8560f222010-09-28 03:23:34 +00001819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820}
1821
1822/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001823 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 * @dev: fallback device
1825 *
1826 * Return: 0
1827 **/
1828
Eric Dumazet8560f222010-09-28 03:23:34 +00001829static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
Patrick McHardy2941a482006-01-08 22:05:26 -08001831 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001832 struct net *net = dev_net(dev);
1833 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001834
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001835 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001837
Eric Dumazetcf778b02012-01-12 04:41:32 +00001838 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001842static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1843{
1844 u8 proto;
1845
Susant Sahanic8965932014-05-10 00:11:32 +05301846 if (!data || !data[IFLA_IPTUN_PROTO])
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001847 return 0;
1848
1849 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1850 if (proto != IPPROTO_IPV6 &&
1851 proto != IPPROTO_IPIP &&
1852 proto != 0)
1853 return -EINVAL;
1854
1855 return 0;
1856}
1857
1858static void ip6_tnl_netlink_parms(struct nlattr *data[],
1859 struct __ip6_tnl_parm *parms)
1860{
1861 memset(parms, 0, sizeof(*parms));
1862
1863 if (!data)
1864 return;
1865
1866 if (data[IFLA_IPTUN_LINK])
1867 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1868
1869 if (data[IFLA_IPTUN_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +02001870 parms->laddr = nla_get_in6_addr(data[IFLA_IPTUN_LOCAL]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001871
1872 if (data[IFLA_IPTUN_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +02001873 parms->raddr = nla_get_in6_addr(data[IFLA_IPTUN_REMOTE]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001874
1875 if (data[IFLA_IPTUN_TTL])
1876 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1877
1878 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1879 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1880
1881 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001882 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001883
1884 if (data[IFLA_IPTUN_FLAGS])
1885 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1886
1887 if (data[IFLA_IPTUN_PROTO])
1888 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001889
1890 if (data[IFLA_IPTUN_COLLECT_METADATA])
1891 parms->collect_md = true;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001892}
1893
Tom Herbertb3a27b52016-05-18 09:06:20 -07001894static bool ip6_tnl_netlink_encap_parms(struct nlattr *data[],
1895 struct ip_tunnel_encap *ipencap)
1896{
1897 bool ret = false;
1898
1899 memset(ipencap, 0, sizeof(*ipencap));
1900
1901 if (!data)
1902 return ret;
1903
1904 if (data[IFLA_IPTUN_ENCAP_TYPE]) {
1905 ret = true;
1906 ipencap->type = nla_get_u16(data[IFLA_IPTUN_ENCAP_TYPE]);
1907 }
1908
1909 if (data[IFLA_IPTUN_ENCAP_FLAGS]) {
1910 ret = true;
1911 ipencap->flags = nla_get_u16(data[IFLA_IPTUN_ENCAP_FLAGS]);
1912 }
1913
1914 if (data[IFLA_IPTUN_ENCAP_SPORT]) {
1915 ret = true;
1916 ipencap->sport = nla_get_be16(data[IFLA_IPTUN_ENCAP_SPORT]);
1917 }
1918
1919 if (data[IFLA_IPTUN_ENCAP_DPORT]) {
1920 ret = true;
1921 ipencap->dport = nla_get_be16(data[IFLA_IPTUN_ENCAP_DPORT]);
1922 }
1923
1924 return ret;
1925}
1926
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001927static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1928 struct nlattr *tb[], struct nlattr *data[])
1929{
1930 struct net *net = dev_net(dev);
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001931 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Nicolas Dichtel37355562015-03-16 15:56:05 +01001932 struct ip6_tnl *nt, *t;
Tom Herbertb3a27b52016-05-18 09:06:20 -07001933 struct ip_tunnel_encap ipencap;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001934
1935 nt = netdev_priv(dev);
Tom Herbertb3a27b52016-05-18 09:06:20 -07001936
1937 if (ip6_tnl_netlink_encap_parms(data, &ipencap)) {
1938 int err = ip6_tnl_encap_setup(nt, &ipencap);
1939
1940 if (err < 0)
1941 return err;
1942 }
1943
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001944 ip6_tnl_netlink_parms(data, &nt->parms);
1945
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001946 if (nt->parms.collect_md) {
1947 if (rtnl_dereference(ip6n->collect_md_tun))
1948 return -EEXIST;
1949 } else {
1950 t = ip6_tnl_locate(net, &nt->parms, 0);
1951 if (!IS_ERR(t))
1952 return -EEXIST;
1953 }
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001954
1955 return ip6_tnl_create2(dev);
1956}
1957
1958static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1959 struct nlattr *data[])
1960{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001961 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001962 struct __ip6_tnl_parm p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001963 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001964 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Tom Herbertb3a27b52016-05-18 09:06:20 -07001965 struct ip_tunnel_encap ipencap;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001966
1967 if (dev == ip6n->fb_tnl_dev)
1968 return -EINVAL;
1969
Tom Herbertb3a27b52016-05-18 09:06:20 -07001970 if (ip6_tnl_netlink_encap_parms(data, &ipencap)) {
1971 int err = ip6_tnl_encap_setup(t, &ipencap);
1972
1973 if (err < 0)
1974 return err;
1975 }
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001976 ip6_tnl_netlink_parms(data, &p);
Alexei Starovoitov8d792662016-09-15 13:00:30 -07001977 if (p.collect_md)
1978 return -EINVAL;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001979
1980 t = ip6_tnl_locate(net, &p, 0);
Nicolas Dichtel37355562015-03-16 15:56:05 +01001981 if (!IS_ERR(t)) {
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001982 if (t->dev != dev)
1983 return -EEXIST;
1984 } else
1985 t = netdev_priv(dev);
1986
1987 return ip6_tnl_update(t, &p);
1988}
1989
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001990static void ip6_tnl_dellink(struct net_device *dev, struct list_head *head)
1991{
1992 struct net *net = dev_net(dev);
1993 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1994
1995 if (dev != ip6n->fb_tnl_dev)
1996 unregister_netdevice_queue(dev, head);
1997}
1998
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001999static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002000{
2001 return
2002 /* IFLA_IPTUN_LINK */
2003 nla_total_size(4) +
2004 /* IFLA_IPTUN_LOCAL */
2005 nla_total_size(sizeof(struct in6_addr)) +
2006 /* IFLA_IPTUN_REMOTE */
2007 nla_total_size(sizeof(struct in6_addr)) +
2008 /* IFLA_IPTUN_TTL */
2009 nla_total_size(1) +
2010 /* IFLA_IPTUN_ENCAP_LIMIT */
2011 nla_total_size(1) +
2012 /* IFLA_IPTUN_FLOWINFO */
2013 nla_total_size(4) +
2014 /* IFLA_IPTUN_FLAGS */
2015 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00002016 /* IFLA_IPTUN_PROTO */
2017 nla_total_size(1) +
Tom Herbertb3a27b52016-05-18 09:06:20 -07002018 /* IFLA_IPTUN_ENCAP_TYPE */
2019 nla_total_size(2) +
2020 /* IFLA_IPTUN_ENCAP_FLAGS */
2021 nla_total_size(2) +
2022 /* IFLA_IPTUN_ENCAP_SPORT */
2023 nla_total_size(2) +
2024 /* IFLA_IPTUN_ENCAP_DPORT */
2025 nla_total_size(2) +
Alexei Starovoitov8d792662016-09-15 13:00:30 -07002026 /* IFLA_IPTUN_COLLECT_METADATA */
2027 nla_total_size(0) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002028 0;
2029}
2030
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00002031static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002032{
2033 struct ip6_tnl *tunnel = netdev_priv(dev);
2034 struct __ip6_tnl_parm *parm = &tunnel->parms;
2035
2036 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
Jiri Benc930345e2015-03-29 16:59:25 +02002037 nla_put_in6_addr(skb, IFLA_IPTUN_LOCAL, &parm->laddr) ||
2038 nla_put_in6_addr(skb, IFLA_IPTUN_REMOTE, &parm->raddr) ||
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002039 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
2040 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
2041 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00002042 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
2043 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002044 goto nla_put_failure;
Tom Herbertb3a27b52016-05-18 09:06:20 -07002045
Alexei Starovoitov8d792662016-09-15 13:00:30 -07002046 if (nla_put_u16(skb, IFLA_IPTUN_ENCAP_TYPE, tunnel->encap.type) ||
2047 nla_put_be16(skb, IFLA_IPTUN_ENCAP_SPORT, tunnel->encap.sport) ||
2048 nla_put_be16(skb, IFLA_IPTUN_ENCAP_DPORT, tunnel->encap.dport) ||
2049 nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS, tunnel->encap.flags))
Tom Herbertb3a27b52016-05-18 09:06:20 -07002050 goto nla_put_failure;
2051
Alexei Starovoitov8d792662016-09-15 13:00:30 -07002052 if (parm->collect_md)
2053 if (nla_put_flag(skb, IFLA_IPTUN_COLLECT_METADATA))
2054 goto nla_put_failure;
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002055 return 0;
2056
2057nla_put_failure:
2058 return -EMSGSIZE;
2059}
2060
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01002061struct net *ip6_tnl_get_link_net(const struct net_device *dev)
2062{
2063 struct ip6_tnl *tunnel = netdev_priv(dev);
2064
2065 return tunnel->net;
2066}
2067EXPORT_SYMBOL(ip6_tnl_get_link_net);
2068
Nicolas Dichtel0b112452012-11-14 05:14:00 +00002069static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
2070 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
2071 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
2072 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
2073 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
2074 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
2075 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
2076 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
2077 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
Tom Herbertb3a27b52016-05-18 09:06:20 -07002078 [IFLA_IPTUN_ENCAP_TYPE] = { .type = NLA_U16 },
2079 [IFLA_IPTUN_ENCAP_FLAGS] = { .type = NLA_U16 },
2080 [IFLA_IPTUN_ENCAP_SPORT] = { .type = NLA_U16 },
2081 [IFLA_IPTUN_ENCAP_DPORT] = { .type = NLA_U16 },
Alexei Starovoitov8d792662016-09-15 13:00:30 -07002082 [IFLA_IPTUN_COLLECT_METADATA] = { .type = NLA_FLAG },
Nicolas Dichtel0b112452012-11-14 05:14:00 +00002083};
2084
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002085static struct rtnl_link_ops ip6_link_ops __read_mostly = {
2086 .kind = "ip6tnl",
2087 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00002088 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002089 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00002090 .setup = ip6_tnl_dev_setup,
2091 .validate = ip6_tnl_validate,
2092 .newlink = ip6_tnl_newlink,
2093 .changelink = ip6_tnl_changelink,
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01002094 .dellink = ip6_tnl_dellink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00002095 .get_size = ip6_tnl_get_size,
2096 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01002097 .get_link_net = ip6_tnl_get_link_net,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002098};
2099
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00002100static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09002101 .handler = ip4ip6_rcv,
2102 .err_handler = ip4ip6_err,
2103 .priority = 1,
2104};
2105
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00002106static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07002107 .handler = ip6ip6_rcv,
2108 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08002109 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110};
2111
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01002112static void __net_exit ip6_tnl_destroy_tunnels(struct net *net)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07002113{
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01002114 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02002115 struct net_device *dev, *aux;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07002116 int h;
2117 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00002118 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07002119
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02002120 for_each_netdev_safe(net, dev, aux)
2121 if (dev->rtnl_link_ops == &ip6_link_ops)
2122 unregister_netdevice_queue(dev, &list);
2123
Jiri Kosinae87a8f22016-08-10 11:03:35 +02002124 for (h = 0; h < IP6_TUNNEL_HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00002125 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Ian Morris53b24b82015-03-29 14:00:05 +01002126 while (t) {
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02002127 /* If dev is in the same netns, it has already
2128 * been added to the list by the previous loop.
2129 */
2130 if (!net_eq(dev_net(t->dev), net))
2131 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00002132 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00002133 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07002134 }
2135
Eric Dumazetcf4432f2009-10-28 05:16:51 +00002136 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07002137}
2138
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002139static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07002140{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00002141 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00002142 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07002143 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07002144
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07002145 ip6n->tnls[0] = ip6n->tnls_wc;
2146 ip6n->tnls[1] = ip6n->tnls_r_l;
2147
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07002148 err = -ENOMEM;
2149 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
Tom Gundersenc835a672014-07-14 16:37:24 +02002150 NET_NAME_UNKNOWN, ip6_tnl_dev_setup);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07002151
2152 if (!ip6n->fb_tnl_dev)
2153 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08002154 dev_net_set(ip6n->fb_tnl_dev, net);
Nicolas Dichtelbb814092013-10-01 18:05:00 +02002155 ip6n->fb_tnl_dev->rtnl_link_ops = &ip6_link_ops;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02002156 /* FB netdevice is special: we have one, and only one per netns.
2157 * Allowing to move it to another netns is clearly unsafe.
2158 */
2159 ip6n->fb_tnl_dev->features |= NETIF_F_NETNS_LOCAL;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07002160
Eric Dumazet8560f222010-09-28 03:23:34 +00002161 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
2162 if (err < 0)
2163 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07002164
2165 err = register_netdev(ip6n->fb_tnl_dev);
2166 if (err < 0)
2167 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00002168
2169 t = netdev_priv(ip6n->fb_tnl_dev);
2170
2171 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07002172 return 0;
2173
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07002174err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00002175 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07002176err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07002177 return err;
2178}
2179
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002180static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07002181{
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07002182 rtnl_lock();
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01002183 ip6_tnl_destroy_tunnels(net);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07002184 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07002185}
2186
2187static struct pernet_operations ip6_tnl_net_ops = {
2188 .init = ip6_tnl_init_net,
2189 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00002190 .id = &ip6_tnl_net_id,
2191 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07002192};
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194/**
2195 * ip6_tunnel_init - register protocol and reserve needed resources
2196 *
2197 * Return: 0 on success
2198 **/
2199
2200static int __init ip6_tunnel_init(void)
2201{
2202 int err;
2203
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00002204 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07002205 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00002206 goto out_pernet;
2207
2208 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
2209 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00002210 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00002211 goto out_ip4ip6;
2212 }
2213
2214 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
2215 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00002216 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00002217 goto out_ip6ip6;
2218 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002219 err = rtnl_link_register(&ip6_link_ops);
2220 if (err < 0)
2221 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00002222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00002224
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002225rtnl_link_failed:
2226 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00002227out_ip6ip6:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09002228 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00002229out_ip4ip6:
2230 unregister_pernet_device(&ip6_tnl_net_ops);
2231out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 return err;
2233}
2234
2235/**
2236 * ip6_tunnel_cleanup - free resources and unregister protocol
2237 **/
2238
2239static void __exit ip6_tunnel_cleanup(void)
2240{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00002241 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09002242 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00002243 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09002244
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08002245 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00002246 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00002248 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249}
2250
2251module_init(ip6_tunnel_init);
2252module_exit(ip6_tunnel_cleanup);