| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C)2003,2004 USAGI/WIDE Project | 
|  | 3 | * | 
|  | 4 | * This program is free software; you can redistribute it and/or modify | 
|  | 5 | * it under the terms of the GNU General Public License as published by | 
|  | 6 | * the Free Software Foundation; either version 2 of the License, or | 
|  | 7 | * (at your option) any later version. | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 8 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * This program is distributed in the hope that it will be useful, | 
|  | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 12 | * GNU General Public License for more details. | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 13 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License | 
|  | 15 | * along with this program; if not, write to the Free Software | 
|  | 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
|  | 17 | * | 
|  | 18 | * Authors	Mitsuru KANDA  <mk@linux-ipv6.org> | 
|  | 19 | * 		YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 
|  | 20 | * | 
|  | 21 | * Based on net/ipv4/xfrm4_tunnel.c | 
|  | 22 | * | 
|  | 23 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/module.h> | 
|  | 25 | #include <linux/xfrm.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 26 | #include <linux/slab.h> | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 27 | #include <linux/rculist.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <net/ip.h> | 
|  | 29 | #include <net/xfrm.h> | 
|  | 30 | #include <net/ipv6.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/ipv6.h> | 
|  | 32 | #include <linux/icmpv6.h> | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 33 | #include <linux/mutex.h> | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 34 | #include <net/netns/generic.h> | 
|  | 35 |  | 
|  | 36 | #define XFRM6_TUNNEL_SPI_BYADDR_HSIZE 256 | 
|  | 37 | #define XFRM6_TUNNEL_SPI_BYSPI_HSIZE 256 | 
|  | 38 |  | 
|  | 39 | #define XFRM6_TUNNEL_SPI_MIN	1 | 
|  | 40 | #define XFRM6_TUNNEL_SPI_MAX	0xffffffff | 
|  | 41 |  | 
|  | 42 | struct xfrm6_tunnel_net { | 
|  | 43 | struct hlist_head spi_byaddr[XFRM6_TUNNEL_SPI_BYADDR_HSIZE]; | 
|  | 44 | struct hlist_head spi_byspi[XFRM6_TUNNEL_SPI_BYSPI_HSIZE]; | 
|  | 45 | u32 spi; | 
|  | 46 | }; | 
|  | 47 |  | 
|  | 48 | static int xfrm6_tunnel_net_id __read_mostly; | 
|  | 49 | static inline struct xfrm6_tunnel_net *xfrm6_tunnel_pernet(struct net *net) | 
|  | 50 | { | 
|  | 51 | return net_generic(net, xfrm6_tunnel_net_id); | 
|  | 52 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | /* | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 55 | * xfrm_tunnel_spi things are for allocating unique id ("spi") | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | * per xfrm_address_t. | 
|  | 57 | */ | 
|  | 58 | struct xfrm6_tunnel_spi { | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 59 | struct hlist_node	list_byaddr; | 
|  | 60 | struct hlist_node	list_byspi; | 
|  | 61 | xfrm_address_t		addr; | 
|  | 62 | u32			spi; | 
|  | 63 | atomic_t		refcnt; | 
|  | 64 | struct rcu_head		rcu_head; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | }; | 
|  | 66 |  | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 67 | static DEFINE_SPINLOCK(xfrm6_tunnel_spi_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 |  | 
| Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 69 | static struct kmem_cache *xfrm6_tunnel_spi_kmem __read_mostly; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
| Dave Jones | b6f99a2 | 2007-03-22 12:27:49 -0700 | [diff] [blame] | 71 | static inline unsigned xfrm6_tunnel_spi_hash_byaddr(xfrm_address_t *addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { | 
|  | 73 | unsigned h; | 
|  | 74 |  | 
| Al Viro | 8c689a6 | 2006-11-08 00:20:21 -0800 | [diff] [blame] | 75 | h = (__force u32)(addr->a6[0] ^ addr->a6[1] ^ addr->a6[2] ^ addr->a6[3]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | h ^= h >> 16; | 
|  | 77 | h ^= h >> 8; | 
|  | 78 | h &= XFRM6_TUNNEL_SPI_BYADDR_HSIZE - 1; | 
|  | 79 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | return h; | 
|  | 81 | } | 
|  | 82 |  | 
| Dave Jones | b6f99a2 | 2007-03-22 12:27:49 -0700 | [diff] [blame] | 83 | static inline unsigned xfrm6_tunnel_spi_hash_byspi(u32 spi) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { | 
|  | 85 | return spi % XFRM6_TUNNEL_SPI_BYSPI_HSIZE; | 
|  | 86 | } | 
|  | 87 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 88 | static struct xfrm6_tunnel_spi *__xfrm6_tunnel_spi_lookup(struct net *net, xfrm_address_t *saddr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 90 | struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | struct xfrm6_tunnel_spi *x6spi; | 
|  | 92 | struct hlist_node *pos; | 
|  | 93 |  | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 94 | hlist_for_each_entry_rcu(x6spi, pos, | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 95 | &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)], | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | list_byaddr) { | 
| David S. Miller | a922ba5 | 2006-07-24 13:49:06 -0700 | [diff] [blame] | 97 | if (memcmp(&x6spi->addr, saddr, sizeof(x6spi->addr)) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | return x6spi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } | 
|  | 100 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | return NULL; | 
|  | 102 | } | 
|  | 103 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 104 | __be32 xfrm6_tunnel_spi_lookup(struct net *net, xfrm_address_t *saddr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { | 
|  | 106 | struct xfrm6_tunnel_spi *x6spi; | 
|  | 107 | u32 spi; | 
|  | 108 |  | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 109 | rcu_read_lock_bh(); | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 110 | x6spi = __xfrm6_tunnel_spi_lookup(net, saddr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | spi = x6spi ? x6spi->spi : 0; | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 112 | rcu_read_unlock_bh(); | 
| Al Viro | 5b12254 | 2006-11-01 15:28:58 -0800 | [diff] [blame] | 113 | return htonl(spi); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } | 
|  | 115 |  | 
|  | 116 | EXPORT_SYMBOL(xfrm6_tunnel_spi_lookup); | 
|  | 117 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 118 | static int __xfrm6_tunnel_spi_check(struct net *net, u32 spi) | 
| YOSHIFUJI Hideaki | df8ea19 | 2008-02-19 22:54:00 +0900 | [diff] [blame] | 119 | { | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 120 | struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net); | 
| YOSHIFUJI Hideaki | df8ea19 | 2008-02-19 22:54:00 +0900 | [diff] [blame] | 121 | struct xfrm6_tunnel_spi *x6spi; | 
|  | 122 | int index = xfrm6_tunnel_spi_hash_byspi(spi); | 
|  | 123 | struct hlist_node *pos; | 
|  | 124 |  | 
|  | 125 | hlist_for_each_entry(x6spi, pos, | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 126 | &xfrm6_tn->spi_byspi[index], | 
| YOSHIFUJI Hideaki | df8ea19 | 2008-02-19 22:54:00 +0900 | [diff] [blame] | 127 | list_byspi) { | 
|  | 128 | if (x6spi->spi == spi) | 
|  | 129 | return -1; | 
|  | 130 | } | 
|  | 131 | return index; | 
|  | 132 | } | 
|  | 133 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 134 | static u32 __xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | { | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 136 | struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | u32 spi; | 
|  | 138 | struct xfrm6_tunnel_spi *x6spi; | 
| YOSHIFUJI Hideaki | df8ea19 | 2008-02-19 22:54:00 +0900 | [diff] [blame] | 139 | int index; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 141 | if (xfrm6_tn->spi < XFRM6_TUNNEL_SPI_MIN || | 
|  | 142 | xfrm6_tn->spi >= XFRM6_TUNNEL_SPI_MAX) | 
|  | 143 | xfrm6_tn->spi = XFRM6_TUNNEL_SPI_MIN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | else | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 145 | xfrm6_tn->spi++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 147 | for (spi = xfrm6_tn->spi; spi <= XFRM6_TUNNEL_SPI_MAX; spi++) { | 
|  | 148 | index = __xfrm6_tunnel_spi_check(net, spi); | 
| YOSHIFUJI Hideaki | df8ea19 | 2008-02-19 22:54:00 +0900 | [diff] [blame] | 149 | if (index >= 0) | 
|  | 150 | goto alloc_spi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 152 | for (spi = XFRM6_TUNNEL_SPI_MIN; spi < xfrm6_tn->spi; spi++) { | 
|  | 153 | index = __xfrm6_tunnel_spi_check(net, spi); | 
| YOSHIFUJI Hideaki | df8ea19 | 2008-02-19 22:54:00 +0900 | [diff] [blame] | 154 | if (index >= 0) | 
|  | 155 | goto alloc_spi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } | 
|  | 157 | spi = 0; | 
|  | 158 | goto out; | 
|  | 159 | alloc_spi: | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 160 | xfrm6_tn->spi = spi; | 
| Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 161 | x6spi = kmem_cache_alloc(xfrm6_tunnel_spi_kmem, GFP_ATOMIC); | 
| David S. Miller | a922ba5 | 2006-07-24 13:49:06 -0700 | [diff] [blame] | 162 | if (!x6spi) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | goto out; | 
| David S. Miller | a922ba5 | 2006-07-24 13:49:06 -0700 | [diff] [blame] | 164 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | memcpy(&x6spi->addr, saddr, sizeof(x6spi->addr)); | 
|  | 166 | x6spi->spi = spi; | 
|  | 167 | atomic_set(&x6spi->refcnt, 1); | 
|  | 168 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 169 | hlist_add_head_rcu(&x6spi->list_byspi, &xfrm6_tn->spi_byspi[index]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 |  | 
|  | 171 | index = xfrm6_tunnel_spi_hash_byaddr(saddr); | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 172 | hlist_add_head_rcu(&x6spi->list_byaddr, &xfrm6_tn->spi_byaddr[index]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | return spi; | 
|  | 175 | } | 
|  | 176 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 177 | __be32 xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { | 
|  | 179 | struct xfrm6_tunnel_spi *x6spi; | 
|  | 180 | u32 spi; | 
|  | 181 |  | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 182 | spin_lock_bh(&xfrm6_tunnel_spi_lock); | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 183 | x6spi = __xfrm6_tunnel_spi_lookup(net, saddr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | if (x6spi) { | 
|  | 185 | atomic_inc(&x6spi->refcnt); | 
|  | 186 | spi = x6spi->spi; | 
|  | 187 | } else | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 188 | spi = __xfrm6_tunnel_alloc_spi(net, saddr); | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 189 | spin_unlock_bh(&xfrm6_tunnel_spi_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 |  | 
| Al Viro | 5b12254 | 2006-11-01 15:28:58 -0800 | [diff] [blame] | 191 | return htonl(spi); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } | 
|  | 193 |  | 
|  | 194 | EXPORT_SYMBOL(xfrm6_tunnel_alloc_spi); | 
|  | 195 |  | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 196 | static void x6spi_destroy_rcu(struct rcu_head *head) | 
|  | 197 | { | 
|  | 198 | kmem_cache_free(xfrm6_tunnel_spi_kmem, | 
|  | 199 | container_of(head, struct xfrm6_tunnel_spi, rcu_head)); | 
|  | 200 | } | 
|  | 201 |  | 
| stephen hemminger | 6f747ac | 2010-10-15 05:15:59 +0000 | [diff] [blame] | 202 | static void xfrm6_tunnel_free_spi(struct net *net, xfrm_address_t *saddr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | { | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 204 | struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | struct xfrm6_tunnel_spi *x6spi; | 
|  | 206 | struct hlist_node *pos, *n; | 
|  | 207 |  | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 208 | spin_lock_bh(&xfrm6_tunnel_spi_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 |  | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 210 | hlist_for_each_entry_safe(x6spi, pos, n, | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 211 | &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)], | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | list_byaddr) | 
|  | 213 | { | 
|  | 214 | if (memcmp(&x6spi->addr, saddr, sizeof(x6spi->addr)) == 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | if (atomic_dec_and_test(&x6spi->refcnt)) { | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 216 | hlist_del_rcu(&x6spi->list_byaddr); | 
|  | 217 | hlist_del_rcu(&x6spi->list_byspi); | 
|  | 218 | call_rcu(&x6spi->rcu_head, x6spi_destroy_rcu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | break; | 
|  | 220 | } | 
|  | 221 | } | 
|  | 222 | } | 
| Eric Dumazet | 91cc3bb | 2009-10-23 18:19:19 +0000 | [diff] [blame] | 223 | spin_unlock_bh(&xfrm6_tunnel_spi_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } | 
|  | 225 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb) | 
|  | 227 | { | 
| Herbert Xu | 7b277b1 | 2007-10-10 15:44:06 -0700 | [diff] [blame] | 228 | skb_push(skb, -skb_network_offset(skb)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | return 0; | 
|  | 230 | } | 
|  | 231 |  | 
| Herbert Xu | e695633 | 2006-04-01 00:52:46 -0800 | [diff] [blame] | 232 | static int xfrm6_tunnel_input(struct xfrm_state *x, struct sk_buff *skb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | { | 
| Herbert Xu | 04663d0 | 2007-10-17 21:28:06 -0700 | [diff] [blame] | 234 | return skb_network_header(skb)[IP6CB(skb)->nhoff]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } | 
|  | 236 |  | 
| Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 237 | static int xfrm6_tunnel_rcv(struct sk_buff *skb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | { | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 239 | struct net *net = dev_net(skb->dev); | 
| Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 240 | struct ipv6hdr *iph = ipv6_hdr(skb); | 
| Al Viro | a252cc2 | 2006-09-27 18:48:18 -0700 | [diff] [blame] | 241 | __be32 spi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 243 | spi = xfrm6_tunnel_spi_lookup(net, (xfrm_address_t *)&iph->saddr); | 
| Herbert Xu | 33b5ecb | 2007-10-17 21:29:25 -0700 | [diff] [blame] | 244 | return xfrm6_rcv_spi(skb, IPPROTO_IPV6, spi) > 0 ? : 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | } | 
|  | 246 |  | 
| Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 247 | static int xfrm6_tunnel_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | 
| Brian Haley | d5fdd6b | 2009-06-23 04:31:07 -0700 | [diff] [blame] | 248 | u8 type, u8 code, int offset, __be32 info) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | /* xfrm6_tunnel native err handling */ | 
|  | 251 | switch (type) { | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 252 | case ICMPV6_DEST_UNREACH: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | switch (code) { | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 254 | case ICMPV6_NOROUTE: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | case ICMPV6_ADM_PROHIBITED: | 
|  | 256 | case ICMPV6_NOT_NEIGHBOUR: | 
|  | 257 | case ICMPV6_ADDR_UNREACH: | 
|  | 258 | case ICMPV6_PORT_UNREACH: | 
|  | 259 | default: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | break; | 
|  | 261 | } | 
|  | 262 | break; | 
|  | 263 | case ICMPV6_PKT_TOOBIG: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | break; | 
|  | 265 | case ICMPV6_TIME_EXCEED: | 
|  | 266 | switch (code) { | 
|  | 267 | case ICMPV6_EXC_HOPLIMIT: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | break; | 
|  | 269 | case ICMPV6_EXC_FRAGTIME: | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 270 | default: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | break; | 
|  | 272 | } | 
|  | 273 | break; | 
|  | 274 | case ICMPV6_PARAMPROB: | 
|  | 275 | switch (code) { | 
|  | 276 | case ICMPV6_HDR_FIELD: break; | 
|  | 277 | case ICMPV6_UNK_NEXTHDR: break; | 
|  | 278 | case ICMPV6_UNK_OPTION: break; | 
|  | 279 | } | 
|  | 280 | break; | 
|  | 281 | default: | 
|  | 282 | break; | 
|  | 283 | } | 
| Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 284 |  | 
|  | 285 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | } | 
|  | 287 |  | 
| Herbert Xu | 72cb696 | 2005-06-20 13:18:08 -0700 | [diff] [blame] | 288 | static int xfrm6_tunnel_init_state(struct xfrm_state *x) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { | 
| Masahide NAKAMURA | 7e49e6d | 2006-09-22 15:05:15 -0700 | [diff] [blame] | 290 | if (x->props.mode != XFRM_MODE_TUNNEL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | return -EINVAL; | 
|  | 292 |  | 
|  | 293 | if (x->encap) | 
|  | 294 | return -EINVAL; | 
|  | 295 |  | 
|  | 296 | x->props.header_len = sizeof(struct ipv6hdr); | 
|  | 297 |  | 
|  | 298 | return 0; | 
|  | 299 | } | 
|  | 300 |  | 
|  | 301 | static void xfrm6_tunnel_destroy(struct xfrm_state *x) | 
|  | 302 | { | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 303 | struct net *net = xs_net(x); | 
|  | 304 |  | 
|  | 305 | xfrm6_tunnel_free_spi(net, (xfrm_address_t *)&x->props.saddr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | } | 
|  | 307 |  | 
| Eric Dumazet | 533cb5b | 2008-01-30 19:11:50 -0800 | [diff] [blame] | 308 | static const struct xfrm_type xfrm6_tunnel_type = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | .description	= "IP6IP6", | 
|  | 310 | .owner          = THIS_MODULE, | 
|  | 311 | .proto		= IPPROTO_IPV6, | 
|  | 312 | .init_state	= xfrm6_tunnel_init_state, | 
|  | 313 | .destructor	= xfrm6_tunnel_destroy, | 
|  | 314 | .input		= xfrm6_tunnel_input, | 
|  | 315 | .output		= xfrm6_tunnel_output, | 
|  | 316 | }; | 
|  | 317 |  | 
| Eric Dumazet | 3ff2cfa | 2010-08-30 10:27:10 +0000 | [diff] [blame] | 318 | static struct xfrm6_tunnel xfrm6_tunnel_handler __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | .handler	= xfrm6_tunnel_rcv, | 
| Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 320 | .err_handler	= xfrm6_tunnel_err, | 
|  | 321 | .priority	= 2, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | }; | 
|  | 323 |  | 
| Eric Dumazet | 3ff2cfa | 2010-08-30 10:27:10 +0000 | [diff] [blame] | 324 | static struct xfrm6_tunnel xfrm46_tunnel_handler __read_mostly = { | 
| Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 325 | .handler	= xfrm6_tunnel_rcv, | 
|  | 326 | .err_handler	= xfrm6_tunnel_err, | 
|  | 327 | .priority	= 2, | 
|  | 328 | }; | 
|  | 329 |  | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 330 | static int __net_init xfrm6_tunnel_net_init(struct net *net) | 
|  | 331 | { | 
|  | 332 | struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net); | 
|  | 333 | unsigned int i; | 
|  | 334 |  | 
|  | 335 | for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++) | 
|  | 336 | INIT_HLIST_HEAD(&xfrm6_tn->spi_byaddr[i]); | 
|  | 337 | for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++) | 
|  | 338 | INIT_HLIST_HEAD(&xfrm6_tn->spi_byspi[i]); | 
|  | 339 | xfrm6_tn->spi = 0; | 
|  | 340 |  | 
|  | 341 | return 0; | 
|  | 342 | } | 
|  | 343 |  | 
|  | 344 | static void __net_exit xfrm6_tunnel_net_exit(struct net *net) | 
|  | 345 | { | 
|  | 346 | } | 
|  | 347 |  | 
|  | 348 | static struct pernet_operations xfrm6_tunnel_net_ops = { | 
|  | 349 | .init	= xfrm6_tunnel_net_init, | 
|  | 350 | .exit	= xfrm6_tunnel_net_exit, | 
|  | 351 | .id	= &xfrm6_tunnel_net_id, | 
|  | 352 | .size	= sizeof(struct xfrm6_tunnel_net), | 
|  | 353 | }; | 
|  | 354 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | static int __init xfrm6_tunnel_init(void) | 
|  | 356 | { | 
| Alexey Dobriyan | e924960 | 2010-01-25 10:28:21 +0000 | [diff] [blame] | 357 | int rv; | 
|  | 358 |  | 
| Alexey Dobriyan | d5aa407 | 2010-02-16 09:05:04 +0000 | [diff] [blame] | 359 | xfrm6_tunnel_spi_kmem = kmem_cache_create("xfrm6_tunnel_spi", | 
|  | 360 | sizeof(struct xfrm6_tunnel_spi), | 
|  | 361 | 0, SLAB_HWCACHE_ALIGN, | 
|  | 362 | NULL); | 
|  | 363 | if (!xfrm6_tunnel_spi_kmem) | 
|  | 364 | return -ENOMEM; | 
| Alexey Dobriyan | a166477 | 2010-01-25 10:37:54 +0000 | [diff] [blame] | 365 | rv = register_pernet_subsys(&xfrm6_tunnel_net_ops); | 
|  | 366 | if (rv < 0) | 
| Alexey Dobriyan | d5aa407 | 2010-02-16 09:05:04 +0000 | [diff] [blame] | 367 | goto out_pernet; | 
|  | 368 | rv = xfrm_register_type(&xfrm6_tunnel_type, AF_INET6); | 
|  | 369 | if (rv < 0) | 
|  | 370 | goto out_type; | 
|  | 371 | rv = xfrm6_tunnel_register(&xfrm6_tunnel_handler, AF_INET6); | 
|  | 372 | if (rv < 0) | 
|  | 373 | goto out_xfrm6; | 
|  | 374 | rv = xfrm6_tunnel_register(&xfrm46_tunnel_handler, AF_INET); | 
|  | 375 | if (rv < 0) | 
|  | 376 | goto out_xfrm46; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | return 0; | 
| Ilpo Järvinen | 5ce1bbb | 2008-12-14 23:13:48 -0800 | [diff] [blame] | 378 |  | 
| Alexey Dobriyan | d5aa407 | 2010-02-16 09:05:04 +0000 | [diff] [blame] | 379 | out_xfrm46: | 
| Ilpo Järvinen | 5ce1bbb | 2008-12-14 23:13:48 -0800 | [diff] [blame] | 380 | xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6); | 
| Alexey Dobriyan | d5aa407 | 2010-02-16 09:05:04 +0000 | [diff] [blame] | 381 | out_xfrm6: | 
| Ilpo Järvinen | 5ce1bbb | 2008-12-14 23:13:48 -0800 | [diff] [blame] | 382 | xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6); | 
| Alexey Dobriyan | d5aa407 | 2010-02-16 09:05:04 +0000 | [diff] [blame] | 383 | out_type: | 
|  | 384 | unregister_pernet_subsys(&xfrm6_tunnel_net_ops); | 
|  | 385 | out_pernet: | 
|  | 386 | kmem_cache_destroy(xfrm6_tunnel_spi_kmem); | 
| Alexey Dobriyan | e924960 | 2010-01-25 10:28:21 +0000 | [diff] [blame] | 387 | return rv; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | } | 
|  | 389 |  | 
|  | 390 | static void __exit xfrm6_tunnel_fini(void) | 
|  | 391 | { | 
| Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 392 | xfrm6_tunnel_deregister(&xfrm46_tunnel_handler, AF_INET); | 
|  | 393 | xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6); | 
| David S. Miller | a922ba5 | 2006-07-24 13:49:06 -0700 | [diff] [blame] | 394 | xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6); | 
| Alexey Dobriyan | d5aa407 | 2010-02-16 09:05:04 +0000 | [diff] [blame] | 395 | unregister_pernet_subsys(&xfrm6_tunnel_net_ops); | 
|  | 396 | kmem_cache_destroy(xfrm6_tunnel_spi_kmem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } | 
|  | 398 |  | 
|  | 399 | module_init(xfrm6_tunnel_init); | 
|  | 400 | module_exit(xfrm6_tunnel_fini); | 
|  | 401 | MODULE_LICENSE("GPL"); | 
| Masahide NAKAMURA | d3d6dd3 | 2007-06-26 23:57:49 -0700 | [diff] [blame] | 402 | MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_IPV6); |