| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 2 |  *	IPv6 tunneling device | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 |  *	Linux INET6 implementation | 
 | 4 |  * | 
 | 5 |  *	Authors: | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6 |  *	Ville Nuorvala		<vnuorval@tcs.hut.fi> | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 7 |  *	Yasuyuki Kozakai	<kozakai@linux-ipv6.org> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 |  *      Based on: | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 10 |  *      linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 |  * | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/module.h> | 
| Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 22 | #include <linux/capability.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/errno.h> | 
 | 24 | #include <linux/types.h> | 
 | 25 | #include <linux/sockios.h> | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 26 | #include <linux/icmp.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #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> | 
 | 40 |  | 
 | 41 | #include <asm/uaccess.h> | 
 | 42 | #include <asm/atomic.h> | 
 | 43 |  | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 44 | #include <net/icmp.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <net/ip.h> | 
 | 46 | #include <net/ipv6.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <net/ip6_route.h> | 
 | 48 | #include <net/addrconf.h> | 
 | 49 | #include <net/ip6_tunnel.h> | 
 | 50 | #include <net/xfrm.h> | 
 | 51 | #include <net/dsfield.h> | 
 | 52 | #include <net/inet_ecn.h> | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 53 | #include <net/net_namespace.h> | 
 | 54 | #include <net/netns/generic.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 |  | 
 | 56 | MODULE_AUTHOR("Ville Nuorvala"); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 57 | MODULE_DESCRIPTION("IPv6 tunneling device"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | MODULE_LICENSE("GPL"); | 
 | 59 |  | 
 | 60 | #define IPV6_TLV_TEL_DST_SIZE 8 | 
 | 61 |  | 
 | 62 | #ifdef IP6_TNL_DEBUG | 
| Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 63 | #define IP6_TNL_TRACE(x...) printk(KERN_DEBUG "%s:" x "\n", __func__) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #else | 
 | 65 | #define IP6_TNL_TRACE(x...) do {;} while(0) | 
 | 66 | #endif | 
 | 67 |  | 
 | 68 | #define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK) | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 69 | #define IPV6_TCLASS_SHIFT 20 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
 | 71 | #define HASH_SIZE  32 | 
 | 72 |  | 
| Al Viro | e69a4adc | 2006-11-14 20:56:00 -0800 | [diff] [blame] | 73 | #define HASH(addr) ((__force u32)((addr)->s6_addr32[0] ^ (addr)->s6_addr32[1] ^ \ | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 74 | 		     (addr)->s6_addr32[2] ^ (addr)->s6_addr32[3]) & \ | 
 | 75 | 		    (HASH_SIZE - 1)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 |  | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 77 | static int ip6_fb_tnl_dev_init(struct net_device *dev); | 
 | 78 | static int ip6_tnl_dev_init(struct net_device *dev); | 
 | 79 | static void ip6_tnl_dev_setup(struct net_device *dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 |  | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 81 | static int ip6_tnl_net_id; | 
 | 82 | struct ip6_tnl_net { | 
| Pavel Emelyanov | 15820e129 | 2008-04-16 01:23:02 -0700 | [diff] [blame] | 83 | 	/* the IPv6 tunnel fallback device */ | 
 | 84 | 	struct net_device *fb_tnl_dev; | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 85 | 	/* lists for storing tunnels in use */ | 
 | 86 | 	struct ip6_tnl *tnls_r_l[HASH_SIZE]; | 
 | 87 | 	struct ip6_tnl *tnls_wc[1]; | 
 | 88 | 	struct ip6_tnl **tnls[2]; | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 89 | }; | 
 | 90 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | /* lock for the tunnel lists */ | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 92 | static DEFINE_RWLOCK(ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 |  | 
 | 94 | static inline struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t) | 
 | 95 | { | 
 | 96 | 	struct dst_entry *dst = t->dst_cache; | 
 | 97 |  | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 98 | 	if (dst && dst->obsolete && | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | 	    dst->ops->check(dst, t->dst_cookie) == NULL) { | 
 | 100 | 		t->dst_cache = NULL; | 
 | 101 | 		dst_release(dst); | 
 | 102 | 		return NULL; | 
 | 103 | 	} | 
 | 104 |  | 
 | 105 | 	return dst; | 
 | 106 | } | 
 | 107 |  | 
 | 108 | static inline void ip6_tnl_dst_reset(struct ip6_tnl *t) | 
 | 109 | { | 
 | 110 | 	dst_release(t->dst_cache); | 
 | 111 | 	t->dst_cache = NULL; | 
 | 112 | } | 
 | 113 |  | 
 | 114 | static inline void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst) | 
 | 115 | { | 
 | 116 | 	struct rt6_info *rt = (struct rt6_info *) dst; | 
 | 117 | 	t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0; | 
 | 118 | 	dst_release(t->dst_cache); | 
 | 119 | 	t->dst_cache = dst; | 
 | 120 | } | 
 | 121 |  | 
 | 122 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 123 |  * ip6_tnl_lookup - fetch tunnel matching the end-point addresses | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 124 |  *   @remote: the address of the tunnel exit-point | 
 | 125 |  *   @local: the address of the tunnel entry-point | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 |  * | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 127 |  * Return: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 |  *   tunnel matching given end-points if found, | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 129 |  *   else fallback tunnel if its device is up, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  *   else %NULL | 
 | 131 |  **/ | 
 | 132 |  | 
 | 133 | static struct ip6_tnl * | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 134 | ip6_tnl_lookup(struct net *net, struct in6_addr *remote, struct in6_addr *local) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | { | 
 | 136 | 	unsigned h0 = HASH(remote); | 
 | 137 | 	unsigned h1 = HASH(local); | 
 | 138 | 	struct ip6_tnl *t; | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 139 | 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 |  | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 141 | 	for (t = ip6n->tnls_r_l[h0 ^ h1]; t; t = t->next) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | 		if (ipv6_addr_equal(local, &t->parms.laddr) && | 
 | 143 | 		    ipv6_addr_equal(remote, &t->parms.raddr) && | 
 | 144 | 		    (t->dev->flags & IFF_UP)) | 
 | 145 | 			return t; | 
 | 146 | 	} | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 147 | 	if ((t = ip6n->tnls_wc[0]) != NULL && (t->dev->flags & IFF_UP)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | 		return t; | 
 | 149 |  | 
 | 150 | 	return NULL; | 
 | 151 | } | 
 | 152 |  | 
 | 153 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 154 |  * ip6_tnl_bucket - get head of list matching given tunnel parameters | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 155 |  *   @p: parameters containing tunnel end-points | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 |  * | 
 | 157 |  * Description: | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 158 |  *   ip6_tnl_bucket() returns the head of the list matching the | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 |  *   &struct in6_addr entries laddr and raddr in @p. | 
 | 160 |  * | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 161 |  * Return: head of IPv6 tunnel list | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 |  **/ | 
 | 163 |  | 
 | 164 | static struct ip6_tnl ** | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 165 | ip6_tnl_bucket(struct ip6_tnl_net *ip6n, struct ip6_tnl_parm *p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { | 
 | 167 | 	struct in6_addr *remote = &p->raddr; | 
 | 168 | 	struct in6_addr *local = &p->laddr; | 
 | 169 | 	unsigned h = 0; | 
 | 170 | 	int prio = 0; | 
 | 171 |  | 
 | 172 | 	if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) { | 
 | 173 | 		prio = 1; | 
 | 174 | 		h = HASH(remote) ^ HASH(local); | 
 | 175 | 	} | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 176 | 	return &ip6n->tnls[prio][h]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } | 
 | 178 |  | 
 | 179 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 180 |  * ip6_tnl_link - add tunnel to hash table | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 |  *   @t: tunnel to be added | 
 | 182 |  **/ | 
 | 183 |  | 
 | 184 | static void | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 185 | ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | { | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 187 | 	struct ip6_tnl **tp = ip6_tnl_bucket(ip6n, &t->parms); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 |  | 
 | 189 | 	t->next = *tp; | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 190 | 	write_lock_bh(&ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | 	*tp = t; | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 192 | 	write_unlock_bh(&ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | } | 
 | 194 |  | 
 | 195 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 196 |  * ip6_tnl_unlink - remove tunnel from hash table | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 |  *   @t: tunnel to be removed | 
 | 198 |  **/ | 
 | 199 |  | 
 | 200 | static void | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 201 | ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | { | 
 | 203 | 	struct ip6_tnl **tp; | 
 | 204 |  | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 205 | 	for (tp = ip6_tnl_bucket(ip6n, &t->parms); *tp; tp = &(*tp)->next) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | 		if (t == *tp) { | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 207 | 			write_lock_bh(&ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | 			*tp = t->next; | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 209 | 			write_unlock_bh(&ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | 			break; | 
 | 211 | 		} | 
 | 212 | 	} | 
 | 213 | } | 
 | 214 |  | 
 | 215 | /** | 
 | 216 |  * ip6_tnl_create() - create a new tunnel | 
 | 217 |  *   @p: tunnel parameters | 
 | 218 |  *   @pt: pointer to new tunnel | 
 | 219 |  * | 
 | 220 |  * Description: | 
 | 221 |  *   Create tunnel matching given parameters. | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 222 |  * | 
 | 223 |  * Return: | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 224 |  *   created tunnel or NULL | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 |  **/ | 
 | 226 |  | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 227 | static struct ip6_tnl *ip6_tnl_create(struct net *net, struct ip6_tnl_parm *p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { | 
 | 229 | 	struct net_device *dev; | 
 | 230 | 	struct ip6_tnl *t; | 
 | 231 | 	char name[IFNAMSIZ]; | 
 | 232 | 	int err; | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 233 | 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 |  | 
| Pavel Emelyanov | 34cc7ba | 2008-02-23 20:19:20 -0800 | [diff] [blame] | 235 | 	if (p->name[0]) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | 		strlcpy(name, p->name, IFNAMSIZ); | 
| Pavel Emelyanov | 34cc7ba | 2008-02-23 20:19:20 -0800 | [diff] [blame] | 237 | 	else | 
 | 238 | 		sprintf(name, "ip6tnl%%d"); | 
 | 239 |  | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 240 | 	dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | 	if (dev == NULL) | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 242 | 		goto failed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 |  | 
| Pavel Emelyanov | 554eb27 | 2008-04-16 01:24:13 -0700 | [diff] [blame] | 244 | 	dev_net_set(dev, net); | 
 | 245 |  | 
| Pavel Emelyanov | b37d428b | 2008-02-26 23:51:04 -0800 | [diff] [blame] | 246 | 	if (strchr(name, '%')) { | 
 | 247 | 		if (dev_alloc_name(dev, name) < 0) | 
 | 248 | 			goto failed_free; | 
 | 249 | 	} | 
 | 250 |  | 
| Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 251 | 	t = netdev_priv(dev); | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 252 | 	dev->init = ip6_tnl_dev_init; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | 	t->parms = *p; | 
 | 254 |  | 
| Pavel Emelyanov | b37d428b | 2008-02-26 23:51:04 -0800 | [diff] [blame] | 255 | 	if ((err = register_netdevice(dev)) < 0) | 
 | 256 | 		goto failed_free; | 
 | 257 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | 	dev_hold(dev); | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 259 | 	ip6_tnl_link(ip6n, t); | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 260 | 	return t; | 
| Pavel Emelyanov | b37d428b | 2008-02-26 23:51:04 -0800 | [diff] [blame] | 261 |  | 
 | 262 | failed_free: | 
 | 263 | 	free_netdev(dev); | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 264 | failed: | 
 | 265 | 	return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } | 
 | 267 |  | 
 | 268 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 269 |  * ip6_tnl_locate - find or create tunnel matching given parameters | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 270 |  *   @p: tunnel parameters | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 |  *   @create: != 0 if allowed to create new tunnel if no match found | 
 | 272 |  * | 
 | 273 |  * Description: | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 274 |  *   ip6_tnl_locate() first tries to locate an existing tunnel | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 |  *   based on @parms. If this is unsuccessful, but @create is set a new | 
 | 276 |  *   tunnel device is created and registered for use. | 
 | 277 |  * | 
 | 278 |  * Return: | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 279 |  *   matching tunnel or NULL | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 |  **/ | 
 | 281 |  | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 282 | static struct ip6_tnl *ip6_tnl_locate(struct net *net, | 
 | 283 | 		struct ip6_tnl_parm *p, int create) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | { | 
 | 285 | 	struct in6_addr *remote = &p->raddr; | 
 | 286 | 	struct in6_addr *local = &p->laddr; | 
 | 287 | 	struct ip6_tnl *t; | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 288 | 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 |  | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 290 | 	for (t = *ip6_tnl_bucket(ip6n, p); t; t = t->next) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | 		if (ipv6_addr_equal(local, &t->parms.laddr) && | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 292 | 		    ipv6_addr_equal(remote, &t->parms.raddr)) | 
 | 293 | 			return t; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | 	} | 
 | 295 | 	if (!create) | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 296 | 		return NULL; | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 297 | 	return ip6_tnl_create(net, p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } | 
 | 299 |  | 
 | 300 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 301 |  * ip6_tnl_dev_uninit - tunnel device uninitializer | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 |  *   @dev: the device to be destroyed | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 303 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 |  * Description: | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 305 |  *   ip6_tnl_dev_uninit() removes tunnel from its list | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 |  **/ | 
 | 307 |  | 
 | 308 | static void | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 309 | ip6_tnl_dev_uninit(struct net_device *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { | 
| Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 311 | 	struct ip6_tnl *t = netdev_priv(dev); | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 312 | 	struct net *net = dev_net(dev); | 
 | 313 | 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 |  | 
| Pavel Emelyanov | 15820e129 | 2008-04-16 01:23:02 -0700 | [diff] [blame] | 315 | 	if (dev == ip6n->fb_tnl_dev) { | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 316 | 		write_lock_bh(&ip6_tnl_lock); | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 317 | 		ip6n->tnls_wc[0] = NULL; | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 318 | 		write_unlock_bh(&ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | 	} else { | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 320 | 		ip6_tnl_unlink(ip6n, t); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | 	} | 
 | 322 | 	ip6_tnl_dst_reset(t); | 
 | 323 | 	dev_put(dev); | 
 | 324 | } | 
 | 325 |  | 
 | 326 | /** | 
 | 327 |  * parse_tvl_tnl_enc_lim - handle encapsulation limit option | 
 | 328 |  *   @skb: received socket buffer | 
 | 329 |  * | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 330 |  * Return: | 
 | 331 |  *   0 if none was found, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 |  *   else index to encapsulation limit | 
 | 333 |  **/ | 
 | 334 |  | 
 | 335 | static __u16 | 
 | 336 | parse_tlv_tnl_enc_lim(struct sk_buff *skb, __u8 * raw) | 
 | 337 | { | 
 | 338 | 	struct ipv6hdr *ipv6h = (struct ipv6hdr *) raw; | 
 | 339 | 	__u8 nexthdr = ipv6h->nexthdr; | 
 | 340 | 	__u16 off = sizeof (*ipv6h); | 
 | 341 |  | 
 | 342 | 	while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) { | 
 | 343 | 		__u16 optlen = 0; | 
 | 344 | 		struct ipv6_opt_hdr *hdr; | 
 | 345 | 		if (raw + off + sizeof (*hdr) > skb->data && | 
 | 346 | 		    !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr))) | 
 | 347 | 			break; | 
 | 348 |  | 
 | 349 | 		hdr = (struct ipv6_opt_hdr *) (raw + off); | 
 | 350 | 		if (nexthdr == NEXTHDR_FRAGMENT) { | 
 | 351 | 			struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr; | 
 | 352 | 			if (frag_hdr->frag_off) | 
 | 353 | 				break; | 
 | 354 | 			optlen = 8; | 
 | 355 | 		} else if (nexthdr == NEXTHDR_AUTH) { | 
 | 356 | 			optlen = (hdr->hdrlen + 2) << 2; | 
 | 357 | 		} else { | 
 | 358 | 			optlen = ipv6_optlen(hdr); | 
 | 359 | 		} | 
 | 360 | 		if (nexthdr == NEXTHDR_DEST) { | 
 | 361 | 			__u16 i = off + 2; | 
 | 362 | 			while (1) { | 
 | 363 | 				struct ipv6_tlv_tnl_enc_lim *tel; | 
 | 364 |  | 
 | 365 | 				/* No more room for encapsulation limit */ | 
 | 366 | 				if (i + sizeof (*tel) > off + optlen) | 
 | 367 | 					break; | 
 | 368 |  | 
 | 369 | 				tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i]; | 
 | 370 | 				/* return index of option if found and valid */ | 
 | 371 | 				if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT && | 
 | 372 | 				    tel->length == 1) | 
 | 373 | 					return i; | 
 | 374 | 				/* else jump to next option */ | 
 | 375 | 				if (tel->type) | 
 | 376 | 					i += tel->length + 2; | 
 | 377 | 				else | 
 | 378 | 					i++; | 
 | 379 | 			} | 
 | 380 | 		} | 
 | 381 | 		nexthdr = hdr->nexthdr; | 
 | 382 | 		off += optlen; | 
 | 383 | 	} | 
 | 384 | 	return 0; | 
 | 385 | } | 
 | 386 |  | 
 | 387 | /** | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 388 |  * ip6_tnl_err - tunnel error handler | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 |  * | 
 | 390 |  * Description: | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 391 |  *   ip6_tnl_err() should handle errors in the tunnel according | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 |  *   to the specifications in RFC 2473. | 
 | 393 |  **/ | 
 | 394 |  | 
| Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 395 | static int | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 396 | ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt, | 
| Al Viro | 704eae1 | 2007-07-26 17:33:29 +0100 | [diff] [blame] | 397 | 	    int *type, int *code, int *msg, __u32 *info, int offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | { | 
 | 399 | 	struct ipv6hdr *ipv6h = (struct ipv6hdr *) skb->data; | 
 | 400 | 	struct ip6_tnl *t; | 
 | 401 | 	int rel_msg = 0; | 
 | 402 | 	int rel_type = ICMPV6_DEST_UNREACH; | 
 | 403 | 	int rel_code = ICMPV6_ADDR_UNREACH; | 
 | 404 | 	__u32 rel_info = 0; | 
 | 405 | 	__u16 len; | 
| Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 406 | 	int err = -ENOENT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 |  | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 408 | 	/* If the packet doesn't contain the original IPv6 header we are | 
 | 409 | 	   in trouble since we might need the source address for further | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | 	   processing of the error. */ | 
 | 411 |  | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 412 | 	read_lock(&ip6_tnl_lock); | 
| Pavel Emelyanov | 8704ca7e | 2008-04-16 01:22:43 -0700 | [diff] [blame] | 413 | 	if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr, | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 414 | 					&ipv6h->saddr)) == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | 		goto out; | 
 | 416 |  | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 417 | 	if (t->parms.proto != ipproto && t->parms.proto != 0) | 
 | 418 | 		goto out; | 
 | 419 |  | 
| Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 420 | 	err = 0; | 
 | 421 |  | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 422 | 	switch (*type) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | 		__u32 teli; | 
 | 424 | 		struct ipv6_tlv_tnl_enc_lim *tel; | 
 | 425 | 		__u32 mtu; | 
 | 426 | 	case ICMPV6_DEST_UNREACH: | 
 | 427 | 		if (net_ratelimit()) | 
 | 428 | 			printk(KERN_WARNING | 
 | 429 | 			       "%s: Path to destination invalid " | 
 | 430 | 			       "or inactive!\n", t->parms.name); | 
 | 431 | 		rel_msg = 1; | 
 | 432 | 		break; | 
 | 433 | 	case ICMPV6_TIME_EXCEED: | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 434 | 		if ((*code) == ICMPV6_EXC_HOPLIMIT) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | 			if (net_ratelimit()) | 
 | 436 | 				printk(KERN_WARNING | 
 | 437 | 				       "%s: Too small hop limit or " | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 438 | 				       "routing loop in tunnel!\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | 				       t->parms.name); | 
 | 440 | 			rel_msg = 1; | 
 | 441 | 		} | 
 | 442 | 		break; | 
 | 443 | 	case ICMPV6_PARAMPROB: | 
| Ville Nuorvala | 107a5fe | 2006-11-24 17:08:58 -0800 | [diff] [blame] | 444 | 		teli = 0; | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 445 | 		if ((*code) == ICMPV6_HDR_FIELD) | 
| Ville Nuorvala | 107a5fe | 2006-11-24 17:08:58 -0800 | [diff] [blame] | 446 | 			teli = parse_tlv_tnl_enc_lim(skb, skb->data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 |  | 
| Al Viro | 704eae1 | 2007-07-26 17:33:29 +0100 | [diff] [blame] | 448 | 		if (teli && teli == *info - 2) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | 			tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli]; | 
 | 450 | 			if (tel->encap_limit == 0) { | 
 | 451 | 				if (net_ratelimit()) | 
 | 452 | 					printk(KERN_WARNING | 
 | 453 | 					       "%s: Too small encapsulation " | 
 | 454 | 					       "limit or routing loop in " | 
 | 455 | 					       "tunnel!\n", t->parms.name); | 
 | 456 | 				rel_msg = 1; | 
 | 457 | 			} | 
| Ville Nuorvala | 107a5fe | 2006-11-24 17:08:58 -0800 | [diff] [blame] | 458 | 		} else if (net_ratelimit()) { | 
 | 459 | 			printk(KERN_WARNING | 
 | 460 | 			       "%s: Recipient unable to parse tunneled " | 
 | 461 | 			       "packet!\n ", t->parms.name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | 		} | 
 | 463 | 		break; | 
 | 464 | 	case ICMPV6_PKT_TOOBIG: | 
| Al Viro | 704eae1 | 2007-07-26 17:33:29 +0100 | [diff] [blame] | 465 | 		mtu = *info - offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | 		if (mtu < IPV6_MIN_MTU) | 
 | 467 | 			mtu = IPV6_MIN_MTU; | 
 | 468 | 		t->dev->mtu = mtu; | 
 | 469 |  | 
| Al Viro | cc6cdac | 2006-02-18 16:02:18 -0500 | [diff] [blame] | 470 | 		if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | 			rel_type = ICMPV6_PKT_TOOBIG; | 
 | 472 | 			rel_code = 0; | 
 | 473 | 			rel_info = mtu; | 
 | 474 | 			rel_msg = 1; | 
 | 475 | 		} | 
 | 476 | 		break; | 
 | 477 | 	} | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 478 |  | 
 | 479 | 	*type = rel_type; | 
 | 480 | 	*code = rel_code; | 
 | 481 | 	*info = rel_info; | 
 | 482 | 	*msg = rel_msg; | 
 | 483 |  | 
 | 484 | out: | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 485 | 	read_unlock(&ip6_tnl_lock); | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 486 | 	return err; | 
 | 487 | } | 
 | 488 |  | 
 | 489 | static int | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 490 | ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | 
