blob: ee6de425ce6b8c28873c8fdd0148b19c584f6d7f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Hideaki1ab14572007-02-09 23:24:49 +090012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * 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 Hideaki1ab14572007-02-09 23:24:49 +090017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * 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 Hideaki1ab14572007-02-09 23:24:49 +090022/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * [Memo]
24 *
25 * Outbound:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090026 * The compression of IP datagram MUST be done before AH/ESP processing,
27 * fragmentation, and the addition of Hop-by-Hop/Routing header.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
29 * Inbound:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090030 * The decompression of IP datagram MUST be done after the reassembly,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * AH/ESP processing.
32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/module.h>
34#include <net/ip.h>
35#include <net/xfrm.h>
36#include <net/ipcomp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/crypto.h>
Herbert Xu4999f362007-11-07 02:21:47 -080038#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#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 Melo14c85022005-12-27 02:43:12 -020048#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/ipv6.h>
50#include <linux/icmpv6.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080051#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53struct ipcomp6_tfms {
54 struct list_head list;
Herbert Xue4d5b792006-08-26 18:12:40 +100055 struct crypto_comp **tfms;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int users;
57};
58
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080059static DEFINE_MUTEX(ipcomp6_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static void **ipcomp6_scratches;
61static int ipcomp6_scratch_users;
62static LIST_HEAD(ipcomp6_tfms_list);
63
Herbert Xue6956332006-04-01 00:52:46 -080064static int ipcomp6_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Herbert Xu2614fa52008-01-29 21:11:46 -080066 int nexthdr;
Herbert Xu364c6ba2006-06-09 16:10:40 -070067 int err = -ENOMEM;
Herbert Xu87bdc482007-10-10 15:45:25 -070068 struct ip_comp_hdr *ipch;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 int plen, dlen;
70 struct ipcomp_data *ipcd = x->data;
71 u8 *start, *scratch;
Herbert Xue4d5b792006-08-26 18:12:40 +100072 struct crypto_comp *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 int cpu;
74
Herbert Xu364c6ba2006-06-09 16:10:40 -070075 if (skb_linearize_cow(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 skb->ip_summed = CHECKSUM_NONE;
79
80 /* Remove ipcomp header and decompress original payload */
Herbert Xu31a4ab92006-05-27 23:06:13 -070081 ipch = (void *)skb->data;
Herbert Xu2614fa52008-01-29 21:11:46 -080082 nexthdr = ipch->nexthdr;
83
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -070084 skb->transport_header = skb->network_header + sizeof(*ipch);
Herbert Xu31a4ab92006-05-27 23:06:13 -070085 __skb_pull(skb, sizeof(*ipch));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
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 Xu87bdc482007-10-10 15:45:25 -070097 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 goto out_put_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Herbert Xu87bdc482007-10-10 15:45:25 -0700100 if (dlen < (plen + sizeof(*ipch))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 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 Xuda952312006-07-11 13:50:09 -0700110 skb->truesize += dlen - plen;
111 __skb_put(skb, dlen - plen);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300112 skb_copy_to_linear_data(skb, scratch, dlen);
Herbert Xu2614fa52008-01-29 21:11:46 -0800113 err = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115out_put_cpu:
116 put_cpu();
117out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return err;
119}
120
121static int ipcomp6_output(struct xfrm_state *x, struct sk_buff *skb)
122{
123 int err;
Herbert Xu87bdc482007-10-10 15:45:25 -0700124 struct ip_comp_hdr *ipch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 struct ipcomp_data *ipcd = x->data;
126 int plen, dlen;
127 u8 *start, *scratch;
Herbert Xue4d5b792006-08-26 18:12:40 +1000128 struct crypto_comp *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 /* check whether datagram len is larger than threshold */
Herbert Xuceb1eec82007-10-10 15:45:52 -0700132 if (skb->len < ipcd->threshold) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 goto out_ok;
134 }
135
Herbert Xu364c6ba2006-06-09 16:10:40 -0700136 if (skb_linearize_cow(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 goto out_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /* compression */
Herbert Xuceb1eec82007-10-10 15:45:52 -0700140 plen = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 dlen = IPCOMP_SCRATCH_SIZE;
Herbert Xuceb1eec82007-10-10 15:45:52 -0700142 start = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 cpu = get_cpu();
145 scratch = *per_cpu_ptr(ipcomp6_scratches, cpu);
146 tfm = *per_cpu_ptr(ipcd->tfms, cpu);
147
Herbert Xu21e43182008-02-28 11:23:17 -0800148 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 err = crypto_comp_compress(tfm, start, plen, scratch, &dlen);
Herbert Xu21e43182008-02-28 11:23:17 -0800150 local_bh_enable();
Herbert Xu87bdc482007-10-10 15:45:25 -0700151 if (err || (dlen + sizeof(*ipch)) >= plen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 put_cpu();
153 goto out_ok;
154 }
155 memcpy(start + sizeof(struct ip_comp_hdr), scratch, dlen);
156 put_cpu();
Herbert Xuceb1eec82007-10-10 15:45:52 -0700157 pskb_trim(skb, dlen + sizeof(struct ip_comp_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* insert ipcomp header and replace datagram */
Herbert Xu87bdc482007-10-10 15:45:25 -0700160 ipch = ip_comp_hdr(skb);
Herbert Xu007f0212007-10-09 13:25:59 -0700161 ipch->nexthdr = *skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ipch->flags = 0;
163 ipch->cpi = htons((u16 )ntohl(x->id.spi));
Herbert Xu007f0212007-10-09 13:25:59 -0700164 *skb_mac_header(skb) = IPPROTO_COMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166out_ok:
Herbert Xuceb1eec82007-10-10 15:45:52 -0700167 skb_push(skb, -skb_network_offset(skb));
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return 0;
170}
171
172static void ipcomp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900173 int type, int code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Al Viroa94cfd12006-09-27 18:47:24 -0700175 __be32 spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct ipv6hdr *iph = (struct ipv6hdr*)skb->data;
Herbert Xu87bdc482007-10-10 15:45:25 -0700177 struct ip_comp_hdr *ipcomph =
178 (struct ip_comp_hdr *)(skb->data + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct xfrm_state *x;
180
181 if (type != ICMPV6_DEST_UNREACH && type != ICMPV6_PKT_TOOBIG)
182 return;
183
Alexey Dobriyan4195f812006-05-22 16:53:22 -0700184 spi = htonl(ntohs(ipcomph->cpi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, spi, IPPROTO_COMP, AF_INET6);
186 if (!x)
187 return;
188
Joe Perches46b86a22006-01-13 14:29:07 -0800189 printk(KERN_DEBUG "pmtu discovery on SA IPCOMP/%08x/" NIP6_FMT "\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 spi, NIP6(iph->daddr));
191 xfrm_state_put(x);
192}
193
194static 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 Xu6abaaaa2006-03-26 17:37:54 -0800204 if (!t->id.spi)
205 goto error;
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 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 Xue40b3282007-11-13 21:39:08 -0800210 t->props.mode = x->props.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 memcpy(t->props.saddr.a6, x->props.saddr.a6, sizeof(struct in6_addr));
212
Herbert Xu72cb6962005-06-20 13:18:08 -0700213 if (xfrm_init_state(t))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 goto error;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 atomic_set(&t->tunnel_users, 1);
217
218out:
219 return t;
220
221error:
Herbert Xu6abaaaa2006-03-26 17:37:54 -0800222 t->km.state = XFRM_STATE_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 xfrm_state_put(t);
Herbert Xu6abaaaa2006-03-26 17:37:54 -0800224 t = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 goto out;
226}
227
228static int ipcomp6_tunnel_attach(struct xfrm_state *x)
229{
230 int err = 0;
231 struct xfrm_state *t = NULL;
Al Viroa94cfd12006-09-27 18:47:24 -0700232 __be32 spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
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
250out:
251 return err;
252}
253
254static 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 Hiroyuki6f912042006-04-10 22:52:50 -0700266 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 void *scratch = *per_cpu_ptr(scratches, i);
Jesper Juhl2b191be2006-03-20 17:46:29 -0800268
269 vfree(scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271
272 free_percpu(scratches);
273}
274
275static 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 Hiroyuki6f912042006-04-10 22:52:50 -0700289 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 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 Xue4d5b792006-08-26 18:12:40 +1000299static void ipcomp6_free_tfms(struct crypto_comp **tfms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
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 Hiroyuki6f912042006-04-10 22:52:50 -0700320 for_each_possible_cpu(cpu) {
Herbert Xue4d5b792006-08-26 18:12:40 +1000321 struct crypto_comp *tfm = *per_cpu_ptr(tfms, cpu);
322 crypto_free_comp(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 free_percpu(tfms);
325}
326
Herbert Xue4d5b792006-08-26 18:12:40 +1000327static struct crypto_comp **ipcomp6_alloc_tfms(const char *alg_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct ipcomp6_tfms *pos;
Herbert Xue4d5b792006-08-26 18:12:40 +1000330 struct crypto_comp **tfms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int cpu;
332
333 /* This can be any valid CPU ID so we don't need locking. */
Herbert Xu6fc8b9e2005-08-18 14:36:59 -0700334 cpu = raw_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 list_for_each_entry(pos, &ipcomp6_tfms_list, list) {
Herbert Xue4d5b792006-08-26 18:12:40 +1000337 struct crypto_comp *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 tfms = pos->tfms;
340 tfm = *per_cpu_ptr(tfms, cpu);
341
Herbert Xue4d5b792006-08-26 18:12:40 +1000342 if (!strcmp(crypto_comp_name(tfm), alg_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 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 Xue4d5b792006-08-26 18:12:40 +1000356 pos->tfms = tfms = alloc_percpu(struct crypto_comp *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (!tfms)
358 goto error;
359
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700360 for_each_possible_cpu(cpu) {
Herbert Xue4d5b792006-08-26 18:12:40 +1000361 struct crypto_comp *tfm = crypto_alloc_comp(alg_name, 0,
362 CRYPTO_ALG_ASYNC);
Herbert Xu4999f362007-11-07 02:21:47 -0800363 if (IS_ERR(tfm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 goto error;
365 *per_cpu_ptr(tfms, cpu) = tfm;
366 }
367
368 return tfms;
369
370error:
371 ipcomp6_free_tfms(tfms);
372 return NULL;
373}
374
375static 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
382static 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 Ven4a3e2f72006-03-20 22:33:17 -0800388 mutex_lock(&ipcomp6_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 ipcomp6_free_data(ipcd);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800390 mutex_unlock(&ipcomp6_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 kfree(ipcd);
392
393 xfrm6_tunnel_free_spi((xfrm_address_t *)&x->props.saddr);
394}
395
Herbert Xu72cb6962005-06-20 13:18:08 -0700396static int ipcomp6_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
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 Torvalds1da177e2005-04-16 15:20:36 -0700409 x->props.header_len = 0;
Herbert Xuca681452007-10-17 21:35:15 -0700410 switch (x->props.mode) {
Herbert Xuca681452007-10-17 21:35:15 -0700411 case XFRM_MODE_TRANSPORT:
412 break;
413 case XFRM_MODE_TUNNEL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 x->props.header_len += sizeof(struct ipv6hdr);
Herbert Xue40b3282007-11-13 21:39:08 -0800415 break;
Herbert Xuca681452007-10-17 21:35:15 -0700416 default:
Herbert Xue40b3282007-11-13 21:39:08 -0800417 goto out;
Herbert Xuca681452007-10-17 21:35:15 -0700418 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900419
Herbert Xue40b3282007-11-13 21:39:08 -0800420 err = -ENOMEM;
421 ipcd = kzalloc(sizeof(*ipcd), GFP_KERNEL);
422 if (!ipcd)
423 goto out;
424
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800425 mutex_lock(&ipcomp6_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 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 Ven4a3e2f72006-03-20 22:33:17 -0800432 mutex_unlock(&ipcomp6_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700434 if (x->props.mode == XFRM_MODE_TUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 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;
445out:
446 return err;
447error_tunnel:
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800448 mutex_lock(&ipcomp6_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449error:
450 ipcomp6_free_data(ipcd);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800451 mutex_unlock(&ipcomp6_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 kfree(ipcd);
453
454 goto out;
455}
456
Eric Dumazet533cb5b2008-01-30 19:11:50 -0800457static const struct xfrm_type ipcomp6_type =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
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 NAKAMURAaee5adb2006-08-23 17:57:28 -0700466 .hdr_offset = xfrm6_find_1stfragopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467};
468
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900469static struct inet6_protocol ipcomp6_protocol =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 .handler = xfrm6_rcv,
472 .err_handler = ipcomp6_err,
473 .flags = INET6_PROTO_NOPOLICY,
474};
475
476static 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
490static void __exit ipcomp6_fini(void)
491{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900492 if (inet6_del_protocol(&ipcomp6_protocol, IPPROTO_COMP) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 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
498module_init(ipcomp6_init);
499module_exit(ipcomp6_fini);
500MODULE_LICENSE("GPL");
501MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp) for IPv6 - RFC3173");
502MODULE_AUTHOR("Mitsuru KANDA <mk@linux-ipv6.org>");
503
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700504MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_COMP);