2 * IP Payload Compression Protocol (IPComp) - RFC3173.
4 * Copyright (c) 2003 James Morris <jmorris@intercode.com.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
12 * - Tunable compression parameters.
13 * - Compression stats.
14 * - Adaptive compression.
16 #include <linux/config.h>
17 #include <linux/module.h>
18 #include <asm/scatterlist.h>
19 #include <asm/semaphore.h>
20 #include <linux/crypto.h>
21 #include <linux/pfkeyv2.h>
22 #include <linux/percpu.h>
23 #include <linux/smp.h>
24 #include <linux/list.h>
25 #include <linux/vmalloc.h>
26 #include <linux/rtnetlink.h>
27 #include <linux/mutex.h>
31 #include <net/ipcomp.h>
32 #include <net/protocol.h>
35 struct list_head list
;
36 struct crypto_tfm
**tfms
;
40 static DEFINE_MUTEX(ipcomp_resource_mutex
);
41 static void **ipcomp_scratches
;
42 static int ipcomp_scratch_users
;
43 static LIST_HEAD(ipcomp_tfms_list
);
45 static int ipcomp_decompress(struct xfrm_state
*x
, struct sk_buff
*skb
)
49 struct ipcomp_data
*ipcd
= x
->data
;
51 struct crypto_tfm
*tfm
;
55 dlen
= IPCOMP_SCRATCH_SIZE
;
59 scratch
= *per_cpu_ptr(ipcomp_scratches
, cpu
);
60 tfm
= *per_cpu_ptr(ipcd
->tfms
, cpu
);
62 err
= crypto_comp_decompress(tfm
, start
, plen
, scratch
, &dlen
);
66 if (dlen
< (plen
+ sizeof(struct ip_comp_hdr
))) {
71 err
= pskb_expand_head(skb
, 0, dlen
- plen
, GFP_ATOMIC
);
75 skb_put(skb
, dlen
- plen
);
76 memcpy(skb
->data
, scratch
, dlen
);
78 iph
->tot_len
= htons(dlen
+ iph
->ihl
* 4);
84 static int ipcomp_input(struct xfrm_state
*x
, struct sk_buff
*skb
)
95 if ((skb_is_nonlinear(skb
) || skb_cloned(skb
)) &&
96 skb_linearize(skb
, GFP_ATOMIC
) != 0) {
101 skb
->ip_summed
= CHECKSUM_NONE
;
103 /* Remove ipcomp header and decompress original payload */
105 memcpy(&tmp_iph
, iph
, iph
->ihl
* 4);
106 nexthdr
= *(u8
*)skb
->data
;
107 skb_pull(skb
, sizeof(struct ip_comp_hdr
));
108 skb
->nh
.raw
+= sizeof(struct ip_comp_hdr
);
109 memcpy(skb
->nh
.raw
, &tmp_iph
, tmp_iph
.iph
.ihl
* 4);
111 iph
->tot_len
= htons(ntohs(iph
->tot_len
) - sizeof(struct ip_comp_hdr
));
112 iph
->protocol
= nexthdr
;
113 skb
->h
.raw
= skb
->data
;
114 err
= ipcomp_decompress(x
, skb
);
120 static int ipcomp_compress(struct xfrm_state
*x
, struct sk_buff
*skb
)
122 int err
, plen
, dlen
, ihlen
;
123 struct iphdr
*iph
= skb
->nh
.iph
;
124 struct ipcomp_data
*ipcd
= x
->data
;
126 struct crypto_tfm
*tfm
;
129 ihlen
= iph
->ihl
* 4;
130 plen
= skb
->len
- ihlen
;
131 dlen
= IPCOMP_SCRATCH_SIZE
;
132 start
= skb
->data
+ ihlen
;
135 scratch
= *per_cpu_ptr(ipcomp_scratches
, cpu
);
136 tfm
= *per_cpu_ptr(ipcd
->tfms
, cpu
);
138 err
= crypto_comp_compress(tfm
, start
, plen
, scratch
, &dlen
);
142 if ((dlen
+ sizeof(struct ip_comp_hdr
)) >= plen
) {
147 memcpy(start
+ sizeof(struct ip_comp_hdr
), scratch
, dlen
);
150 pskb_trim(skb
, ihlen
+ dlen
+ sizeof(struct ip_comp_hdr
));
158 static int ipcomp_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
162 struct ip_comp_hdr
*ipch
;
163 struct ipcomp_data
*ipcd
= x
->data
;
167 iph
->tot_len
= htons(skb
->len
);
168 hdr_len
= iph
->ihl
* 4;
169 if ((skb
->len
- hdr_len
) < ipcd
->threshold
) {
170 /* Don't bother compressing */
174 if ((skb_is_nonlinear(skb
) || skb_cloned(skb
)) &&
175 skb_linearize(skb
, GFP_ATOMIC
) != 0) {
179 err
= ipcomp_compress(x
, skb
);
186 /* Install ipcomp header, convert into ipcomp datagram. */
187 iph
->tot_len
= htons(skb
->len
);
188 ipch
= (struct ip_comp_hdr
*)((char *)iph
+ iph
->ihl
* 4);
189 ipch
->nexthdr
= iph
->protocol
;
191 ipch
->cpi
= htons((u16
)ntohl(x
->id
.spi
));
192 iph
->protocol
= IPPROTO_COMP
;
202 static void ipcomp4_err(struct sk_buff
*skb
, u32 info
)
205 struct iphdr
*iph
= (struct iphdr
*)skb
->data
;
206 struct ip_comp_hdr
*ipch
= (struct ip_comp_hdr
*)(skb
->data
+(iph
->ihl
<<2));
207 struct xfrm_state
*x
;
209 if (skb
->h
.icmph
->type
!= ICMP_DEST_UNREACH
||
210 skb
->h
.icmph
->code
!= ICMP_FRAG_NEEDED
)
213 spi
= htonl(ntohs(ipch
->cpi
));
214 x
= xfrm_state_lookup((xfrm_address_t
*)&iph
->daddr
,
215 spi
, IPPROTO_COMP
, AF_INET
);
218 NETDEBUG(KERN_DEBUG
"pmtu discovery on SA IPCOMP/%08x/%u.%u.%u.%u\n",
219 spi
, NIPQUAD(iph
->daddr
));
223 /* We always hold one tunnel user reference to indicate a tunnel */
224 static struct xfrm_state
*ipcomp_tunnel_create(struct xfrm_state
*x
)
226 struct xfrm_state
*t
;
228 t
= xfrm_state_alloc();
232 t
->id
.proto
= IPPROTO_IPIP
;
233 t
->id
.spi
= x
->props
.saddr
.a4
;
234 t
->id
.daddr
.a4
= x
->id
.daddr
.a4
;
235 memcpy(&t
->sel
, &x
->sel
, sizeof(t
->sel
));
236 t
->props
.family
= AF_INET
;
238 t
->props
.saddr
.a4
= x
->props
.saddr
.a4
;
239 t
->props
.flags
= x
->props
.flags
;
241 if (xfrm_init_state(t
))
244 atomic_set(&t
->tunnel_users
, 1);
249 t
->km
.state
= XFRM_STATE_DEAD
;
256 * Must be protected by xfrm_cfg_mutex. State and tunnel user references are
257 * always incremented on success.
259 static int ipcomp_tunnel_attach(struct xfrm_state
*x
)
262 struct xfrm_state
*t
;
264 t
= xfrm_state_lookup((xfrm_address_t
*)&x
->id
.daddr
.a4
,
265 x
->props
.saddr
.a4
, IPPROTO_IPIP
, AF_INET
);
267 t
= ipcomp_tunnel_create(x
);
272 xfrm_state_insert(t
);
276 atomic_inc(&t
->tunnel_users
);
281 static void ipcomp_free_scratches(void)
286 if (--ipcomp_scratch_users
)
289 scratches
= ipcomp_scratches
;
293 for_each_possible_cpu(i
)
294 vfree(*per_cpu_ptr(scratches
, i
));
296 free_percpu(scratches
);
299 static void **ipcomp_alloc_scratches(void)
304 if (ipcomp_scratch_users
++)
305 return ipcomp_scratches
;
307 scratches
= alloc_percpu(void *);
311 ipcomp_scratches
= scratches
;
313 for_each_possible_cpu(i
) {
314 void *scratch
= vmalloc(IPCOMP_SCRATCH_SIZE
);
317 *per_cpu_ptr(scratches
, i
) = scratch
;
323 static void ipcomp_free_tfms(struct crypto_tfm
**tfms
)
325 struct ipcomp_tfms
*pos
;
328 list_for_each_entry(pos
, &ipcomp_tfms_list
, list
) {
329 if (pos
->tfms
== tfms
)
338 list_del(&pos
->list
);
344 for_each_possible_cpu(cpu
) {
345 struct crypto_tfm
*tfm
= *per_cpu_ptr(tfms
, cpu
);
346 crypto_free_tfm(tfm
);
351 static struct crypto_tfm
**ipcomp_alloc_tfms(const char *alg_name
)
353 struct ipcomp_tfms
*pos
;
354 struct crypto_tfm
**tfms
;
357 /* This can be any valid CPU ID so we don't need locking. */
358 cpu
= raw_smp_processor_id();
360 list_for_each_entry(pos
, &ipcomp_tfms_list
, list
) {
361 struct crypto_tfm
*tfm
;
364 tfm
= *per_cpu_ptr(tfms
, cpu
);
366 if (!strcmp(crypto_tfm_alg_name(tfm
), alg_name
)) {
372 pos
= kmalloc(sizeof(*pos
), GFP_KERNEL
);
377 INIT_LIST_HEAD(&pos
->list
);
378 list_add(&pos
->list
, &ipcomp_tfms_list
);
380 pos
->tfms
= tfms
= alloc_percpu(struct crypto_tfm
*);
384 for_each_possible_cpu(cpu
) {
385 struct crypto_tfm
*tfm
= crypto_alloc_tfm(alg_name
, 0);
388 *per_cpu_ptr(tfms
, cpu
) = tfm
;
394 ipcomp_free_tfms(tfms
);
398 static void ipcomp_free_data(struct ipcomp_data
*ipcd
)
401 ipcomp_free_tfms(ipcd
->tfms
);
402 ipcomp_free_scratches();
405 static void ipcomp_destroy(struct xfrm_state
*x
)
407 struct ipcomp_data
*ipcd
= x
->data
;
410 xfrm_state_delete_tunnel(x
);
411 mutex_lock(&ipcomp_resource_mutex
);
412 ipcomp_free_data(ipcd
);
413 mutex_unlock(&ipcomp_resource_mutex
);
417 static int ipcomp_init_state(struct xfrm_state
*x
)
420 struct ipcomp_data
*ipcd
;
421 struct xfrm_algo_desc
*calg_desc
;
431 ipcd
= kmalloc(sizeof(*ipcd
), GFP_KERNEL
);
435 memset(ipcd
, 0, sizeof(*ipcd
));
436 x
->props
.header_len
= 0;
438 x
->props
.header_len
+= sizeof(struct iphdr
);
440 mutex_lock(&ipcomp_resource_mutex
);
441 if (!ipcomp_alloc_scratches())
444 ipcd
->tfms
= ipcomp_alloc_tfms(x
->calg
->alg_name
);
447 mutex_unlock(&ipcomp_resource_mutex
);
450 err
= ipcomp_tunnel_attach(x
);
455 calg_desc
= xfrm_calg_get_byname(x
->calg
->alg_name
, 0);
457 ipcd
->threshold
= calg_desc
->uinfo
.comp
.threshold
;
464 mutex_lock(&ipcomp_resource_mutex
);
466 ipcomp_free_data(ipcd
);
467 mutex_unlock(&ipcomp_resource_mutex
);
472 static struct xfrm_type ipcomp_type
= {
473 .description
= "IPCOMP4",
474 .owner
= THIS_MODULE
,
475 .proto
= IPPROTO_COMP
,
476 .init_state
= ipcomp_init_state
,
477 .destructor
= ipcomp_destroy
,
478 .input
= ipcomp_input
,
479 .output
= ipcomp_output
482 static struct net_protocol ipcomp4_protocol
= {
483 .handler
= xfrm4_rcv
,
484 .err_handler
= ipcomp4_err
,
488 static int __init
ipcomp4_init(void)
490 if (xfrm_register_type(&ipcomp_type
, AF_INET
) < 0) {
491 printk(KERN_INFO
"ipcomp init: can't add xfrm type\n");
494 if (inet_add_protocol(&ipcomp4_protocol
, IPPROTO_COMP
) < 0) {
495 printk(KERN_INFO
"ipcomp init: can't add protocol\n");
496 xfrm_unregister_type(&ipcomp_type
, AF_INET
);
502 static void __exit
ipcomp4_fini(void)
504 if (inet_del_protocol(&ipcomp4_protocol
, IPPROTO_COMP
) < 0)
505 printk(KERN_INFO
"ip ipcomp close: can't remove protocol\n");
506 if (xfrm_unregister_type(&ipcomp_type
, AF_INET
) < 0)
507 printk(KERN_INFO
"ip ipcomp close: can't remove xfrm type\n");
510 module_init(ipcomp4_init
);
511 module_exit(ipcomp4_fini
);
513 MODULE_LICENSE("GPL");
514 MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp) - RFC3173");
515 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");