| Al Viro | 704eae1 | 2007-07-26 17:33:29 +0100 | [diff] [blame] | 491 | 	   int type, int code, int offset, __be32 info) | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 492 | { | 
 | 493 | 	int rel_msg = 0; | 
 | 494 | 	int rel_type = type; | 
 | 495 | 	int rel_code = code; | 
| Al Viro | 704eae1 | 2007-07-26 17:33:29 +0100 | [diff] [blame] | 496 | 	__u32 rel_info = ntohl(info); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 497 | 	int err; | 
 | 498 | 	struct sk_buff *skb2; | 
 | 499 | 	struct iphdr *eiph; | 
 | 500 | 	struct flowi fl; | 
 | 501 | 	struct rtable *rt; | 
 | 502 |  | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 503 | 	err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code, | 
 | 504 | 			  &rel_msg, &rel_info, offset); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 505 | 	if (err < 0) | 
 | 506 | 		return err; | 
 | 507 |  | 
 | 508 | 	if (rel_msg == 0) | 
 | 509 | 		return 0; | 
 | 510 |  | 
 | 511 | 	switch (rel_type) { | 
 | 512 | 	case ICMPV6_DEST_UNREACH: | 
 | 513 | 		if (rel_code != ICMPV6_ADDR_UNREACH) | 
 | 514 | 			return 0; | 
 | 515 | 		rel_type = ICMP_DEST_UNREACH; | 
 | 516 | 		rel_code = ICMP_HOST_UNREACH; | 
 | 517 | 		break; | 
 | 518 | 	case ICMPV6_PKT_TOOBIG: | 
 | 519 | 		if (rel_code != 0) | 
 | 520 | 			return 0; | 
 | 521 | 		rel_type = ICMP_DEST_UNREACH; | 
 | 522 | 		rel_code = ICMP_FRAG_NEEDED; | 
 | 523 | 		break; | 
 | 524 | 	default: | 
 | 525 | 		return 0; | 
 | 526 | 	} | 
 | 527 |  | 
 | 528 | 	if (!pskb_may_pull(skb, offset + sizeof(struct iphdr))) | 
 | 529 | 		return 0; | 
 | 530 |  | 
 | 531 | 	skb2 = skb_clone(skb, GFP_ATOMIC); | 
 | 532 | 	if (!skb2) | 
 | 533 | 		return 0; | 
 | 534 |  | 
 | 535 | 	dst_release(skb2->dst); | 
 | 536 | 	skb2->dst = NULL; | 
 | 537 | 	skb_pull(skb2, offset); | 
| Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 538 | 	skb_reset_network_header(skb2); | 
| Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 539 | 	eiph = ip_hdr(skb2); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 540 |  | 
 | 541 | 	/* Try to guess incoming interface */ | 
 | 542 | 	memset(&fl, 0, sizeof(fl)); | 
 | 543 | 	fl.fl4_dst = eiph->saddr; | 
 | 544 | 	fl.fl4_tos = RT_TOS(eiph->tos); | 
 | 545 | 	fl.proto = IPPROTO_IPIP; | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 546 | 	if (ip_route_output_key(dev_net(skb->dev), &rt, &fl)) | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 547 | 		goto out; | 
 | 548 |  | 
 | 549 | 	skb2->dev = rt->u.dst.dev; | 
 | 550 |  | 
 | 551 | 	/* route "incoming" packet */ | 
 | 552 | 	if (rt->rt_flags & RTCF_LOCAL) { | 
 | 553 | 		ip_rt_put(rt); | 
 | 554 | 		rt = NULL; | 
 | 555 | 		fl.fl4_dst = eiph->daddr; | 
 | 556 | 		fl.fl4_src = eiph->saddr; | 
 | 557 | 		fl.fl4_tos = eiph->tos; | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 558 | 		if (ip_route_output_key(dev_net(skb->dev), &rt, &fl) || | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 559 | 		    rt->u.dst.dev->type != ARPHRD_TUNNEL) { | 
 | 560 | 			ip_rt_put(rt); | 
 | 561 | 			goto out; | 
 | 562 | 		} | 
| Denis V. Lunev | 9937ded | 2008-02-18 20:49:36 -0800 | [diff] [blame] | 563 | 		skb2->dst = (struct dst_entry *)rt; | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 564 | 	} else { | 
 | 565 | 		ip_rt_put(rt); | 
 | 566 | 		if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos, | 
 | 567 | 				   skb2->dev) || | 
 | 568 | 		    skb2->dst->dev->type != ARPHRD_TUNNEL) | 
 | 569 | 			goto out; | 
 | 570 | 	} | 
 | 571 |  | 
 | 572 | 	/* change mtu on this route */ | 
 | 573 | 	if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) { | 
 | 574 | 		if (rel_info > dst_mtu(skb2->dst)) | 
 | 575 | 			goto out; | 
 | 576 |  | 
 | 577 | 		skb2->dst->ops->update_pmtu(skb2->dst, rel_info); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 578 | 	} | 
 | 579 |  | 
| Al Viro | 704eae1 | 2007-07-26 17:33:29 +0100 | [diff] [blame] | 580 | 	icmp_send(skb2, rel_type, rel_code, htonl(rel_info)); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 581 |  | 
 | 582 | out: | 
 | 583 | 	kfree_skb(skb2); | 
 | 584 | 	return 0; | 
 | 585 | } | 
 | 586 |  | 
 | 587 | static int | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 588 | ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | 
| Al Viro | 704eae1 | 2007-07-26 17:33:29 +0100 | [diff] [blame] | 589 | 	   int type, int code, int offset, __be32 info) | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 590 | { | 
 | 591 | 	int rel_msg = 0; | 
 | 592 | 	int rel_type = type; | 
 | 593 | 	int rel_code = code; | 
| Al Viro | 704eae1 | 2007-07-26 17:33:29 +0100 | [diff] [blame] | 594 | 	__u32 rel_info = ntohl(info); | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 595 | 	int err; | 
 | 596 |  | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 597 | 	err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code, | 
 | 598 | 			  &rel_msg, &rel_info, offset); | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 599 | 	if (err < 0) | 
 | 600 | 		return err; | 
 | 601 |  | 
 | 602 | 	if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | 		struct rt6_info *rt; | 
 | 604 | 		struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); | 
| Ville Nuorvala | 305d4b3 | 2006-11-24 17:06:53 -0800 | [diff] [blame] | 605 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | 		if (!skb2) | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 607 | 			return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 |  | 
 | 609 | 		dst_release(skb2->dst); | 
 | 610 | 		skb2->dst = NULL; | 
 | 611 | 		skb_pull(skb2, offset); | 
| Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 612 | 		skb_reset_network_header(skb2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 |  | 
 | 614 | 		/* Try to guess incoming interface */ | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 615 | 		rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr, | 
 | 616 | 				NULL, 0, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 |  | 
 | 618 | 		if (rt && rt->rt6i_dev) | 
 | 619 | 			skb2->dev = rt->rt6i_dev; | 
 | 620 |  | 
 | 621 | 		icmpv6_send(skb2, rel_type, rel_code, rel_info, skb2->dev); | 
 | 622 |  | 
 | 623 | 		if (rt) | 
 | 624 | 			dst_release(&rt->u.dst); | 
 | 625 |  | 
 | 626 | 		kfree_skb(skb2); | 
 | 627 | 	} | 
| Yasuyuki Kozakai | e490d1d | 2006-10-31 23:11:25 +0900 | [diff] [blame] | 628 |  | 
 | 629 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } | 
 | 631 |  | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 632 | static void ip4ip6_dscp_ecn_decapsulate(struct ip6_tnl *t, | 
 | 633 | 					struct ipv6hdr *ipv6h, | 
 | 634 | 					struct sk_buff *skb) | 
 | 635 | { | 
 | 636 | 	__u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK; | 
 | 637 |  | 
 | 638 | 	if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY) | 
| Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 639 | 		ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 640 |  | 
 | 641 | 	if (INET_ECN_is_ce(dsfield)) | 
| Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 642 | 		IP_ECN_set_ce(ip_hdr(skb)); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 643 | } | 
 | 644 |  | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 645 | static void ip6ip6_dscp_ecn_decapsulate(struct ip6_tnl *t, | 
 | 646 | 					struct ipv6hdr *ipv6h, | 
 | 647 | 					struct sk_buff *skb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | { | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 649 | 	if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY) | 
| Herbert Xu | 29bb43b4 | 2007-11-13 21:40:13 -0800 | [diff] [blame] | 650 | 		ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 |  | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 652 | 	if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h))) | 
| Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 653 | 		IP6_ECN_set_ce(ipv6_hdr(skb)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | } | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 655 |  | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 656 | static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t) | 
 | 657 | { | 
 | 658 | 	struct ip6_tnl_parm *p = &t->parms; | 
 | 659 | 	int ret = 0; | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 660 | 	struct net *net = dev_net(t->dev); | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 661 |  | 
 | 662 | 	if (p->flags & IP6_TNL_F_CAP_RCV) { | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 663 | 		struct net_device *ldev = NULL; | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 664 |  | 
 | 665 | 		if (p->link) | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 666 | 			ldev = dev_get_by_index(net, p->link); | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 667 |  | 
 | 668 | 		if ((ipv6_addr_is_multicast(&p->laddr) || | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 669 | 		     likely(ipv6_chk_addr(net, &p->laddr, ldev, 0))) && | 
 | 670 | 		    likely(!ipv6_chk_addr(net, &p->raddr, NULL, 0))) | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 671 | 			ret = 1; | 
 | 672 |  | 
 | 673 | 		if (ldev) | 
 | 674 | 			dev_put(ldev); | 
 | 675 | 	} | 
 | 676 | 	return ret; | 
 | 677 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 |  | 
 | 679 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 680 |  * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 |  *   @skb: received socket buffer | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 682 |  *   @protocol: ethernet protocol ID | 
 | 683 |  *   @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 |  * | 
 | 685 |  * Return: 0 | 
 | 686 |  **/ | 
 | 687 |  | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 688 | static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol, | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 689 | 		       __u8 ipproto, | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 690 | 		       void (*dscp_ecn_decapsulate)(struct ip6_tnl *t, | 
 | 691 | 						    struct ipv6hdr *ipv6h, | 
 | 692 | 						    struct sk_buff *skb)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | 	struct ip6_tnl *t; | 
| Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 695 | 	struct ipv6hdr *ipv6h = ipv6_hdr(skb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 |  | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 697 | 	read_lock(&ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 |  | 
| Pavel Emelyanov | 8704ca7e | 2008-04-16 01:22:43 -0700 | [diff] [blame] | 699 | 	if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr, | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 700 | 					&ipv6h->daddr)) != NULL) { | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 701 | 		if (t->parms.proto != ipproto && t->parms.proto != 0) { | 
 | 702 | 			read_unlock(&ip6_tnl_lock); | 
 | 703 | 			goto discard; | 
 | 704 | 		} | 
 | 705 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | 		if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) { | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 707 | 			read_unlock(&ip6_tnl_lock); | 
| Herbert Xu | 50fba2a | 2006-04-04 13:50:45 -0700 | [diff] [blame] | 708 | 			goto discard; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | 		} | 
 | 710 |  | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 711 | 		if (!ip6_tnl_rcv_ctl(t)) { | 
| Pavel Emelyanov | 3dca02a | 2008-05-21 14:17:05 -0700 | [diff] [blame] | 712 | 			t->dev->stats.rx_dropped++; | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 713 | 			read_unlock(&ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | 			goto discard; | 
 | 715 | 		} | 
 | 716 | 		secpath_reset(skb); | 
| Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 717 | 		skb->mac_header = skb->network_header; | 
| Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 718 | 		skb_reset_network_header(skb); | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 719 | 		skb->protocol = htons(protocol); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | 		skb->pkt_type = PACKET_HOST; | 
 | 721 | 		memset(skb->cb, 0, sizeof(struct inet6_skb_parm)); | 
 | 722 | 		skb->dev = t->dev; | 
 | 723 | 		dst_release(skb->dst); | 
 | 724 | 		skb->dst = NULL; | 
| Yasuyuki Kozakai | 53ab61c | 2006-11-06 10:06:23 -0800 | [diff] [blame] | 725 | 		nf_reset(skb); | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 726 |  | 
 | 727 | 		dscp_ecn_decapsulate(t, ipv6h, skb); | 
 | 728 |  | 
| Pavel Emelyanov | 3dca02a | 2008-05-21 14:17:05 -0700 | [diff] [blame] | 729 | 		t->dev->stats.rx_packets++; | 
 | 730 | 		t->dev->stats.rx_bytes += skb->len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | 		netif_rx(skb); | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 732 | 		read_unlock(&ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | 		return 0; | 
 | 734 | 	} | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 735 | 	read_unlock(&ip6_tnl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | 	return 1; | 
| Herbert Xu | 50fba2a | 2006-04-04 13:50:45 -0700 | [diff] [blame] | 737 |  | 
 | 738 | discard: | 
 | 739 | 	kfree_skb(skb); | 
 | 740 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | } | 
 | 742 |  | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 743 | static int ip4ip6_rcv(struct sk_buff *skb) | 
 | 744 | { | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 745 | 	return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP, | 
 | 746 | 			   ip4ip6_dscp_ecn_decapsulate); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 747 | } | 
 | 748 |  | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 749 | static int ip6ip6_rcv(struct sk_buff *skb) | 
 | 750 | { | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 751 | 	return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6, | 
 | 752 | 			   ip6ip6_dscp_ecn_decapsulate); | 
| Yasuyuki Kozakai | 8359925 | 2006-11-03 09:39:14 +0900 | [diff] [blame] | 753 | } | 
 | 754 |  | 
