blob: b876a2f81263d432039e4258f60c04ee90ca4c63 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080022#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/errno.h>
24#include <linux/types.h>
25#include <linux/sockios.h>
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090026#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/if.h>
28#include <linux/in.h>
29#include <linux/ip.h>
30#include <linux/if_tunnel.h>
31#include <linux/net.h>
32#include <linux/in6.h>
33#include <linux/netdevice.h>
34#include <linux/if_arp.h>
35#include <linux/icmpv6.h>
36#include <linux/init.h>
37#include <linux/route.h>
38#include <linux/rtnetlink.h>
39#include <linux/netfilter_ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/uaccess.h>
Arun Sharma60063492011-07-26 16:09:06 -070043#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090045#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <net/ip.h>
47#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <net/ip6_route.h>
49#include <net/addrconf.h>
50#include <net/ip6_tunnel.h>
51#include <net/xfrm.h>
52#include <net/dsfield.h>
53#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070054#include <net/net_namespace.h>
55#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090058MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059MODULE_LICENSE("GPL");
Tom Gundersend0e49722014-05-15 23:21:30 +020060MODULE_ALIAS_RTNL_LINK("ip6tnl");
stephen hemminger6dfbd872011-03-10 11:43:19 +000061MODULE_ALIAS_NETDEV("ip6tnl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#ifdef IP6_TNL_DEBUG
Harvey Harrison0dc47872008-03-05 20:47:47 -080064#define IP6_TNL_TRACE(x...) printk(KERN_DEBUG "%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#else
66#define IP6_TNL_TRACE(x...) do {;} while(0)
67#endif
68
69#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090070#define IPV6_TCLASS_SHIFT 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#define HASH_SIZE 32
73
Al Viroe69a4ad2006-11-14 20:56:00 -080074#define HASH(addr) ((__force u32)((addr)->s6_addr32[0] ^ (addr)->s6_addr32[1] ^ \
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090075 (addr)->s6_addr32[2] ^ (addr)->s6_addr32[3]) & \
76 (HASH_SIZE - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Eric Dumazet8560f222010-09-28 03:23:34 +000078static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090079static void ip6_tnl_dev_setup(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Eric Dumazetf99189b2009-11-17 10:42:49 +000081static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070082struct ip6_tnl_net {
Pavel Emelyanov15820e12008-04-16 01:23:02 -070083 /* the IPv6 tunnel fallback device */
84 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070085 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000086 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
87 struct ip6_tnl __rcu *tnls_wc[1];
88 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070089};
90
Eric Dumazet8560f222010-09-28 03:23:34 +000091/* often modified stats are per cpu, other are shared (netdev->stats) */
92struct pcpu_tstats {
93 unsigned long rx_packets;
94 unsigned long rx_bytes;
95 unsigned long tx_packets;
96 unsigned long tx_bytes;
Eric Dumazet8ce120f2011-11-04 23:19:28 +000097} __attribute__((aligned(4*sizeof(unsigned long))));
Eric Dumazet8560f222010-09-28 03:23:34 +000098
99static struct net_device_stats *ip6_get_stats(struct net_device *dev)
100{
101 struct pcpu_tstats sum = { 0 };
102 int i;
103
104 for_each_possible_cpu(i) {
105 const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
106
107 sum.rx_packets += tstats->rx_packets;
108 sum.rx_bytes += tstats->rx_bytes;
109 sum.tx_packets += tstats->tx_packets;
110 sum.tx_bytes += tstats->tx_bytes;
111 }
112 dev->stats.rx_packets = sum.rx_packets;
113 dev->stats.rx_bytes = sum.rx_bytes;
114 dev->stats.tx_packets = sum.tx_packets;
115 dev->stats.tx_bytes = sum.tx_bytes;
116 return &dev->stats;
117}
118
Eric Dumazet2922bc82009-10-23 06:34:34 +0000119/*
Eric Dumazet94767632010-09-15 20:25:34 +0000120 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +0000121 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123static inline struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
124{
125 struct dst_entry *dst = t->dst_cache;
126
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900127 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 dst->ops->check(dst, t->dst_cookie) == NULL) {
129 t->dst_cache = NULL;
130 dst_release(dst);
131 return NULL;
132 }
133
134 return dst;
135}
136
137static inline void ip6_tnl_dst_reset(struct ip6_tnl *t)
138{
139 dst_release(t->dst_cache);
140 t->dst_cache = NULL;
141}
142
143static inline void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
144{
145 struct rt6_info *rt = (struct rt6_info *) dst;
146 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
147 dst_release(t->dst_cache);
148 t->dst_cache = dst;
149}
150
151/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900152 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900153 * @remote: the address of the tunnel exit-point
154 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900156 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900158 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * else %NULL
160 **/
161
Eric Dumazet2922bc82009-10-23 06:34:34 +0000162#define for_each_ip6_tunnel_rcu(start) \
163 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000166ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Eric Dumazet94767632010-09-15 20:25:34 +0000168 unsigned int h0 = HASH(remote);
169 unsigned int h1 = HASH(local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700171 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Eric Dumazet2922bc82009-10-23 06:34:34 +0000173 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[h0 ^ h1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (ipv6_addr_equal(local, &t->parms.laddr) &&
175 ipv6_addr_equal(remote, &t->parms.raddr) &&
176 (t->dev->flags & IFF_UP))
177 return t;
178 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000179 t = rcu_dereference(ip6n->tnls_wc[0]);
180 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return t;
182
183 return NULL;
184}
185
186/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900187 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900188 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 *
190 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900191 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * &struct in6_addr entries laddr and raddr in @p.
193 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900194 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 **/
196
Eric Dumazet94767632010-09-15 20:25:34 +0000197static struct ip6_tnl __rcu **
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000198ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000200 const struct in6_addr *remote = &p->raddr;
201 const struct in6_addr *local = &p->laddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 unsigned h = 0;
203 int prio = 0;
204
205 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
206 prio = 1;
207 h = HASH(remote) ^ HASH(local);
208 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700209 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
212/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900213 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * @t: tunnel to be added
215 **/
216
217static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700218ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Eric Dumazet94767632010-09-15 20:25:34 +0000220 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Eric Dumazetcf778b02012-01-12 04:41:32 +0000222 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
223 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900227 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 * @t: tunnel to be removed
229 **/
230
231static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700232ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Eric Dumazet94767632010-09-15 20:25:34 +0000234 struct ip6_tnl __rcu **tp;
235 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Eric Dumazet94767632010-09-15 20:25:34 +0000237 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
238 (iter = rtnl_dereference(*tp)) != NULL;
239 tp = &iter->next) {
240 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000241 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
243 }
244 }
245}
246
Eric Dumazet8560f222010-09-28 03:23:34 +0000247static void ip6_dev_free(struct net_device *dev)
248{
249 free_percpu(dev->tstats);
250 free_netdev(dev);
251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253/**
254 * ip6_tnl_create() - create a new tunnel
255 * @p: tunnel parameters
256 * @pt: pointer to new tunnel
257 *
258 * Description:
259 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900260 *
261 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800262 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 **/
264
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700265static struct ip6_tnl *ip6_tnl_create(struct net *net, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 struct net_device *dev;
268 struct ip6_tnl *t;
269 char name[IFNAMSIZ];
270 int err;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700271 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800273 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800275 else
276 sprintf(name, "ip6tnl%%d");
277
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900278 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800280 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700282 dev_net_set(dev, net);
283
Patrick McHardy2941a482006-01-08 22:05:26 -0800284 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 t->parms = *p;
Eric Dumazet8560f222010-09-28 03:23:34 +0000286 err = ip6_tnl_dev_init(dev);
287 if (err < 0)
288 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800290 if ((err = register_netdevice(dev)) < 0)
291 goto failed_free;
292
Josh Boyer731abb92011-11-10 15:10:23 +0000293 strcpy(t->parms.name, dev->name);
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 dev_hold(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700296 ip6_tnl_link(ip6n, t);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800297 return t;
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800298
299failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000300 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800301failed:
302 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900306 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900307 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * @create: != 0 if allowed to create new tunnel if no match found
309 *
310 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900311 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * based on @parms. If this is unsuccessful, but @create is set a new
313 * tunnel device is created and registered for use.
314 *
315 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800316 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 **/
318
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700319static struct ip6_tnl *ip6_tnl_locate(struct net *net,
320 struct ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000322 const struct in6_addr *remote = &p->raddr;
323 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000324 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700326 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Eric Dumazet94767632010-09-15 20:25:34 +0000328 for (tp = ip6_tnl_bucket(ip6n, p);
329 (t = rtnl_dereference(*tp)) != NULL;
330 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800332 ipv6_addr_equal(remote, &t->parms.raddr))
333 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800336 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700337 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900341 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900343 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900345 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 **/
347
348static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900349ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Patrick McHardy2941a482006-01-08 22:05:26 -0800351 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700352 struct net *net = dev_net(dev);
353 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Eric Dumazet94767632010-09-15 20:25:34 +0000355 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000356 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000357 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700358 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 ip6_tnl_dst_reset(t);
360 dev_put(dev);
361}
362
363/**
364 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
365 * @skb: received socket buffer
366 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900367 * Return:
368 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * else index to encapsulation limit
370 **/
371
372static __u16
373parse_tlv_tnl_enc_lim(struct sk_buff *skb, __u8 * raw)
374{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000375 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 __u8 nexthdr = ipv6h->nexthdr;
377 __u16 off = sizeof (*ipv6h);
378
379 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
380 __u16 optlen = 0;
381 struct ipv6_opt_hdr *hdr;
382 if (raw + off + sizeof (*hdr) > skb->data &&
383 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
384 break;
385
386 hdr = (struct ipv6_opt_hdr *) (raw + off);
387 if (nexthdr == NEXTHDR_FRAGMENT) {
388 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
389 if (frag_hdr->frag_off)
390 break;
391 optlen = 8;
392 } else if (nexthdr == NEXTHDR_AUTH) {
393 optlen = (hdr->hdrlen + 2) << 2;
394 } else {
395 optlen = ipv6_optlen(hdr);
396 }
397 if (nexthdr == NEXTHDR_DEST) {
398 __u16 i = off + 2;
399 while (1) {
400 struct ipv6_tlv_tnl_enc_lim *tel;
401
402 /* No more room for encapsulation limit */
403 if (i + sizeof (*tel) > off + optlen)
404 break;
405
406 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
407 /* return index of option if found and valid */
408 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
409 tel->length == 1)
410 return i;
411 /* else jump to next option */
412 if (tel->type)
413 i += tel->length + 2;
414 else
415 i++;
416 }
417 }
418 nexthdr = hdr->nexthdr;
419 off += optlen;
420 }
421 return 0;
422}
423
424/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900425 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 *
427 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900428 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * to the specifications in RFC 2473.
430 **/
431
Herbert Xud2acc342006-03-28 01:12:13 -0800432static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900433ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700434 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000436 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 struct ip6_tnl *t;
438 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700439 u8 rel_type = ICMPV6_DEST_UNREACH;
440 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 __u32 rel_info = 0;
442 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800443 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900445 /* If the packet doesn't contain the original IPv6 header we are
446 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 processing of the error. */
448
Eric Dumazet2922bc82009-10-23 06:34:34 +0000449 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700450 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700451 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 goto out;
453
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900454 if (t->parms.proto != ipproto && t->parms.proto != 0)
455 goto out;
456
Herbert Xud2acc342006-03-28 01:12:13 -0800457 err = 0;
458
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900459 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 __u32 teli;
461 struct ipv6_tlv_tnl_enc_lim *tel;
462 __u32 mtu;
463 case ICMPV6_DEST_UNREACH:
464 if (net_ratelimit())
465 printk(KERN_WARNING
466 "%s: Path to destination invalid "
467 "or inactive!\n", t->parms.name);
468 rel_msg = 1;
469 break;
470 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900471 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (net_ratelimit())
473 printk(KERN_WARNING
474 "%s: Too small hop limit or "
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900475 "routing loop in tunnel!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 t->parms.name);
477 rel_msg = 1;
478 }
479 break;
480 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800481 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900482 if ((*code) == ICMPV6_HDR_FIELD)
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800483 teli = parse_tlv_tnl_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Al Viro704eae12007-07-26 17:33:29 +0100485 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
487 if (tel->encap_limit == 0) {
488 if (net_ratelimit())
489 printk(KERN_WARNING
490 "%s: Too small encapsulation "
491 "limit or routing loop in "
492 "tunnel!\n", t->parms.name);
493 rel_msg = 1;
494 }
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800495 } else if (net_ratelimit()) {
496 printk(KERN_WARNING
497 "%s: Recipient unable to parse tunneled "
498 "packet!\n ", t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500 break;
501 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100502 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (mtu < IPV6_MIN_MTU)
504 mtu = IPV6_MIN_MTU;
505 t->dev->mtu = mtu;
506
Al Virocc6cdac2006-02-18 16:02:18 -0500507 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 rel_type = ICMPV6_PKT_TOOBIG;
509 rel_code = 0;
510 rel_info = mtu;
511 rel_msg = 1;
512 }
513 break;
514 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900515
516 *type = rel_type;
517 *code = rel_code;
518 *info = rel_info;
519 *msg = rel_msg;
520
521out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000522 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900523 return err;
524}
525
526static int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900527ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700528 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900529{
530 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700531 u8 rel_type = type;
532 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100533 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900534 int err;
535 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000536 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900537 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -0700538 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900539
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900540 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
541 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900542 if (err < 0)
543 return err;
544
545 if (rel_msg == 0)
546 return 0;
547
548 switch (rel_type) {
549 case ICMPV6_DEST_UNREACH:
550 if (rel_code != ICMPV6_ADDR_UNREACH)
551 return 0;
552 rel_type = ICMP_DEST_UNREACH;
553 rel_code = ICMP_HOST_UNREACH;
554 break;
555 case ICMPV6_PKT_TOOBIG:
556 if (rel_code != 0)
557 return 0;
558 rel_type = ICMP_DEST_UNREACH;
559 rel_code = ICMP_FRAG_NEEDED;
560 break;
561 default:
562 return 0;
563 }
564
565 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
566 return 0;
567
568 skb2 = skb_clone(skb, GFP_ATOMIC);
569 if (!skb2)
570 return 0;
571
Eric Dumazetadf30902009-06-02 05:19:30 +0000572 skb_dst_drop(skb2);
573
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900574 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700575 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700576 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900577
578 /* Try to guess incoming interface */
David S. Miller31e45432011-05-03 20:25:42 -0700579 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500580 eiph->saddr, 0,
581 0, 0,
582 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800583 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900584 goto out;
585
Changli Gaod8d1f302010-06-10 23:31:35 -0700586 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900587
588 /* route "incoming" packet */
589 if (rt->rt_flags & RTCF_LOCAL) {
590 ip_rt_put(rt);
591 rt = NULL;
David S. Miller31e45432011-05-03 20:25:42 -0700592 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500593 eiph->daddr, eiph->saddr,
594 0, 0,
595 IPPROTO_IPIP,
596 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800597 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700598 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800599 if (!IS_ERR(rt))
600 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900601 goto out;
602 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800603 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900604 } else {
605 ip_rt_put(rt);
606 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
607 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000608 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900609 goto out;
610 }
611
612 /* change mtu on this route */
613 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000614 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900615 goto out;
616
Eric Dumazetadf30902009-06-02 05:19:30 +0000617 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), rel_info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900618 }
619
Al Viro704eae12007-07-26 17:33:29 +0100620 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900621
622out:
623 kfree_skb(skb2);
624 return 0;
625}
626
627static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900628ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700629 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900630{
631 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700632 u8 rel_type = type;
633 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100634 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900635 int err;
636
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900637 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
638 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900639 if (err < 0)
640 return err;
641
642 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 struct rt6_info *rt;
644 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Eric Dumazetadf30902009-06-02 05:19:30 +0000649 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700651 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700654 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
655 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
David S. Millerd1918542011-12-28 20:19:20 -0500657 if (rt && rt->dst.dev)
658 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000660 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -0700663 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 kfree_skb(skb2);
666 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900667
668 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000671static void ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
672 const struct ipv6hdr *ipv6h,
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900673 struct sk_buff *skb)
674{
675 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
676
677 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700678 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900679
680 if (INET_ECN_is_ce(dsfield))
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700681 IP_ECN_set_ce(ip_hdr(skb));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900682}
683
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000684static void ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
685 const struct ipv6hdr *ipv6h,
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900686 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900688 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b2007-11-13 21:40:13 -0800689 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900691 if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700692 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900694
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100695/* called with rcu_read_lock() */
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800696static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t)
697{
698 struct ip6_tnl_parm *p = &t->parms;
699 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700700 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800701
702 if (p->flags & IP6_TNL_F_CAP_RCV) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900703 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800704
705 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100706 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800707
708 if ((ipv6_addr_is_multicast(&p->laddr) ||
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700709 likely(ipv6_chk_addr(net, &p->laddr, ldev, 0))) &&
710 likely(!ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800711 ret = 1;
712
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800713 }
714 return ret;
715}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900718 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900720 * @protocol: ethernet protocol ID
721 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 *
723 * Return: 0
724 **/
725
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900726static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900727 __u8 ipproto,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000728 void (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
729 const struct ipv6hdr *ipv6h,
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900730 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000733 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Eric Dumazet2922bc82009-10-23 06:34:34 +0000735 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700737 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700738 &ipv6h->daddr)) != NULL) {
Eric Dumazet8560f222010-09-28 03:23:34 +0000739 struct pcpu_tstats *tstats;
740
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900741 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000742 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900743 goto discard;
744 }
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000747 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700748 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800751 if (!ip6_tnl_rcv_ctl(t)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700752 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000753 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 goto discard;
755 }
756 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700757 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700758 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900759 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 skb->pkt_type = PACKET_HOST;
761 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700762
Eric Dumazet8560f222010-09-28 03:23:34 +0000763 tstats = this_cpu_ptr(t->dev->tstats);
764 tstats->rx_packets++;
765 tstats->rx_bytes += skb->len;
766
767 __skb_tunnel_rx(skb, t->dev);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900768
769 dscp_ecn_decapsulate(t, ipv6h, skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000770
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000771 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000772
Eric Dumazet2922bc82009-10-23 06:34:34 +0000773 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 0;
775 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000776 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700778
779discard:
780 kfree_skb(skb);
781 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900784static int ip4ip6_rcv(struct sk_buff *skb)
785{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900786 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
787 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900788}
789
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900790static int ip6ip6_rcv(struct sk_buff *skb)
791{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900792 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
793 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900794}
795
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800796struct ipv6_tel_txoption {
797 struct ipv6_txoptions ops;
798 __u8 dst_opt[8];
799};
800
801static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800803 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800805 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
806 opt->dst_opt[3] = 1;
807 opt->dst_opt[4] = encap_limit;
808 opt->dst_opt[5] = IPV6_TLV_PADN;
809 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800811 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
812 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
815/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900816 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900818 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 *
820 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900821 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 * doesn't match source of incoming packet.
823 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900824 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 * 1 if conflict,
826 * 0 else
827 **/
828
829static inline int
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000830ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
833}
834
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800835static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
836{
837 struct ip6_tnl_parm *p = &t->parms;
838 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700839 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800840
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900841 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800842 struct net_device *ldev = NULL;
843
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100844 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800845 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100846 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800847
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700848 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800849 printk(KERN_WARNING
850 "%s xmit: Local address not yet configured!\n",
851 p->name);
852 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700853 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800854 printk(KERN_WARNING
855 "%s xmit: Routing loop! "
856 "Remote address found on this node!\n",
857 p->name);
858 else
859 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100860 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800861 }
862 return ret;
863}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900865 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900867 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900868 * @dsfield: dscp code for outer header
869 * @fl: flow of tunneled packet
870 * @encap_limit: encapsulation limit
871 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 *
873 * Description:
874 * Build new header and do some sanity checks on the packet before sending
875 * it.
876 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900877 * Return:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900878 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900879 * -1 fail
880 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 **/
882
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900883static int ip6_tnl_xmit2(struct sk_buff *skb,
884 struct net_device *dev,
885 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500886 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900887 int encap_limit,
888 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800890 struct net *net = dev_net(dev);
Patrick McHardy2941a482006-01-08 22:05:26 -0800891 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700892 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700893 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800894 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400895 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 struct net_device *tdev;
897 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700898 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900900 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 int pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400903 if (!fl6->flowi6_mark)
904 dst = ip6_tnl_dst_check(t);
Eric Dumazet89b02122011-07-28 04:32:25 +0000905 if (!dst) {
906 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Eric Dumazet89b02122011-07-28 04:32:25 +0000908 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700909 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000910 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
911 if (IS_ERR(ndst)) {
912 err = PTR_ERR(ndst);
913 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800914 goto tx_err_link_failure;
915 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000916 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -0700917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 tdev = dst->dev;
920
921 if (tdev == dev) {
922 stats->collisions++;
923 if (net_ratelimit())
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900924 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 "%s: Local routing loop detected!\n",
926 t->parms.name);
927 goto tx_err_dst_release;
928 }
929 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800930 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 max_headroom += 8;
932 mtu -= 8;
933 }
934 if (mtu < IPV6_MIN_MTU)
935 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000936 if (skb_dst(skb))
937 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900939 *pmtu = mtu;
940 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 goto tx_err_dst_release;
942 }
943
944 /*
945 * Okay, now see if we can stuff it in the buffer as-is.
946 */
947 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900948
Patrick McHardycfbba492007-07-09 15:33:40 -0700949 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
950 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
954 goto tx_err_dst_release;
955
956 if (skb->sk)
957 skb_set_owner_w(new_skb, skb->sk);
958 kfree_skb(skb);
959 skb = new_skb;
960 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000961 skb_dst_drop(skb);
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400962 if (fl6->flowi6_mark) {
963 skb_dst_set(skb, dst);
964 ndst = NULL;
965 } else {
966 skb_dst_set_noref(skb, dst);
967 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700968 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
David S. Miller4c9483b2011-03-12 16:22:43 -0500970 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800971 if (encap_limit >= 0) {
972 init_tel_txopt(&opt, encap_limit);
973 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
974 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700975 skb_push(skb, sizeof(struct ipv6hdr));
976 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700977 ipv6h = ipv6_hdr(skb);
David S. Miller4c9483b2011-03-12 16:22:43 -0500978 *(__be32*)ipv6h = fl6->flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 dsfield = INET_ECN_encapsulate(0, dsfield);
980 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 ipv6h->hop_limit = t->parms.hop_limit;
982 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000983 ipv6h->saddr = fl6->saddr;
984 ipv6h->daddr = fl6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 nf_reset(skb);
986 pkt_len = skb->len;
Herbert Xuef76bc22008-01-11 19:15:08 -0800987 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200989 if (net_xmit_eval(err) == 0) {
Eric Dumazet8560f222010-09-28 03:23:34 +0000990 struct pcpu_tstats *tstats = this_cpu_ptr(t->dev->tstats);
991
992 tstats->tx_bytes += pkt_len;
993 tstats->tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 } else {
995 stats->tx_errors++;
996 stats->tx_aborted_errors++;
997 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000998 if (ndst)
999 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return 0;
1001tx_err_link_failure:
1002 stats->tx_carrier_errors++;
1003 dst_link_failure(skb);
1004tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001005 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001006 return err;
1007}
1008
1009static inline int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001010ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1011{
1012 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001013 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001014 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001015 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001016 __u8 dsfield;
1017 __u32 mtu;
1018 int err;
1019
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001020 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
1021 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001022 return -1;
1023
1024 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1025 encap_limit = t->parms.encap_limit;
1026
David S. Miller4c9483b2011-03-12 16:22:43 -05001027 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1028 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001029
1030 dsfield = ipv4_get_dsfield(iph);
1031
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001032 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001033 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001034 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001035 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1036 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001037
David S. Miller4c9483b2011-03-12 16:22:43 -05001038 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001039 if (err != 0) {
1040 /* XXX: send ICMP error even if DF is not set. */
1041 if (err == -EMSGSIZE)
1042 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1043 htonl(mtu));
1044 return -1;
1045 }
1046
1047 return 0;
1048}
1049
1050static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001051ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1052{
1053 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001054 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001055 int encap_limit = -1;
1056 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001057 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001058 __u8 dsfield;
1059 __u32 mtu;
1060 int err;
1061
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001062 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1063 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001064 return -1;
1065
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001066 offset = parse_tlv_tnl_enc_lim(skb, skb_network_header(skb));
1067 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001068 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001069 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001070 if (tel->encap_limit == 0) {
1071 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001072 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001073 return -1;
1074 }
1075 encap_limit = tel->encap_limit - 1;
1076 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1077 encap_limit = t->parms.encap_limit;
1078
David S. Miller4c9483b2011-03-12 16:22:43 -05001079 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1080 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001081
1082 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001083 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001084 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001085 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
David S. Miller4c9483b2011-03-12 16:22:43 -05001086 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001087 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1088 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001089
David S. Miller4c9483b2011-03-12 16:22:43 -05001090 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001091 if (err != 0) {
1092 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001093 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001094 return -1;
1095 }
1096
1097 return 0;
1098}
1099
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001100static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001101ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1102{
1103 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001104 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001105 int ret;
1106
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001107 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001108 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001109 ret = ip4ip6_tnl_xmit(skb, dev);
1110 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001111 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001112 ret = ip6ip6_tnl_xmit(skb, dev);
1113 break;
1114 default:
1115 goto tx_err;
1116 }
1117
1118 if (ret < 0)
1119 goto tx_err;
1120
Patrick McHardy6ed10652009-06-23 06:03:08 +00001121 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123tx_err:
1124 stats->tx_errors++;
1125 stats->tx_dropped++;
1126 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001127 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
1130static void ip6_tnl_set_cap(struct ip6_tnl *t)
1131{
1132 struct ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001133 int ltype = ipv6_addr_type(&p->laddr);
1134 int rtype = ipv6_addr_type(&p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
1136 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV);
1137
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001138 if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1139 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1140 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001141 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001142 if (ltype&IPV6_ADDR_UNICAST)
1143 p->flags |= IP6_TNL_F_CAP_XMIT;
1144 if (rtype&IPV6_ADDR_UNICAST)
1145 p->flags |= IP6_TNL_F_CAP_RCV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147}
1148
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001149static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
1151 struct net_device *dev = t->dev;
1152 struct ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001153 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001155 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1156 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001159 fl6->saddr = p->laddr;
1160 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001161 fl6->flowi6_oif = p->link;
1162 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001165 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001167 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 ip6_tnl_set_cap(t);
1170
1171 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1172 dev->flags |= IFF_POINTOPOINT;
1173 else
1174 dev->flags &= ~IFF_POINTOPOINT;
1175
1176 dev->iflink = p->link;
1177
1178 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001179 int strict = (ipv6_addr_type(&p->raddr) &
1180 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1181
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001182 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1183 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001184 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 if (rt == NULL)
1187 return;
1188
David S. Millerd1918542011-12-28 20:19:20 -05001189 if (rt->dst.dev) {
1190 dev->hard_header_len = rt->dst.dev->hard_header_len +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 sizeof (struct ipv6hdr);
1192
David S. Millerd1918542011-12-28 20:19:20 -05001193 dev->mtu = rt->dst.dev->mtu - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001194 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1195 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197 if (dev->mtu < IPV6_MIN_MTU)
1198 dev->mtu = IPV6_MIN_MTU;
1199 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001200 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202}
1203
1204/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001205 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 * @t: tunnel to be changed
1207 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 *
1209 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001210 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 **/
1212
1213static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001214ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001216 t->parms.laddr = p->laddr;
1217 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 t->parms.flags = p->flags;
1219 t->parms.hop_limit = p->hop_limit;
1220 t->parms.encap_limit = p->encap_limit;
1221 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001222 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001223 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001224 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001225 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return 0;
1227}
1228
1229/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001230 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 * @dev: virtual device associated with tunnel
1232 * @ifr: parameters passed from userspace
1233 * @cmd: command to be performed
1234 *
1235 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001236 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001237 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 *
1239 * The possible commands are the following:
1240 * %SIOCGETTUNNEL: get tunnel parameters for device
1241 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1242 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1243 * %SIOCDELTUNNEL: delete tunnel
1244 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001245 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * initialization, can be used for creating other tunnel devices.
1247 *
1248 * Return:
1249 * 0 on success,
1250 * %-EFAULT if unable to copy data to or from userspace,
1251 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1252 * %-EINVAL if passed tunnel parameters are invalid,
1253 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1254 * %-ENODEV if attempting to change or delete a nonexisting device
1255 **/
1256
1257static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001258ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
1260 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 struct ip6_tnl_parm p;
1262 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001263 struct net *net = dev_net(dev);
1264 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 switch (cmd) {
1267 case SIOCGETTUNNEL:
Pavel Emelyanov15820e12008-04-16 01:23:02 -07001268 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001269 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 err = -EFAULT;
1271 break;
1272 }
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001273 t = ip6_tnl_locate(net, &p, 0);
Ville Nuorvala567131a2006-11-24 17:05:41 -08001274 }
1275 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001276 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 memcpy(&p, &t->parms, sizeof (p));
1278 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1279 err = -EFAULT;
1280 }
1281 break;
1282 case SIOCADDTUNNEL:
1283 case SIOCCHGTUNNEL:
1284 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (!capable(CAP_NET_ADMIN))
1286 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001287 err = -EFAULT;
1288 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001290 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001291 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1292 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 break;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001294 t = ip6_tnl_locate(net, &p, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e12008-04-16 01:23:02 -07001295 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001296 if (t != NULL) {
1297 if (t->dev != dev) {
1298 err = -EEXIST;
1299 break;
1300 }
1301 } else
1302 t = netdev_priv(dev);
1303
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001304 ip6_tnl_unlink(ip6n, t);
Pavel Emelyanov74b0b852010-10-27 05:43:53 +00001305 synchronize_net();
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001306 err = ip6_tnl_change(t, &p);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001307 ip6_tnl_link(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 netdev_state_change(dev);
1309 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001310 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 err = 0;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001312 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p)))
1313 err = -EFAULT;
1314
1315 } else
1316 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 break;
1318 case SIOCDELTUNNEL:
1319 err = -EPERM;
1320 if (!capable(CAP_NET_ADMIN))
1321 break;
1322
Pavel Emelyanov15820e12008-04-16 01:23:02 -07001323 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001324 err = -EFAULT;
1325 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001327 err = -ENOENT;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001328 if ((t = ip6_tnl_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001330 err = -EPERM;
Pavel Emelyanov15820e12008-04-16 01:23:02 -07001331 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001333 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001335 err = 0;
1336 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 break;
1338 default:
1339 err = -EINVAL;
1340 }
1341 return err;
1342}
1343
1344/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001345 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 * @dev: virtual device associated with tunnel
1347 * @new_mtu: the new mtu
1348 *
1349 * Return:
1350 * 0 on success,
1351 * %-EINVAL if mtu too small
1352 **/
1353
1354static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001355ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 if (new_mtu < IPV6_MIN_MTU) {
1358 return -EINVAL;
1359 }
1360 dev->mtu = new_mtu;
1361 return 0;
1362}
1363
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001364
1365static const struct net_device_ops ip6_tnl_netdev_ops = {
Eric Dumazet8560f222010-09-28 03:23:34 +00001366 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001367 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001368 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001369 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001370 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001371};
1372
Eric Dumazet8560f222010-09-28 03:23:34 +00001373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001375 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 * @dev: virtual device associated with tunnel
1377 *
1378 * Description:
1379 * Initialize function pointers and device parameters
1380 **/
1381
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001382static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
Anders Franzen381601e2010-11-24 05:47:18 +00001384 struct ip6_tnl *t;
1385
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001386 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001387 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 dev->type = ARPHRD_TUNNEL6;
1390 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1391 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001392 t = netdev_priv(dev);
1393 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1394 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 dev->flags |= IFF_NOARP;
1396 dev->addr_len = sizeof(struct in6_addr);
Pavel Emelyanov554eb272008-04-16 01:24:13 -07001397 dev->features |= NETIF_F_NETNS_LOCAL;
Anders Franzen7e223de2010-10-19 03:50:47 +00001398 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
1400
1401
1402/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001403 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 * @dev: virtual device associated with tunnel
1405 **/
1406
Eric Dumazet8560f222010-09-28 03:23:34 +00001407static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001408ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
Patrick McHardy2941a482006-01-08 22:05:26 -08001410 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 t->dev = dev;
Eric Dumazet8560f222010-09-28 03:23:34 +00001413 dev->tstats = alloc_percpu(struct pcpu_tstats);
1414 if (!dev->tstats)
1415 return -ENOMEM;
1416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
1418
1419/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001420 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 * @dev: virtual device associated with tunnel
1422 **/
1423
Eric Dumazet8560f222010-09-28 03:23:34 +00001424static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
Patrick McHardy2941a482006-01-08 22:05:26 -08001426 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001427 int err = ip6_tnl_dev_init_gen(dev);
1428
1429 if (err)
1430 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001431 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
1435/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001436 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 * @dev: fallback device
1438 *
1439 * Return: 0
1440 **/
1441
Eric Dumazet8560f222010-09-28 03:23:34 +00001442static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Patrick McHardy2941a482006-01-08 22:05:26 -08001444 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001445 struct net *net = dev_net(dev);
1446 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001447 int err = ip6_tnl_dev_init_gen(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001448
Eric Dumazet8560f222010-09-28 03:23:34 +00001449 if (err)
1450 return err;
1451
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001452 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 dev_hold(dev);
Eric Dumazetcf778b02012-01-12 04:41:32 +00001454 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001458static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001459 .handler = ip4ip6_rcv,
1460 .err_handler = ip4ip6_err,
1461 .priority = 1,
1462};
1463
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001464static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001465 .handler = ip6ip6_rcv,
1466 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001467 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468};
1469
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001470static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001471{
1472 int h;
1473 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001474 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001475
1476 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001477 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001478 while (t != NULL) {
1479 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001480 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001481 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001482 }
1483
Eric Dumazet94767632010-09-15 20:25:34 +00001484 t = rtnl_dereference(ip6n->tnls_wc[0]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001485 unregister_netdevice_queue(t->dev, &list);
1486 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001487}
1488
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001489static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001490{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001491 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001492 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001493 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001494
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001495 ip6n->tnls[0] = ip6n->tnls_wc;
1496 ip6n->tnls[1] = ip6n->tnls_r_l;
1497
Pavel Emelyanov15820e12008-04-16 01:23:02 -07001498 err = -ENOMEM;
1499 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1500 ip6_tnl_dev_setup);
1501
1502 if (!ip6n->fb_tnl_dev)
1503 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001504 dev_net_set(ip6n->fb_tnl_dev, net);
Pavel Emelyanov15820e12008-04-16 01:23:02 -07001505
Eric Dumazet8560f222010-09-28 03:23:34 +00001506 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1507 if (err < 0)
1508 goto err_register;
Pavel Emelyanov15820e12008-04-16 01:23:02 -07001509
1510 err = register_netdev(ip6n->fb_tnl_dev);
1511 if (err < 0)
1512 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001513
1514 t = netdev_priv(ip6n->fb_tnl_dev);
1515
1516 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001517 return 0;
1518
Pavel Emelyanov15820e12008-04-16 01:23:02 -07001519err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001520 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e12008-04-16 01:23:02 -07001521err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001522 return err;
1523}
1524
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001525static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001526{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001527 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001528
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001529 rtnl_lock();
1530 ip6_tnl_destroy_tunnels(ip6n);
1531 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001532}
1533
1534static struct pernet_operations ip6_tnl_net_ops = {
1535 .init = ip6_tnl_init_net,
1536 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001537 .id = &ip6_tnl_net_id,
1538 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001539};
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541/**
1542 * ip6_tunnel_init - register protocol and reserve needed resources
1543 *
1544 * Return: 0 on success
1545 **/
1546
1547static int __init ip6_tunnel_init(void)
1548{
1549 int err;
1550
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001551 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001552 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001553 goto out_pernet;
1554
1555 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1556 if (err < 0) {
1557 printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n");
1558 goto out_ip4ip6;
1559 }
1560
1561 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1562 if (err < 0) {
1563 printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n");
1564 goto out_ip6ip6;
1565 }
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001568
1569out_ip6ip6:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001570 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001571out_ip4ip6:
1572 unregister_pernet_device(&ip6_tnl_net_ops);
1573out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return err;
1575}
1576
1577/**
1578 * ip6_tunnel_cleanup - free resources and unregister protocol
1579 **/
1580
1581static void __exit ip6_tunnel_cleanup(void)
1582{
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001583 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001584 printk(KERN_INFO "ip6_tunnel close: can't deregister ip4ip6\n");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001585
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001586 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001587 printk(KERN_INFO "ip6_tunnel close: can't deregister ip6ip6\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001589 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
1592module_init(ip6_tunnel_init);
1593module_exit(ip6_tunnel_cleanup);