2 * IP Payload Compression Protocol (IPComp) - RFC3173.
4 * Copyright (c) 2003 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2003-2008 Herbert Xu <herbert@gondor.apana.org.au>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2 of the License, or (at your option)
13 * - Tunable compression parameters.
14 * - Compression stats.
15 * - Adaptive compression.
18 #include <linux/crypto.h>
19 #include <linux/err.h>
20 #include <linux/gfp.h>
21 #include <linux/list.h>
22 #include <linux/module.h>
23 #include <linux/mutex.h>
24 #include <linux/percpu.h>
25 #include <linux/smp.h>
26 #include <linux/vmalloc.h>
28 #include <net/ipcomp.h>
32 struct list_head list;
33 struct crypto_comp **tfms;
37 static DEFINE_MUTEX(ipcomp_resource_mutex);
38 static void **ipcomp_scratches;
39 static int ipcomp_scratch_users;
40 static LIST_HEAD(ipcomp_tfms_list);
42 static int ipcomp_decompress(struct xfrm_state *x, struct sk_buff *skb)
44 struct ipcomp_data *ipcd = x->data;
45 const int plen = skb->len;
46 int dlen = IPCOMP_SCRATCH_SIZE;
47 const u8 *start = skb->data;
48 const int cpu = get_cpu();
49 u8 *scratch = *per_cpu_ptr(ipcomp_scratches, cpu);
50 struct crypto_comp *tfm = *per_cpu_ptr(ipcd->tfms, cpu);
51 int err = crypto_comp_decompress(tfm, start, plen, scratch, &dlen);
57 if (dlen < (plen + sizeof(struct ip_comp_hdr))) {
63 if (len > skb_tailroom(skb))
64 len = skb_tailroom(skb);
69 skb_copy_to_linear_data(skb, scratch, len);
71 while ((scratch += len, dlen -= len) > 0) {
75 if (WARN_ON(skb_shinfo(skb)->nr_frags >= MAX_SKB_FRAGS))
78 frag = skb_shinfo(skb)->frags + skb_shinfo(skb)->nr_frags;
79 frag->page = alloc_page(GFP_ATOMIC);
89 memcpy(page_address(frag->page), scratch, len);
91 frag->page_offset = 0;
97 skb_shinfo(skb)->nr_frags++;
107 int ipcomp_input(struct xfrm_state *x, struct sk_buff *skb)
111 struct ip_comp_hdr *ipch;
113 if (skb_linearize_cow(skb))
116 skb->ip_summed = CHECKSUM_NONE;
118 /* Remove ipcomp header and decompress original payload */
119 ipch = (void *)skb->data;
120 nexthdr = ipch->nexthdr;
122 skb->transport_header = skb->network_header + sizeof(*ipch);
123 __skb_pull(skb, sizeof(*ipch));
124 err = ipcomp_decompress(x, skb);
133 EXPORT_SYMBOL_GPL(ipcomp_input);
135 static int ipcomp_compress(struct xfrm_state *x, struct sk_buff *skb)
137 struct ipcomp_data *ipcd = x->data;
138 const int plen = skb->len;
139 int dlen = IPCOMP_SCRATCH_SIZE;
140 u8 *start = skb->data;
141 const int cpu = get_cpu();
142 u8 *scratch = *per_cpu_ptr(ipcomp_scratches, cpu);
143 struct crypto_comp *tfm = *per_cpu_ptr(ipcd->tfms, cpu);
147 err = crypto_comp_compress(tfm, start, plen, scratch, &dlen);
152 if ((dlen + sizeof(struct ip_comp_hdr)) >= plen) {
157 memcpy(start + sizeof(struct ip_comp_hdr), scratch, dlen);
160 pskb_trim(skb, dlen + sizeof(struct ip_comp_hdr));
168 int ipcomp_output(struct xfrm_state *x, struct sk_buff *skb)
171 struct ip_comp_hdr *ipch;
172 struct ipcomp_data *ipcd = x->data;
174 if (skb->len < ipcd->threshold) {
175 /* Don't bother compressing */
179 if (skb_linearize_cow(skb))
182 err = ipcomp_compress(x, skb);
188 /* Install ipcomp header, convert into ipcomp datagram. */
189 ipch = ip_comp_hdr(skb);
190 ipch->nexthdr = *skb_mac_header(skb);
192 ipch->cpi = htons((u16 )ntohl(x->id.spi));
193 *skb_mac_header(skb) = IPPROTO_COMP;
195 skb_push(skb, -skb_network_offset(skb));
198 EXPORT_SYMBOL_GPL(ipcomp_output);
200 static void ipcomp_free_scratches(void)
205 if (--ipcomp_scratch_users)
208 scratches = ipcomp_scratches;
212 for_each_possible_cpu(i)
213 vfree(*per_cpu_ptr(scratches, i));
215 free_percpu(scratches);
218 static void **ipcomp_alloc_scratches(void)
223 if (ipcomp_scratch_users++)
224 return ipcomp_scratches;
226 scratches = alloc_percpu(void *);
230 ipcomp_scratches = scratches;
232 for_each_possible_cpu(i) {
233 void *scratch = vmalloc(IPCOMP_SCRATCH_SIZE);
236 *per_cpu_ptr(scratches, i) = scratch;
242 static void ipcomp_free_tfms(struct crypto_comp **tfms)
244 struct ipcomp_tfms *pos;
247 list_for_each_entry(pos, &ipcomp_tfms_list, list) {
248 if (pos->tfms == tfms)
257 list_del(&pos->list);
263 for_each_possible_cpu(cpu) {
264 struct crypto_comp *tfm = *per_cpu_ptr(tfms, cpu);
265 crypto_free_comp(tfm);
270 static struct crypto_comp **ipcomp_alloc_tfms(const char *alg_name)
272 struct ipcomp_tfms *pos;
273 struct crypto_comp **tfms;
276 /* This can be any valid CPU ID so we don't need locking. */
277 cpu = raw_smp_processor_id();
279 list_for_each_entry(pos, &ipcomp_tfms_list, list) {
280 struct crypto_comp *tfm;
283 tfm = *per_cpu_ptr(tfms, cpu);
285 if (!strcmp(crypto_comp_name(tfm), alg_name)) {
291 pos = kmalloc(sizeof(*pos), GFP_KERNEL);
296 INIT_LIST_HEAD(&pos->list);
297 list_add(&pos->list, &ipcomp_tfms_list);
299 pos->tfms = tfms = alloc_percpu(struct crypto_comp *);
303 for_each_possible_cpu(cpu) {
304 struct crypto_comp *tfm = crypto_alloc_comp(alg_name, 0,
308 *per_cpu_ptr(tfms, cpu) = tfm;
314 ipcomp_free_tfms(tfms);
318 static void ipcomp_free_data(struct ipcomp_data *ipcd)
321 ipcomp_free_tfms(ipcd->tfms);
322 ipcomp_free_scratches();
325 void ipcomp_destroy(struct xfrm_state *x)
327 struct ipcomp_data *ipcd = x->data;
330 xfrm_state_delete_tunnel(x);
331 mutex_lock(&ipcomp_resource_mutex);
332 ipcomp_free_data(ipcd);
333 mutex_unlock(&ipcomp_resource_mutex);
336 EXPORT_SYMBOL_GPL(ipcomp_destroy);
338 int ipcomp_init_state(struct xfrm_state *x)
341 struct ipcomp_data *ipcd;
342 struct xfrm_algo_desc *calg_desc;
352 ipcd = kzalloc(sizeof(*ipcd), GFP_KERNEL);
356 mutex_lock(&ipcomp_resource_mutex);
357 if (!ipcomp_alloc_scratches())
360 ipcd->tfms = ipcomp_alloc_tfms(x->calg->alg_name);
363 mutex_unlock(&ipcomp_resource_mutex);
365 calg_desc = xfrm_calg_get_byname(x->calg->alg_name, 0);
367 ipcd->threshold = calg_desc->uinfo.comp.threshold;
374 ipcomp_free_data(ipcd);
375 mutex_unlock(&ipcomp_resource_mutex);
379 EXPORT_SYMBOL_GPL(ipcomp_init_state);
381 MODULE_LICENSE("GPL");
382 MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp) - RFC3173");
383 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");