| Ville Nuorvala | 6fb32dd | 2006-11-24 17:08:32 -0800 | [diff] [blame] | 755 | struct ipv6_tel_txoption { | 
 | 756 | 	struct ipv6_txoptions ops; | 
 | 757 | 	__u8 dst_opt[8]; | 
 | 758 | }; | 
 | 759 |  | 
 | 760 | static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | { | 
| Ville Nuorvala | 6fb32dd | 2006-11-24 17:08:32 -0800 | [diff] [blame] | 762 | 	memset(opt, 0, sizeof(struct ipv6_tel_txoption)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 |  | 
| Ville Nuorvala | 6fb32dd | 2006-11-24 17:08:32 -0800 | [diff] [blame] | 764 | 	opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT; | 
 | 765 | 	opt->dst_opt[3] = 1; | 
 | 766 | 	opt->dst_opt[4] = encap_limit; | 
 | 767 | 	opt->dst_opt[5] = IPV6_TLV_PADN; | 
 | 768 | 	opt->dst_opt[6] = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 |  | 
| Ville Nuorvala | 6fb32dd | 2006-11-24 17:08:32 -0800 | [diff] [blame] | 770 | 	opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt; | 
 | 771 | 	opt->ops.opt_nflen = 8; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } | 
 | 773 |  | 
 | 774 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 775 |  * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 |  *   @t: the outgoing tunnel device | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 777 |  *   @hdr: IPv6 header from the incoming packet | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 |  * | 
 | 779 |  * Description: | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 780 |  *   Avoid trivial tunneling loop by checking that tunnel exit-point | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 |  *   doesn't match source of incoming packet. | 
 | 782 |  * | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 783 |  * Return: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 |  *   1 if conflict, | 
 | 785 |  *   0 else | 
 | 786 |  **/ | 
 | 787 |  | 
 | 788 | static inline int | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 789 | ip6_tnl_addr_conflict(struct ip6_tnl *t, struct ipv6hdr *hdr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | { | 
 | 791 | 	return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr); | 
 | 792 | } | 
 | 793 |  | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 794 | static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t) | 
 | 795 | { | 
 | 796 | 	struct ip6_tnl_parm *p = &t->parms; | 
 | 797 | 	int ret = 0; | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 798 | 	struct net *net = dev_net(t->dev); | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 799 |  | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 800 | 	if (p->flags & IP6_TNL_F_CAP_XMIT) { | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 801 | 		struct net_device *ldev = NULL; | 
 | 802 |  | 
 | 803 | 		if (p->link) | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 804 | 			ldev = dev_get_by_index(net, p->link); | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 805 |  | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 806 | 		if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0))) | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 807 | 			printk(KERN_WARNING | 
 | 808 | 			       "%s xmit: Local address not yet configured!\n", | 
 | 809 | 			       p->name); | 
 | 810 | 		else if (!ipv6_addr_is_multicast(&p->raddr) && | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 811 | 			 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0))) | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 812 | 			printk(KERN_WARNING | 
 | 813 | 			       "%s xmit: Routing loop! " | 
 | 814 | 			       "Remote address found on this node!\n", | 
 | 815 | 			       p->name); | 
 | 816 | 		else | 
 | 817 | 			ret = 1; | 
 | 818 | 		if (ldev) | 
 | 819 | 			dev_put(ldev); | 
 | 820 | 	} | 
 | 821 | 	return ret; | 
 | 822 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | /** | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 824 |  * ip6_tnl_xmit2 - encapsulate packet and send | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 |  *   @skb: the outgoing socket buffer | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 826 |  *   @dev: the outgoing tunnel device | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 827 |  *   @dsfield: dscp code for outer header | 
 | 828 |  *   @fl: flow of tunneled packet | 
 | 829 |  *   @encap_limit: encapsulation limit | 
 | 830 |  *   @pmtu: Path MTU is stored if packet is too big | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 |  * | 
 | 832 |  * Description: | 
 | 833 |  *   Build new header and do some sanity checks on the packet before sending | 
 | 834 |  *   it. | 
 | 835 |  * | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 836 |  * Return: | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 837 |  *   0 on success | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 838 |  *   -1 fail | 
 | 839 |  *   %-EMSGSIZE message too big. return mtu in this case. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 |  **/ | 
 | 841 |  | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 842 | static int ip6_tnl_xmit2(struct sk_buff *skb, | 
 | 843 | 			 struct net_device *dev, | 
 | 844 | 			 __u8 dsfield, | 
 | 845 | 			 struct flowi *fl, | 
 | 846 | 			 int encap_limit, | 
 | 847 | 			 __u32 *pmtu) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | { | 
| Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 849 | 	struct ip6_tnl *t = netdev_priv(dev); | 
| Pavel Emelyanov | 3dca02a | 2008-05-21 14:17:05 -0700 | [diff] [blame] | 850 | 	struct net_device_stats *stats = &t->dev->stats; | 
| Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 851 | 	struct ipv6hdr *ipv6h = ipv6_hdr(skb); | 
| Ville Nuorvala | 6fb32dd | 2006-11-24 17:08:32 -0800 | [diff] [blame] | 852 | 	struct ipv6_tel_txoption opt; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | 	struct dst_entry *dst; | 
 | 854 | 	struct net_device *tdev; | 
 | 855 | 	int mtu; | 
| Chuck Lever | c2636b4 | 2007-10-23 21:07:32 -0700 | [diff] [blame] | 856 | 	unsigned int max_headroom = sizeof(struct ipv6hdr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | 	u8 proto; | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 858 | 	int err = -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | 	int pkt_len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | 	if ((dst = ip6_tnl_dst_check(t)) != NULL) | 
 | 862 | 		dst_hold(dst); | 
| Patrick McHardy | a57ebc9 | 2005-09-08 14:27:47 -0700 | [diff] [blame] | 863 | 	else { | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 864 | 		dst = ip6_route_output(dev_net(dev), NULL, fl); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 |  | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 866 | 		if (dst->error || xfrm_lookup(&dst, fl, NULL, 0) < 0) | 
| Patrick McHardy | a57ebc9 | 2005-09-08 14:27:47 -0700 | [diff] [blame] | 867 | 			goto tx_err_link_failure; | 
 | 868 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 |  | 
 | 870 | 	tdev = dst->dev; | 
 | 871 |  | 
 | 872 | 	if (tdev == dev) { | 
 | 873 | 		stats->collisions++; | 
 | 874 | 		if (net_ratelimit()) | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 875 | 			printk(KERN_WARNING | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | 			       "%s: Local routing loop detected!\n", | 
 | 877 | 			       t->parms.name); | 
 | 878 | 		goto tx_err_dst_release; | 
 | 879 | 	} | 
 | 880 | 	mtu = dst_mtu(dst) - sizeof (*ipv6h); | 
| Ville Nuorvala | 6fb32dd | 2006-11-24 17:08:32 -0800 | [diff] [blame] | 881 | 	if (encap_limit >= 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | 		max_headroom += 8; | 
 | 883 | 		mtu -= 8; | 
 | 884 | 	} | 
 | 885 | 	if (mtu < IPV6_MIN_MTU) | 
 | 886 | 		mtu = IPV6_MIN_MTU; | 
| Yasuyuki Kozakai | 2689205 | 2006-09-10 03:59:17 +0900 | [diff] [blame] | 887 | 	if (skb->dst) | 
 | 888 | 		skb->dst->ops->update_pmtu(skb->dst, mtu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | 	if (skb->len > mtu) { | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 890 | 		*pmtu = mtu; | 
 | 891 | 		err = -EMSGSIZE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | 		goto tx_err_dst_release; | 
 | 893 | 	} | 
 | 894 |  | 
 | 895 | 	/* | 
 | 896 | 	 * Okay, now see if we can stuff it in the buffer as-is. | 
 | 897 | 	 */ | 
 | 898 | 	max_headroom += LL_RESERVED_SPACE(tdev); | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 899 |  | 
| Patrick McHardy | cfbba49 | 2007-07-09 15:33:40 -0700 | [diff] [blame] | 900 | 	if (skb_headroom(skb) < max_headroom || skb_shared(skb) || | 
 | 901 | 	    (skb_cloned(skb) && !skb_clone_writable(skb, 0))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | 		struct sk_buff *new_skb; | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 903 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | 		if (!(new_skb = skb_realloc_headroom(skb, max_headroom))) | 
 | 905 | 			goto tx_err_dst_release; | 
 | 906 |  | 
 | 907 | 		if (skb->sk) | 
 | 908 | 			skb_set_owner_w(new_skb, skb->sk); | 
 | 909 | 		kfree_skb(skb); | 
 | 910 | 		skb = new_skb; | 
 | 911 | 	} | 
 | 912 | 	dst_release(skb->dst); | 
 | 913 | 	skb->dst = dst_clone(dst); | 
 | 914 |  | 
| Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 915 | 	skb->transport_header = skb->network_header; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 |  | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 917 | 	proto = fl->proto; | 
| Ville Nuorvala | 6fb32dd | 2006-11-24 17:08:32 -0800 | [diff] [blame] | 918 | 	if (encap_limit >= 0) { | 
 | 919 | 		init_tel_txopt(&opt, encap_limit); | 
 | 920 | 		ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL); | 
 | 921 | 	} | 
| Arnaldo Carvalho de Melo | e2d1bca | 2007-04-10 20:46:21 -0700 | [diff] [blame] | 922 | 	skb_push(skb, sizeof(struct ipv6hdr)); | 
 | 923 | 	skb_reset_network_header(skb); | 
| Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 924 | 	ipv6h = ipv6_hdr(skb); | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 925 | 	*(__be32*)ipv6h = fl->fl6_flowlabel | htonl(0x60000000); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | 	dsfield = INET_ECN_encapsulate(0, dsfield); | 
 | 927 | 	ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | 	ipv6h->hop_limit = t->parms.hop_limit; | 
 | 929 | 	ipv6h->nexthdr = proto; | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 930 | 	ipv6_addr_copy(&ipv6h->saddr, &fl->fl6_src); | 
 | 931 | 	ipv6_addr_copy(&ipv6h->daddr, &fl->fl6_dst); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | 	nf_reset(skb); | 
 | 933 | 	pkt_len = skb->len; | 
| Herbert Xu | ef76bc2 | 2008-01-11 19:15:08 -0800 | [diff] [blame] | 934 | 	err = ip6_local_out(skb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 |  | 
| Gerrit Renker | b9df3cb | 2006-11-14 11:21:36 -0200 | [diff] [blame] | 936 | 	if (net_xmit_eval(err) == 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | 		stats->tx_bytes += pkt_len; | 
 | 938 | 		stats->tx_packets++; | 
 | 939 | 	} else { | 
 | 940 | 		stats->tx_errors++; | 
 | 941 | 		stats->tx_aborted_errors++; | 
 | 942 | 	} | 
 | 943 | 	ip6_tnl_dst_store(t, dst); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | 	return 0; | 
 | 945 | tx_err_link_failure: | 
 | 946 | 	stats->tx_carrier_errors++; | 
 | 947 | 	dst_link_failure(skb); | 
 | 948 | tx_err_dst_release: | 
 | 949 | 	dst_release(dst); | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 950 | 	return err; | 
 | 951 | } | 
 | 952 |  | 
 | 953 | static inline int | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 954 | ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) | 
 | 955 | { | 
 | 956 | 	struct ip6_tnl *t = netdev_priv(dev); | 
| Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 957 | 	struct iphdr  *iph = ip_hdr(skb); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 958 | 	int encap_limit = -1; | 
 | 959 | 	struct flowi fl; | 
 | 960 | 	__u8 dsfield; | 
 | 961 | 	__u32 mtu; | 
 | 962 | 	int err; | 
 | 963 |  | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 964 | 	if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) || | 
 | 965 | 	    !ip6_tnl_xmit_ctl(t)) | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 966 | 		return -1; | 
 | 967 |  | 
 | 968 | 	if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) | 
 | 969 | 		encap_limit = t->parms.encap_limit; | 
 | 970 |  | 
 | 971 | 	memcpy(&fl, &t->fl, sizeof (fl)); | 
 | 972 | 	fl.proto = IPPROTO_IPIP; | 
 | 973 |  | 
 | 974 | 	dsfield = ipv4_get_dsfield(iph); | 
 | 975 |  | 
 | 976 | 	if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)) | 
