blob: 02894216a46d5f594ab73b11ef6a44cd0712f292 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Yasuyuki Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-02-15 00:43:16 +090062MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070063MODULE_LICENSE("GPL");
stephen hemminger6dfbd872011-03-10 11:43:19 +000064MODULE_ALIAS_NETDEV("ip6tnl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#ifdef IP6_TNL_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +000067#define IP6_TNL_TRACE(x...) pr_debug("%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#else
69#define IP6_TNL_TRACE(x...) do {;} while(0)
70#endif
71
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090072#define IPV6_TCLASS_SHIFT 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric Dumazetddbe5032012-07-18 08:11:12 +000074#define HASH_SIZE_SHIFT 5
75#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +000077static bool log_ecn_error = true;
78module_param(log_ecn_error, bool, 0644);
79MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
80
Eric Dumazetddbe5032012-07-18 08:11:12 +000081static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
82{
83 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
84
85 return hash_32(hash, HASH_SIZE_SHIFT);
86}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Eric Dumazet8560f222010-09-28 03:23:34 +000088static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090089static void ip6_tnl_dev_setup(struct net_device *dev);
Nicolas Dichtelc075b132012-11-09 06:10:01 +000090static struct rtnl_link_ops ip6_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Eric Dumazetf99189b2009-11-17 10:42:49 +000092static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070093struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070094 /* the IPv6 tunnel fallback device */
95 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070096 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000097 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
98 struct ip6_tnl __rcu *tnls_wc[1];
99 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -0700100};
101
Eric Dumazet8560f222010-09-28 03:23:34 +0000102static struct net_device_stats *ip6_get_stats(struct net_device *dev)
103{
Li RongQing8f849852014-01-04 13:57:59 +0800104 struct pcpu_sw_netstats sum = { 0 };
Eric Dumazet8560f222010-09-28 03:23:34 +0000105 int i;
106
107 for_each_possible_cpu(i) {
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
111 sum.rx_packets += tstats->rx_packets;
112 sum.rx_bytes += tstats->rx_bytes;
113 sum.tx_packets += tstats->tx_packets;
114 sum.tx_bytes += tstats->tx_bytes;
115 }
116 dev->stats.rx_packets = sum.rx_packets;
117 dev->stats.rx_bytes = sum.rx_bytes;
118 dev->stats.tx_packets = sum.tx_packets;
119 dev->stats.tx_bytes = sum.tx_bytes;
120 return &dev->stats;
121}
122
Eric Dumazet2922bc82009-10-23 06:34:34 +0000123/*
Eric Dumazet94767632010-09-15 20:25:34 +0000124 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +0000125 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000127struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 struct dst_entry *dst = t->dst_cache;
130
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900131 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 dst->ops->check(dst, t->dst_cookie) == NULL) {
133 t->dst_cache = NULL;
134 dst_release(dst);
135 return NULL;
136 }
137
138 return dst;
139}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000140EXPORT_SYMBOL_GPL(ip6_tnl_dst_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000142void ip6_tnl_dst_reset(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 dst_release(t->dst_cache);
145 t->dst_cache = NULL;
146}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000147EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000149void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 struct rt6_info *rt = (struct rt6_info *) dst;
152 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
153 dst_release(t->dst_cache);
154 t->dst_cache = dst;
155}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000156EXPORT_SYMBOL_GPL(ip6_tnl_dst_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900159 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900160 * @remote: the address of the tunnel exit-point
161 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900163 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900165 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * else %NULL
167 **/
168
Eric Dumazet2922bc82009-10-23 06:34:34 +0000169#define for_each_ip6_tunnel_rcu(start) \
170 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000173ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000175 unsigned int hash = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700177 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Eric Dumazetddbe5032012-07-18 08:11:12 +0000179 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (ipv6_addr_equal(local, &t->parms.laddr) &&
181 ipv6_addr_equal(remote, &t->parms.raddr) &&
182 (t->dev->flags & IFF_UP))
183 return t;
184 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000185 t = rcu_dereference(ip6n->tnls_wc[0]);
186 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return t;
188
189 return NULL;
190}
191
192/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900193 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900194 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 *
196 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900197 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * &struct in6_addr entries laddr and raddr in @p.
199 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900200 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 **/
202
Eric Dumazet94767632010-09-15 20:25:34 +0000203static struct ip6_tnl __rcu **
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000204ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000206 const struct in6_addr *remote = &p->raddr;
207 const struct in6_addr *local = &p->laddr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000208 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 int prio = 0;
210
211 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
212 prio = 1;
Eric Dumazetddbe5032012-07-18 08:11:12 +0000213 h = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700215 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900219 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * @t: tunnel to be added
221 **/
222
223static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700224ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Eric Dumazet94767632010-09-15 20:25:34 +0000226 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Eric Dumazetcf778b02012-01-12 04:41:32 +0000228 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
229 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
232/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900233 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * @t: tunnel to be removed
235 **/
236
237static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700238ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Eric Dumazet94767632010-09-15 20:25:34 +0000240 struct ip6_tnl __rcu **tp;
241 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Eric Dumazet94767632010-09-15 20:25:34 +0000243 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
244 (iter = rtnl_dereference(*tp)) != NULL;
245 tp = &iter->next) {
246 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000247 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 break;
249 }
250 }
251}
252
Eric Dumazet8560f222010-09-28 03:23:34 +0000253static void ip6_dev_free(struct net_device *dev)
254{
255 free_percpu(dev->tstats);
256 free_netdev(dev);
257}
258
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000259static int ip6_tnl_create2(struct net_device *dev)
260{
261 struct ip6_tnl *t = netdev_priv(dev);
262 struct net *net = dev_net(dev);
263 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
264 int err;
265
266 t = netdev_priv(dev);
267 err = ip6_tnl_dev_init(dev);
268 if (err < 0)
269 goto out;
270
271 err = register_netdevice(dev);
272 if (err < 0)
273 goto out;
274
275 strcpy(t->parms.name, dev->name);
276 dev->rtnl_link_ops = &ip6_link_ops;
277
278 dev_hold(dev);
279 ip6_tnl_link(ip6n, t);
280 return 0;
281
282out:
283 return err;
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000287 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 * @p: tunnel parameters
289 * @pt: pointer to new tunnel
290 *
291 * Description:
292 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900293 *
294 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800295 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 **/
297
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000298static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 struct net_device *dev;
301 struct ip6_tnl *t;
302 char name[IFNAMSIZ];
303 int err;
304
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800305 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800307 else
308 sprintf(name, "ip6tnl%%d");
309
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900310 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800312 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700314 dev_net_set(dev, net);
315
Patrick McHardy2941a482006-01-08 22:05:26 -0800316 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 t->parms = *p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200318 t->net = dev_net(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000319 err = ip6_tnl_create2(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +0000320 if (err < 0)
321 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Ville Nuorvala567131a2006-11-24 17:05:41 -0800323 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800324
325failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000326 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800327failed:
328 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900332 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900333 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 * @create: != 0 if allowed to create new tunnel if no match found
335 *
336 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900337 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * based on @parms. If this is unsuccessful, but @create is set a new
339 * tunnel device is created and registered for use.
340 *
341 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800342 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 **/
344
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700345static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000346 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000348 const struct in6_addr *remote = &p->raddr;
349 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000350 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700352 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Eric Dumazet94767632010-09-15 20:25:34 +0000354 for (tp = ip6_tnl_bucket(ip6n, p);
355 (t = rtnl_dereference(*tp)) != NULL;
356 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800358 ipv6_addr_equal(remote, &t->parms.raddr))
359 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800362 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700363 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
366/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900367 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900369 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900371 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 **/
373
374static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900375ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Patrick McHardy2941a482006-01-08 22:05:26 -0800377 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200378 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700379 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Eric Dumazet94767632010-09-15 20:25:34 +0000381 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000382 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000383 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700384 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 ip6_tnl_dst_reset(t);
386 dev_put(dev);
387}
388
389/**
390 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
391 * @skb: received socket buffer
392 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900393 * Return:
394 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * else index to encapsulation limit
396 **/
397
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000398__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000400 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 __u8 nexthdr = ipv6h->nexthdr;
402 __u16 off = sizeof (*ipv6h);
403
404 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
405 __u16 optlen = 0;
406 struct ipv6_opt_hdr *hdr;
407 if (raw + off + sizeof (*hdr) > skb->data &&
408 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
409 break;
410
411 hdr = (struct ipv6_opt_hdr *) (raw + off);
412 if (nexthdr == NEXTHDR_FRAGMENT) {
413 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
414 if (frag_hdr->frag_off)
415 break;
416 optlen = 8;
417 } else if (nexthdr == NEXTHDR_AUTH) {
418 optlen = (hdr->hdrlen + 2) << 2;
419 } else {
420 optlen = ipv6_optlen(hdr);
421 }
422 if (nexthdr == NEXTHDR_DEST) {
423 __u16 i = off + 2;
424 while (1) {
425 struct ipv6_tlv_tnl_enc_lim *tel;
426
427 /* No more room for encapsulation limit */
428 if (i + sizeof (*tel) > off + optlen)
429 break;
430
431 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
432 /* return index of option if found and valid */
433 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
434 tel->length == 1)
435 return i;
436 /* else jump to next option */
437 if (tel->type)
438 i += tel->length + 2;
439 else
440 i++;
441 }
442 }
443 nexthdr = hdr->nexthdr;
444 off += optlen;
445 }
446 return 0;
447}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000448EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900451 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 *
453 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900454 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * to the specifications in RFC 2473.
456 **/
457
Herbert Xud2acc342006-03-28 01:12:13 -0800458static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900459ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700460 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000462 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct ip6_tnl *t;
464 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700465 u8 rel_type = ICMPV6_DEST_UNREACH;
466 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 __u32 rel_info = 0;
468 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800469 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900471 /* If the packet doesn't contain the original IPv6 header we are
472 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 processing of the error. */
474
Eric Dumazet2922bc82009-10-23 06:34:34 +0000475 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700476 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700477 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 goto out;
479
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900480 if (t->parms.proto != ipproto && t->parms.proto != 0)
481 goto out;
482
Herbert Xud2acc342006-03-28 01:12:13 -0800483 err = 0;
484
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900485 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 __u32 teli;
487 struct ipv6_tlv_tnl_enc_lim *tel;
488 __u32 mtu;
489 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000490 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
491 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 rel_msg = 1;
493 break;
494 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900495 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000496 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
497 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 rel_msg = 1;
499 }
500 break;
501 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800502 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900503 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000504 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Al Viro704eae12007-07-26 17:33:29 +0100506 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
508 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000509 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
510 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 rel_msg = 1;
512 }
Joe Perchese87cc472012-05-13 21:56:26 +0000513 } else {
514 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
515 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517 break;
518 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100519 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 if (mtu < IPV6_MIN_MTU)
521 mtu = IPV6_MIN_MTU;
522 t->dev->mtu = mtu;
523
Al Virocc6cdac2006-02-18 16:02:18 -0500524 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 rel_type = ICMPV6_PKT_TOOBIG;
526 rel_code = 0;
527 rel_info = mtu;
528 rel_msg = 1;
529 }
530 break;
531 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900532
533 *type = rel_type;
534 *code = rel_code;
535 *info = rel_info;
536 *msg = rel_msg;
537
538out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000539 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900540 return err;
541}
542
543static int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900544ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700545 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900546{
547 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700548 u8 rel_type = type;
549 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100550 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900551 int err;
552 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000553 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900554 struct rtable *rt;
David S. Miller31e4543d2011-05-03 20:25:42 -0700555 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900556
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900557 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
558 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900559 if (err < 0)
560 return err;
561
562 if (rel_msg == 0)
563 return 0;
564
565 switch (rel_type) {
566 case ICMPV6_DEST_UNREACH:
567 if (rel_code != ICMPV6_ADDR_UNREACH)
568 return 0;
569 rel_type = ICMP_DEST_UNREACH;
570 rel_code = ICMP_HOST_UNREACH;
571 break;
572 case ICMPV6_PKT_TOOBIG:
573 if (rel_code != 0)
574 return 0;
575 rel_type = ICMP_DEST_UNREACH;
576 rel_code = ICMP_FRAG_NEEDED;
577 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700578 case NDISC_REDIRECT:
579 rel_type = ICMP_REDIRECT;
580 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900581 default:
582 return 0;
583 }
584
585 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
586 return 0;
587
588 skb2 = skb_clone(skb, GFP_ATOMIC);
589 if (!skb2)
590 return 0;
591
Eric Dumazetadf30902009-06-02 05:19:30 +0000592 skb_dst_drop(skb2);
593
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900594 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700595 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700596 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900597
598 /* Try to guess incoming interface */
David S. Miller31e4543d2011-05-03 20:25:42 -0700599 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500600 eiph->saddr, 0,
601 0, 0,
602 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800603 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900604 goto out;
605
Changli Gaod8d1f302010-06-10 23:31:35 -0700606 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900607
608 /* route "incoming" packet */
609 if (rt->rt_flags & RTCF_LOCAL) {
610 ip_rt_put(rt);
611 rt = NULL;
David S. Miller31e4543d2011-05-03 20:25:42 -0700612 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500613 eiph->daddr, eiph->saddr,
614 0, 0,
615 IPPROTO_IPIP,
616 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800617 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700618 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800619 if (!IS_ERR(rt))
620 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900621 goto out;
622 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800623 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900624 } else {
625 ip_rt_put(rt);
626 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
627 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000628 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900629 goto out;
630 }
631
632 /* change mtu on this route */
633 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000634 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900635 goto out;
636
David S. Miller6700c272012-07-17 03:29:28 -0700637 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900638 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700639 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700640 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900641
Al Viro704eae12007-07-26 17:33:29 +0100642 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900643
644out:
645 kfree_skb(skb2);
646 return 0;
647}
648
649static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900650ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700651 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900652{
653 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700654 u8 rel_type = type;
655 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100656 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900657 int err;
658
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900659 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
660 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900661 if (err < 0)
662 return err;
663
664 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 struct rt6_info *rt;
666 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Eric Dumazetadf30902009-06-02 05:19:30 +0000671 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700673 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700676 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
677 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
David S. Millerd1918542011-12-28 20:19:20 -0500679 if (rt && rt->dst.dev)
680 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000682 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Amerigo Wang94e187c2012-10-29 00:13:19 +0000684 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 kfree_skb(skb2);
687 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900688
689 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000692static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
693 const struct ipv6hdr *ipv6h,
694 struct sk_buff *skb)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900695{
696 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
697
698 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700699 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900700
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000701 return IP6_ECN_decapsulate(ipv6h, skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900702}
703
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000704static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
705 const struct ipv6hdr *ipv6h,
706 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900708 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800709 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000711 return IP6_ECN_decapsulate(ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900713
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000714__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000715 const struct in6_addr *laddr,
716 const struct in6_addr *raddr)
717{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000718 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000719 int ltype = ipv6_addr_type(laddr);
720 int rtype = ipv6_addr_type(raddr);
721 __u32 flags = 0;
722
723 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
724 flags = IP6_TNL_F_CAP_PER_PACKET;
725 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
726 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
727 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
728 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
729 if (ltype&IPV6_ADDR_UNICAST)
730 flags |= IP6_TNL_F_CAP_XMIT;
731 if (rtype&IPV6_ADDR_UNICAST)
732 flags |= IP6_TNL_F_CAP_RCV;
733 }
734 return flags;
735}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000736EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000737
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100738/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000739int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000740 const struct in6_addr *laddr,
741 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800742{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000743 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800744 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200745 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800746
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000747 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
748 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
749 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900750 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800751
752 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100753 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800754
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000755 if ((ipv6_addr_is_multicast(laddr) ||
756 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
757 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800758 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800759 }
760 return ret;
761}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000762EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900765 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900767 * @protocol: ethernet protocol ID
768 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 *
770 * Return: 0
771 **/
772
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900773static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900774 __u8 ipproto,
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000775 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
776 const struct ipv6hdr *ipv6h,
777 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000780 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000781 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Eric Dumazet2922bc82009-10-23 06:34:34 +0000783 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700785 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700786 &ipv6h->daddr)) != NULL) {
Li RongQing8f849852014-01-04 13:57:59 +0800787 struct pcpu_sw_netstats *tstats;
Eric Dumazet8560f222010-09-28 03:23:34 +0000788
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900789 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000790 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900791 goto discard;
792 }
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000795 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700796 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000799 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700800 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000801 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto discard;
803 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700804 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700805 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900806 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700808
Nicolas Dichtelea231922013-09-02 15:34:58 +0200809 __skb_tunnel_rx(skb, t->dev, t->net);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000810
811 err = dscp_ecn_decapsulate(t, ipv6h, skb);
812 if (unlikely(err)) {
813 if (log_ecn_error)
814 net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
815 &ipv6h->saddr,
816 ipv6_get_dsfield(ipv6h));
817 if (err > 1) {
818 ++t->dev->stats.rx_frame_errors;
819 ++t->dev->stats.rx_errors;
820 rcu_read_unlock();
821 goto discard;
822 }
823 }
824
Eric Dumazet8560f222010-09-28 03:23:34 +0000825 tstats = this_cpu_ptr(t->dev->tstats);
826 tstats->rx_packets++;
827 tstats->rx_bytes += skb->len;
828
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000829 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000830
Eric Dumazet2922bc82009-10-23 06:34:34 +0000831 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return 0;
833 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000834 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700836
837discard:
838 kfree_skb(skb);
839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900842static int ip4ip6_rcv(struct sk_buff *skb)
843{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900844 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
845 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900846}
847
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900848static int ip6ip6_rcv(struct sk_buff *skb)
849{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900850 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
851 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900852}
853
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800854struct ipv6_tel_txoption {
855 struct ipv6_txoptions ops;
856 __u8 dst_opt[8];
857};
858
859static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800861 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800863 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
864 opt->dst_opt[3] = 1;
865 opt->dst_opt[4] = encap_limit;
866 opt->dst_opt[5] = IPV6_TLV_PADN;
867 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800869 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
870 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
873/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900874 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900876 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 *
878 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900879 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 * doesn't match source of incoming packet.
881 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900882 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 * 1 if conflict,
884 * 0 else
885 **/
886
Eric Dumazet92113bf2012-05-18 08:14:11 +0200887static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000888ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
891}
892
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000893int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800894{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000895 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800896 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200897 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800898
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900899 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800900 struct net_device *ldev = NULL;
901
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100902 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800903 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100904 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800905
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700906 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000907 pr_warn("%s xmit: Local address not yet configured!\n",
908 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800909 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700910 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000911 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
912 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800913 else
914 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100915 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800916 }
917 return ret;
918}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000919EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900922 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900924 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900925 * @dsfield: dscp code for outer header
926 * @fl: flow of tunneled packet
927 * @encap_limit: encapsulation limit
928 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 *
930 * Description:
931 * Build new header and do some sanity checks on the packet before sending
932 * it.
933 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900934 * Return:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900935 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900936 * -1 fail
937 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 **/
939
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900940static int ip6_tnl_xmit2(struct sk_buff *skb,
941 struct net_device *dev,
942 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500943 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900944 int encap_limit,
945 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Patrick McHardy2941a482006-01-08 22:05:26 -0800947 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200948 struct net *net = t->net;
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700949 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700950 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800951 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400952 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 struct net_device *tdev;
954 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700955 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900957 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400959 if (!fl6->flowi6_mark)
960 dst = ip6_tnl_dst_check(t);
Eric Dumazet89b02122011-07-28 04:32:25 +0000961 if (!dst) {
962 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Eric Dumazet89b02122011-07-28 04:32:25 +0000964 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700965 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000966 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
967 if (IS_ERR(ndst)) {
968 err = PTR_ERR(ndst);
969 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800970 goto tx_err_link_failure;
971 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000972 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -0700973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 tdev = dst->dev;
976
977 if (tdev == dev) {
978 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +0000979 net_warn_ratelimited("%s: Local routing loop detected!\n",
980 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 goto tx_err_dst_release;
982 }
983 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800984 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 max_headroom += 8;
986 mtu -= 8;
987 }
988 if (mtu < IPV6_MIN_MTU)
989 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000990 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -0700991 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900993 *pmtu = mtu;
994 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 goto tx_err_dst_release;
996 }
997
Nicolas Dichtel963a88b2013-09-02 15:34:57 +0200998 skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 /*
1001 * Okay, now see if we can stuff it in the buffer as-is.
1002 */
1003 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001004
Patrick McHardycfbba492007-07-09 15:33:40 -07001005 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1006 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
1010 goto tx_err_dst_release;
1011
1012 if (skb->sk)
1013 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +00001014 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 skb = new_skb;
1016 }
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001017 if (fl6->flowi6_mark) {
1018 skb_dst_set(skb, dst);
1019 ndst = NULL;
1020 } else {
1021 skb_dst_set_noref(skb, dst);
1022 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001023 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
David S. Miller4c9483b2011-03-12 16:22:43 -05001025 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001026 if (encap_limit >= 0) {
1027 init_tel_txopt(&opt, encap_limit);
1028 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1029 }
Hannes Frederic Sowa3d483052013-08-18 13:46:52 +02001030
1031 if (likely(!skb->encapsulation)) {
1032 skb_reset_inner_headers(skb);
1033 skb->encapsulation = 1;
1034 }
1035
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001036 skb_push(skb, sizeof(struct ipv6hdr));
1037 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001038 ipv6h = ipv6_hdr(skb);
YOSHIFUJI Hideaki / 吉藤英明3e4e4c12013-01-13 05:01:39 +00001039 ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield), fl6->flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 ipv6h->hop_limit = t->parms.hop_limit;
1041 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001042 ipv6h->saddr = fl6->saddr;
1043 ipv6h->daddr = fl6->daddr;
Cong Wange8f72ea2013-03-09 23:00:39 +00001044 ip6tunnel_xmit(skb, dev);
Eric Dumazet89b02122011-07-28 04:32:25 +00001045 if (ndst)
1046 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return 0;
1048tx_err_link_failure:
1049 stats->tx_carrier_errors++;
1050 dst_link_failure(skb);
1051tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001052 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001053 return err;
1054}
1055
1056static inline int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001057ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1058{
1059 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001060 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001061 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001062 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001063 __u8 dsfield;
1064 __u32 mtu;
1065 int err;
1066
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001067 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
1068 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001069 return -1;
1070
1071 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1072 encap_limit = t->parms.encap_limit;
1073
David S. Miller4c9483b2011-03-12 16:22:43 -05001074 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1075 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001076
1077 dsfield = ipv4_get_dsfield(iph);
1078
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001079 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001080 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001081 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001082 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1083 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001084
David S. Miller4c9483b2011-03-12 16:22:43 -05001085 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001086 if (err != 0) {
1087 /* XXX: send ICMP error even if DF is not set. */
1088 if (err == -EMSGSIZE)
1089 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1090 htonl(mtu));
1091 return -1;
1092 }
1093
1094 return 0;
1095}
1096
1097static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001098ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1099{
1100 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001101 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001102 int encap_limit = -1;
1103 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001104 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001105 __u8 dsfield;
1106 __u32 mtu;
1107 int err;
1108
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001109 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1110 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001111 return -1;
1112
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001113 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001114 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001115 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001116 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001117 if (tel->encap_limit == 0) {
1118 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001119 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001120 return -1;
1121 }
1122 encap_limit = tel->encap_limit - 1;
1123 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1124 encap_limit = t->parms.encap_limit;
1125
David S. Miller4c9483b2011-03-12 16:22:43 -05001126 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1127 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001128
1129 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001130 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001131 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001132 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +01001133 fl6.flowlabel |= ip6_flowlabel(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001134 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1135 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001136
David S. Miller4c9483b2011-03-12 16:22:43 -05001137 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001138 if (err != 0) {
1139 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001140 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001141 return -1;
1142 }
1143
1144 return 0;
1145}
1146
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001147static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001148ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1149{
1150 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001151 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001152 int ret;
1153
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001154 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001155 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001156 ret = ip4ip6_tnl_xmit(skb, dev);
1157 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001158 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001159 ret = ip6ip6_tnl_xmit(skb, dev);
1160 break;
1161 default:
1162 goto tx_err;
1163 }
1164
1165 if (ret < 0)
1166 goto tx_err;
1167
Patrick McHardy6ed10652009-06-23 06:03:08 +00001168 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170tx_err:
1171 stats->tx_errors++;
1172 stats->tx_dropped++;
1173 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001174 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001177static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
1179 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001180 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001181 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001183 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1184 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001187 fl6->saddr = p->laddr;
1188 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001189 fl6->flowi6_oif = p->link;
1190 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001193 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001195 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001197 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1198 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1201 dev->flags |= IFF_POINTOPOINT;
1202 else
1203 dev->flags &= ~IFF_POINTOPOINT;
1204
1205 dev->iflink = p->link;
1206
1207 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001208 int strict = (ipv6_addr_type(&p->raddr) &
1209 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1210
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001211 struct rt6_info *rt = rt6_lookup(t->net,
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001212 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001213 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 if (rt == NULL)
1216 return;
1217
David S. Millerd1918542011-12-28 20:19:20 -05001218 if (rt->dst.dev) {
1219 dev->hard_header_len = rt->dst.dev->hard_header_len +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 sizeof (struct ipv6hdr);
1221
David S. Millerd1918542011-12-28 20:19:20 -05001222 dev->mtu = rt->dst.dev->mtu - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001223 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1224 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 if (dev->mtu < IPV6_MIN_MTU)
1227 dev->mtu = IPV6_MIN_MTU;
1228 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001229 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231}
1232
1233/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001234 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 * @t: tunnel to be changed
1236 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 *
1238 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001239 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 **/
1241
1242static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001243ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001245 t->parms.laddr = p->laddr;
1246 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 t->parms.flags = p->flags;
1248 t->parms.hop_limit = p->hop_limit;
1249 t->parms.encap_limit = p->encap_limit;
1250 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001251 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001252 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001253 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001254 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return 0;
1256}
1257
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001258static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1259{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001260 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001261 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1262 int err;
1263
1264 ip6_tnl_unlink(ip6n, t);
1265 synchronize_net();
1266 err = ip6_tnl_change(t, p);
1267 ip6_tnl_link(ip6n, t);
1268 netdev_state_change(t->dev);
1269 return err;
1270}
1271
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001272static void
1273ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1274{
1275 p->laddr = u->laddr;
1276 p->raddr = u->raddr;
1277 p->flags = u->flags;
1278 p->hop_limit = u->hop_limit;
1279 p->encap_limit = u->encap_limit;
1280 p->flowinfo = u->flowinfo;
1281 p->link = u->link;
1282 p->proto = u->proto;
1283 memcpy(p->name, u->name, sizeof(u->name));
1284}
1285
1286static void
1287ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1288{
1289 u->laddr = p->laddr;
1290 u->raddr = p->raddr;
1291 u->flags = p->flags;
1292 u->hop_limit = p->hop_limit;
1293 u->encap_limit = p->encap_limit;
1294 u->flowinfo = p->flowinfo;
1295 u->link = p->link;
1296 u->proto = p->proto;
1297 memcpy(u->name, p->name, sizeof(u->name));
1298}
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001301 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 * @dev: virtual device associated with tunnel
1303 * @ifr: parameters passed from userspace
1304 * @cmd: command to be performed
1305 *
1306 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001307 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001308 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 *
1310 * The possible commands are the following:
1311 * %SIOCGETTUNNEL: get tunnel parameters for device
1312 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1313 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1314 * %SIOCDELTUNNEL: delete tunnel
1315 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001316 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 * initialization, can be used for creating other tunnel devices.
1318 *
1319 * Return:
1320 * 0 on success,
1321 * %-EFAULT if unable to copy data to or from userspace,
1322 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1323 * %-EINVAL if passed tunnel parameters are invalid,
1324 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1325 * %-ENODEV if attempting to change or delete a nonexisting device
1326 **/
1327
1328static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001329ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
1331 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001333 struct __ip6_tnl_parm p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001335 struct net *net = dev_net(dev);
1336 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 switch (cmd) {
1339 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001340 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001341 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 err = -EFAULT;
1343 break;
1344 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001345 ip6_tnl_parm_from_user(&p1, &p);
1346 t = ip6_tnl_locate(net, &p1, 0);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001347 } else {
1348 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001349 }
1350 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001351 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001352 ip6_tnl_parm_to_user(&p, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1354 err = -EFAULT;
1355 }
1356 break;
1357 case SIOCADDTUNNEL:
1358 case SIOCCHGTUNNEL:
1359 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001360 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001362 err = -EFAULT;
1363 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001365 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001366 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1367 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001369 ip6_tnl_parm_from_user(&p1, &p);
1370 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001371 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001372 if (t != NULL) {
1373 if (t->dev != dev) {
1374 err = -EEXIST;
1375 break;
1376 }
1377 } else
1378 t = netdev_priv(dev);
1379
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001380 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001382 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001384 ip6_tnl_parm_to_user(&p, &t->parms);
1385 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001386 err = -EFAULT;
1387
1388 } else
1389 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 break;
1391 case SIOCDELTUNNEL:
1392 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001393 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 break;
1395
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001396 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001397 err = -EFAULT;
1398 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001400 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001401 ip6_tnl_parm_from_user(&p1, &p);
1402 t = ip6_tnl_locate(net, &p1, 0);
1403 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001405 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001406 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001408 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001410 err = 0;
1411 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 break;
1413 default:
1414 err = -EINVAL;
1415 }
1416 return err;
1417}
1418
1419/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001420 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 * @dev: virtual device associated with tunnel
1422 * @new_mtu: the new mtu
1423 *
1424 * Return:
1425 * 0 on success,
1426 * %-EINVAL if mtu too small
1427 **/
1428
1429static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001430ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001432 struct ip6_tnl *tnl = netdev_priv(dev);
1433
1434 if (tnl->parms.proto == IPPROTO_IPIP) {
1435 if (new_mtu < 68)
1436 return -EINVAL;
1437 } else {
1438 if (new_mtu < IPV6_MIN_MTU)
1439 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001441 if (new_mtu > 0xFFF8 - dev->hard_header_len)
1442 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 dev->mtu = new_mtu;
1444 return 0;
1445}
1446
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001447
1448static const struct net_device_ops ip6_tnl_netdev_ops = {
Eric Dumazet8560f222010-09-28 03:23:34 +00001449 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001450 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001451 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001452 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001453 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001454};
1455
Eric Dumazet8560f222010-09-28 03:23:34 +00001456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001458 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 * @dev: virtual device associated with tunnel
1460 *
1461 * Description:
1462 * Initialize function pointers and device parameters
1463 **/
1464
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001465static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
Anders Franzen381601e2010-11-24 05:47:18 +00001467 struct ip6_tnl *t;
1468
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001469 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001470 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 dev->type = ARPHRD_TUNNEL6;
1473 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1474 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001475 t = netdev_priv(dev);
1476 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1477 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 dev->flags |= IFF_NOARP;
1479 dev->addr_len = sizeof(struct in6_addr);
Anders Franzen7e223de2010-10-19 03:50:47 +00001480 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Nicolas Dichtele8377352013-08-20 12:16:06 +02001481 /* This perm addr will be used as interface identifier by IPv6 */
1482 dev->addr_assign_type = NET_ADDR_RANDOM;
1483 eth_random_addr(dev->perm_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
1486
1487/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001488 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 * @dev: virtual device associated with tunnel
1490 **/
1491
Eric Dumazet8560f222010-09-28 03:23:34 +00001492static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001493ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Patrick McHardy2941a482006-01-08 22:05:26 -08001495 struct ip6_tnl *t = netdev_priv(dev);
John Stultz827da442013-10-07 15:51:58 -07001496 int i;
Eric Dumazet8560f222010-09-28 03:23:34 +00001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 t->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001499 t->net = dev_net(dev);
Li RongQing8f849852014-01-04 13:57:59 +08001500 dev->tstats = alloc_percpu(struct pcpu_sw_netstats);
Eric Dumazet8560f222010-09-28 03:23:34 +00001501 if (!dev->tstats)
1502 return -ENOMEM;
John Stultz827da442013-10-07 15:51:58 -07001503
1504 for_each_possible_cpu(i) {
Li RongQing8f849852014-01-04 13:57:59 +08001505 struct pcpu_sw_netstats *ip6_tnl_stats;
John Stultz827da442013-10-07 15:51:58 -07001506 ip6_tnl_stats = per_cpu_ptr(dev->tstats, i);
1507 u64_stats_init(&ip6_tnl_stats->syncp);
1508 }
Eric Dumazet8560f222010-09-28 03:23:34 +00001509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
1512/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001513 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 * @dev: virtual device associated with tunnel
1515 **/
1516
Eric Dumazet8560f222010-09-28 03:23:34 +00001517static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Patrick McHardy2941a482006-01-08 22:05:26 -08001519 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001520 int err = ip6_tnl_dev_init_gen(dev);
1521
1522 if (err)
1523 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001524 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001525 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526}
1527
1528/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001529 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 * @dev: fallback device
1531 *
1532 * Return: 0
1533 **/
1534
Eric Dumazet8560f222010-09-28 03:23:34 +00001535static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
Patrick McHardy2941a482006-01-08 22:05:26 -08001537 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001538 struct net *net = dev_net(dev);
1539 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001540 int err = ip6_tnl_dev_init_gen(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001541
Eric Dumazet8560f222010-09-28 03:23:34 +00001542 if (err)
1543 return err;
1544
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001545 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001547
1548 ip6_tnl_link_config(t);
1549
Eric Dumazetcf778b02012-01-12 04:41:32 +00001550 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001554static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1555{
1556 u8 proto;
1557
1558 if (!data)
1559 return 0;
1560
1561 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1562 if (proto != IPPROTO_IPV6 &&
1563 proto != IPPROTO_IPIP &&
1564 proto != 0)
1565 return -EINVAL;
1566
1567 return 0;
1568}
1569
1570static void ip6_tnl_netlink_parms(struct nlattr *data[],
1571 struct __ip6_tnl_parm *parms)
1572{
1573 memset(parms, 0, sizeof(*parms));
1574
1575 if (!data)
1576 return;
1577
1578 if (data[IFLA_IPTUN_LINK])
1579 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1580
1581 if (data[IFLA_IPTUN_LOCAL])
1582 nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
1583 sizeof(struct in6_addr));
1584
1585 if (data[IFLA_IPTUN_REMOTE])
1586 nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
1587 sizeof(struct in6_addr));
1588
1589 if (data[IFLA_IPTUN_TTL])
1590 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1591
1592 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1593 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1594
1595 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001596 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001597
1598 if (data[IFLA_IPTUN_FLAGS])
1599 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1600
1601 if (data[IFLA_IPTUN_PROTO])
1602 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1603}
1604
1605static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1606 struct nlattr *tb[], struct nlattr *data[])
1607{
1608 struct net *net = dev_net(dev);
1609 struct ip6_tnl *nt;
1610
1611 nt = netdev_priv(dev);
1612 ip6_tnl_netlink_parms(data, &nt->parms);
1613
1614 if (ip6_tnl_locate(net, &nt->parms, 0))
1615 return -EEXIST;
1616
1617 return ip6_tnl_create2(dev);
1618}
1619
1620static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1621 struct nlattr *data[])
1622{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001623 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001624 struct __ip6_tnl_parm p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001625 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001626 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1627
1628 if (dev == ip6n->fb_tnl_dev)
1629 return -EINVAL;
1630
1631 ip6_tnl_netlink_parms(data, &p);
1632
1633 t = ip6_tnl_locate(net, &p, 0);
1634
1635 if (t) {
1636 if (t->dev != dev)
1637 return -EEXIST;
1638 } else
1639 t = netdev_priv(dev);
1640
1641 return ip6_tnl_update(t, &p);
1642}
1643
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001644static void ip6_tnl_dellink(struct net_device *dev, struct list_head *head)
1645{
1646 struct net *net = dev_net(dev);
1647 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1648
1649 if (dev != ip6n->fb_tnl_dev)
1650 unregister_netdevice_queue(dev, head);
1651}
1652
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001653static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001654{
1655 return
1656 /* IFLA_IPTUN_LINK */
1657 nla_total_size(4) +
1658 /* IFLA_IPTUN_LOCAL */
1659 nla_total_size(sizeof(struct in6_addr)) +
1660 /* IFLA_IPTUN_REMOTE */
1661 nla_total_size(sizeof(struct in6_addr)) +
1662 /* IFLA_IPTUN_TTL */
1663 nla_total_size(1) +
1664 /* IFLA_IPTUN_ENCAP_LIMIT */
1665 nla_total_size(1) +
1666 /* IFLA_IPTUN_FLOWINFO */
1667 nla_total_size(4) +
1668 /* IFLA_IPTUN_FLAGS */
1669 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001670 /* IFLA_IPTUN_PROTO */
1671 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001672 0;
1673}
1674
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001675static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001676{
1677 struct ip6_tnl *tunnel = netdev_priv(dev);
1678 struct __ip6_tnl_parm *parm = &tunnel->parms;
1679
1680 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1681 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001682 &parm->laddr) ||
Ding Zhi0d2ede92013-09-16 11:31:15 +02001683 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1684 &parm->raddr) ||
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001685 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1686 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1687 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001688 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1689 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001690 goto nla_put_failure;
1691 return 0;
1692
1693nla_put_failure:
1694 return -EMSGSIZE;
1695}
1696
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001697static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
1698 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1699 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
1700 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
1701 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1702 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
1703 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
1704 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
1705 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
1706};
1707
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001708static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1709 .kind = "ip6tnl",
1710 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001711 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001712 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001713 .setup = ip6_tnl_dev_setup,
1714 .validate = ip6_tnl_validate,
1715 .newlink = ip6_tnl_newlink,
1716 .changelink = ip6_tnl_changelink,
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001717 .dellink = ip6_tnl_dellink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001718 .get_size = ip6_tnl_get_size,
1719 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001720};
1721
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001722static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001723 .handler = ip4ip6_rcv,
1724 .err_handler = ip4ip6_err,
1725 .priority = 1,
1726};
1727
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001728static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001729 .handler = ip6ip6_rcv,
1730 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001731 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732};
1733
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001734static void __net_exit ip6_tnl_destroy_tunnels(struct net *net)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001735{
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001736 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001737 struct net_device *dev, *aux;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001738 int h;
1739 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001740 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001741
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001742 for_each_netdev_safe(net, dev, aux)
1743 if (dev->rtnl_link_ops == &ip6_link_ops)
1744 unregister_netdevice_queue(dev, &list);
1745
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001746 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001747 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001748 while (t != NULL) {
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001749 /* If dev is in the same netns, it has already
1750 * been added to the list by the previous loop.
1751 */
1752 if (!net_eq(dev_net(t->dev), net))
1753 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001754 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001755 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001756 }
1757
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001758 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001759}
1760
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001761static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001762{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001763 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001764 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001765 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001766
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001767 ip6n->tnls[0] = ip6n->tnls_wc;
1768 ip6n->tnls[1] = ip6n->tnls_r_l;
1769
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001770 err = -ENOMEM;
1771 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1772 ip6_tnl_dev_setup);
1773
1774 if (!ip6n->fb_tnl_dev)
1775 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001776 dev_net_set(ip6n->fb_tnl_dev, net);
Nicolas Dichtelbb814092013-10-01 18:05:00 +02001777 ip6n->fb_tnl_dev->rtnl_link_ops = &ip6_link_ops;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001778 /* FB netdevice is special: we have one, and only one per netns.
1779 * Allowing to move it to another netns is clearly unsafe.
1780 */
1781 ip6n->fb_tnl_dev->features |= NETIF_F_NETNS_LOCAL;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001782
Eric Dumazet8560f222010-09-28 03:23:34 +00001783 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1784 if (err < 0)
1785 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001786
1787 err = register_netdev(ip6n->fb_tnl_dev);
1788 if (err < 0)
1789 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001790
1791 t = netdev_priv(ip6n->fb_tnl_dev);
1792
1793 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001794 return 0;
1795
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001796err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001797 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001798err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001799 return err;
1800}
1801
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001802static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001803{
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001804 rtnl_lock();
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001805 ip6_tnl_destroy_tunnels(net);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001806 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001807}
1808
1809static struct pernet_operations ip6_tnl_net_ops = {
1810 .init = ip6_tnl_init_net,
1811 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001812 .id = &ip6_tnl_net_id,
1813 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001814};
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816/**
1817 * ip6_tunnel_init - register protocol and reserve needed resources
1818 *
1819 * Return: 0 on success
1820 **/
1821
1822static int __init ip6_tunnel_init(void)
1823{
1824 int err;
1825
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001826 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001827 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001828 goto out_pernet;
1829
1830 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1831 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001832 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001833 goto out_ip4ip6;
1834 }
1835
1836 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1837 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001838 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001839 goto out_ip6ip6;
1840 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001841 err = rtnl_link_register(&ip6_link_ops);
1842 if (err < 0)
1843 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001846
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001847rtnl_link_failed:
1848 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001849out_ip6ip6:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001850 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001851out_ip4ip6:
1852 unregister_pernet_device(&ip6_tnl_net_ops);
1853out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 return err;
1855}
1856
1857/**
1858 * ip6_tunnel_cleanup - free resources and unregister protocol
1859 **/
1860
1861static void __exit ip6_tunnel_cleanup(void)
1862{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001863 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001864 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001865 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001866
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001867 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001868 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001870 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
1873module_init(ip6_tunnel_init);
1874module_exit(ip6_tunnel_cleanup);