blob: ddd94eca19b3986e4fc0b1ff684eee401032815e [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090062MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070063MODULE_LICENSE("GPL");
Tom Gundersenf98f89a2014-05-15 23:21:30 +020064MODULE_ALIAS_RTNL_LINK("ip6tnl");
stephen hemminger6dfbd872011-03-10 11:43:19 +000065MODULE_ALIAS_NETDEV("ip6tnl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#ifdef IP6_TNL_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +000068#define IP6_TNL_TRACE(x...) pr_debug("%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#else
70#define IP6_TNL_TRACE(x...) do {;} while(0)
71#endif
72
Eric Dumazetddbe5032012-07-18 08:11:12 +000073#define HASH_SIZE_SHIFT 5
74#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +000076static bool log_ecn_error = true;
77module_param(log_ecn_error, bool, 0644);
78MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
79
Eric Dumazetddbe5032012-07-18 08:11:12 +000080static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
81{
82 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
83
84 return hash_32(hash, HASH_SIZE_SHIFT);
85}
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Eric Dumazet8560f222010-09-28 03:23:34 +000087static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090088static void ip6_tnl_dev_setup(struct net_device *dev);
Nicolas Dichtelc075b132012-11-09 06:10:01 +000089static struct rtnl_link_ops ip6_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Eric Dumazetf99189b2009-11-17 10:42:49 +000091static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070092struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070093 /* the IPv6 tunnel fallback device */
94 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070095 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000096 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
97 struct ip6_tnl __rcu *tnls_wc[1];
98 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070099};
100
Eric Dumazet8560f222010-09-28 03:23:34 +0000101static struct net_device_stats *ip6_get_stats(struct net_device *dev)
102{
David S. Miller56a43422014-01-06 17:37:45 -0500103 struct pcpu_sw_netstats tmp, sum = { 0 };
Eric Dumazet8560f222010-09-28 03:23:34 +0000104 int i;
105
106 for_each_possible_cpu(i) {
Li RongQingabb60132014-01-02 13:20:12 +0800107 unsigned int start;
Li RongQing8f849852014-01-04 13:57:59 +0800108 const struct pcpu_sw_netstats *tstats =
109 per_cpu_ptr(dev->tstats, i);
Eric Dumazet8560f222010-09-28 03:23:34 +0000110
Li RongQingabb60132014-01-02 13:20:12 +0800111 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700112 start = u64_stats_fetch_begin_irq(&tstats->syncp);
Li RongQingabb60132014-01-02 13:20:12 +0800113 tmp.rx_packets = tstats->rx_packets;
114 tmp.rx_bytes = tstats->rx_bytes;
115 tmp.tx_packets = tstats->tx_packets;
116 tmp.tx_bytes = tstats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700117 } while (u64_stats_fetch_retry_irq(&tstats->syncp, start));
Li RongQingabb60132014-01-02 13:20:12 +0800118
119 sum.rx_packets += tmp.rx_packets;
120 sum.rx_bytes += tmp.rx_bytes;
121 sum.tx_packets += tmp.tx_packets;
122 sum.tx_bytes += tmp.tx_bytes;
Eric Dumazet8560f222010-09-28 03:23:34 +0000123 }
124 dev->stats.rx_packets = sum.rx_packets;
125 dev->stats.rx_bytes = sum.rx_bytes;
126 dev->stats.tx_packets = sum.tx_packets;
127 dev->stats.tx_bytes = sum.tx_bytes;
128 return &dev->stats;
129}
130
Eric Dumazet2922bc82009-10-23 06:34:34 +0000131/*
Eric Dumazet94767632010-09-15 20:25:34 +0000132 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +0000133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000135struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 struct dst_entry *dst = t->dst_cache;
138
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900139 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 dst->ops->check(dst, t->dst_cookie) == NULL) {
141 t->dst_cache = NULL;
142 dst_release(dst);
143 return NULL;
144 }
145
146 return dst;
147}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000148EXPORT_SYMBOL_GPL(ip6_tnl_dst_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000150void ip6_tnl_dst_reset(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 dst_release(t->dst_cache);
153 t->dst_cache = NULL;
154}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000155EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000157void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 struct rt6_info *rt = (struct rt6_info *) dst;
160 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
161 dst_release(t->dst_cache);
162 t->dst_cache = dst;
163}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000164EXPORT_SYMBOL_GPL(ip6_tnl_dst_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900167 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900168 * @remote: the address of the tunnel exit-point
169 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900171 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900173 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * else %NULL
175 **/
176
Eric Dumazet2922bc82009-10-23 06:34:34 +0000177#define for_each_ip6_tunnel_rcu(start) \
178 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000181ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000183 unsigned int hash = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700185 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Steffen Klassertea3dc962014-11-05 08:03:50 +0100186 struct in6_addr any;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Eric Dumazetddbe5032012-07-18 08:11:12 +0000188 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (ipv6_addr_equal(local, &t->parms.laddr) &&
190 ipv6_addr_equal(remote, &t->parms.raddr) &&
191 (t->dev->flags & IFF_UP))
192 return t;
193 }
Steffen Klassertea3dc962014-11-05 08:03:50 +0100194
195 memset(&any, 0, sizeof(any));
196 hash = HASH(&any, local);
197 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
198 if (ipv6_addr_equal(local, &t->parms.laddr) &&
199 (t->dev->flags & IFF_UP))
200 return t;
201 }
202
203 hash = HASH(remote, &any);
204 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
205 if (ipv6_addr_equal(remote, &t->parms.raddr) &&
206 (t->dev->flags & IFF_UP))
207 return t;
208 }
209
Eric Dumazet2922bc82009-10-23 06:34:34 +0000210 t = rcu_dereference(ip6n->tnls_wc[0]);
211 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return t;
213
214 return NULL;
215}
216
217/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900218 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900219 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 *
221 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900222 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 * &struct in6_addr entries laddr and raddr in @p.
224 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900225 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 **/
227
Eric Dumazet94767632010-09-15 20:25:34 +0000228static struct ip6_tnl __rcu **
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000229ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000231 const struct in6_addr *remote = &p->raddr;
232 const struct in6_addr *local = &p->laddr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000233 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int prio = 0;
235
236 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
237 prio = 1;
Eric Dumazetddbe5032012-07-18 08:11:12 +0000238 h = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700240 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900244 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 * @t: tunnel to be added
246 **/
247
248static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700249ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Eric Dumazet94767632010-09-15 20:25:34 +0000251 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Eric Dumazetcf778b02012-01-12 04:41:32 +0000253 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
254 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900258 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 * @t: tunnel to be removed
260 **/
261
262static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700263ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Eric Dumazet94767632010-09-15 20:25:34 +0000265 struct ip6_tnl __rcu **tp;
266 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Eric Dumazet94767632010-09-15 20:25:34 +0000268 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
269 (iter = rtnl_dereference(*tp)) != NULL;
270 tp = &iter->next) {
271 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000272 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 break;
274 }
275 }
276}
277
Eric Dumazet8560f222010-09-28 03:23:34 +0000278static void ip6_dev_free(struct net_device *dev)
279{
280 free_percpu(dev->tstats);
281 free_netdev(dev);
282}
283
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000284static int ip6_tnl_create2(struct net_device *dev)
285{
286 struct ip6_tnl *t = netdev_priv(dev);
287 struct net *net = dev_net(dev);
288 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
289 int err;
290
291 t = netdev_priv(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000292
293 err = register_netdevice(dev);
294 if (err < 0)
295 goto out;
296
297 strcpy(t->parms.name, dev->name);
298 dev->rtnl_link_ops = &ip6_link_ops;
299
300 dev_hold(dev);
301 ip6_tnl_link(ip6n, t);
302 return 0;
303
304out:
305 return err;
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000309 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * @p: tunnel parameters
311 * @pt: pointer to new tunnel
312 *
313 * Description:
314 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900315 *
316 * Return:
Nicolas Dichtel37355562015-03-16 15:56:05 +0100317 * created tunnel or error pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 **/
319
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000320static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 struct net_device *dev;
323 struct ip6_tnl *t;
324 char name[IFNAMSIZ];
Nicolas Dichtel37355562015-03-16 15:56:05 +0100325 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800327 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800329 else
330 sprintf(name, "ip6tnl%%d");
331
Tom Gundersenc835a672014-07-14 16:37:24 +0200332 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
333 ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800335 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700337 dev_net_set(dev, net);
338
Patrick McHardy2941a482006-01-08 22:05:26 -0800339 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 t->parms = *p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200341 t->net = dev_net(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000342 err = ip6_tnl_create2(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +0000343 if (err < 0)
344 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Ville Nuorvala567131a2006-11-24 17:05:41 -0800346 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800347
348failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000349 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800350failed:
Nicolas Dichtel37355562015-03-16 15:56:05 +0100351 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900355 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900356 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 * @create: != 0 if allowed to create new tunnel if no match found
358 *
359 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900360 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * based on @parms. If this is unsuccessful, but @create is set a new
362 * tunnel device is created and registered for use.
363 *
364 * Return:
Nicolas Dichtel37355562015-03-16 15:56:05 +0100365 * matching tunnel or error pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 **/
367
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700368static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000369 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000371 const struct in6_addr *remote = &p->raddr;
372 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000373 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700375 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Eric Dumazet94767632010-09-15 20:25:34 +0000377 for (tp = ip6_tnl_bucket(ip6n, p);
378 (t = rtnl_dereference(*tp)) != NULL;
379 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200381 ipv6_addr_equal(remote, &t->parms.raddr)) {
382 if (create)
Nicolas Dichtel37355562015-03-16 15:56:05 +0100383 return ERR_PTR(-EEXIST);
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200384
Ville Nuorvala567131a2006-11-24 17:05:41 -0800385 return t;
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388 if (!create)
Nicolas Dichtel37355562015-03-16 15:56:05 +0100389 return ERR_PTR(-ENODEV);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700390 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900394 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900396 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900398 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 **/
400
401static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900402ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Patrick McHardy2941a482006-01-08 22:05:26 -0800404 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200405 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700406 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Eric Dumazet94767632010-09-15 20:25:34 +0000408 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000409 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000410 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700411 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 ip6_tnl_dst_reset(t);
413 dev_put(dev);
414}
415
416/**
417 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
418 * @skb: received socket buffer
419 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900420 * Return:
421 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * else index to encapsulation limit
423 **/
424
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000425__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000427 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 __u8 nexthdr = ipv6h->nexthdr;
Ian Morris67ba4152014-08-24 21:53:10 +0100429 __u16 off = sizeof(*ipv6h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
432 __u16 optlen = 0;
433 struct ipv6_opt_hdr *hdr;
Ian Morris67ba4152014-08-24 21:53:10 +0100434 if (raw + off + sizeof(*hdr) > skb->data &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
436 break;
437
438 hdr = (struct ipv6_opt_hdr *) (raw + off);
439 if (nexthdr == NEXTHDR_FRAGMENT) {
440 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
441 if (frag_hdr->frag_off)
442 break;
443 optlen = 8;
444 } else if (nexthdr == NEXTHDR_AUTH) {
445 optlen = (hdr->hdrlen + 2) << 2;
446 } else {
447 optlen = ipv6_optlen(hdr);
448 }
449 if (nexthdr == NEXTHDR_DEST) {
450 __u16 i = off + 2;
451 while (1) {
452 struct ipv6_tlv_tnl_enc_lim *tel;
453
454 /* No more room for encapsulation limit */
455 if (i + sizeof (*tel) > off + optlen)
456 break;
457
458 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
459 /* return index of option if found and valid */
460 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
461 tel->length == 1)
462 return i;
463 /* else jump to next option */
464 if (tel->type)
465 i += tel->length + 2;
466 else
467 i++;
468 }
469 }
470 nexthdr = hdr->nexthdr;
471 off += optlen;
472 }
473 return 0;
474}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000475EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900478 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 *
480 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900481 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 * to the specifications in RFC 2473.
483 **/
484
Herbert Xud2acc342006-03-28 01:12:13 -0800485static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900486ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700487 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000489 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 struct ip6_tnl *t;
491 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700492 u8 rel_type = ICMPV6_DEST_UNREACH;
493 u8 rel_code = ICMPV6_ADDR_UNREACH;
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300494 u8 tproto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 __u32 rel_info = 0;
496 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800497 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900499 /* If the packet doesn't contain the original IPv6 header we are
500 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 processing of the error. */
502
Eric Dumazet2922bc82009-10-23 06:34:34 +0000503 rcu_read_lock();
Ian Morrise5d08d72014-11-23 21:28:43 +0000504 t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr, &ipv6h->saddr);
505 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 goto out;
507
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300508 tproto = ACCESS_ONCE(t->parms.proto);
509 if (tproto != ipproto && tproto != 0)
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900510 goto out;
511
Herbert Xud2acc342006-03-28 01:12:13 -0800512 err = 0;
513
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900514 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 __u32 teli;
516 struct ipv6_tlv_tnl_enc_lim *tel;
517 __u32 mtu;
518 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000519 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
520 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 rel_msg = 1;
522 break;
523 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900524 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000525 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
526 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 rel_msg = 1;
528 }
529 break;
530 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800531 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900532 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000533 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Al Viro704eae12007-07-26 17:33:29 +0100535 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
537 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000538 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
539 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 rel_msg = 1;
541 }
Joe Perchese87cc472012-05-13 21:56:26 +0000542 } else {
543 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
544 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
546 break;
547 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100548 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (mtu < IPV6_MIN_MTU)
550 mtu = IPV6_MIN_MTU;
551 t->dev->mtu = mtu;
552
Ian Morrise5d08d72014-11-23 21:28:43 +0000553 len = sizeof(*ipv6h) + ntohs(ipv6h->payload_len);
554 if (len > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 rel_type = ICMPV6_PKT_TOOBIG;
556 rel_code = 0;
557 rel_info = mtu;
558 rel_msg = 1;
559 }
560 break;
561 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900562
563 *type = rel_type;
564 *code = rel_code;
565 *info = rel_info;
566 *msg = rel_msg;
567
568out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000569 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900570 return err;
571}
572
573static int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900574ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700575 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900576{
577 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700578 u8 rel_type = type;
579 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100580 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900581 int err;
582 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000583 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900584 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -0700585 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900586
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900587 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
588 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900589 if (err < 0)
590 return err;
591
592 if (rel_msg == 0)
593 return 0;
594
595 switch (rel_type) {
596 case ICMPV6_DEST_UNREACH:
597 if (rel_code != ICMPV6_ADDR_UNREACH)
598 return 0;
599 rel_type = ICMP_DEST_UNREACH;
600 rel_code = ICMP_HOST_UNREACH;
601 break;
602 case ICMPV6_PKT_TOOBIG:
603 if (rel_code != 0)
604 return 0;
605 rel_type = ICMP_DEST_UNREACH;
606 rel_code = ICMP_FRAG_NEEDED;
607 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700608 case NDISC_REDIRECT:
609 rel_type = ICMP_REDIRECT;
610 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900611 default:
612 return 0;
613 }
614
615 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
616 return 0;
617
618 skb2 = skb_clone(skb, GFP_ATOMIC);
619 if (!skb2)
620 return 0;
621
Eric Dumazetadf30902009-06-02 05:19:30 +0000622 skb_dst_drop(skb2);
623
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900624 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700625 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700626 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900627
628 /* Try to guess incoming interface */
David S. Miller31e45432011-05-03 20:25:42 -0700629 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500630 eiph->saddr, 0,
631 0, 0,
632 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800633 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900634 goto out;
635
Changli Gaod8d1f302010-06-10 23:31:35 -0700636 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900637
638 /* route "incoming" packet */
639 if (rt->rt_flags & RTCF_LOCAL) {
640 ip_rt_put(rt);
641 rt = NULL;
David S. Miller31e45432011-05-03 20:25:42 -0700642 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500643 eiph->daddr, eiph->saddr,
644 0, 0,
645 IPPROTO_IPIP,
646 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800647 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700648 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800649 if (!IS_ERR(rt))
650 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900651 goto out;
652 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800653 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900654 } else {
655 ip_rt_put(rt);
656 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
657 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000658 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900659 goto out;
660 }
661
662 /* change mtu on this route */
663 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000664 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900665 goto out;
666
David S. Miller6700c272012-07-17 03:29:28 -0700667 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900668 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700669 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700670 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900671
Al Viro704eae12007-07-26 17:33:29 +0100672 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900673
674out:
675 kfree_skb(skb2);
676 return 0;
677}
678
679static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900680ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700681 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900682{
683 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700684 u8 rel_type = type;
685 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100686 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900687 int err;
688
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900689 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
690 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900691 if (err < 0)
692 return err;
693
694 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 struct rt6_info *rt;
696 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900699 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Eric Dumazetadf30902009-06-02 05:19:30 +0000701 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700703 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700706 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
707 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
David S. Millerd1918542011-12-28 20:19:20 -0500709 if (rt && rt->dst.dev)
710 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000712 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Amerigo Wang94e187c2012-10-29 00:13:19 +0000714 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 kfree_skb(skb2);
717 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900718
719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000722static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
723 const struct ipv6hdr *ipv6h,
724 struct sk_buff *skb)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900725{
726 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
727
728 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700729 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900730
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000731 return IP6_ECN_decapsulate(ipv6h, skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900732}
733
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000734static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
735 const struct ipv6hdr *ipv6h,
736 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900738 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800739 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000741 return IP6_ECN_decapsulate(ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900743
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000744__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000745 const struct in6_addr *laddr,
746 const struct in6_addr *raddr)
747{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000748 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000749 int ltype = ipv6_addr_type(laddr);
750 int rtype = ipv6_addr_type(raddr);
751 __u32 flags = 0;
752
753 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
754 flags = IP6_TNL_F_CAP_PER_PACKET;
755 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
756 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
757 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
758 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
759 if (ltype&IPV6_ADDR_UNICAST)
760 flags |= IP6_TNL_F_CAP_XMIT;
761 if (rtype&IPV6_ADDR_UNICAST)
762 flags |= IP6_TNL_F_CAP_RCV;
763 }
764 return flags;
765}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000766EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000767
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100768/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000769int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000770 const struct in6_addr *laddr,
771 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800772{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000773 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800774 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200775 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800776
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000777 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
778 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
779 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900780 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800781
782 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100783 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800784
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000785 if ((ipv6_addr_is_multicast(laddr) ||
786 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
787 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800788 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800789 }
790 return ret;
791}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000792EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900795 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900797 * @protocol: ethernet protocol ID
798 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 *
800 * Return: 0
801 **/
802
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900803static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900804 __u8 ipproto,
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000805 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
806 const struct ipv6hdr *ipv6h,
807 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000810 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300811 u8 tproto;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000812 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Eric Dumazet2922bc82009-10-23 06:34:34 +0000814 rcu_read_lock();
Ian Morrise5d08d72014-11-23 21:28:43 +0000815 t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr, &ipv6h->daddr);
816 if (t != NULL) {
Li RongQing8f849852014-01-04 13:57:59 +0800817 struct pcpu_sw_netstats *tstats;
Eric Dumazet8560f222010-09-28 03:23:34 +0000818
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300819 tproto = ACCESS_ONCE(t->parms.proto);
820 if (tproto != ipproto && tproto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000821 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900822 goto discard;
823 }
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000826 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700827 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000830 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700831 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000832 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 goto discard;
834 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700835 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700836 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900837 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700839
Nicolas Dichtelea231922013-09-02 15:34:58 +0200840 __skb_tunnel_rx(skb, t->dev, t->net);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000841
842 err = dscp_ecn_decapsulate(t, ipv6h, skb);
843 if (unlikely(err)) {
844 if (log_ecn_error)
845 net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
846 &ipv6h->saddr,
847 ipv6_get_dsfield(ipv6h));
848 if (err > 1) {
849 ++t->dev->stats.rx_frame_errors;
850 ++t->dev->stats.rx_errors;
851 rcu_read_unlock();
852 goto discard;
853 }
854 }
855
Eric Dumazet8560f222010-09-28 03:23:34 +0000856 tstats = this_cpu_ptr(t->dev->tstats);
Li RongQingabb60132014-01-02 13:20:12 +0800857 u64_stats_update_begin(&tstats->syncp);
Eric Dumazet8560f222010-09-28 03:23:34 +0000858 tstats->rx_packets++;
859 tstats->rx_bytes += skb->len;
Li RongQingabb60132014-01-02 13:20:12 +0800860 u64_stats_update_end(&tstats->syncp);
Eric Dumazet8560f222010-09-28 03:23:34 +0000861
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000862 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000863
Eric Dumazet2922bc82009-10-23 06:34:34 +0000864 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return 0;
866 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000867 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700869
870discard:
871 kfree_skb(skb);
872 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900875static int ip4ip6_rcv(struct sk_buff *skb)
876{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900877 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
878 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900879}
880
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900881static int ip6ip6_rcv(struct sk_buff *skb)
882{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900883 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
884 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900885}
886
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800887struct ipv6_tel_txoption {
888 struct ipv6_txoptions ops;
889 __u8 dst_opt[8];
890};
891
892static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800894 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800896 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
897 opt->dst_opt[3] = 1;
898 opt->dst_opt[4] = encap_limit;
899 opt->dst_opt[5] = IPV6_TLV_PADN;
900 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800902 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
903 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
906/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900907 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900909 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 *
911 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900912 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 * doesn't match source of incoming packet.
914 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900915 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 * 1 if conflict,
917 * 0 else
918 **/
919
Eric Dumazet92113bf2012-05-18 08:14:11 +0200920static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000921ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
923 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
924}
925
Steffen Klassertd5005142014-11-05 08:02:48 +0100926int ip6_tnl_xmit_ctl(struct ip6_tnl *t,
927 const struct in6_addr *laddr,
928 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800929{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000930 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800931 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200932 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800933
Steffen Klassertd5005142014-11-05 08:02:48 +0100934 if ((p->flags & IP6_TNL_F_CAP_XMIT) ||
935 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
936 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_XMIT))) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800937 struct net_device *ldev = NULL;
938
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100939 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800940 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100941 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800942
Steffen Klassertd5005142014-11-05 08:02:48 +0100943 if (unlikely(!ipv6_chk_addr(net, laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000944 pr_warn("%s xmit: Local address not yet configured!\n",
945 p->name);
Steffen Klassertd5005142014-11-05 08:02:48 +0100946 else if (!ipv6_addr_is_multicast(raddr) &&
947 unlikely(ipv6_chk_addr(net, raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000948 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
949 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800950 else
951 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100952 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800953 }
954 return ret;
955}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000956EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900959 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900961 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900962 * @dsfield: dscp code for outer header
963 * @fl: flow of tunneled packet
964 * @encap_limit: encapsulation limit
965 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 *
967 * Description:
968 * Build new header and do some sanity checks on the packet before sending
969 * it.
970 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900971 * Return:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900972 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900973 * -1 fail
974 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 **/
976
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900977static int ip6_tnl_xmit2(struct sk_buff *skb,
978 struct net_device *dev,
979 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500980 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900981 int encap_limit,
982 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Patrick McHardy2941a482006-01-08 22:05:26 -0800984 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200985 struct net *net = t->net;
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700986 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700987 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800988 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400989 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 struct net_device *tdev;
991 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700992 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900994 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Steffen Klassertea3dc962014-11-05 08:03:50 +0100996 /* NBMA tunnel */
997 if (ipv6_addr_any(&t->parms.raddr)) {
998 struct in6_addr *addr6;
999 struct neighbour *neigh;
1000 int addr_type;
1001
1002 if (!skb_dst(skb))
1003 goto tx_err_link_failure;
1004
1005 neigh = dst_neigh_lookup(skb_dst(skb),
1006 &ipv6_hdr(skb)->daddr);
1007 if (!neigh)
1008 goto tx_err_link_failure;
1009
1010 addr6 = (struct in6_addr *)&neigh->primary_key;
1011 addr_type = ipv6_addr_type(addr6);
1012
1013 if (addr_type == IPV6_ADDR_ANY)
1014 addr6 = &ipv6_hdr(skb)->daddr;
1015
1016 memcpy(&fl6->daddr, addr6, sizeof(fl6->daddr));
1017 neigh_release(neigh);
1018 } else if (!fl6->flowi6_mark)
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001019 dst = ip6_tnl_dst_check(t);
Steffen Klassertd5005142014-11-05 08:02:48 +01001020
1021 if (!ip6_tnl_xmit_ctl(t, &fl6->saddr, &fl6->daddr))
1022 goto tx_err_link_failure;
1023
Eric Dumazet89b02122011-07-28 04:32:25 +00001024 if (!dst) {
1025 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Eric Dumazet89b02122011-07-28 04:32:25 +00001027 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -07001028 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +00001029 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
1030 if (IS_ERR(ndst)) {
1031 err = PTR_ERR(ndst);
1032 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -08001033 goto tx_err_link_failure;
1034 }
Eric Dumazet89b02122011-07-28 04:32:25 +00001035 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -07001036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 tdev = dst->dev;
1039
1040 if (tdev == dev) {
1041 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +00001042 net_warn_ratelimited("%s: Local routing loop detected!\n",
1043 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 goto tx_err_dst_release;
1045 }
Ian Morris67ba4152014-08-24 21:53:10 +01001046 mtu = dst_mtu(dst) - sizeof(*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001047 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 max_headroom += 8;
1049 mtu -= 8;
1050 }
1051 if (mtu < IPV6_MIN_MTU)
1052 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +00001053 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -07001054 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001056 *pmtu = mtu;
1057 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 goto tx_err_dst_release;
1059 }
1060
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001061 skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 /*
1064 * Okay, now see if we can stuff it in the buffer as-is.
1065 */
1066 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001067
Patrick McHardycfbba492007-07-09 15:33:40 -07001068 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1069 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001071
Ian Morrise5d08d72014-11-23 21:28:43 +00001072 new_skb = skb_realloc_headroom(skb, max_headroom);
1073 if (!new_skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 goto tx_err_dst_release;
1075
1076 if (skb->sk)
1077 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +00001078 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 skb = new_skb;
1080 }
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001081 if (fl6->flowi6_mark) {
1082 skb_dst_set(skb, dst);
1083 ndst = NULL;
1084 } else {
1085 skb_dst_set_noref(skb, dst);
1086 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001087 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
David S. Miller4c9483b2011-03-12 16:22:43 -05001089 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001090 if (encap_limit >= 0) {
1091 init_tel_txopt(&opt, encap_limit);
1092 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1093 }
Hannes Frederic Sowa3d483052013-08-18 13:46:52 +02001094
1095 if (likely(!skb->encapsulation)) {
1096 skb_reset_inner_headers(skb);
1097 skb->encapsulation = 1;
1098 }
1099
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001100 skb_push(skb, sizeof(struct ipv6hdr));
1101 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001102 ipv6h = ipv6_hdr(skb);
Tom Herbertcb1ce2e2014-07-01 21:33:10 -07001103 ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield),
1104 ip6_make_flowlabel(net, skb, fl6->flowlabel, false));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 ipv6h->hop_limit = t->parms.hop_limit;
1106 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001107 ipv6h->saddr = fl6->saddr;
1108 ipv6h->daddr = fl6->daddr;
Cong Wange8f72ea2013-03-09 23:00:39 +00001109 ip6tunnel_xmit(skb, dev);
Eric Dumazet89b02122011-07-28 04:32:25 +00001110 if (ndst)
1111 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return 0;
1113tx_err_link_failure:
1114 stats->tx_carrier_errors++;
1115 dst_link_failure(skb);
1116tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001117 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001118 return err;
1119}
1120
1121static inline int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001122ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1123{
1124 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001125 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001126 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001127 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001128 __u8 dsfield;
1129 __u32 mtu;
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001130 u8 tproto;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001131 int err;
1132
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001133 tproto = ACCESS_ONCE(t->parms.proto);
Steffen Klassertd5005142014-11-05 08:02:48 +01001134 if (tproto != IPPROTO_IPIP && tproto != 0)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001135 return -1;
1136
1137 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1138 encap_limit = t->parms.encap_limit;
1139
Ian Morris67ba4152014-08-24 21:53:10 +01001140 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
David S. Miller4c9483b2011-03-12 16:22:43 -05001141 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001142
1143 dsfield = ipv4_get_dsfield(iph);
1144
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001145 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001146 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001147 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001148 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1149 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001150
David S. Miller4c9483b2011-03-12 16:22:43 -05001151 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001152 if (err != 0) {
1153 /* XXX: send ICMP error even if DF is not set. */
1154 if (err == -EMSGSIZE)
1155 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1156 htonl(mtu));
1157 return -1;
1158 }
1159
1160 return 0;
1161}
1162
1163static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001164ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1165{
1166 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001167 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001168 int encap_limit = -1;
1169 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001170 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001171 __u8 dsfield;
1172 __u32 mtu;
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001173 u8 tproto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001174 int err;
1175
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001176 tproto = ACCESS_ONCE(t->parms.proto);
1177 if ((tproto != IPPROTO_IPV6 && tproto != 0) ||
Steffen Klassertd5005142014-11-05 08:02:48 +01001178 ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001179 return -1;
1180
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001181 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001182 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001183 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001184 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001185 if (tel->encap_limit == 0) {
1186 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001187 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001188 return -1;
1189 }
1190 encap_limit = tel->encap_limit - 1;
1191 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1192 encap_limit = t->parms.encap_limit;
1193
Ian Morris67ba4152014-08-24 21:53:10 +01001194 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
David S. Miller4c9483b2011-03-12 16:22:43 -05001195 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001196
1197 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001198 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001199 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001200 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +01001201 fl6.flowlabel |= ip6_flowlabel(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001202 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1203 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001204
David S. Miller4c9483b2011-03-12 16:22:43 -05001205 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001206 if (err != 0) {
1207 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001208 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001209 return -1;
1210 }
1211
1212 return 0;
1213}
1214
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001215static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001216ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1217{
1218 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001219 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001220 int ret;
1221
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001222 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001223 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001224 ret = ip4ip6_tnl_xmit(skb, dev);
1225 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001226 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001227 ret = ip6ip6_tnl_xmit(skb, dev);
1228 break;
1229 default:
1230 goto tx_err;
1231 }
1232
1233 if (ret < 0)
1234 goto tx_err;
1235
Patrick McHardy6ed10652009-06-23 06:03:08 +00001236 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238tx_err:
1239 stats->tx_errors++;
1240 stats->tx_dropped++;
1241 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001242 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001245static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
1247 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001248 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001249 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001251 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1252 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001255 fl6->saddr = p->laddr;
1256 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001257 fl6->flowi6_oif = p->link;
1258 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001261 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001263 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001265 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1266 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1269 dev->flags |= IFF_POINTOPOINT;
1270 else
1271 dev->flags &= ~IFF_POINTOPOINT;
1272
1273 dev->iflink = p->link;
1274
1275 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001276 int strict = (ipv6_addr_type(&p->raddr) &
1277 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1278
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001279 struct rt6_info *rt = rt6_lookup(t->net,
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001280 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001281 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 if (rt == NULL)
1284 return;
1285
David S. Millerd1918542011-12-28 20:19:20 -05001286 if (rt->dst.dev) {
1287 dev->hard_header_len = rt->dst.dev->hard_header_len +
Ian Morris67ba4152014-08-24 21:53:10 +01001288 sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Ian Morris67ba4152014-08-24 21:53:10 +01001290 dev->mtu = rt->dst.dev->mtu - sizeof(struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001291 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
Ian Morris67ba4152014-08-24 21:53:10 +01001292 dev->mtu -= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 if (dev->mtu < IPV6_MIN_MTU)
1295 dev->mtu = IPV6_MIN_MTU;
1296 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001297 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299}
1300
1301/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001302 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 * @t: tunnel to be changed
1304 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 *
1306 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001307 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 **/
1309
1310static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001311ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001313 t->parms.laddr = p->laddr;
1314 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 t->parms.flags = p->flags;
1316 t->parms.hop_limit = p->hop_limit;
1317 t->parms.encap_limit = p->encap_limit;
1318 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001319 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001320 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001321 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001322 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
1324}
1325
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001326static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1327{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001328 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001329 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1330 int err;
1331
1332 ip6_tnl_unlink(ip6n, t);
1333 synchronize_net();
1334 err = ip6_tnl_change(t, p);
1335 ip6_tnl_link(ip6n, t);
1336 netdev_state_change(t->dev);
1337 return err;
1338}
1339
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001340static int ip6_tnl0_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1341{
1342 /* for default tnl0 device allow to change only the proto */
1343 t->parms.proto = p->proto;
1344 netdev_state_change(t->dev);
1345 return 0;
1346}
1347
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001348static void
1349ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1350{
1351 p->laddr = u->laddr;
1352 p->raddr = u->raddr;
1353 p->flags = u->flags;
1354 p->hop_limit = u->hop_limit;
1355 p->encap_limit = u->encap_limit;
1356 p->flowinfo = u->flowinfo;
1357 p->link = u->link;
1358 p->proto = u->proto;
1359 memcpy(p->name, u->name, sizeof(u->name));
1360}
1361
1362static void
1363ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1364{
1365 u->laddr = p->laddr;
1366 u->raddr = p->raddr;
1367 u->flags = p->flags;
1368 u->hop_limit = p->hop_limit;
1369 u->encap_limit = p->encap_limit;
1370 u->flowinfo = p->flowinfo;
1371 u->link = p->link;
1372 u->proto = p->proto;
1373 memcpy(u->name, p->name, sizeof(u->name));
1374}
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001377 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 * @dev: virtual device associated with tunnel
1379 * @ifr: parameters passed from userspace
1380 * @cmd: command to be performed
1381 *
1382 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001383 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001384 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 *
1386 * The possible commands are the following:
1387 * %SIOCGETTUNNEL: get tunnel parameters for device
1388 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1389 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1390 * %SIOCDELTUNNEL: delete tunnel
1391 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001392 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 * initialization, can be used for creating other tunnel devices.
1394 *
1395 * Return:
1396 * 0 on success,
1397 * %-EFAULT if unable to copy data to or from userspace,
1398 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1399 * %-EINVAL if passed tunnel parameters are invalid,
1400 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1401 * %-ENODEV if attempting to change or delete a nonexisting device
1402 **/
1403
1404static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001405ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
1407 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001409 struct __ip6_tnl_parm p1;
Nicolas Dichtel74462f02014-04-16 11:19:34 +02001410 struct ip6_tnl *t = netdev_priv(dev);
1411 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001412 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 switch (cmd) {
1415 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001416 if (dev == ip6n->fb_tnl_dev) {
Ian Morris67ba4152014-08-24 21:53:10 +01001417 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 err = -EFAULT;
1419 break;
1420 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001421 ip6_tnl_parm_from_user(&p1, &p);
1422 t = ip6_tnl_locate(net, &p1, 0);
Nicolas Dichtel37355562015-03-16 15:56:05 +01001423 if (IS_ERR(t))
Nicolas Dichtel74462f02014-04-16 11:19:34 +02001424 t = netdev_priv(dev);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001425 } else {
1426 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001427 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001428 ip6_tnl_parm_to_user(&p, &t->parms);
Ian Morris67ba4152014-08-24 21:53:10 +01001429 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 err = -EFAULT;
1431 }
1432 break;
1433 case SIOCADDTUNNEL:
1434 case SIOCCHGTUNNEL:
1435 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001436 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001438 err = -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001439 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001441 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001442 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1443 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001445 ip6_tnl_parm_from_user(&p1, &p);
1446 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001447 if (cmd == SIOCCHGTUNNEL) {
Nicolas Dichtel37355562015-03-16 15:56:05 +01001448 if (!IS_ERR(t)) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001449 if (t->dev != dev) {
1450 err = -EEXIST;
1451 break;
1452 }
1453 } else
1454 t = netdev_priv(dev);
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001455 if (dev == ip6n->fb_tnl_dev)
1456 err = ip6_tnl0_update(t, &p1);
1457 else
1458 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
Nicolas Dichtel37355562015-03-16 15:56:05 +01001460 if (!IS_ERR(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001462 ip6_tnl_parm_to_user(&p, &t->parms);
1463 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001464 err = -EFAULT;
1465
Nicolas Dichtel37355562015-03-16 15:56:05 +01001466 } else {
1467 err = PTR_ERR(t);
1468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 break;
1470 case SIOCDELTUNNEL:
1471 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001472 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 break;
1474
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001475 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001476 err = -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001477 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001479 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001480 ip6_tnl_parm_from_user(&p1, &p);
1481 t = ip6_tnl_locate(net, &p1, 0);
Nicolas Dichtel37355562015-03-16 15:56:05 +01001482 if (IS_ERR(t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001484 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001485 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001487 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001489 err = 0;
1490 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 break;
1492 default:
1493 err = -EINVAL;
1494 }
1495 return err;
1496}
1497
1498/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001499 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 * @dev: virtual device associated with tunnel
1501 * @new_mtu: the new mtu
1502 *
1503 * Return:
1504 * 0 on success,
1505 * %-EINVAL if mtu too small
1506 **/
1507
1508static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001509ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001511 struct ip6_tnl *tnl = netdev_priv(dev);
1512
1513 if (tnl->parms.proto == IPPROTO_IPIP) {
1514 if (new_mtu < 68)
1515 return -EINVAL;
1516 } else {
1517 if (new_mtu < IPV6_MIN_MTU)
1518 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001520 if (new_mtu > 0xFFF8 - dev->hard_header_len)
1521 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 dev->mtu = new_mtu;
1523 return 0;
1524}
1525
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001526
1527static const struct net_device_ops ip6_tnl_netdev_ops = {
Steffen Klassert6c6151d2014-11-03 09:19:27 +01001528 .ndo_init = ip6_tnl_dev_init,
Eric Dumazet8560f222010-09-28 03:23:34 +00001529 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001530 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001531 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001532 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001533 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001534};
1535
Eric Dumazet8560f222010-09-28 03:23:34 +00001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001538 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 * @dev: virtual device associated with tunnel
1540 *
1541 * Description:
1542 * Initialize function pointers and device parameters
1543 **/
1544
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001545static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Anders Franzen381601e2010-11-24 05:47:18 +00001547 struct ip6_tnl *t;
1548
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001549 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001550 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 dev->type = ARPHRD_TUNNEL6;
Ian Morris67ba4152014-08-24 21:53:10 +01001553 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct ipv6hdr);
1554 dev->mtu = ETH_DATA_LEN - sizeof(struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001555 t = netdev_priv(dev);
1556 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
Ian Morris67ba4152014-08-24 21:53:10 +01001557 dev->mtu -= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 dev->flags |= IFF_NOARP;
1559 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -07001560 netif_keep_dst(dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001561 /* This perm addr will be used as interface identifier by IPv6 */
1562 dev->addr_assign_type = NET_ADDR_RANDOM;
1563 eth_random_addr(dev->perm_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
1566
1567/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001568 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 * @dev: virtual device associated with tunnel
1570 **/
1571
Eric Dumazet8560f222010-09-28 03:23:34 +00001572static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001573ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Patrick McHardy2941a482006-01-08 22:05:26 -08001575 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 t->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001578 t->net = dev_net(dev);
WANG Cong1c213bd2014-02-13 11:46:28 -08001579 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Eric Dumazet8560f222010-09-28 03:23:34 +00001580 if (!dev->tstats)
1581 return -ENOMEM;
1582 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
1584
1585/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001586 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 * @dev: virtual device associated with tunnel
1588 **/
1589
Eric Dumazet8560f222010-09-28 03:23:34 +00001590static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
Patrick McHardy2941a482006-01-08 22:05:26 -08001592 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001593 int err = ip6_tnl_dev_init_gen(dev);
1594
1595 if (err)
1596 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001597 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001598 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
1601/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001602 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 * @dev: fallback device
1604 *
1605 * Return: 0
1606 **/
1607
Eric Dumazet8560f222010-09-28 03:23:34 +00001608static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
Patrick McHardy2941a482006-01-08 22:05:26 -08001610 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001611 struct net *net = dev_net(dev);
1612 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001613
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001614 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001616
Eric Dumazetcf778b02012-01-12 04:41:32 +00001617 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001621static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1622{
1623 u8 proto;
1624
Susant Sahanic8965932014-05-10 00:11:32 +05301625 if (!data || !data[IFLA_IPTUN_PROTO])
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001626 return 0;
1627
1628 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1629 if (proto != IPPROTO_IPV6 &&
1630 proto != IPPROTO_IPIP &&
1631 proto != 0)
1632 return -EINVAL;
1633
1634 return 0;
1635}
1636
1637static void ip6_tnl_netlink_parms(struct nlattr *data[],
1638 struct __ip6_tnl_parm *parms)
1639{
1640 memset(parms, 0, sizeof(*parms));
1641
1642 if (!data)
1643 return;
1644
1645 if (data[IFLA_IPTUN_LINK])
1646 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1647
1648 if (data[IFLA_IPTUN_LOCAL])
1649 nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
1650 sizeof(struct in6_addr));
1651
1652 if (data[IFLA_IPTUN_REMOTE])
1653 nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
1654 sizeof(struct in6_addr));
1655
1656 if (data[IFLA_IPTUN_TTL])
1657 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1658
1659 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1660 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1661
1662 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001663 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001664
1665 if (data[IFLA_IPTUN_FLAGS])
1666 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1667
1668 if (data[IFLA_IPTUN_PROTO])
1669 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1670}
1671
1672static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1673 struct nlattr *tb[], struct nlattr *data[])
1674{
1675 struct net *net = dev_net(dev);
Nicolas Dichtel37355562015-03-16 15:56:05 +01001676 struct ip6_tnl *nt, *t;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001677
1678 nt = netdev_priv(dev);
1679 ip6_tnl_netlink_parms(data, &nt->parms);
1680
Nicolas Dichtel37355562015-03-16 15:56:05 +01001681 t = ip6_tnl_locate(net, &nt->parms, 0);
1682 if (!IS_ERR(t))
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001683 return -EEXIST;
1684
1685 return ip6_tnl_create2(dev);
1686}
1687
1688static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1689 struct nlattr *data[])
1690{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001691 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001692 struct __ip6_tnl_parm p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001693 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001694 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1695
1696 if (dev == ip6n->fb_tnl_dev)
1697 return -EINVAL;
1698
1699 ip6_tnl_netlink_parms(data, &p);
1700
1701 t = ip6_tnl_locate(net, &p, 0);
Nicolas Dichtel37355562015-03-16 15:56:05 +01001702 if (!IS_ERR(t)) {
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001703 if (t->dev != dev)
1704 return -EEXIST;
1705 } else
1706 t = netdev_priv(dev);
1707
1708 return ip6_tnl_update(t, &p);
1709}
1710
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001711static void ip6_tnl_dellink(struct net_device *dev, struct list_head *head)
1712{
1713 struct net *net = dev_net(dev);
1714 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1715
1716 if (dev != ip6n->fb_tnl_dev)
1717 unregister_netdevice_queue(dev, head);
1718}
1719
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001720static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001721{
1722 return
1723 /* IFLA_IPTUN_LINK */
1724 nla_total_size(4) +
1725 /* IFLA_IPTUN_LOCAL */
1726 nla_total_size(sizeof(struct in6_addr)) +
1727 /* IFLA_IPTUN_REMOTE */
1728 nla_total_size(sizeof(struct in6_addr)) +
1729 /* IFLA_IPTUN_TTL */
1730 nla_total_size(1) +
1731 /* IFLA_IPTUN_ENCAP_LIMIT */
1732 nla_total_size(1) +
1733 /* IFLA_IPTUN_FLOWINFO */
1734 nla_total_size(4) +
1735 /* IFLA_IPTUN_FLAGS */
1736 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001737 /* IFLA_IPTUN_PROTO */
1738 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001739 0;
1740}
1741
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001742static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001743{
1744 struct ip6_tnl *tunnel = netdev_priv(dev);
1745 struct __ip6_tnl_parm *parm = &tunnel->parms;
1746
1747 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1748 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001749 &parm->laddr) ||
Ding Zhi0d2ede92013-09-16 11:31:15 +02001750 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1751 &parm->raddr) ||
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001752 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1753 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1754 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001755 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1756 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001757 goto nla_put_failure;
1758 return 0;
1759
1760nla_put_failure:
1761 return -EMSGSIZE;
1762}
1763
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001764struct net *ip6_tnl_get_link_net(const struct net_device *dev)
1765{
1766 struct ip6_tnl *tunnel = netdev_priv(dev);
1767
1768 return tunnel->net;
1769}
1770EXPORT_SYMBOL(ip6_tnl_get_link_net);
1771
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001772static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
1773 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1774 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
1775 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
1776 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1777 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
1778 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
1779 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
1780 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
1781};
1782
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001783static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1784 .kind = "ip6tnl",
1785 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001786 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001787 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001788 .setup = ip6_tnl_dev_setup,
1789 .validate = ip6_tnl_validate,
1790 .newlink = ip6_tnl_newlink,
1791 .changelink = ip6_tnl_changelink,
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001792 .dellink = ip6_tnl_dellink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001793 .get_size = ip6_tnl_get_size,
1794 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001795 .get_link_net = ip6_tnl_get_link_net,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001796};
1797
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001798static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001799 .handler = ip4ip6_rcv,
1800 .err_handler = ip4ip6_err,
1801 .priority = 1,
1802};
1803
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001804static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001805 .handler = ip6ip6_rcv,
1806 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001807 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808};
1809
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001810static void __net_exit ip6_tnl_destroy_tunnels(struct net *net)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001811{
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001812 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001813 struct net_device *dev, *aux;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001814 int h;
1815 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001816 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001817
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001818 for_each_netdev_safe(net, dev, aux)
1819 if (dev->rtnl_link_ops == &ip6_link_ops)
1820 unregister_netdevice_queue(dev, &list);
1821
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001822 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001823 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001824 while (t != NULL) {
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001825 /* If dev is in the same netns, it has already
1826 * been added to the list by the previous loop.
1827 */
1828 if (!net_eq(dev_net(t->dev), net))
1829 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001830 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001831 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001832 }
1833
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001834 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001835}
1836
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001837static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001838{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001839 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001840 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001841 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001842
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001843 ip6n->tnls[0] = ip6n->tnls_wc;
1844 ip6n->tnls[1] = ip6n->tnls_r_l;
1845
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001846 err = -ENOMEM;
1847 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001848 NET_NAME_UNKNOWN, ip6_tnl_dev_setup);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001849
1850 if (!ip6n->fb_tnl_dev)
1851 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001852 dev_net_set(ip6n->fb_tnl_dev, net);
Nicolas Dichtelbb814092013-10-01 18:05:00 +02001853 ip6n->fb_tnl_dev->rtnl_link_ops = &ip6_link_ops;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001854 /* FB netdevice is special: we have one, and only one per netns.
1855 * Allowing to move it to another netns is clearly unsafe.
1856 */
1857 ip6n->fb_tnl_dev->features |= NETIF_F_NETNS_LOCAL;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001858
Eric Dumazet8560f222010-09-28 03:23:34 +00001859 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1860 if (err < 0)
1861 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001862
1863 err = register_netdev(ip6n->fb_tnl_dev);
1864 if (err < 0)
1865 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001866
1867 t = netdev_priv(ip6n->fb_tnl_dev);
1868
1869 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001870 return 0;
1871
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001872err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001873 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001874err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001875 return err;
1876}
1877
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001878static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001879{
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001880 rtnl_lock();
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001881 ip6_tnl_destroy_tunnels(net);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001882 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001883}
1884
1885static struct pernet_operations ip6_tnl_net_ops = {
1886 .init = ip6_tnl_init_net,
1887 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001888 .id = &ip6_tnl_net_id,
1889 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001890};
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892/**
1893 * ip6_tunnel_init - register protocol and reserve needed resources
1894 *
1895 * Return: 0 on success
1896 **/
1897
1898static int __init ip6_tunnel_init(void)
1899{
1900 int err;
1901
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001902 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001903 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001904 goto out_pernet;
1905
1906 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1907 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001908 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001909 goto out_ip4ip6;
1910 }
1911
1912 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1913 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001914 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001915 goto out_ip6ip6;
1916 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001917 err = rtnl_link_register(&ip6_link_ops);
1918 if (err < 0)
1919 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001922
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001923rtnl_link_failed:
1924 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001925out_ip6ip6:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001926 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001927out_ip4ip6:
1928 unregister_pernet_device(&ip6_tnl_net_ops);
1929out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return err;
1931}
1932
1933/**
1934 * ip6_tunnel_cleanup - free resources and unregister protocol
1935 **/
1936
1937static void __exit ip6_tunnel_cleanup(void)
1938{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001939 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001940 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001941 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001942
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001943 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001944 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001946 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947}
1948
1949module_init(ip6_tunnel_init);
1950module_exit(ip6_tunnel_cleanup);