| Al Viro | b77f2fa | 2007-07-21 19:09:41 -0700 | [diff] [blame] | 977 | 		fl.fl6_flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT) | 
 | 978 | 					  & IPV6_TCLASS_MASK; | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 979 |  | 
 | 980 | 	err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu); | 
 | 981 | 	if (err != 0) { | 
 | 982 | 		/* XXX: send ICMP error even if DF is not set. */ | 
 | 983 | 		if (err == -EMSGSIZE) | 
 | 984 | 			icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, | 
 | 985 | 				  htonl(mtu)); | 
 | 986 | 		return -1; | 
 | 987 | 	} | 
 | 988 |  | 
 | 989 | 	return 0; | 
 | 990 | } | 
 | 991 |  | 
 | 992 | static inline int | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 993 | ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) | 
 | 994 | { | 
 | 995 | 	struct ip6_tnl *t = netdev_priv(dev); | 
| Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 996 | 	struct ipv6hdr *ipv6h = ipv6_hdr(skb); | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 997 | 	int encap_limit = -1; | 
 | 998 | 	__u16 offset; | 
 | 999 | 	struct flowi fl; | 
 | 1000 | 	__u8 dsfield; | 
 | 1001 | 	__u32 mtu; | 
 | 1002 | 	int err; | 
 | 1003 |  | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 1004 | 	if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) || | 
 | 1005 | 	    !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h)) | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 1006 | 		return -1; | 
 | 1007 |  | 
| Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 1008 | 	offset = parse_tlv_tnl_enc_lim(skb, skb_network_header(skb)); | 
 | 1009 | 	if (offset > 0) { | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 1010 | 		struct ipv6_tlv_tnl_enc_lim *tel; | 
| Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 1011 | 		tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset]; | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 1012 | 		if (tel->encap_limit == 0) { | 
 | 1013 | 			icmpv6_send(skb, ICMPV6_PARAMPROB, | 
 | 1014 | 				    ICMPV6_HDR_FIELD, offset + 2, skb->dev); | 
 | 1015 | 			return -1; | 
 | 1016 | 		} | 
 | 1017 | 		encap_limit = tel->encap_limit - 1; | 
 | 1018 | 	} else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) | 
 | 1019 | 		encap_limit = t->parms.encap_limit; | 
 | 1020 |  | 
 | 1021 | 	memcpy(&fl, &t->fl, sizeof (fl)); | 
 | 1022 | 	fl.proto = IPPROTO_IPV6; | 
 | 1023 |  | 
 | 1024 | 	dsfield = ipv6_get_dsfield(ipv6h); | 
 | 1025 | 	if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)) | 
 | 1026 | 		fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK); | 
 | 1027 | 	if ((t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)) | 
 | 1028 | 		fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK); | 
 | 1029 |  | 
 | 1030 | 	err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu); | 
 | 1031 | 	if (err != 0) { | 
 | 1032 | 		if (err == -EMSGSIZE) | 
 | 1033 | 			icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev); | 
 | 1034 | 		return -1; | 
 | 1035 | 	} | 
 | 1036 |  | 
 | 1037 | 	return 0; | 
 | 1038 | } | 
 | 1039 |  | 
 | 1040 | static int | 
 | 1041 | ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) | 
 | 1042 | { | 
 | 1043 | 	struct ip6_tnl *t = netdev_priv(dev); | 
| Pavel Emelyanov | 3dca02a | 2008-05-21 14:17:05 -0700 | [diff] [blame] | 1044 | 	struct net_device_stats *stats = &t->dev->stats; | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 1045 | 	int ret; | 
 | 1046 |  | 
 | 1047 | 	if (t->recursion++) { | 
| Pavel Emelyanov | 3dca02a | 2008-05-21 14:17:05 -0700 | [diff] [blame] | 1048 | 		stats->collisions++; | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 1049 | 		goto tx_err; | 
 | 1050 | 	} | 
 | 1051 |  | 
 | 1052 | 	switch (skb->protocol) { | 
| Arnaldo Carvalho de Melo | 6067804 | 2008-09-20 22:20:49 -0700 | [diff] [blame] | 1053 | 	case htons(ETH_P_IP): | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 1054 | 		ret = ip4ip6_tnl_xmit(skb, dev); | 
 | 1055 | 		break; | 
| Arnaldo Carvalho de Melo | 6067804 | 2008-09-20 22:20:49 -0700 | [diff] [blame] | 1056 | 	case htons(ETH_P_IPV6): | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 1057 | 		ret = ip6ip6_tnl_xmit(skb, dev); | 
 | 1058 | 		break; | 
 | 1059 | 	default: | 
 | 1060 | 		goto tx_err; | 
 | 1061 | 	} | 
 | 1062 |  | 
 | 1063 | 	if (ret < 0) | 
 | 1064 | 		goto tx_err; | 
 | 1065 |  | 
 | 1066 | 	t->recursion--; | 
 | 1067 | 	return 0; | 
 | 1068 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | tx_err: | 
 | 1070 | 	stats->tx_errors++; | 
 | 1071 | 	stats->tx_dropped++; | 
 | 1072 | 	kfree_skb(skb); | 
 | 1073 | 	t->recursion--; | 
 | 1074 | 	return 0; | 
 | 1075 | } | 
 | 1076 |  | 
 | 1077 | static void ip6_tnl_set_cap(struct ip6_tnl *t) | 
 | 1078 | { | 
 | 1079 | 	struct ip6_tnl_parm *p = &t->parms; | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 1080 | 	int ltype = ipv6_addr_type(&p->laddr); | 
 | 1081 | 	int rtype = ipv6_addr_type(&p->raddr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 |  | 
 | 1083 | 	p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV); | 
 | 1084 |  | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 1085 | 	if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) && | 
 | 1086 | 	    rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) && | 
 | 1087 | 	    !((ltype|rtype) & IPV6_ADDR_LOOPBACK) && | 
