blob: c054847a4e27a65fbacd5f898485f92f6bcf9687 [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>
32#include <linux/if_tunnel.h>
33#include <linux/net.h>
34#include <linux/in6.h>
35#include <linux/netdevice.h>
36#include <linux/if_arp.h>
37#include <linux/icmpv6.h>
38#include <linux/init.h>
39#include <linux/route.h>
40#include <linux/rtnetlink.h>
41#include <linux/netfilter_ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000043#include <linux/hash.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>
50#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <net/ip6_route.h>
52#include <net/addrconf.h>
53#include <net/ip6_tunnel.h>
54#include <net/xfrm.h>
55#include <net/dsfield.h>
56#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070057#include <net/net_namespace.h>
58#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090061MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_LICENSE("GPL");
stephen hemminger6dfbd872011-03-10 11:43:19 +000063MODULE_ALIAS_NETDEV("ip6tnl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#ifdef IP6_TNL_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +000066#define IP6_TNL_TRACE(x...) pr_debug("%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#else
68#define IP6_TNL_TRACE(x...) do {;} while(0)
69#endif
70
71#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
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
Eric Dumazetddbe5032012-07-18 08:11:12 +000077static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
78{
79 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
80
81 return hash_32(hash, HASH_SIZE_SHIFT);
82}
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Eric Dumazet8560f222010-09-28 03:23:34 +000084static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090085static void ip6_tnl_dev_setup(struct net_device *dev);
Nicolas Dichtelc075b132012-11-09 06:10:01 +000086static struct rtnl_link_ops ip6_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Eric Dumazetf99189b2009-11-17 10:42:49 +000088static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070089struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070090 /* the IPv6 tunnel fallback device */
91 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070092 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000093 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
94 struct ip6_tnl __rcu *tnls_wc[1];
95 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070096};
97
Eric Dumazet8560f222010-09-28 03:23:34 +000098static struct net_device_stats *ip6_get_stats(struct net_device *dev)
99{
100 struct pcpu_tstats sum = { 0 };
101 int i;
102
103 for_each_possible_cpu(i) {
104 const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
105
106 sum.rx_packets += tstats->rx_packets;
107 sum.rx_bytes += tstats->rx_bytes;
108 sum.tx_packets += tstats->tx_packets;
109 sum.tx_bytes += tstats->tx_bytes;
110 }
111 dev->stats.rx_packets = sum.rx_packets;
112 dev->stats.rx_bytes = sum.rx_bytes;
113 dev->stats.tx_packets = sum.tx_packets;
114 dev->stats.tx_bytes = sum.tx_bytes;
115 return &dev->stats;
116}
117
Eric Dumazet2922bc82009-10-23 06:34:34 +0000118/*
Eric Dumazet94767632010-09-15 20:25:34 +0000119 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +0000120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000122struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct dst_entry *dst = t->dst_cache;
125
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900126 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 dst->ops->check(dst, t->dst_cookie) == NULL) {
128 t->dst_cache = NULL;
129 dst_release(dst);
130 return NULL;
131 }
132
133 return dst;
134}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000135EXPORT_SYMBOL_GPL(ip6_tnl_dst_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000137void ip6_tnl_dst_reset(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 dst_release(t->dst_cache);
140 t->dst_cache = NULL;
141}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000142EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000144void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct rt6_info *rt = (struct rt6_info *) dst;
147 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
148 dst_release(t->dst_cache);
149 t->dst_cache = dst;
150}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000151EXPORT_SYMBOL_GPL(ip6_tnl_dst_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900154 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900155 * @remote: the address of the tunnel exit-point
156 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900158 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900160 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * else %NULL
162 **/
163
Eric Dumazet2922bc82009-10-23 06:34:34 +0000164#define for_each_ip6_tunnel_rcu(start) \
165 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000168ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000170 unsigned int hash = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700172 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Eric Dumazetddbe5032012-07-18 08:11:12 +0000174 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (ipv6_addr_equal(local, &t->parms.laddr) &&
176 ipv6_addr_equal(remote, &t->parms.raddr) &&
177 (t->dev->flags & IFF_UP))
178 return t;
179 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000180 t = rcu_dereference(ip6n->tnls_wc[0]);
181 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return t;
183
184 return NULL;
185}
186
187/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900188 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900189 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
191 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900192 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * &struct in6_addr entries laddr and raddr in @p.
194 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900195 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 **/
197
Eric Dumazet94767632010-09-15 20:25:34 +0000198static struct ip6_tnl __rcu **
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000199ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000201 const struct in6_addr *remote = &p->raddr;
202 const struct in6_addr *local = &p->laddr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000203 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int prio = 0;
205
206 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
207 prio = 1;
Eric Dumazetddbe5032012-07-18 08:11:12 +0000208 h = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700210 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900214 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * @t: tunnel to be added
216 **/
217
218static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700219ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Eric Dumazet94767632010-09-15 20:25:34 +0000221 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Eric Dumazetcf778b02012-01-12 04:41:32 +0000223 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
224 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
227/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900228 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 * @t: tunnel to be removed
230 **/
231
232static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700233ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Eric Dumazet94767632010-09-15 20:25:34 +0000235 struct ip6_tnl __rcu **tp;
236 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Eric Dumazet94767632010-09-15 20:25:34 +0000238 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
239 (iter = rtnl_dereference(*tp)) != NULL;
240 tp = &iter->next) {
241 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000242 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244 }
245 }
246}
247
Eric Dumazet8560f222010-09-28 03:23:34 +0000248static void ip6_dev_free(struct net_device *dev)
249{
250 free_percpu(dev->tstats);
251 free_netdev(dev);
252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000255 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 * @p: tunnel parameters
257 * @pt: pointer to new tunnel
258 *
259 * Description:
260 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900261 *
262 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800263 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 **/
265
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000266static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 struct net_device *dev;
269 struct ip6_tnl *t;
270 char name[IFNAMSIZ];
271 int err;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700272 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800274 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800276 else
277 sprintf(name, "ip6tnl%%d");
278
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900279 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800281 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700283 dev_net_set(dev, net);
284
Patrick McHardy2941a482006-01-08 22:05:26 -0800285 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 t->parms = *p;
Eric Dumazet8560f222010-09-28 03:23:34 +0000287 err = ip6_tnl_dev_init(dev);
288 if (err < 0)
289 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800291 if ((err = register_netdevice(dev)) < 0)
292 goto failed_free;
293
Josh Boyer731abb92011-11-10 15:10:23 +0000294 strcpy(t->parms.name, dev->name);
Nicolas Dichtelc075b132012-11-09 06:10:01 +0000295 dev->rtnl_link_ops = &ip6_link_ops;
Josh Boyer731abb92011-11-10 15:10:23 +0000296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 dev_hold(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700298 ip6_tnl_link(ip6n, t);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800299 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800300
301failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000302 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800303failed:
304 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900308 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900309 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * @create: != 0 if allowed to create new tunnel if no match found
311 *
312 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900313 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 * based on @parms. If this is unsuccessful, but @create is set a new
315 * tunnel device is created and registered for use.
316 *
317 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800318 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 **/
320
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700321static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000322 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000324 const struct in6_addr *remote = &p->raddr;
325 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000326 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700328 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Eric Dumazet94767632010-09-15 20:25:34 +0000330 for (tp = ip6_tnl_bucket(ip6n, p);
331 (t = rtnl_dereference(*tp)) != NULL;
332 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800334 ipv6_addr_equal(remote, &t->parms.raddr))
335 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800338 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700339 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900343 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900345 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900347 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 **/
349
350static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900351ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Patrick McHardy2941a482006-01-08 22:05:26 -0800353 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700354 struct net *net = dev_net(dev);
355 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Eric Dumazet94767632010-09-15 20:25:34 +0000357 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000358 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000359 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700360 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 ip6_tnl_dst_reset(t);
362 dev_put(dev);
363}
364
365/**
366 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
367 * @skb: received socket buffer
368 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900369 * Return:
370 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * else index to encapsulation limit
372 **/
373
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000374__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000376 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 __u8 nexthdr = ipv6h->nexthdr;
378 __u16 off = sizeof (*ipv6h);
379
380 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
381 __u16 optlen = 0;
382 struct ipv6_opt_hdr *hdr;
383 if (raw + off + sizeof (*hdr) > skb->data &&
384 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
385 break;
386
387 hdr = (struct ipv6_opt_hdr *) (raw + off);
388 if (nexthdr == NEXTHDR_FRAGMENT) {
389 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
390 if (frag_hdr->frag_off)
391 break;
392 optlen = 8;
393 } else if (nexthdr == NEXTHDR_AUTH) {
394 optlen = (hdr->hdrlen + 2) << 2;
395 } else {
396 optlen = ipv6_optlen(hdr);
397 }
398 if (nexthdr == NEXTHDR_DEST) {
399 __u16 i = off + 2;
400 while (1) {
401 struct ipv6_tlv_tnl_enc_lim *tel;
402
403 /* No more room for encapsulation limit */
404 if (i + sizeof (*tel) > off + optlen)
405 break;
406
407 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
408 /* return index of option if found and valid */
409 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
410 tel->length == 1)
411 return i;
412 /* else jump to next option */
413 if (tel->type)
414 i += tel->length + 2;
415 else
416 i++;
417 }
418 }
419 nexthdr = hdr->nexthdr;
420 off += optlen;
421 }
422 return 0;
423}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000424EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900427 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
429 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900430 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * to the specifications in RFC 2473.
432 **/
433
Herbert Xud2acc342006-03-28 01:12:13 -0800434static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900435ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700436 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000438 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 struct ip6_tnl *t;
440 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700441 u8 rel_type = ICMPV6_DEST_UNREACH;
442 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 __u32 rel_info = 0;
444 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800445 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900447 /* If the packet doesn't contain the original IPv6 header we are
448 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 processing of the error. */
450
Eric Dumazet2922bc82009-10-23 06:34:34 +0000451 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700452 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700453 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 goto out;
455
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900456 if (t->parms.proto != ipproto && t->parms.proto != 0)
457 goto out;
458
Herbert Xud2acc342006-03-28 01:12:13 -0800459 err = 0;
460
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900461 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 __u32 teli;
463 struct ipv6_tlv_tnl_enc_lim *tel;
464 __u32 mtu;
465 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000466 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
467 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 rel_msg = 1;
469 break;
470 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900471 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000472 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
473 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 rel_msg = 1;
475 }
476 break;
477 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800478 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900479 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000480 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Al Viro704eae12007-07-26 17:33:29 +0100482 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
484 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000485 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
486 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 rel_msg = 1;
488 }
Joe Perchese87cc472012-05-13 21:56:26 +0000489 } else {
490 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
491 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493 break;
494 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100495 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (mtu < IPV6_MIN_MTU)
497 mtu = IPV6_MIN_MTU;
498 t->dev->mtu = mtu;
499
Al Virocc6cdac2006-02-18 16:02:18 -0500500 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 rel_type = ICMPV6_PKT_TOOBIG;
502 rel_code = 0;
503 rel_info = mtu;
504 rel_msg = 1;
505 }
506 break;
507 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900508
509 *type = rel_type;
510 *code = rel_code;
511 *info = rel_info;
512 *msg = rel_msg;
513
514out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000515 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900516 return err;
517}
518
519static int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900520ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700521 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900522{
523 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700524 u8 rel_type = type;
525 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100526 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900527 int err;
528 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000529 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900530 struct rtable *rt;
David S. Miller31e4543d2011-05-03 20:25:42 -0700531 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900532
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900533 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
534 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900535 if (err < 0)
536 return err;
537
538 if (rel_msg == 0)
539 return 0;
540
541 switch (rel_type) {
542 case ICMPV6_DEST_UNREACH:
543 if (rel_code != ICMPV6_ADDR_UNREACH)
544 return 0;
545 rel_type = ICMP_DEST_UNREACH;
546 rel_code = ICMP_HOST_UNREACH;
547 break;
548 case ICMPV6_PKT_TOOBIG:
549 if (rel_code != 0)
550 return 0;
551 rel_type = ICMP_DEST_UNREACH;
552 rel_code = ICMP_FRAG_NEEDED;
553 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700554 case NDISC_REDIRECT:
555 rel_type = ICMP_REDIRECT;
556 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900557 default:
558 return 0;
559 }
560
561 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
562 return 0;
563
564 skb2 = skb_clone(skb, GFP_ATOMIC);
565 if (!skb2)
566 return 0;
567
Eric Dumazetadf30902009-06-02 05:19:30 +0000568 skb_dst_drop(skb2);
569
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900570 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700571 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700572 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900573
574 /* Try to guess incoming interface */
David S. Miller31e4543d2011-05-03 20:25:42 -0700575 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500576 eiph->saddr, 0,
577 0, 0,
578 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800579 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900580 goto out;
581
Changli Gaod8d1f302010-06-10 23:31:35 -0700582 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900583
584 /* route "incoming" packet */
585 if (rt->rt_flags & RTCF_LOCAL) {
586 ip_rt_put(rt);
587 rt = NULL;
David S. Miller31e4543d2011-05-03 20:25:42 -0700588 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500589 eiph->daddr, eiph->saddr,
590 0, 0,
591 IPPROTO_IPIP,
592 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800593 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700594 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800595 if (!IS_ERR(rt))
596 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900597 goto out;
598 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800599 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900600 } else {
601 ip_rt_put(rt);
602 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
603 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000604 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900605 goto out;
606 }
607
608 /* change mtu on this route */
609 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000610 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900611 goto out;
612
David S. Miller6700c272012-07-17 03:29:28 -0700613 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900614 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700615 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700616 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900617
Al Viro704eae12007-07-26 17:33:29 +0100618 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900619
620out:
621 kfree_skb(skb2);
622 return 0;
623}
624
625static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900626ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700627 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900628{
629 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700630 u8 rel_type = type;
631 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100632 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900633 int err;
634
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900635 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
636 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900637 if (err < 0)
638 return err;
639
640 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 struct rt6_info *rt;
642 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Eric Dumazetadf30902009-06-02 05:19:30 +0000647 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700649 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700652 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
653 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
David S. Millerd1918542011-12-28 20:19:20 -0500655 if (rt && rt->dst.dev)
656 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000658 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Amerigo Wang94e187c2012-10-29 00:13:19 +0000660 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 kfree_skb(skb2);
663 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900664
665 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000668static void ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
669 const struct ipv6hdr *ipv6h,
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900670 struct sk_buff *skb)
671{
672 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
673
674 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700675 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900676
677 if (INET_ECN_is_ce(dsfield))
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700678 IP_ECN_set_ce(ip_hdr(skb));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900679}
680
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000681static void ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
682 const struct ipv6hdr *ipv6h,
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900683 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900685 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800686 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900688 if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700689 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900691
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000692__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000693 const struct in6_addr *laddr,
694 const struct in6_addr *raddr)
695{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000696 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000697 int ltype = ipv6_addr_type(laddr);
698 int rtype = ipv6_addr_type(raddr);
699 __u32 flags = 0;
700
701 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
702 flags = IP6_TNL_F_CAP_PER_PACKET;
703 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
704 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
705 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
706 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
707 if (ltype&IPV6_ADDR_UNICAST)
708 flags |= IP6_TNL_F_CAP_XMIT;
709 if (rtype&IPV6_ADDR_UNICAST)
710 flags |= IP6_TNL_F_CAP_RCV;
711 }
712 return flags;
713}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000714EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000715
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100716/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000717int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000718 const struct in6_addr *laddr,
719 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800720{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000721 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800722 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700723 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800724
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000725 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
726 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
727 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900728 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800729
730 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100731 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800732
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000733 if ((ipv6_addr_is_multicast(laddr) ||
734 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
735 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800736 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800737 }
738 return ret;
739}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000740EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900743 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900745 * @protocol: ethernet protocol ID
746 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 *
748 * Return: 0
749 **/
750
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900751static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900752 __u8 ipproto,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000753 void (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
754 const struct ipv6hdr *ipv6h,
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900755 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000758 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Eric Dumazet2922bc82009-10-23 06:34:34 +0000760 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700762 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700763 &ipv6h->daddr)) != NULL) {
Eric Dumazet8560f222010-09-28 03:23:34 +0000764 struct pcpu_tstats *tstats;
765
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900766 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000767 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900768 goto discard;
769 }
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000772 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700773 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000776 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700777 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000778 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 goto discard;
780 }
781 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700782 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700783 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900784 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 skb->pkt_type = PACKET_HOST;
786 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700787
Eric Dumazet8560f222010-09-28 03:23:34 +0000788 tstats = this_cpu_ptr(t->dev->tstats);
789 tstats->rx_packets++;
790 tstats->rx_bytes += skb->len;
791
792 __skb_tunnel_rx(skb, t->dev);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900793
794 dscp_ecn_decapsulate(t, ipv6h, skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000795
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000796 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000797
Eric Dumazet2922bc82009-10-23 06:34:34 +0000798 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return 0;
800 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000801 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700803
804discard:
805 kfree_skb(skb);
806 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900809static int ip4ip6_rcv(struct sk_buff *skb)
810{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900811 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
812 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900813}
814
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900815static int ip6ip6_rcv(struct sk_buff *skb)
816{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900817 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
818 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900819}
820
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800821struct ipv6_tel_txoption {
822 struct ipv6_txoptions ops;
823 __u8 dst_opt[8];
824};
825
826static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800828 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800830 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
831 opt->dst_opt[3] = 1;
832 opt->dst_opt[4] = encap_limit;
833 opt->dst_opt[5] = IPV6_TLV_PADN;
834 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800836 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
837 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900841 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900843 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 *
845 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900846 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 * doesn't match source of incoming packet.
848 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900849 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 * 1 if conflict,
851 * 0 else
852 **/
853
Eric Dumazet92113bf2012-05-18 08:14:11 +0200854static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000855ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
858}
859
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000860int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800861{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000862 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800863 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700864 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800865
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900866 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800867 struct net_device *ldev = NULL;
868
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100869 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800870 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100871 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800872
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700873 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000874 pr_warn("%s xmit: Local address not yet configured!\n",
875 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800876 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700877 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000878 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
879 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800880 else
881 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100882 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800883 }
884 return ret;
885}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000886EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900889 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900891 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900892 * @dsfield: dscp code for outer header
893 * @fl: flow of tunneled packet
894 * @encap_limit: encapsulation limit
895 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 *
897 * Description:
898 * Build new header and do some sanity checks on the packet before sending
899 * it.
900 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900901 * Return:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900902 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900903 * -1 fail
904 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 **/
906
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900907static int ip6_tnl_xmit2(struct sk_buff *skb,
908 struct net_device *dev,
909 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500910 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900911 int encap_limit,
912 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800914 struct net *net = dev_net(dev);
Patrick McHardy2941a482006-01-08 22:05:26 -0800915 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700916 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700917 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800918 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400919 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 struct net_device *tdev;
921 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700922 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900924 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 int pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400927 if (!fl6->flowi6_mark)
928 dst = ip6_tnl_dst_check(t);
Eric Dumazet89b02122011-07-28 04:32:25 +0000929 if (!dst) {
930 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Eric Dumazet89b02122011-07-28 04:32:25 +0000932 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700933 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000934 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
935 if (IS_ERR(ndst)) {
936 err = PTR_ERR(ndst);
937 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800938 goto tx_err_link_failure;
939 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000940 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -0700941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 tdev = dst->dev;
944
945 if (tdev == dev) {
946 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +0000947 net_warn_ratelimited("%s: Local routing loop detected!\n",
948 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 goto tx_err_dst_release;
950 }
951 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800952 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 max_headroom += 8;
954 mtu -= 8;
955 }
956 if (mtu < IPV6_MIN_MTU)
957 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000958 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -0700959 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900961 *pmtu = mtu;
962 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 goto tx_err_dst_release;
964 }
965
966 /*
967 * Okay, now see if we can stuff it in the buffer as-is.
968 */
969 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900970
Patrick McHardycfbba492007-07-09 15:33:40 -0700971 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
972 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
976 goto tx_err_dst_release;
977
978 if (skb->sk)
979 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +0000980 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 skb = new_skb;
982 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000983 skb_dst_drop(skb);
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400984 if (fl6->flowi6_mark) {
985 skb_dst_set(skb, dst);
986 ndst = NULL;
987 } else {
988 skb_dst_set_noref(skb, dst);
989 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700990 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
David S. Miller4c9483b2011-03-12 16:22:43 -0500992 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800993 if (encap_limit >= 0) {
994 init_tel_txopt(&opt, encap_limit);
995 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
996 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700997 skb_push(skb, sizeof(struct ipv6hdr));
998 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700999 ipv6h = ipv6_hdr(skb);
David S. Miller4c9483b2011-03-12 16:22:43 -05001000 *(__be32*)ipv6h = fl6->flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 dsfield = INET_ECN_encapsulate(0, dsfield);
1002 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 ipv6h->hop_limit = t->parms.hop_limit;
1004 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001005 ipv6h->saddr = fl6->saddr;
1006 ipv6h->daddr = fl6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 nf_reset(skb);
1008 pkt_len = skb->len;
Herbert Xuef76bc22008-01-11 19:15:08 -08001009 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -02001011 if (net_xmit_eval(err) == 0) {
Eric Dumazet8560f222010-09-28 03:23:34 +00001012 struct pcpu_tstats *tstats = this_cpu_ptr(t->dev->tstats);
1013
1014 tstats->tx_bytes += pkt_len;
1015 tstats->tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 } else {
1017 stats->tx_errors++;
1018 stats->tx_aborted_errors++;
1019 }
Eric Dumazet89b02122011-07-28 04:32:25 +00001020 if (ndst)
1021 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return 0;
1023tx_err_link_failure:
1024 stats->tx_carrier_errors++;
1025 dst_link_failure(skb);
1026tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001027 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001028 return err;
1029}
1030
1031static inline int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001032ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1033{
1034 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001035 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001036 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001037 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001038 __u8 dsfield;
1039 __u32 mtu;
1040 int err;
1041
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001042 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
1043 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001044 return -1;
1045
1046 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1047 encap_limit = t->parms.encap_limit;
1048
David S. Miller4c9483b2011-03-12 16:22:43 -05001049 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1050 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001051
1052 dsfield = ipv4_get_dsfield(iph);
1053
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001054 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001055 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001056 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001057 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1058 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001059
David S. Miller4c9483b2011-03-12 16:22:43 -05001060 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001061 if (err != 0) {
1062 /* XXX: send ICMP error even if DF is not set. */
1063 if (err == -EMSGSIZE)
1064 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1065 htonl(mtu));
1066 return -1;
1067 }
1068
1069 return 0;
1070}
1071
1072static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001073ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1074{
1075 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001076 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001077 int encap_limit = -1;
1078 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001079 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001080 __u8 dsfield;
1081 __u32 mtu;
1082 int err;
1083
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001084 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1085 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001086 return -1;
1087
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001088 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001089 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001090 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001091 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001092 if (tel->encap_limit == 0) {
1093 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001094 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001095 return -1;
1096 }
1097 encap_limit = tel->encap_limit - 1;
1098 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1099 encap_limit = t->parms.encap_limit;
1100
David S. Miller4c9483b2011-03-12 16:22:43 -05001101 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1102 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001103
1104 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001105 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001106 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001107 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
David S. Miller4c9483b2011-03-12 16:22:43 -05001108 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001109 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1110 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001111
David S. Miller4c9483b2011-03-12 16:22:43 -05001112 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001113 if (err != 0) {
1114 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001115 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001116 return -1;
1117 }
1118
1119 return 0;
1120}
1121
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001122static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001123ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1124{
1125 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001126 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001127 int ret;
1128
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001129 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001130 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001131 ret = ip4ip6_tnl_xmit(skb, dev);
1132 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001133 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001134 ret = ip6ip6_tnl_xmit(skb, dev);
1135 break;
1136 default:
1137 goto tx_err;
1138 }
1139
1140 if (ret < 0)
1141 goto tx_err;
1142
Patrick McHardy6ed10652009-06-23 06:03:08 +00001143 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145tx_err:
1146 stats->tx_errors++;
1147 stats->tx_dropped++;
1148 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001149 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001152static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001155 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001156 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001158 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1159 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001162 fl6->saddr = p->laddr;
1163 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001164 fl6->flowi6_oif = p->link;
1165 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001168 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001170 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001172 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1173 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1176 dev->flags |= IFF_POINTOPOINT;
1177 else
1178 dev->flags &= ~IFF_POINTOPOINT;
1179
1180 dev->iflink = p->link;
1181
1182 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001183 int strict = (ipv6_addr_type(&p->raddr) &
1184 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1185
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001186 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1187 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001188 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 if (rt == NULL)
1191 return;
1192
David S. Millerd1918542011-12-28 20:19:20 -05001193 if (rt->dst.dev) {
1194 dev->hard_header_len = rt->dst.dev->hard_header_len +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 sizeof (struct ipv6hdr);
1196
David S. Millerd1918542011-12-28 20:19:20 -05001197 dev->mtu = rt->dst.dev->mtu - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001198 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1199 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 if (dev->mtu < IPV6_MIN_MTU)
1202 dev->mtu = IPV6_MIN_MTU;
1203 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001204 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206}
1207
1208/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001209 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 * @t: tunnel to be changed
1211 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 *
1213 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001214 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 **/
1216
1217static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001218ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001220 t->parms.laddr = p->laddr;
1221 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 t->parms.flags = p->flags;
1223 t->parms.hop_limit = p->hop_limit;
1224 t->parms.encap_limit = p->encap_limit;
1225 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001226 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001227 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001228 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001229 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return 0;
1231}
1232
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001233static void
1234ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1235{
1236 p->laddr = u->laddr;
1237 p->raddr = u->raddr;
1238 p->flags = u->flags;
1239 p->hop_limit = u->hop_limit;
1240 p->encap_limit = u->encap_limit;
1241 p->flowinfo = u->flowinfo;
1242 p->link = u->link;
1243 p->proto = u->proto;
1244 memcpy(p->name, u->name, sizeof(u->name));
1245}
1246
1247static void
1248ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1249{
1250 u->laddr = p->laddr;
1251 u->raddr = p->raddr;
1252 u->flags = p->flags;
1253 u->hop_limit = p->hop_limit;
1254 u->encap_limit = p->encap_limit;
1255 u->flowinfo = p->flowinfo;
1256 u->link = p->link;
1257 u->proto = p->proto;
1258 memcpy(u->name, p->name, sizeof(u->name));
1259}
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001262 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 * @dev: virtual device associated with tunnel
1264 * @ifr: parameters passed from userspace
1265 * @cmd: command to be performed
1266 *
1267 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001268 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001269 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 *
1271 * The possible commands are the following:
1272 * %SIOCGETTUNNEL: get tunnel parameters for device
1273 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1274 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1275 * %SIOCDELTUNNEL: delete tunnel
1276 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001277 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 * initialization, can be used for creating other tunnel devices.
1279 *
1280 * Return:
1281 * 0 on success,
1282 * %-EFAULT if unable to copy data to or from userspace,
1283 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1284 * %-EINVAL if passed tunnel parameters are invalid,
1285 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1286 * %-ENODEV if attempting to change or delete a nonexisting device
1287 **/
1288
1289static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001290ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
1292 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001294 struct __ip6_tnl_parm p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001296 struct net *net = dev_net(dev);
1297 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 switch (cmd) {
1300 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001301 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001302 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 err = -EFAULT;
1304 break;
1305 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001306 ip6_tnl_parm_from_user(&p1, &p);
1307 t = ip6_tnl_locate(net, &p1, 0);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001308 } else {
1309 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001310 }
1311 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001312 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001313 ip6_tnl_parm_to_user(&p, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1315 err = -EFAULT;
1316 }
1317 break;
1318 case SIOCADDTUNNEL:
1319 case SIOCCHGTUNNEL:
1320 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (!capable(CAP_NET_ADMIN))
1322 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001323 err = -EFAULT;
1324 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001326 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001327 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1328 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001330 ip6_tnl_parm_from_user(&p1, &p);
1331 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001332 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001333 if (t != NULL) {
1334 if (t->dev != dev) {
1335 err = -EEXIST;
1336 break;
1337 }
1338 } else
1339 t = netdev_priv(dev);
1340
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001341 ip6_tnl_unlink(ip6n, t);
Pavel Emelyanov74b0b852010-10-27 05:43:53 +00001342 synchronize_net();
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001343 err = ip6_tnl_change(t, &p1);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001344 ip6_tnl_link(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 netdev_state_change(dev);
1346 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001347 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001349 ip6_tnl_parm_to_user(&p, &t->parms);
1350 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001351 err = -EFAULT;
1352
1353 } else
1354 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 break;
1356 case SIOCDELTUNNEL:
1357 err = -EPERM;
1358 if (!capable(CAP_NET_ADMIN))
1359 break;
1360
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001361 if (dev == ip6n->fb_tnl_dev) {
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 = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001366 ip6_tnl_parm_from_user(&p1, &p);
1367 t = ip6_tnl_locate(net, &p1, 0);
1368 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001370 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001371 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001373 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001375 err = 0;
1376 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 break;
1378 default:
1379 err = -EINVAL;
1380 }
1381 return err;
1382}
1383
1384/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001385 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 * @dev: virtual device associated with tunnel
1387 * @new_mtu: the new mtu
1388 *
1389 * Return:
1390 * 0 on success,
1391 * %-EINVAL if mtu too small
1392 **/
1393
1394static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001395ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
1397 if (new_mtu < IPV6_MIN_MTU) {
1398 return -EINVAL;
1399 }
1400 dev->mtu = new_mtu;
1401 return 0;
1402}
1403
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001404
1405static const struct net_device_ops ip6_tnl_netdev_ops = {
Eric Dumazet8560f222010-09-28 03:23:34 +00001406 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001407 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001408 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001409 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001410 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001411};
1412
Eric Dumazet8560f222010-09-28 03:23:34 +00001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001415 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * @dev: virtual device associated with tunnel
1417 *
1418 * Description:
1419 * Initialize function pointers and device parameters
1420 **/
1421
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001422static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Anders Franzen381601e2010-11-24 05:47:18 +00001424 struct ip6_tnl *t;
1425
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001426 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001427 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 dev->type = ARPHRD_TUNNEL6;
1430 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1431 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001432 t = netdev_priv(dev);
1433 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1434 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 dev->flags |= IFF_NOARP;
1436 dev->addr_len = sizeof(struct in6_addr);
Pavel Emelyanov554eb272008-04-16 01:24:13 -07001437 dev->features |= NETIF_F_NETNS_LOCAL;
Anders Franzen7e223de2010-10-19 03:50:47 +00001438 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
1440
1441
1442/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001443 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 * @dev: virtual device associated with tunnel
1445 **/
1446
Eric Dumazet8560f222010-09-28 03:23:34 +00001447static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001448ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
Patrick McHardy2941a482006-01-08 22:05:26 -08001450 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 t->dev = dev;
Eric Dumazet8560f222010-09-28 03:23:34 +00001453 dev->tstats = alloc_percpu(struct pcpu_tstats);
1454 if (!dev->tstats)
1455 return -ENOMEM;
1456 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457}
1458
1459/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001460 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 * @dev: virtual device associated with tunnel
1462 **/
1463
Eric Dumazet8560f222010-09-28 03:23:34 +00001464static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
Patrick McHardy2941a482006-01-08 22:05:26 -08001466 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001467 int err = ip6_tnl_dev_init_gen(dev);
1468
1469 if (err)
1470 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001471 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001472 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473}
1474
1475/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001476 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 * @dev: fallback device
1478 *
1479 * Return: 0
1480 **/
1481
Eric Dumazet8560f222010-09-28 03:23:34 +00001482static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Patrick McHardy2941a482006-01-08 22:05:26 -08001484 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001485 struct net *net = dev_net(dev);
1486 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001487 int err = ip6_tnl_dev_init_gen(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001488
Eric Dumazet8560f222010-09-28 03:23:34 +00001489 if (err)
1490 return err;
1491
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001492 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001494
1495 ip6_tnl_link_config(t);
1496
Eric Dumazetcf778b02012-01-12 04:41:32 +00001497 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001498 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001501static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001502{
1503 return
1504 /* IFLA_IPTUN_LINK */
1505 nla_total_size(4) +
1506 /* IFLA_IPTUN_LOCAL */
1507 nla_total_size(sizeof(struct in6_addr)) +
1508 /* IFLA_IPTUN_REMOTE */
1509 nla_total_size(sizeof(struct in6_addr)) +
1510 /* IFLA_IPTUN_TTL */
1511 nla_total_size(1) +
1512 /* IFLA_IPTUN_ENCAP_LIMIT */
1513 nla_total_size(1) +
1514 /* IFLA_IPTUN_FLOWINFO */
1515 nla_total_size(4) +
1516 /* IFLA_IPTUN_FLAGS */
1517 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001518 /* IFLA_IPTUN_PROTO */
1519 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001520 0;
1521}
1522
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001523static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001524{
1525 struct ip6_tnl *tunnel = netdev_priv(dev);
1526 struct __ip6_tnl_parm *parm = &tunnel->parms;
1527
1528 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1529 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
1530 &parm->raddr) ||
1531 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1532 &parm->laddr) ||
1533 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1534 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1535 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001536 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1537 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001538 goto nla_put_failure;
1539 return 0;
1540
1541nla_put_failure:
1542 return -EMSGSIZE;
1543}
1544
1545static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1546 .kind = "ip6tnl",
1547 .maxtype = IFLA_IPTUN_MAX,
1548 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001549 .get_size = ip6_tnl_get_size,
1550 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001551};
1552
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001553static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001554 .handler = ip4ip6_rcv,
1555 .err_handler = ip4ip6_err,
1556 .priority = 1,
1557};
1558
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001559static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001560 .handler = ip6ip6_rcv,
1561 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001562 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563};
1564
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001565static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001566{
1567 int h;
1568 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001569 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001570
1571 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001572 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001573 while (t != NULL) {
1574 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001575 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001576 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001577 }
1578
Eric Dumazet94767632010-09-15 20:25:34 +00001579 t = rtnl_dereference(ip6n->tnls_wc[0]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001580 unregister_netdevice_queue(t->dev, &list);
1581 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001582}
1583
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001584static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001585{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001586 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001587 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001588 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001589
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001590 ip6n->tnls[0] = ip6n->tnls_wc;
1591 ip6n->tnls[1] = ip6n->tnls_r_l;
1592
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001593 err = -ENOMEM;
1594 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1595 ip6_tnl_dev_setup);
1596
1597 if (!ip6n->fb_tnl_dev)
1598 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001599 dev_net_set(ip6n->fb_tnl_dev, net);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001600
Eric Dumazet8560f222010-09-28 03:23:34 +00001601 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1602 if (err < 0)
1603 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001604
1605 err = register_netdev(ip6n->fb_tnl_dev);
1606 if (err < 0)
1607 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001608
1609 t = netdev_priv(ip6n->fb_tnl_dev);
1610
1611 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001612 return 0;
1613
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001614err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001615 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001616err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001617 return err;
1618}
1619
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001620static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001621{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001622 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001623
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001624 rtnl_lock();
1625 ip6_tnl_destroy_tunnels(ip6n);
1626 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001627}
1628
1629static struct pernet_operations ip6_tnl_net_ops = {
1630 .init = ip6_tnl_init_net,
1631 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001632 .id = &ip6_tnl_net_id,
1633 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001634};
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636/**
1637 * ip6_tunnel_init - register protocol and reserve needed resources
1638 *
1639 * Return: 0 on success
1640 **/
1641
1642static int __init ip6_tunnel_init(void)
1643{
1644 int err;
1645
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001646 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001647 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001648 goto out_pernet;
1649
1650 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1651 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001652 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001653 goto out_ip4ip6;
1654 }
1655
1656 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1657 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001658 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001659 goto out_ip6ip6;
1660 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001661 err = rtnl_link_register(&ip6_link_ops);
1662 if (err < 0)
1663 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001666
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001667rtnl_link_failed:
1668 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001669out_ip6ip6:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001670 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001671out_ip4ip6:
1672 unregister_pernet_device(&ip6_tnl_net_ops);
1673out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 return err;
1675}
1676
1677/**
1678 * ip6_tunnel_cleanup - free resources and unregister protocol
1679 **/
1680
1681static void __exit ip6_tunnel_cleanup(void)
1682{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001683 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001684 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001685 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001686
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001687 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001688 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001690 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
1693module_init(ip6_tunnel_init);
1694module_exit(ip6_tunnel_cleanup);