| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * IP Payload Compression Protocol (IPComp) for IPv6 - RFC3173 | 
|  | 3 | * | 
|  | 4 | * Copyright (C)2003 USAGI/WIDE Project | 
|  | 5 | * | 
|  | 6 | * Author	Mitsuru KANDA  <mk@linux-ipv6.org> | 
|  | 7 | * | 
|  | 8 | * This program is free software; you can redistribute it and/or modify | 
|  | 9 | * it under the terms of the GNU General Public License as published by | 
|  | 10 | * the Free Software Foundation; either version 2 of the License, or | 
|  | 11 | * (at your option) any later version. | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 12 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * This program is distributed in the hope that it will be useful, | 
|  | 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 16 | * GNU General Public License for more details. | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 17 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | * You should have received a copy of the GNU General Public License | 
|  | 19 | * along with this program; if not, write to the Free Software | 
|  | 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
|  | 21 | */ | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 22 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * [Memo] | 
|  | 24 | * | 
|  | 25 | * Outbound: | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 26 | *  The compression of IP datagram MUST be done before AH/ESP processing, | 
|  | 27 | *  fragmentation, and the addition of Hop-by-Hop/Routing header. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | * | 
|  | 29 | * Inbound: | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 30 | *  The decompression of IP datagram MUST be done after the reassembly, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | *  AH/ESP processing. | 
|  | 32 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/module.h> | 
|  | 34 | #include <net/ip.h> | 
|  | 35 | #include <net/xfrm.h> | 
|  | 36 | #include <net/ipcomp.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/crypto.h> | 
| Herbert Xu | 4999f36 | 2007-11-07 02:21:47 -0800 | [diff] [blame] | 38 | #include <linux/err.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/pfkeyv2.h> | 
|  | 40 | #include <linux/random.h> | 
|  | 41 | #include <linux/percpu.h> | 
|  | 42 | #include <linux/smp.h> | 
|  | 43 | #include <linux/list.h> | 
|  | 44 | #include <linux/vmalloc.h> | 
|  | 45 | #include <linux/rtnetlink.h> | 
|  | 46 | #include <net/icmp.h> | 
|  | 47 | #include <net/ipv6.h> | 
| Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 48 | #include <net/protocol.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/ipv6.h> | 
|  | 50 | #include <linux/icmpv6.h> | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 51 | #include <linux/mutex.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 |  | 
|  | 53 | struct ipcomp6_tfms { | 
|  | 54 | struct list_head list; | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 55 | struct crypto_comp **tfms; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | int users; | 
|  | 57 | }; | 
|  | 58 |  | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 59 | static DEFINE_MUTEX(ipcomp6_resource_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | static void **ipcomp6_scratches; | 
|  | 61 | static int ipcomp6_scratch_users; | 
|  | 62 | static LIST_HEAD(ipcomp6_tfms_list); | 
|  | 63 |  | 
| Herbert Xu | e695633 | 2006-04-01 00:52:46 -0800 | [diff] [blame] | 64 | static int ipcomp6_input(struct xfrm_state *x, struct sk_buff *skb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { | 
| Herbert Xu | 2614fa5 | 2008-01-29 21:11:46 -0800 | [diff] [blame] | 66 | int nexthdr; | 
| Herbert Xu | 364c6ba | 2006-06-09 16:10:40 -0700 | [diff] [blame] | 67 | int err = -ENOMEM; | 
| Herbert Xu | 87bdc48 | 2007-10-10 15:45:25 -0700 | [diff] [blame] | 68 | struct ip_comp_hdr *ipch; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | int plen, dlen; | 
|  | 70 | struct ipcomp_data *ipcd = x->data; | 
|  | 71 | u8 *start, *scratch; | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 72 | struct crypto_comp *tfm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | int cpu; | 
|  | 74 |  | 
| Herbert Xu | 364c6ba | 2006-06-09 16:10:40 -0700 | [diff] [blame] | 75 | if (skb_linearize_cow(skb)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 |  | 
|  | 78 | skb->ip_summed = CHECKSUM_NONE; | 
|  | 79 |  | 
|  | 80 | /* Remove ipcomp header and decompress original payload */ | 
| Herbert Xu | 31a4ab9 | 2006-05-27 23:06:13 -0700 | [diff] [blame] | 81 | ipch = (void *)skb->data; | 
| Herbert Xu | 2614fa5 | 2008-01-29 21:11:46 -0800 | [diff] [blame] | 82 | nexthdr = ipch->nexthdr; | 
|  | 83 |  | 
| Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 84 | skb->transport_header = skb->network_header + sizeof(*ipch); | 
| Herbert Xu | 31a4ab9 | 2006-05-27 23:06:13 -0700 | [diff] [blame] | 85 | __skb_pull(skb, sizeof(*ipch)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 |  | 
|  | 87 | /* decompression */ | 
|  | 88 | plen = skb->len; | 
|  | 89 | dlen = IPCOMP_SCRATCH_SIZE; | 
|  | 90 | start = skb->data; | 
|  | 91 |  | 
|  | 92 | cpu = get_cpu(); | 
|  | 93 | scratch = *per_cpu_ptr(ipcomp6_scratches, cpu); | 
|  | 94 | tfm = *per_cpu_ptr(ipcd->tfms, cpu); | 
|  | 95 |  | 
|  | 96 | err = crypto_comp_decompress(tfm, start, plen, scratch, &dlen); | 
| Herbert Xu | 87bdc48 | 2007-10-10 15:45:25 -0700 | [diff] [blame] | 97 | if (err) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | goto out_put_cpu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 |  | 
| Herbert Xu | 87bdc48 | 2007-10-10 15:45:25 -0700 | [diff] [blame] | 100 | if (dlen < (plen + sizeof(*ipch))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | err = -EINVAL; | 
|  | 102 | goto out_put_cpu; | 
|  | 103 | } | 
|  | 104 |  | 
|  | 105 | err = pskb_expand_head(skb, 0, dlen - plen, GFP_ATOMIC); | 
|  | 106 | if (err) { | 
|  | 107 | goto out_put_cpu; | 
|  | 108 | } | 
|  | 109 |  | 
| Herbert Xu | da95231 | 2006-07-11 13:50:09 -0700 | [diff] [blame] | 110 | skb->truesize += dlen - plen; | 
|  | 111 | __skb_put(skb, dlen - plen); | 
| Arnaldo Carvalho de Melo | 27d7ff4 | 2007-03-31 11:55:19 -0300 | [diff] [blame] | 112 | skb_copy_to_linear_data(skb, scratch, dlen); | 
| Herbert Xu | 2614fa5 | 2008-01-29 21:11:46 -0800 | [diff] [blame] | 113 | err = nexthdr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | out_put_cpu: | 
|  | 116 | put_cpu(); | 
|  | 117 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | return err; | 
|  | 119 | } | 
|  | 120 |  | 
|  | 121 | static int ipcomp6_output(struct xfrm_state *x, struct sk_buff *skb) | 
|  | 122 | { | 
|  | 123 | int err; | 
| Herbert Xu | 87bdc48 | 2007-10-10 15:45:25 -0700 | [diff] [blame] | 124 | struct ip_comp_hdr *ipch; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | struct ipcomp_data *ipcd = x->data; | 
|  | 126 | int plen, dlen; | 
|  | 127 | u8 *start, *scratch; | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 128 | struct crypto_comp *tfm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | int cpu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
|  | 131 | /* check whether datagram len is larger than threshold */ | 
| Herbert Xu | ceb1eec | 2007-10-10 15:45:52 -0700 | [diff] [blame] | 132 | if (skb->len < ipcd->threshold) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | goto out_ok; | 
|  | 134 | } | 
|  | 135 |  | 
| Herbert Xu | 364c6ba | 2006-06-09 16:10:40 -0700 | [diff] [blame] | 136 | if (skb_linearize_cow(skb)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | goto out_ok; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 |  | 
|  | 139 | /* compression */ | 
| Herbert Xu | ceb1eec | 2007-10-10 15:45:52 -0700 | [diff] [blame] | 140 | plen = skb->len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | dlen = IPCOMP_SCRATCH_SIZE; | 
| Herbert Xu | ceb1eec | 2007-10-10 15:45:52 -0700 | [diff] [blame] | 142 | start = skb->data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 |  | 
|  | 144 | cpu = get_cpu(); | 
|  | 145 | scratch = *per_cpu_ptr(ipcomp6_scratches, cpu); | 
|  | 146 | tfm = *per_cpu_ptr(ipcd->tfms, cpu); | 
|  | 147 |  | 
| Herbert Xu | 21e4318 | 2008-02-28 11:23:17 -0800 | [diff] [blame] | 148 | local_bh_disable(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | err = crypto_comp_compress(tfm, start, plen, scratch, &dlen); | 
| Herbert Xu | 21e4318 | 2008-02-28 11:23:17 -0800 | [diff] [blame] | 150 | local_bh_enable(); | 
| Herbert Xu | 87bdc48 | 2007-10-10 15:45:25 -0700 | [diff] [blame] | 151 | if (err || (dlen + sizeof(*ipch)) >= plen) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | put_cpu(); | 
|  | 153 | goto out_ok; | 
|  | 154 | } | 
|  | 155 | memcpy(start + sizeof(struct ip_comp_hdr), scratch, dlen); | 
|  | 156 | put_cpu(); | 
| Herbert Xu | ceb1eec | 2007-10-10 15:45:52 -0700 | [diff] [blame] | 157 | pskb_trim(skb, dlen + sizeof(struct ip_comp_hdr)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 |  | 
|  | 159 | /* insert ipcomp header and replace datagram */ | 
| Herbert Xu | 87bdc48 | 2007-10-10 15:45:25 -0700 | [diff] [blame] | 160 | ipch = ip_comp_hdr(skb); | 
| Herbert Xu | 007f021 | 2007-10-09 13:25:59 -0700 | [diff] [blame] | 161 | ipch->nexthdr = *skb_mac_header(skb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | ipch->flags = 0; | 
|  | 163 | ipch->cpi = htons((u16 )ntohl(x->id.spi)); | 
| Herbert Xu | 007f021 | 2007-10-09 13:25:59 -0700 | [diff] [blame] | 164 | *skb_mac_header(skb) = IPPROTO_COMP; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 |  | 
|  | 166 | out_ok: | 
| Herbert Xu | ceb1eec | 2007-10-10 15:45:52 -0700 | [diff] [blame] | 167 | skb_push(skb, -skb_network_offset(skb)); | 
|  | 168 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | return 0; | 
|  | 170 | } | 
|  | 171 |  | 
|  | 172 | static void ipcomp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 173 | int type, int code, int offset, __be32 info) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | { | 
| Al Viro | a94cfd1 | 2006-09-27 18:47:24 -0700 | [diff] [blame] | 175 | __be32 spi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | struct ipv6hdr *iph = (struct ipv6hdr*)skb->data; | 
| Herbert Xu | 87bdc48 | 2007-10-10 15:45:25 -0700 | [diff] [blame] | 177 | struct ip_comp_hdr *ipcomph = | 
|  | 178 | (struct ip_comp_hdr *)(skb->data + offset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | struct xfrm_state *x; | 
|  | 180 |  | 
|  | 181 | if (type != ICMPV6_DEST_UNREACH && type != ICMPV6_PKT_TOOBIG) | 
|  | 182 | return; | 
|  | 183 |  | 
| Alexey Dobriyan | 4195f81 | 2006-05-22 16:53:22 -0700 | [diff] [blame] | 184 | spi = htonl(ntohs(ipcomph->cpi)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, spi, IPPROTO_COMP, AF_INET6); | 
|  | 186 | if (!x) | 
|  | 187 | return; | 
|  | 188 |  | 
| Joe Perches | 46b86a2 | 2006-01-13 14:29:07 -0800 | [diff] [blame] | 189 | printk(KERN_DEBUG "pmtu discovery on SA IPCOMP/%08x/" NIP6_FMT "\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | spi, NIP6(iph->daddr)); | 
|  | 191 | xfrm_state_put(x); | 
|  | 192 | } | 
|  | 193 |  | 
|  | 194 | static struct xfrm_state *ipcomp6_tunnel_create(struct xfrm_state *x) | 
|  | 195 | { | 
|  | 196 | struct xfrm_state *t = NULL; | 
|  | 197 |  | 
|  | 198 | t = xfrm_state_alloc(); | 
|  | 199 | if (!t) | 
|  | 200 | goto out; | 
|  | 201 |  | 
|  | 202 | t->id.proto = IPPROTO_IPV6; | 
|  | 203 | t->id.spi = xfrm6_tunnel_alloc_spi((xfrm_address_t *)&x->props.saddr); | 
| Herbert Xu | 6abaaaa | 2006-03-26 17:37:54 -0800 | [diff] [blame] | 204 | if (!t->id.spi) | 
|  | 205 | goto error; | 
|  | 206 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | memcpy(t->id.daddr.a6, x->id.daddr.a6, sizeof(struct in6_addr)); | 
|  | 208 | memcpy(&t->sel, &x->sel, sizeof(t->sel)); | 
|  | 209 | t->props.family = AF_INET6; | 
| Herbert Xu | e40b328 | 2007-11-13 21:39:08 -0800 | [diff] [blame] | 210 | t->props.mode = x->props.mode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | memcpy(t->props.saddr.a6, x->props.saddr.a6, sizeof(struct in6_addr)); | 
|  | 212 |  | 
| Herbert Xu | 72cb696 | 2005-06-20 13:18:08 -0700 | [diff] [blame] | 213 | if (xfrm_init_state(t)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | goto error; | 
|  | 215 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | atomic_set(&t->tunnel_users, 1); | 
|  | 217 |  | 
|  | 218 | out: | 
|  | 219 | return t; | 
|  | 220 |  | 
|  | 221 | error: | 
| Herbert Xu | 6abaaaa | 2006-03-26 17:37:54 -0800 | [diff] [blame] | 222 | t->km.state = XFRM_STATE_DEAD; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | xfrm_state_put(t); | 
| Herbert Xu | 6abaaaa | 2006-03-26 17:37:54 -0800 | [diff] [blame] | 224 | t = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | goto out; | 
|  | 226 | } | 
|  | 227 |  | 
|  | 228 | static int ipcomp6_tunnel_attach(struct xfrm_state *x) | 
|  | 229 | { | 
|  | 230 | int err = 0; | 
|  | 231 | struct xfrm_state *t = NULL; | 
| Al Viro | a94cfd1 | 2006-09-27 18:47:24 -0700 | [diff] [blame] | 232 | __be32 spi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 |  | 
|  | 234 | spi = xfrm6_tunnel_spi_lookup((xfrm_address_t *)&x->props.saddr); | 
|  | 235 | if (spi) | 
|  | 236 | t = xfrm_state_lookup((xfrm_address_t *)&x->id.daddr, | 
|  | 237 | spi, IPPROTO_IPV6, AF_INET6); | 
|  | 238 | if (!t) { | 
|  | 239 | t = ipcomp6_tunnel_create(x); | 
|  | 240 | if (!t) { | 
|  | 241 | err = -EINVAL; | 
|  | 242 | goto out; | 
|  | 243 | } | 
|  | 244 | xfrm_state_insert(t); | 
|  | 245 | xfrm_state_hold(t); | 
|  | 246 | } | 
|  | 247 | x->tunnel = t; | 
|  | 248 | atomic_inc(&t->tunnel_users); | 
|  | 249 |  | 
|  | 250 | out: | 
|  | 251 | return err; | 
|  | 252 | } | 
|  | 253 |  | 
|  | 254 | static void ipcomp6_free_scratches(void) | 
|  | 255 | { | 
|  | 256 | int i; | 
|  | 257 | void **scratches; | 
|  | 258 |  | 
|  | 259 | if (--ipcomp6_scratch_users) | 
|  | 260 | return; | 
|  | 261 |  | 
|  | 262 | scratches = ipcomp6_scratches; | 
|  | 263 | if (!scratches) | 
|  | 264 | return; | 
|  | 265 |  | 
| KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 266 | for_each_possible_cpu(i) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | void *scratch = *per_cpu_ptr(scratches, i); | 
| Jesper Juhl | 2b191be | 2006-03-20 17:46:29 -0800 | [diff] [blame] | 268 |  | 
|  | 269 | vfree(scratch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } | 
|  | 271 |  | 
|  | 272 | free_percpu(scratches); | 
|  | 273 | } | 
|  | 274 |  | 
|  | 275 | static void **ipcomp6_alloc_scratches(void) | 
|  | 276 | { | 
|  | 277 | int i; | 
|  | 278 | void **scratches; | 
|  | 279 |  | 
|  | 280 | if (ipcomp6_scratch_users++) | 
|  | 281 | return ipcomp6_scratches; | 
|  | 282 |  | 
|  | 283 | scratches = alloc_percpu(void *); | 
|  | 284 | if (!scratches) | 
|  | 285 | return NULL; | 
|  | 286 |  | 
|  | 287 | ipcomp6_scratches = scratches; | 
|  | 288 |  | 
| KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 289 | for_each_possible_cpu(i) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | void *scratch = vmalloc(IPCOMP_SCRATCH_SIZE); | 
|  | 291 | if (!scratch) | 
|  | 292 | return NULL; | 
|  | 293 | *per_cpu_ptr(scratches, i) = scratch; | 
|  | 294 | } | 
|  | 295 |  | 
|  | 296 | return scratches; | 
|  | 297 | } | 
|  | 298 |  | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 299 | static void ipcomp6_free_tfms(struct crypto_comp **tfms) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | { | 
|  | 301 | struct ipcomp6_tfms *pos; | 
|  | 302 | int cpu; | 
|  | 303 |  | 
|  | 304 | list_for_each_entry(pos, &ipcomp6_tfms_list, list) { | 
|  | 305 | if (pos->tfms == tfms) | 
|  | 306 | break; | 
|  | 307 | } | 
|  | 308 |  | 
|  | 309 | BUG_TRAP(pos); | 
|  | 310 |  | 
|  | 311 | if (--pos->users) | 
|  | 312 | return; | 
|  | 313 |  | 
|  | 314 | list_del(&pos->list); | 
|  | 315 | kfree(pos); | 
|  | 316 |  | 
|  | 317 | if (!tfms) | 
|  | 318 | return; | 
|  | 319 |  | 
| KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 320 | for_each_possible_cpu(cpu) { | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 321 | struct crypto_comp *tfm = *per_cpu_ptr(tfms, cpu); | 
|  | 322 | crypto_free_comp(tfm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | } | 
|  | 324 | free_percpu(tfms); | 
|  | 325 | } | 
|  | 326 |  | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 327 | static struct crypto_comp **ipcomp6_alloc_tfms(const char *alg_name) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { | 
|  | 329 | struct ipcomp6_tfms *pos; | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 330 | struct crypto_comp **tfms; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | int cpu; | 
|  | 332 |  | 
|  | 333 | /* This can be any valid CPU ID so we don't need locking. */ | 
| Herbert Xu | 6fc8b9e | 2005-08-18 14:36:59 -0700 | [diff] [blame] | 334 | cpu = raw_smp_processor_id(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 |  | 
|  | 336 | list_for_each_entry(pos, &ipcomp6_tfms_list, list) { | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 337 | struct crypto_comp *tfm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 |  | 
|  | 339 | tfms = pos->tfms; | 
|  | 340 | tfm = *per_cpu_ptr(tfms, cpu); | 
|  | 341 |  | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 342 | if (!strcmp(crypto_comp_name(tfm), alg_name)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | pos->users++; | 
|  | 344 | return tfms; | 
|  | 345 | } | 
|  | 346 | } | 
|  | 347 |  | 
|  | 348 | pos = kmalloc(sizeof(*pos), GFP_KERNEL); | 
|  | 349 | if (!pos) | 
|  | 350 | return NULL; | 
|  | 351 |  | 
|  | 352 | pos->users = 1; | 
|  | 353 | INIT_LIST_HEAD(&pos->list); | 
|  | 354 | list_add(&pos->list, &ipcomp6_tfms_list); | 
|  | 355 |  | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 356 | pos->tfms = tfms = alloc_percpu(struct crypto_comp *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | if (!tfms) | 
|  | 358 | goto error; | 
|  | 359 |  | 
| KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 360 | for_each_possible_cpu(cpu) { | 
| Herbert Xu | e4d5b79 | 2006-08-26 18:12:40 +1000 | [diff] [blame] | 361 | struct crypto_comp *tfm = crypto_alloc_comp(alg_name, 0, | 
|  | 362 | CRYPTO_ALG_ASYNC); | 
| Herbert Xu | 4999f36 | 2007-11-07 02:21:47 -0800 | [diff] [blame] | 363 | if (IS_ERR(tfm)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | goto error; | 
|  | 365 | *per_cpu_ptr(tfms, cpu) = tfm; | 
|  | 366 | } | 
|  | 367 |  | 
|  | 368 | return tfms; | 
|  | 369 |  | 
|  | 370 | error: | 
|  | 371 | ipcomp6_free_tfms(tfms); | 
|  | 372 | return NULL; | 
|  | 373 | } | 
|  | 374 |  | 
|  | 375 | static void ipcomp6_free_data(struct ipcomp_data *ipcd) | 
|  | 376 | { | 
|  | 377 | if (ipcd->tfms) | 
|  | 378 | ipcomp6_free_tfms(ipcd->tfms); | 
|  | 379 | ipcomp6_free_scratches(); | 
|  | 380 | } | 
|  | 381 |  | 
|  | 382 | static void ipcomp6_destroy(struct xfrm_state *x) | 
|  | 383 | { | 
|  | 384 | struct ipcomp_data *ipcd = x->data; | 
|  | 385 | if (!ipcd) | 
|  | 386 | return; | 
|  | 387 | xfrm_state_delete_tunnel(x); | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 388 | mutex_lock(&ipcomp6_resource_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | ipcomp6_free_data(ipcd); | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 390 | mutex_unlock(&ipcomp6_resource_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | kfree(ipcd); | 
|  | 392 |  | 
|  | 393 | xfrm6_tunnel_free_spi((xfrm_address_t *)&x->props.saddr); | 
|  | 394 | } | 
|  | 395 |  | 
| Herbert Xu | 72cb696 | 2005-06-20 13:18:08 -0700 | [diff] [blame] | 396 | static int ipcomp6_init_state(struct xfrm_state *x) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | { | 
|  | 398 | int err; | 
|  | 399 | struct ipcomp_data *ipcd; | 
|  | 400 | struct xfrm_algo_desc *calg_desc; | 
|  | 401 |  | 
|  | 402 | err = -EINVAL; | 
|  | 403 | if (!x->calg) | 
|  | 404 | goto out; | 
|  | 405 |  | 
|  | 406 | if (x->encap) | 
|  | 407 | goto out; | 
|  | 408 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | x->props.header_len = 0; | 
| Herbert Xu | ca68145 | 2007-10-17 21:35:15 -0700 | [diff] [blame] | 410 | switch (x->props.mode) { | 
| Herbert Xu | ca68145 | 2007-10-17 21:35:15 -0700 | [diff] [blame] | 411 | case XFRM_MODE_TRANSPORT: | 
|  | 412 | break; | 
|  | 413 | case XFRM_MODE_TUNNEL: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | x->props.header_len += sizeof(struct ipv6hdr); | 
| Herbert Xu | e40b328 | 2007-11-13 21:39:08 -0800 | [diff] [blame] | 415 | break; | 
| Herbert Xu | ca68145 | 2007-10-17 21:35:15 -0700 | [diff] [blame] | 416 | default: | 
| Herbert Xu | e40b328 | 2007-11-13 21:39:08 -0800 | [diff] [blame] | 417 | goto out; | 
| Herbert Xu | ca68145 | 2007-10-17 21:35:15 -0700 | [diff] [blame] | 418 | } | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 419 |  | 
| Herbert Xu | e40b328 | 2007-11-13 21:39:08 -0800 | [diff] [blame] | 420 | err = -ENOMEM; | 
|  | 421 | ipcd = kzalloc(sizeof(*ipcd), GFP_KERNEL); | 
|  | 422 | if (!ipcd) | 
|  | 423 | goto out; | 
|  | 424 |  | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 425 | mutex_lock(&ipcomp6_resource_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | if (!ipcomp6_alloc_scratches()) | 
|  | 427 | goto error; | 
|  | 428 |  | 
|  | 429 | ipcd->tfms = ipcomp6_alloc_tfms(x->calg->alg_name); | 
|  | 430 | if (!ipcd->tfms) | 
|  | 431 | goto error; | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 432 | mutex_unlock(&ipcomp6_resource_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 |  | 
| Masahide NAKAMURA | 7e49e6d | 2006-09-22 15:05:15 -0700 | [diff] [blame] | 434 | if (x->props.mode == XFRM_MODE_TUNNEL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | err = ipcomp6_tunnel_attach(x); | 
|  | 436 | if (err) | 
|  | 437 | goto error_tunnel; | 
|  | 438 | } | 
|  | 439 |  | 
|  | 440 | calg_desc = xfrm_calg_get_byname(x->calg->alg_name, 0); | 
|  | 441 | BUG_ON(!calg_desc); | 
|  | 442 | ipcd->threshold = calg_desc->uinfo.comp.threshold; | 
|  | 443 | x->data = ipcd; | 
|  | 444 | err = 0; | 
|  | 445 | out: | 
|  | 446 | return err; | 
|  | 447 | error_tunnel: | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 448 | mutex_lock(&ipcomp6_resource_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | error: | 
|  | 450 | ipcomp6_free_data(ipcd); | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 451 | mutex_unlock(&ipcomp6_resource_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | kfree(ipcd); | 
|  | 453 |  | 
|  | 454 | goto out; | 
|  | 455 | } | 
|  | 456 |  | 
| Eric Dumazet | 533cb5b | 2008-01-30 19:11:50 -0800 | [diff] [blame] | 457 | static const struct xfrm_type ipcomp6_type = | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | { | 
|  | 459 | .description	= "IPCOMP6", | 
|  | 460 | .owner		= THIS_MODULE, | 
|  | 461 | .proto		= IPPROTO_COMP, | 
|  | 462 | .init_state	= ipcomp6_init_state, | 
|  | 463 | .destructor	= ipcomp6_destroy, | 
|  | 464 | .input		= ipcomp6_input, | 
|  | 465 | .output		= ipcomp6_output, | 
| Masahide NAKAMURA | aee5adb | 2006-08-23 17:57:28 -0700 | [diff] [blame] | 466 | .hdr_offset	= xfrm6_find_1stfragopt, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | }; | 
|  | 468 |  | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 469 | static struct inet6_protocol ipcomp6_protocol = | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | { | 
|  | 471 | .handler	= xfrm6_rcv, | 
|  | 472 | .err_handler	= ipcomp6_err, | 
|  | 473 | .flags		= INET6_PROTO_NOPOLICY, | 
|  | 474 | }; | 
|  | 475 |  | 
|  | 476 | static int __init ipcomp6_init(void) | 
|  | 477 | { | 
|  | 478 | if (xfrm_register_type(&ipcomp6_type, AF_INET6) < 0) { | 
|  | 479 | printk(KERN_INFO "ipcomp6 init: can't add xfrm type\n"); | 
|  | 480 | return -EAGAIN; | 
|  | 481 | } | 
|  | 482 | if (inet6_add_protocol(&ipcomp6_protocol, IPPROTO_COMP) < 0) { | 
|  | 483 | printk(KERN_INFO "ipcomp6 init: can't add protocol\n"); | 
|  | 484 | xfrm_unregister_type(&ipcomp6_type, AF_INET6); | 
|  | 485 | return -EAGAIN; | 
|  | 486 | } | 
|  | 487 | return 0; | 
|  | 488 | } | 
|  | 489 |  | 
|  | 490 | static void __exit ipcomp6_fini(void) | 
|  | 491 | { | 
| YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 492 | if (inet6_del_protocol(&ipcomp6_protocol, IPPROTO_COMP) < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | printk(KERN_INFO "ipv6 ipcomp close: can't remove protocol\n"); | 
|  | 494 | if (xfrm_unregister_type(&ipcomp6_type, AF_INET6) < 0) | 
|  | 495 | printk(KERN_INFO "ipv6 ipcomp close: can't remove xfrm type\n"); | 
|  | 496 | } | 
|  | 497 |  | 
|  | 498 | module_init(ipcomp6_init); | 
|  | 499 | module_exit(ipcomp6_fini); | 
|  | 500 | MODULE_LICENSE("GPL"); | 
|  | 501 | MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp) for IPv6 - RFC3173"); | 
|  | 502 | MODULE_AUTHOR("Mitsuru KANDA <mk@linux-ipv6.org>"); | 
|  | 503 |  | 
| Masahide NAKAMURA | d3d6dd3 | 2007-06-26 23:57:49 -0700 | [diff] [blame] | 504 | MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_COMP); |