| Ville Nuorvala | 305d4b3 | 2006-11-24 17:06:53 -0800 | [diff] [blame] | 1088 | 	    (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) { | 
| Ville Nuorvala | 09c6bbf | 2006-11-24 17:06:27 -0800 | [diff] [blame] | 1089 | 		if (ltype&IPV6_ADDR_UNICAST) | 
 | 1090 | 			p->flags |= IP6_TNL_F_CAP_XMIT; | 
 | 1091 | 		if (rtype&IPV6_ADDR_UNICAST) | 
 | 1092 | 			p->flags |= IP6_TNL_F_CAP_RCV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | 	} | 
 | 1094 | } | 
 | 1095 |  | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1096 | static void ip6_tnl_link_config(struct ip6_tnl *t) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | { | 
 | 1098 | 	struct net_device *dev = t->dev; | 
 | 1099 | 	struct ip6_tnl_parm *p = &t->parms; | 
 | 1100 | 	struct flowi *fl = &t->fl; | 
 | 1101 |  | 
 | 1102 | 	memcpy(&dev->dev_addr, &p->laddr, sizeof(struct in6_addr)); | 
 | 1103 | 	memcpy(&dev->broadcast, &p->raddr, sizeof(struct in6_addr)); | 
 | 1104 |  | 
 | 1105 | 	/* Set up flowi template */ | 
 | 1106 | 	ipv6_addr_copy(&fl->fl6_src, &p->laddr); | 
 | 1107 | 	ipv6_addr_copy(&fl->fl6_dst, &p->raddr); | 
 | 1108 | 	fl->oif = p->link; | 
 | 1109 | 	fl->fl6_flowlabel = 0; | 
 | 1110 |  | 
 | 1111 | 	if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS)) | 
 | 1112 | 		fl->fl6_flowlabel |= IPV6_TCLASS_MASK & p->flowinfo; | 
 | 1113 | 	if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL)) | 
 | 1114 | 		fl->fl6_flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo; | 
 | 1115 |  | 
 | 1116 | 	ip6_tnl_set_cap(t); | 
 | 1117 |  | 
 | 1118 | 	if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV) | 
 | 1119 | 		dev->flags |= IFF_POINTOPOINT; | 
 | 1120 | 	else | 
 | 1121 | 		dev->flags &= ~IFF_POINTOPOINT; | 
 | 1122 |  | 
 | 1123 | 	dev->iflink = p->link; | 
 | 1124 |  | 
 | 1125 | 	if (p->flags & IP6_TNL_F_CAP_XMIT) { | 
| Ville Nuorvala | 305d4b3 | 2006-11-24 17:06:53 -0800 | [diff] [blame] | 1126 | 		int strict = (ipv6_addr_type(&p->raddr) & | 
 | 1127 | 			      (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL)); | 
 | 1128 |  | 
| Pavel Emelyanov | 2f7f54b | 2008-04-16 01:23:44 -0700 | [diff] [blame] | 1129 | 		struct rt6_info *rt = rt6_lookup(dev_net(dev), | 
 | 1130 | 						 &p->raddr, &p->laddr, | 
| Ville Nuorvala | 305d4b3 | 2006-11-24 17:06:53 -0800 | [diff] [blame] | 1131 | 						 p->link, strict); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 |  | 
 | 1133 | 		if (rt == NULL) | 
 | 1134 | 			return; | 
 | 1135 |  | 
 | 1136 | 		if (rt->rt6i_dev) { | 
 | 1137 | 			dev->hard_header_len = rt->rt6i_dev->hard_header_len + | 
 | 1138 | 				sizeof (struct ipv6hdr); | 
 | 1139 |  | 
 | 1140 | 			dev->mtu = rt->rt6i_dev->mtu - sizeof (struct ipv6hdr); | 
 | 1141 |  | 
 | 1142 | 			if (dev->mtu < IPV6_MIN_MTU) | 
 | 1143 | 				dev->mtu = IPV6_MIN_MTU; | 
 | 1144 | 		} | 
 | 1145 | 		dst_release(&rt->u.dst); | 
 | 1146 | 	} | 
 | 1147 | } | 
 | 1148 |  | 
 | 1149 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1150 |  * ip6_tnl_change - update the tunnel parameters | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 |  *   @t: tunnel to be changed | 
 | 1152 |  *   @p: tunnel configuration parameters | 
 | 1153 |  *   @active: != 0 if tunnel is ready for use | 
 | 1154 |  * | 
 | 1155 |  * Description: | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1156 |  *   ip6_tnl_change() updates the tunnel parameters | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 |  **/ | 
 | 1158 |  | 
 | 1159 | static int | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1160 | ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | { | 
 | 1162 | 	ipv6_addr_copy(&t->parms.laddr, &p->laddr); | 
 | 1163 | 	ipv6_addr_copy(&t->parms.raddr, &p->raddr); | 
 | 1164 | 	t->parms.flags = p->flags; | 
 | 1165 | 	t->parms.hop_limit = p->hop_limit; | 
 | 1166 | 	t->parms.encap_limit = p->encap_limit; | 
 | 1167 | 	t->parms.flowinfo = p->flowinfo; | 
| Gabor Fekete | 8181b8c | 2005-06-08 14:54:38 -0700 | [diff] [blame] | 1168 | 	t->parms.link = p->link; | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 1169 | 	t->parms.proto = p->proto; | 
| Hugo Santos | 0c08889 | 2006-02-24 13:16:25 -0800 | [diff] [blame] | 1170 | 	ip6_tnl_dst_reset(t); | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1171 | 	ip6_tnl_link_config(t); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | 	return 0; | 
 | 1173 | } | 
 | 1174 |  | 
 | 1175 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1176 |  * ip6_tnl_ioctl - configure ipv6 tunnels from userspace | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 |  *   @dev: virtual device associated with tunnel | 
 | 1178 |  *   @ifr: parameters passed from userspace | 
 | 1179 |  *   @cmd: command to be performed | 
 | 1180 |  * | 
 | 1181 |  * Description: | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1182 |  *   ip6_tnl_ioctl() is used for managing IPv6 tunnels | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1183 |  *   from userspace. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 |  * | 
 | 1185 |  *   The possible commands are the following: | 
 | 1186 |  *     %SIOCGETTUNNEL: get tunnel parameters for device | 
 | 1187 |  *     %SIOCADDTUNNEL: add tunnel matching given tunnel parameters | 
 | 1188 |  *     %SIOCCHGTUNNEL: change tunnel parameters to those given | 
 | 1189 |  *     %SIOCDELTUNNEL: delete tunnel | 
 | 1190 |  * | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1191 |  *   The fallback device "ip6tnl0", created during module | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 |  *   initialization, can be used for creating other tunnel devices. | 
 | 1193 |  * | 
 | 1194 |  * Return: | 
 | 1195 |  *   0 on success, | 
 | 1196 |  *   %-EFAULT if unable to copy data to or from userspace, | 
 | 1197 |  *   %-EPERM if current process hasn't %CAP_NET_ADMIN set | 
 | 1198 |  *   %-EINVAL if passed tunnel parameters are invalid, | 
 | 1199 |  *   %-EEXIST if changing a tunnel's parameters would cause a conflict | 
 | 1200 |  *   %-ENODEV if attempting to change or delete a nonexisting device | 
 | 1201 |  **/ | 
 | 1202 |  | 
 | 1203 | static int | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1204 | ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | { | 
 | 1206 | 	int err = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | 	struct ip6_tnl_parm p; | 
 | 1208 | 	struct ip6_tnl *t = NULL; | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 1209 | 	struct net *net = dev_net(dev); | 
 | 1210 | 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 |  | 
 | 1212 | 	switch (cmd) { | 
 | 1213 | 	case SIOCGETTUNNEL: | 
| Pavel Emelyanov | 15820e129 | 2008-04-16 01:23:02 -0700 | [diff] [blame] | 1214 | 		if (dev == ip6n->fb_tnl_dev) { | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1215 | 			if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | 				err = -EFAULT; | 
 | 1217 | 				break; | 
 | 1218 | 			} | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 1219 | 			t = ip6_tnl_locate(net, &p, 0); | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1220 | 		} | 
 | 1221 | 		if (t == NULL) | 
| Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 1222 | 			t = netdev_priv(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | 		memcpy(&p, &t->parms, sizeof (p)); | 
 | 1224 | 		if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) { | 
 | 1225 | 			err = -EFAULT; | 
 | 1226 | 		} | 
 | 1227 | 		break; | 
 | 1228 | 	case SIOCADDTUNNEL: | 
 | 1229 | 	case SIOCCHGTUNNEL: | 
 | 1230 | 		err = -EPERM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | 		if (!capable(CAP_NET_ADMIN)) | 
 | 1232 | 			break; | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1233 | 		err = -EFAULT; | 
 | 1234 | 		if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | 			break; | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1236 | 		err = -EINVAL; | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 1237 | 		if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP && | 
 | 1238 | 		    p.proto != 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | 			break; | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 1240 | 		t = ip6_tnl_locate(net, &p, cmd == SIOCADDTUNNEL); | 
| Pavel Emelyanov | 15820e129 | 2008-04-16 01:23:02 -0700 | [diff] [blame] | 1241 | 		if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) { | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1242 | 			if (t != NULL) { | 
 | 1243 | 				if (t->dev != dev) { | 
 | 1244 | 					err = -EEXIST; | 
 | 1245 | 					break; | 
 | 1246 | 				} | 
 | 1247 | 			} else | 
 | 1248 | 				t = netdev_priv(dev); | 
 | 1249 |  | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 1250 | 			ip6_tnl_unlink(ip6n, t); | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1251 | 			err = ip6_tnl_change(t, &p); | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 1252 | 			ip6_tnl_link(ip6n, t); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | 			netdev_state_change(dev); | 
 | 1254 | 		} | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1255 | 		if (t) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | 			err = 0; | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1257 | 			if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p))) | 
 | 1258 | 				err = -EFAULT; | 
 | 1259 |  | 
 | 1260 | 		} else | 
 | 1261 | 			err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | 		break; | 
 | 1263 | 	case SIOCDELTUNNEL: | 
 | 1264 | 		err = -EPERM; | 
 | 1265 | 		if (!capable(CAP_NET_ADMIN)) | 
 | 1266 | 			break; | 
 | 1267 |  | 
