[PATCH] list.h doc: change "counter" to "cursor"
[linux-2.6/suspend2-2.6.18.git] / net / ipv4 / ipcomp.c
blob3ed8b57a1002c307d4fd74f021d6177de3d9aefe
1 /*
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)
9 * any later version.
11 * Todo:
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>
28 #include <net/ip.h>
29 #include <net/xfrm.h>
30 #include <net/icmp.h>
31 #include <net/ipcomp.h>
32 #include <net/protocol.h>
34 struct ipcomp_tfms {
35 struct list_head list;
36 struct crypto_tfm **tfms;
37 int users;
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)
47 int err, plen, dlen;
48 struct ipcomp_data *ipcd = x->data;
49 u8 *start, *scratch;
50 struct crypto_tfm *tfm;
51 int cpu;
53 plen = skb->len;
54 dlen = IPCOMP_SCRATCH_SIZE;
55 start = skb->data;
57 cpu = get_cpu();
58 scratch = *per_cpu_ptr(ipcomp_scratches, cpu);
59 tfm = *per_cpu_ptr(ipcd->tfms, cpu);
61 err = crypto_comp_decompress(tfm, start, plen, scratch, &dlen);
62 if (err)
63 goto out;
65 if (dlen < (plen + sizeof(struct ip_comp_hdr))) {
66 err = -EINVAL;
67 goto out;
70 err = pskb_expand_head(skb, 0, dlen - plen, GFP_ATOMIC);
71 if (err)
72 goto out;
74 skb_put(skb, dlen - plen);
75 memcpy(skb->data, scratch, dlen);
76 out:
77 put_cpu();
78 return err;
81 static int ipcomp_input(struct xfrm_state *x, struct sk_buff *skb)
83 int err = -ENOMEM;
84 struct iphdr *iph;
85 struct ip_comp_hdr *ipch;
87 if (skb_linearize_cow(skb))
88 goto out;
90 skb->ip_summed = CHECKSUM_NONE;
92 /* Remove ipcomp header and decompress original payload */
93 iph = skb->nh.iph;
94 ipch = (void *)skb->data;
95 iph->protocol = ipch->nexthdr;
96 skb->h.raw = skb->nh.raw + sizeof(*ipch);
97 __skb_pull(skb, sizeof(*ipch));
98 err = ipcomp_decompress(x, skb);
100 out:
101 return err;
104 static int ipcomp_compress(struct xfrm_state *x, struct sk_buff *skb)
106 int err, plen, dlen, ihlen;
107 struct iphdr *iph = skb->nh.iph;
108 struct ipcomp_data *ipcd = x->data;
109 u8 *start, *scratch;
110 struct crypto_tfm *tfm;
111 int cpu;
113 ihlen = iph->ihl * 4;
114 plen = skb->len - ihlen;
115 dlen = IPCOMP_SCRATCH_SIZE;
116 start = skb->data + ihlen;
118 cpu = get_cpu();
119 scratch = *per_cpu_ptr(ipcomp_scratches, cpu);
120 tfm = *per_cpu_ptr(ipcd->tfms, cpu);
122 err = crypto_comp_compress(tfm, start, plen, scratch, &dlen);
123 if (err)
124 goto out;
126 if ((dlen + sizeof(struct ip_comp_hdr)) >= plen) {
127 err = -EMSGSIZE;
128 goto out;
131 memcpy(start + sizeof(struct ip_comp_hdr), scratch, dlen);
132 put_cpu();
134 pskb_trim(skb, ihlen + dlen + sizeof(struct ip_comp_hdr));
135 return 0;
137 out:
138 put_cpu();
139 return err;
142 static int ipcomp_output(struct xfrm_state *x, struct sk_buff *skb)
144 int err;
145 struct iphdr *iph;
146 struct ip_comp_hdr *ipch;
147 struct ipcomp_data *ipcd = x->data;
148 int hdr_len = 0;
150 iph = skb->nh.iph;
151 iph->tot_len = htons(skb->len);
152 hdr_len = iph->ihl * 4;
153 if ((skb->len - hdr_len) < ipcd->threshold) {
154 /* Don't bother compressing */
155 goto out_ok;
158 if (skb_linearize_cow(skb))
159 goto out_ok;
161 err = ipcomp_compress(x, skb);
162 iph = skb->nh.iph;
164 if (err) {
165 goto out_ok;
168 /* Install ipcomp header, convert into ipcomp datagram. */
169 iph->tot_len = htons(skb->len);
170 ipch = (struct ip_comp_hdr *)((char *)iph + iph->ihl * 4);
171 ipch->nexthdr = iph->protocol;
172 ipch->flags = 0;
173 ipch->cpi = htons((u16 )ntohl(x->id.spi));
174 iph->protocol = IPPROTO_COMP;
175 ip_send_check(iph);
176 return 0;
178 out_ok:
179 if (x->props.mode)
180 ip_send_check(iph);
181 return 0;
184 static void ipcomp4_err(struct sk_buff *skb, u32 info)
186 u32 spi;
187 struct iphdr *iph = (struct iphdr *)skb->data;
188 struct ip_comp_hdr *ipch = (struct ip_comp_hdr *)(skb->data+(iph->ihl<<2));
189 struct xfrm_state *x;
191 if (skb->h.icmph->type != ICMP_DEST_UNREACH ||
192 skb->h.icmph->code != ICMP_FRAG_NEEDED)
193 return;
195 spi = htonl(ntohs(ipch->cpi));
196 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr,
197 spi, IPPROTO_COMP, AF_INET);
198 if (!x)
199 return;
200 NETDEBUG(KERN_DEBUG "pmtu discovery on SA IPCOMP/%08x/%u.%u.%u.%u\n",
201 spi, NIPQUAD(iph->daddr));
202 xfrm_state_put(x);
205 /* We always hold one tunnel user reference to indicate a tunnel */
206 static struct xfrm_state *ipcomp_tunnel_create(struct xfrm_state *x)
208 struct xfrm_state *t;
210 t = xfrm_state_alloc();
211 if (t == NULL)
212 goto out;
214 t->id.proto = IPPROTO_IPIP;
215 t->id.spi = x->props.saddr.a4;
216 t->id.daddr.a4 = x->id.daddr.a4;
217 memcpy(&t->sel, &x->sel, sizeof(t->sel));
218 t->props.family = AF_INET;
219 t->props.mode = 1;
220 t->props.saddr.a4 = x->props.saddr.a4;
221 t->props.flags = x->props.flags;
223 if (xfrm_init_state(t))
224 goto error;
226 atomic_set(&t->tunnel_users, 1);
227 out:
228 return t;
230 error:
231 t->km.state = XFRM_STATE_DEAD;
232 xfrm_state_put(t);
233 t = NULL;
234 goto out;
238 * Must be protected by xfrm_cfg_mutex. State and tunnel user references are
239 * always incremented on success.
241 static int ipcomp_tunnel_attach(struct xfrm_state *x)
243 int err = 0;
244 struct xfrm_state *t;
246 t = xfrm_state_lookup((xfrm_address_t *)&x->id.daddr.a4,
247 x->props.saddr.a4, IPPROTO_IPIP, AF_INET);
248 if (!t) {
249 t = ipcomp_tunnel_create(x);
250 if (!t) {
251 err = -EINVAL;
252 goto out;
254 xfrm_state_insert(t);
255 xfrm_state_hold(t);
257 x->tunnel = t;
258 atomic_inc(&t->tunnel_users);
259 out:
260 return err;
263 static void ipcomp_free_scratches(void)
265 int i;
266 void **scratches;
268 if (--ipcomp_scratch_users)
269 return;
271 scratches = ipcomp_scratches;
272 if (!scratches)
273 return;
275 for_each_possible_cpu(i)
276 vfree(*per_cpu_ptr(scratches, i));
278 free_percpu(scratches);
281 static void **ipcomp_alloc_scratches(void)
283 int i;
284 void **scratches;
286 if (ipcomp_scratch_users++)
287 return ipcomp_scratches;
289 scratches = alloc_percpu(void *);
290 if (!scratches)
291 return NULL;
293 ipcomp_scratches = scratches;
295 for_each_possible_cpu(i) {
296 void *scratch = vmalloc(IPCOMP_SCRATCH_SIZE);
297 if (!scratch)
298 return NULL;
299 *per_cpu_ptr(scratches, i) = scratch;
302 return scratches;
305 static void ipcomp_free_tfms(struct crypto_tfm **tfms)
307 struct ipcomp_tfms *pos;
308 int cpu;
310 list_for_each_entry(pos, &ipcomp_tfms_list, list) {
311 if (pos->tfms == tfms)
312 break;
315 BUG_TRAP(pos);
317 if (--pos->users)
318 return;
320 list_del(&pos->list);
321 kfree(pos);
323 if (!tfms)
324 return;
326 for_each_possible_cpu(cpu) {
327 struct crypto_tfm *tfm = *per_cpu_ptr(tfms, cpu);
328 crypto_free_tfm(tfm);
330 free_percpu(tfms);
333 static struct crypto_tfm **ipcomp_alloc_tfms(const char *alg_name)
335 struct ipcomp_tfms *pos;
336 struct crypto_tfm **tfms;
337 int cpu;
339 /* This can be any valid CPU ID so we don't need locking. */
340 cpu = raw_smp_processor_id();
342 list_for_each_entry(pos, &ipcomp_tfms_list, list) {
343 struct crypto_tfm *tfm;
345 tfms = pos->tfms;
346 tfm = *per_cpu_ptr(tfms, cpu);
348 if (!strcmp(crypto_tfm_alg_name(tfm), alg_name)) {
349 pos->users++;
350 return tfms;
354 pos = kmalloc(sizeof(*pos), GFP_KERNEL);
355 if (!pos)
356 return NULL;
358 pos->users = 1;
359 INIT_LIST_HEAD(&pos->list);
360 list_add(&pos->list, &ipcomp_tfms_list);
362 pos->tfms = tfms = alloc_percpu(struct crypto_tfm *);
363 if (!tfms)
364 goto error;
366 for_each_possible_cpu(cpu) {
367 struct crypto_tfm *tfm = crypto_alloc_tfm(alg_name, 0);
368 if (!tfm)
369 goto error;
370 *per_cpu_ptr(tfms, cpu) = tfm;
373 return tfms;
375 error:
376 ipcomp_free_tfms(tfms);
377 return NULL;
380 static void ipcomp_free_data(struct ipcomp_data *ipcd)
382 if (ipcd->tfms)
383 ipcomp_free_tfms(ipcd->tfms);
384 ipcomp_free_scratches();
387 static void ipcomp_destroy(struct xfrm_state *x)
389 struct ipcomp_data *ipcd = x->data;
390 if (!ipcd)
391 return;
392 xfrm_state_delete_tunnel(x);
393 mutex_lock(&ipcomp_resource_mutex);
394 ipcomp_free_data(ipcd);
395 mutex_unlock(&ipcomp_resource_mutex);
396 kfree(ipcd);
399 static int ipcomp_init_state(struct xfrm_state *x)
401 int err;
402 struct ipcomp_data *ipcd;
403 struct xfrm_algo_desc *calg_desc;
405 err = -EINVAL;
406 if (!x->calg)
407 goto out;
409 if (x->encap)
410 goto out;
412 err = -ENOMEM;
413 ipcd = kmalloc(sizeof(*ipcd), GFP_KERNEL);
414 if (!ipcd)
415 goto out;
417 memset(ipcd, 0, sizeof(*ipcd));
418 x->props.header_len = 0;
419 if (x->props.mode)
420 x->props.header_len += sizeof(struct iphdr);
422 mutex_lock(&ipcomp_resource_mutex);
423 if (!ipcomp_alloc_scratches())
424 goto error;
426 ipcd->tfms = ipcomp_alloc_tfms(x->calg->alg_name);
427 if (!ipcd->tfms)
428 goto error;
429 mutex_unlock(&ipcomp_resource_mutex);
431 if (x->props.mode) {
432 err = ipcomp_tunnel_attach(x);
433 if (err)
434 goto error_tunnel;
437 calg_desc = xfrm_calg_get_byname(x->calg->alg_name, 0);
438 BUG_ON(!calg_desc);
439 ipcd->threshold = calg_desc->uinfo.comp.threshold;
440 x->data = ipcd;
441 err = 0;
442 out:
443 return err;
445 error_tunnel:
446 mutex_lock(&ipcomp_resource_mutex);
447 error:
448 ipcomp_free_data(ipcd);
449 mutex_unlock(&ipcomp_resource_mutex);
450 kfree(ipcd);
451 goto out;
454 static struct xfrm_type ipcomp_type = {
455 .description = "IPCOMP4",
456 .owner = THIS_MODULE,
457 .proto = IPPROTO_COMP,
458 .init_state = ipcomp_init_state,
459 .destructor = ipcomp_destroy,
460 .input = ipcomp_input,
461 .output = ipcomp_output
464 static struct net_protocol ipcomp4_protocol = {
465 .handler = xfrm4_rcv,
466 .err_handler = ipcomp4_err,
467 .no_policy = 1,
470 static int __init ipcomp4_init(void)
472 if (xfrm_register_type(&ipcomp_type, AF_INET) < 0) {
473 printk(KERN_INFO "ipcomp init: can't add xfrm type\n");
474 return -EAGAIN;
476 if (inet_add_protocol(&ipcomp4_protocol, IPPROTO_COMP) < 0) {
477 printk(KERN_INFO "ipcomp init: can't add protocol\n");
478 xfrm_unregister_type(&ipcomp_type, AF_INET);
479 return -EAGAIN;
481 return 0;
484 static void __exit ipcomp4_fini(void)
486 if (inet_del_protocol(&ipcomp4_protocol, IPPROTO_COMP) < 0)
487 printk(KERN_INFO "ip ipcomp close: can't remove protocol\n");
488 if (xfrm_unregister_type(&ipcomp_type, AF_INET) < 0)
489 printk(KERN_INFO "ip ipcomp close: can't remove xfrm type\n");
492 module_init(ipcomp4_init);
493 module_exit(ipcomp4_fini);
495 MODULE_LICENSE("GPL");
496 MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp) - RFC3173");
497 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");