| Pavel Emelyanov | 15820e129 | 2008-04-16 01:23:02 -0700 | [diff] [blame] | 1268 | 		if (dev == ip6n->fb_tnl_dev) { | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1269 | 			err = -EFAULT; | 
 | 1270 | 			if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | 				break; | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1272 | 			err = -ENOENT; | 
| Pavel Emelyanov | 2dd02c8 | 2008-04-16 01:22:23 -0700 | [diff] [blame] | 1273 | 			if ((t = ip6_tnl_locate(net, &p, 0)) == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | 				break; | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1275 | 			err = -EPERM; | 
| Pavel Emelyanov | 15820e129 | 2008-04-16 01:23:02 -0700 | [diff] [blame] | 1276 | 			if (t->dev == ip6n->fb_tnl_dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | 				break; | 
| Ville Nuorvala | 567131a | 2006-11-24 17:05:41 -0800 | [diff] [blame] | 1278 | 			dev = t->dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | 		} | 
| Stephen Hemminger | 22f8cde | 2007-02-07 00:09:58 -0800 | [diff] [blame] | 1280 | 		err = 0; | 
 | 1281 | 		unregister_netdevice(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | 		break; | 
 | 1283 | 	default: | 
 | 1284 | 		err = -EINVAL; | 
 | 1285 | 	} | 
 | 1286 | 	return err; | 
 | 1287 | } | 
 | 1288 |  | 
 | 1289 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1290 |  * ip6_tnl_change_mtu - change mtu manually for tunnel device | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 |  *   @dev: virtual device associated with tunnel | 
 | 1292 |  *   @new_mtu: the new mtu | 
 | 1293 |  * | 
 | 1294 |  * Return: | 
 | 1295 |  *   0 on success, | 
 | 1296 |  *   %-EINVAL if mtu too small | 
 | 1297 |  **/ | 
 | 1298 |  | 
 | 1299 | static int | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1300 | ip6_tnl_change_mtu(struct net_device *dev, int new_mtu) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | { | 
 | 1302 | 	if (new_mtu < IPV6_MIN_MTU) { | 
 | 1303 | 		return -EINVAL; | 
 | 1304 | 	} | 
 | 1305 | 	dev->mtu = new_mtu; | 
 | 1306 | 	return 0; | 
 | 1307 | } | 
 | 1308 |  | 
 | 1309 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1310 |  * ip6_tnl_dev_setup - setup virtual tunnel device | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 |  *   @dev: virtual device associated with tunnel | 
 | 1312 |  * | 
 | 1313 |  * Description: | 
 | 1314 |  *   Initialize function pointers and device parameters | 
 | 1315 |  **/ | 
 | 1316 |  | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1317 | static void ip6_tnl_dev_setup(struct net_device *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | { | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1319 | 	dev->uninit = ip6_tnl_dev_uninit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | 	dev->destructor = free_netdev; | 
| Yasuyuki Kozakai | 61ec2ae | 2006-11-05 22:56:45 +0900 | [diff] [blame] | 1321 | 	dev->hard_start_xmit = ip6_tnl_xmit; | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1322 | 	dev->do_ioctl = ip6_tnl_ioctl; | 
 | 1323 | 	dev->change_mtu = ip6_tnl_change_mtu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 |  | 
 | 1325 | 	dev->type = ARPHRD_TUNNEL6; | 
 | 1326 | 	dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr); | 
 | 1327 | 	dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr); | 
 | 1328 | 	dev->flags |= IFF_NOARP; | 
 | 1329 | 	dev->addr_len = sizeof(struct in6_addr); | 
| Pavel Emelyanov | 554eb27 | 2008-04-16 01:24:13 -0700 | [diff] [blame] | 1330 | 	dev->features |= NETIF_F_NETNS_LOCAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | } | 
 | 1332 |  | 
 | 1333 |  | 
 | 1334 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1335 |  * ip6_tnl_dev_init_gen - general initializer for all tunnel devices | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 |  *   @dev: virtual device associated with tunnel | 
 | 1337 |  **/ | 
 | 1338 |  | 
 | 1339 | static inline void | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1340 | ip6_tnl_dev_init_gen(struct net_device *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | { | 
| Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 1342 | 	struct ip6_tnl *t = netdev_priv(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | 	t->dev = dev; | 
 | 1344 | 	strcpy(t->parms.name, dev->name); | 
 | 1345 | } | 
 | 1346 |  | 
 | 1347 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1348 |  * ip6_tnl_dev_init - initializer for all non fallback tunnel devices | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 |  *   @dev: virtual device associated with tunnel | 
 | 1350 |  **/ | 
 | 1351 |  | 
 | 1352 | static int | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1353 | ip6_tnl_dev_init(struct net_device *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | { | 
| Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 1355 | 	struct ip6_tnl *t = netdev_priv(dev); | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1356 | 	ip6_tnl_dev_init_gen(dev); | 
 | 1357 | 	ip6_tnl_link_config(t); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | 	return 0; | 
 | 1359 | } | 
 | 1360 |  | 
 | 1361 | /** | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1362 |  * ip6_fb_tnl_dev_init - initializer for fallback tunnel device | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 |  *   @dev: fallback device | 
 | 1364 |  * | 
 | 1365 |  * Return: 0 | 
 | 1366 |  **/ | 
 | 1367 |  | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1368 | static int | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1369 | ip6_fb_tnl_dev_init(struct net_device *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | { | 
| Patrick McHardy | 2941a48 | 2006-01-08 22:05:26 -0800 | [diff] [blame] | 1371 | 	struct ip6_tnl *t = netdev_priv(dev); | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 1372 | 	struct net *net = dev_net(dev); | 
 | 1373 | 	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id); | 
 | 1374 |  | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1375 | 	ip6_tnl_dev_init_gen(dev); | 
| Yasuyuki Kozakai | 502b093 | 2006-11-30 14:43:28 +0900 | [diff] [blame] | 1376 | 	t->parms.proto = IPPROTO_IPV6; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | 	dev_hold(dev); | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 1378 | 	ip6n->tnls_wc[0] = t; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | 	return 0; | 
 | 1380 | } | 
 | 1381 |  | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 1382 | static struct xfrm6_tunnel ip4ip6_handler = { | 
 | 1383 | 	.handler	= ip4ip6_rcv, | 
 | 1384 | 	.err_handler	= ip4ip6_err, | 
 | 1385 | 	.priority	=	1, | 
 | 1386 | }; | 
 | 1387 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | static struct xfrm6_tunnel ip6ip6_handler = { | 
| Patrick McHardy | 0303770 | 2005-07-19 14:03:34 -0700 | [diff] [blame] | 1389 | 	.handler	= ip6ip6_rcv, | 
 | 1390 | 	.err_handler	= ip6ip6_err, | 
| Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 1391 | 	.priority	=	1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | }; | 
 | 1393 |  | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 1394 | static void ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n) | 
 | 1395 | { | 
 | 1396 | 	int h; | 
 | 1397 | 	struct ip6_tnl *t; | 
 | 1398 |  | 
 | 1399 | 	for (h = 0; h < HASH_SIZE; h++) { | 
 | 1400 | 		while ((t = ip6n->tnls_r_l[h]) != NULL) | 
 | 1401 | 			unregister_netdevice(t->dev); | 
 | 1402 | 	} | 
 | 1403 |  | 
 | 1404 | 	t = ip6n->tnls_wc[0]; | 
 | 1405 | 	unregister_netdevice(t->dev); | 
 | 1406 | } | 
 | 1407 |  | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 1408 | static int ip6_tnl_init_net(struct net *net) | 
 | 1409 | { | 
 | 1410 | 	int err; | 
 | 1411 | 	struct ip6_tnl_net *ip6n; | 
 | 1412 |  | 
 | 1413 | 	err = -ENOMEM; | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 1414 | 	ip6n = kzalloc(sizeof(struct ip6_tnl_net), GFP_KERNEL); | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 1415 | 	if (ip6n == NULL) | 
 | 1416 | 		goto err_alloc; | 
 | 1417 |  | 
 | 1418 | 	err = net_assign_generic(net, ip6_tnl_net_id, ip6n); | 
 | 1419 | 	if (err < 0) | 
 | 1420 | 		goto err_assign; | 
 | 1421 |  | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 1422 | 	ip6n->tnls[0] = ip6n->tnls_wc; | 
 | 1423 | 	ip6n->tnls[1] = ip6n->tnls_r_l; | 
 | 1424 |  | 
| Pavel Emelyanov | 15820e129 | 2008-04-16 01:23:02 -0700 | [diff] [blame] | 1425 | 	err = -ENOMEM; | 
 | 1426 | 	ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0", | 
 | 1427 | 				      ip6_tnl_dev_setup); | 
 | 1428 |  | 
 | 1429 | 	if (!ip6n->fb_tnl_dev) | 
 | 1430 | 		goto err_alloc_dev; | 
 | 1431 |  | 
 | 1432 | 	ip6n->fb_tnl_dev->init = ip6_fb_tnl_dev_init; | 
 | 1433 | 	dev_net_set(ip6n->fb_tnl_dev, net); | 
 | 1434 |  | 
 | 1435 | 	err = register_netdev(ip6n->fb_tnl_dev); | 
 | 1436 | 	if (err < 0) | 
 | 1437 | 		goto err_register; | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 1438 | 	return 0; | 
 | 1439 |  | 
| Pavel Emelyanov | 15820e129 | 2008-04-16 01:23:02 -0700 | [diff] [blame] | 1440 | err_register: | 
 | 1441 | 	free_netdev(ip6n->fb_tnl_dev); | 
 | 1442 | err_alloc_dev: | 
 | 1443 | 	/* nothing */ | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 1444 | err_assign: | 
 | 1445 | 	kfree(ip6n); | 
 | 1446 | err_alloc: | 
 | 1447 | 	return err; | 
 | 1448 | } | 
 | 1449 |  | 
 | 1450 | static void ip6_tnl_exit_net(struct net *net) | 
 | 1451 | { | 
 | 1452 | 	struct ip6_tnl_net *ip6n; | 
 | 1453 |  | 
 | 1454 | 	ip6n = net_generic(net, ip6_tnl_net_id); | 
| Pavel Emelyanov | 3e6c9fb | 2008-04-16 01:23:22 -0700 | [diff] [blame] | 1455 | 	rtnl_lock(); | 
 | 1456 | 	ip6_tnl_destroy_tunnels(ip6n); | 
 | 1457 | 	rtnl_unlock(); | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 1458 | 	kfree(ip6n); | 
 | 1459 | } | 
 | 1460 |  | 
 | 1461 | static struct pernet_operations ip6_tnl_net_ops = { | 
 | 1462 | 	.init = ip6_tnl_init_net, | 
 | 1463 | 	.exit = ip6_tnl_exit_net, | 
 | 1464 | }; | 
 | 1465 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | /** | 
 | 1467 |  * ip6_tunnel_init - register protocol and reserve needed resources | 
 | 1468 |  * | 
 | 1469 |  * Return: 0 on success | 
 | 1470 |  **/ | 
 | 1471 |  | 
 | 1472 | static int __init ip6_tunnel_init(void) | 
 | 1473 | { | 
 | 1474 | 	int  err; | 
 | 1475 |  | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 1476 | 	if (xfrm6_tunnel_register(&ip4ip6_handler, AF_INET)) { | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1477 | 		printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n"); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 1478 | 		err = -EAGAIN; | 
 | 1479 | 		goto out; | 
 | 1480 | 	} | 
 | 1481 |  | 
| Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 1482 | 	if (xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6)) { | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1483 | 		printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n"); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 1484 | 		err = -EAGAIN; | 
 | 1485 | 		goto unreg_ip4ip6; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | 	} | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 1487 |  | 
 | 1488 | 	err = register_pernet_gen_device(&ip6_tnl_net_id, &ip6_tnl_net_ops); | 
 | 1489 | 	if (err < 0) | 
 | 1490 | 		goto err_pernet; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | 	return 0; | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 1492 | err_pernet: | 
| Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 1493 | 	xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 1494 | unreg_ip4ip6: | 
 | 1495 | 	xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET); | 
 | 1496 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | 	return err; | 
 | 1498 | } | 
 | 1499 |  | 
 | 1500 | /** | 
 | 1501 |  * ip6_tunnel_cleanup - free resources and unregister protocol | 
 | 1502 |  **/ | 
 | 1503 |  | 
 | 1504 | static void __exit ip6_tunnel_cleanup(void) | 
 | 1505 | { | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 1506 | 	if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET)) | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1507 | 		printk(KERN_INFO "ip6_tunnel close: can't deregister ip4ip6\n"); | 
| Yasuyuki Kozakai | c4d3efa | 2007-02-15 00:43:16 +0900 | [diff] [blame] | 1508 |  | 
| Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 1509 | 	if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6)) | 
| Yasuyuki Kozakai | 3144581 | 2007-02-10 00:30:33 +0900 | [diff] [blame] | 1510 | 		printk(KERN_INFO "ip6_tunnel close: can't deregister ip6ip6\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 |  | 
| Pavel Emelyanov | 13eeb8e | 2008-04-16 01:22:02 -0700 | [diff] [blame] | 1512 | 	unregister_pernet_gen_device(ip6_tnl_net_id, &ip6_tnl_net_ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | } | 
 | 1514 |  | 
 | 1515 | module_init(ip6_tunnel_init); | 
 | 1516 | module_exit(ip6_tunnel_cleanup); |