blob: f4af99ad8fdb6015de40393d52b5bde5bd6c42c7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IP Payload Compression Protocol (IPComp) - RFC3173.
3 *
4 * Copyright (c) 2003 James Morris <jmorris@intercode.com.au>
5 *
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
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09008 * Software Foundation; either version 2 of the License, or (at your option)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * any later version.
10 *
11 * Todo:
12 * - Tunable compression parameters.
13 * - Compression stats.
14 * - Adaptive compression.
15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/semaphore.h>
18#include <linux/crypto.h>
Herbert Xu4999f362007-11-07 02:21:47 -080019#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/pfkeyv2.h>
21#include <linux/percpu.h>
22#include <linux/smp.h>
23#include <linux/list.h>
24#include <linux/vmalloc.h>
25#include <linux/rtnetlink.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080026#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <net/ip.h>
28#include <net/xfrm.h>
29#include <net/icmp.h>
30#include <net/ipcomp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020031#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33struct ipcomp_tfms {
34 struct list_head list;
Herbert Xue4d5b792006-08-26 18:12:40 +100035 struct crypto_comp **tfms;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 int users;
37};
38
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080039static DEFINE_MUTEX(ipcomp_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static void **ipcomp_scratches;
41static int ipcomp_scratch_users;
42static LIST_HEAD(ipcomp_tfms_list);
43
44static int ipcomp_decompress(struct xfrm_state *x, struct sk_buff *skb)
45{
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 struct ipcomp_data *ipcd = x->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070047 const int plen = skb->len;
48 int dlen = IPCOMP_SCRATCH_SIZE;
49 const u8 *start = skb->data;
50 const int cpu = get_cpu();
51 u8 *scratch = *per_cpu_ptr(ipcomp_scratches, cpu);
52 struct crypto_comp *tfm = *per_cpu_ptr(ipcd->tfms, cpu);
53 int err = crypto_comp_decompress(tfm, start, plen, scratch, &dlen);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 if (err)
56 goto out;
57
58 if (dlen < (plen + sizeof(struct ip_comp_hdr))) {
59 err = -EINVAL;
60 goto out;
61 }
62
63 err = pskb_expand_head(skb, 0, dlen - plen, GFP_ATOMIC);
64 if (err)
65 goto out;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090066
Herbert Xuda952312006-07-11 13:50:09 -070067 skb->truesize += dlen - plen;
68 __skb_put(skb, dlen - plen);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -030069 skb_copy_to_linear_data(skb, scratch, dlen);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090070out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 put_cpu();
72 return err;
73}
74
Herbert Xue6956332006-04-01 00:52:46 -080075static int ipcomp_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Herbert Xu364c6ba2006-06-09 16:10:40 -070077 int err = -ENOMEM;
Herbert Xu31a4ab92006-05-27 23:06:13 -070078 struct ip_comp_hdr *ipch;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Herbert Xu364c6ba2006-06-09 16:10:40 -070080 if (skb_linearize_cow(skb))
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090081 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 skb->ip_summed = CHECKSUM_NONE;
84
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090085 /* Remove ipcomp header and decompress original payload */
Herbert Xu31a4ab92006-05-27 23:06:13 -070086 ipch = (void *)skb->data;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -070087 skb->transport_header = skb->network_header + sizeof(*ipch);
Herbert Xu31a4ab92006-05-27 23:06:13 -070088 __skb_pull(skb, sizeof(*ipch));
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 err = ipcomp_decompress(x, skb);
Herbert Xu631a66982007-10-10 15:46:21 -070090 if (err)
91 goto out;
92
93 err = ipch->nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090095out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return err;
97}
98
99static int ipcomp_compress(struct xfrm_state *x, struct sk_buff *skb)
100{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 struct ipcomp_data *ipcd = x->data;
Herbert Xuceb1eec82007-10-10 15:45:52 -0700102 const int plen = skb->len;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700103 int dlen = IPCOMP_SCRATCH_SIZE;
Herbert Xuceb1eec82007-10-10 15:45:52 -0700104 u8 *start = skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700105 const int cpu = get_cpu();
106 u8 *scratch = *per_cpu_ptr(ipcomp_scratches, cpu);
107 struct crypto_comp *tfm = *per_cpu_ptr(ipcd->tfms, cpu);
108 int err = crypto_comp_compress(tfm, start, plen, scratch, &dlen);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (err)
111 goto out;
112
113 if ((dlen + sizeof(struct ip_comp_hdr)) >= plen) {
114 err = -EMSGSIZE;
115 goto out;
116 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 memcpy(start + sizeof(struct ip_comp_hdr), scratch, dlen);
119 put_cpu();
120
Herbert Xuceb1eec82007-10-10 15:45:52 -0700121 pskb_trim(skb, dlen + sizeof(struct ip_comp_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900123
124out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 put_cpu();
126 return err;
127}
128
129static int ipcomp_output(struct xfrm_state *x, struct sk_buff *skb)
130{
131 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct ip_comp_hdr *ipch;
133 struct ipcomp_data *ipcd = x->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Herbert Xuceb1eec82007-10-10 15:45:52 -0700135 if (skb->len < ipcd->threshold) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /* Don't bother compressing */
137 goto out_ok;
138 }
139
Herbert Xu364c6ba2006-06-09 16:10:40 -0700140 if (skb_linearize_cow(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 goto out_ok;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 err = ipcomp_compress(x, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 if (err) {
146 goto out_ok;
147 }
148
149 /* Install ipcomp header, convert into ipcomp datagram. */
Herbert Xu87bdc482007-10-10 15:45:25 -0700150 ipch = ip_comp_hdr(skb);
Herbert Xu37fedd32007-10-10 15:44:44 -0700151 ipch->nexthdr = *skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 ipch->flags = 0;
153 ipch->cpi = htons((u16 )ntohl(x->id.spi));
Herbert Xu37fedd32007-10-10 15:44:44 -0700154 *skb_mac_header(skb) = IPPROTO_COMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155out_ok:
Herbert Xuceb1eec82007-10-10 15:45:52 -0700156 skb_push(skb, -skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return 0;
158}
159
160static void ipcomp4_err(struct sk_buff *skb, u32 info)
161{
Al Viroa94cfd12006-09-27 18:47:24 -0700162 __be32 spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct iphdr *iph = (struct iphdr *)skb->data;
164 struct ip_comp_hdr *ipch = (struct ip_comp_hdr *)(skb->data+(iph->ihl<<2));
165 struct xfrm_state *x;
166
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300167 if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH ||
168 icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return;
170
Alexey Dobriyan4195f812006-05-22 16:53:22 -0700171 spi = htonl(ntohs(ipch->cpi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900173 spi, IPPROTO_COMP, AF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (!x)
175 return;
Patrick McHardy64ce2072005-08-09 20:50:53 -0700176 NETDEBUG(KERN_DEBUG "pmtu discovery on SA IPCOMP/%08x/%u.%u.%u.%u\n",
177 spi, NIPQUAD(iph->daddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 xfrm_state_put(x);
179}
180
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900181/* We always hold one tunnel user reference to indicate a tunnel */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static struct xfrm_state *ipcomp_tunnel_create(struct xfrm_state *x)
183{
184 struct xfrm_state *t;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 t = xfrm_state_alloc();
187 if (t == NULL)
188 goto out;
189
190 t->id.proto = IPPROTO_IPIP;
191 t->id.spi = x->props.saddr.a4;
192 t->id.daddr.a4 = x->id.daddr.a4;
193 memcpy(&t->sel, &x->sel, sizeof(t->sel));
194 t->props.family = AF_INET;
Herbert Xue40b3282007-11-13 21:39:08 -0800195 t->props.mode = x->props.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 t->props.saddr.a4 = x->props.saddr.a4;
197 t->props.flags = x->props.flags;
Herbert Xu72cb6962005-06-20 13:18:08 -0700198
199 if (xfrm_init_state(t))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 goto error;
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 atomic_set(&t->tunnel_users, 1);
203out:
204 return t;
205
206error:
207 t->km.state = XFRM_STATE_DEAD;
208 xfrm_state_put(t);
209 t = NULL;
210 goto out;
211}
212
213/*
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800214 * Must be protected by xfrm_cfg_mutex. State and tunnel user references are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * always incremented on success.
216 */
217static int ipcomp_tunnel_attach(struct xfrm_state *x)
218{
219 int err = 0;
220 struct xfrm_state *t;
221
222 t = xfrm_state_lookup((xfrm_address_t *)&x->id.daddr.a4,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900223 x->props.saddr.a4, IPPROTO_IPIP, AF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (!t) {
225 t = ipcomp_tunnel_create(x);
226 if (!t) {
227 err = -EINVAL;
228 goto out;
229 }
230 xfrm_state_insert(t);
231 xfrm_state_hold(t);
232 }
233 x->tunnel = t;
234 atomic_inc(&t->tunnel_users);
235out:
236 return err;
237}
238
239static void ipcomp_free_scratches(void)
240{
241 int i;
242 void **scratches;
243
244 if (--ipcomp_scratch_users)
245 return;
246
247 scratches = ipcomp_scratches;
248 if (!scratches)
249 return;
250
Jesper Juhl63903ca2006-04-18 14:51:44 -0700251 for_each_possible_cpu(i)
252 vfree(*per_cpu_ptr(scratches, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 free_percpu(scratches);
255}
256
257static void **ipcomp_alloc_scratches(void)
258{
259 int i;
260 void **scratches;
261
262 if (ipcomp_scratch_users++)
263 return ipcomp_scratches;
264
265 scratches = alloc_percpu(void *);
266 if (!scratches)
267 return NULL;
268
269 ipcomp_scratches = scratches;
270
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700271 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 void *scratch = vmalloc(IPCOMP_SCRATCH_SIZE);
273 if (!scratch)
274 return NULL;
275 *per_cpu_ptr(scratches, i) = scratch;
276 }
277
278 return scratches;
279}
280
Herbert Xue4d5b792006-08-26 18:12:40 +1000281static void ipcomp_free_tfms(struct crypto_comp **tfms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct ipcomp_tfms *pos;
284 int cpu;
285
286 list_for_each_entry(pos, &ipcomp_tfms_list, list) {
287 if (pos->tfms == tfms)
288 break;
289 }
290
291 BUG_TRAP(pos);
292
293 if (--pos->users)
294 return;
295
296 list_del(&pos->list);
297 kfree(pos);
298
299 if (!tfms)
300 return;
301
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700302 for_each_possible_cpu(cpu) {
Herbert Xue4d5b792006-08-26 18:12:40 +1000303 struct crypto_comp *tfm = *per_cpu_ptr(tfms, cpu);
304 crypto_free_comp(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306 free_percpu(tfms);
307}
308
Herbert Xue4d5b792006-08-26 18:12:40 +1000309static struct crypto_comp **ipcomp_alloc_tfms(const char *alg_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 struct ipcomp_tfms *pos;
Herbert Xue4d5b792006-08-26 18:12:40 +1000312 struct crypto_comp **tfms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 int cpu;
314
315 /* This can be any valid CPU ID so we don't need locking. */
Herbert Xu6fc8b9e2005-08-18 14:36:59 -0700316 cpu = raw_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 list_for_each_entry(pos, &ipcomp_tfms_list, list) {
Herbert Xue4d5b792006-08-26 18:12:40 +1000319 struct crypto_comp *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 tfms = pos->tfms;
322 tfm = *per_cpu_ptr(tfms, cpu);
323
Herbert Xue4d5b792006-08-26 18:12:40 +1000324 if (!strcmp(crypto_comp_name(tfm), alg_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 pos->users++;
326 return tfms;
327 }
328 }
329
330 pos = kmalloc(sizeof(*pos), GFP_KERNEL);
331 if (!pos)
332 return NULL;
333
334 pos->users = 1;
335 INIT_LIST_HEAD(&pos->list);
336 list_add(&pos->list, &ipcomp_tfms_list);
337
Herbert Xue4d5b792006-08-26 18:12:40 +1000338 pos->tfms = tfms = alloc_percpu(struct crypto_comp *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (!tfms)
340 goto error;
341
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700342 for_each_possible_cpu(cpu) {
Herbert Xue4d5b792006-08-26 18:12:40 +1000343 struct crypto_comp *tfm = crypto_alloc_comp(alg_name, 0,
344 CRYPTO_ALG_ASYNC);
Herbert Xu4999f362007-11-07 02:21:47 -0800345 if (IS_ERR(tfm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 goto error;
347 *per_cpu_ptr(tfms, cpu) = tfm;
348 }
349
350 return tfms;
351
352error:
353 ipcomp_free_tfms(tfms);
354 return NULL;
355}
356
357static void ipcomp_free_data(struct ipcomp_data *ipcd)
358{
359 if (ipcd->tfms)
360 ipcomp_free_tfms(ipcd->tfms);
361 ipcomp_free_scratches();
362}
363
364static void ipcomp_destroy(struct xfrm_state *x)
365{
366 struct ipcomp_data *ipcd = x->data;
367 if (!ipcd)
368 return;
369 xfrm_state_delete_tunnel(x);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800370 mutex_lock(&ipcomp_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 ipcomp_free_data(ipcd);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800372 mutex_unlock(&ipcomp_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 kfree(ipcd);
374}
375
Herbert Xu72cb6962005-06-20 13:18:08 -0700376static int ipcomp_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 int err;
379 struct ipcomp_data *ipcd;
380 struct xfrm_algo_desc *calg_desc;
381
382 err = -EINVAL;
383 if (!x->calg)
384 goto out;
385
386 if (x->encap)
387 goto out;
388
Herbert Xue40b3282007-11-13 21:39:08 -0800389 x->props.header_len = 0;
390 switch (x->props.mode) {
391 case XFRM_MODE_TRANSPORT:
392 break;
393 case XFRM_MODE_TUNNEL:
394 x->props.header_len += sizeof(struct iphdr);
395 break;
396 default:
397 goto out;
398 }
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700401 ipcd = kzalloc(sizeof(*ipcd), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (!ipcd)
403 goto out;
404
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800405 mutex_lock(&ipcomp_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (!ipcomp_alloc_scratches())
407 goto error;
408
409 ipcd->tfms = ipcomp_alloc_tfms(x->calg->alg_name);
410 if (!ipcd->tfms)
411 goto error;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800412 mutex_unlock(&ipcomp_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700414 if (x->props.mode == XFRM_MODE_TUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 err = ipcomp_tunnel_attach(x);
416 if (err)
417 goto error_tunnel;
418 }
419
420 calg_desc = xfrm_calg_get_byname(x->calg->alg_name, 0);
421 BUG_ON(!calg_desc);
422 ipcd->threshold = calg_desc->uinfo.comp.threshold;
423 x->data = ipcd;
424 err = 0;
425out:
426 return err;
427
428error_tunnel:
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800429 mutex_lock(&ipcomp_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430error:
431 ipcomp_free_data(ipcd);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800432 mutex_unlock(&ipcomp_resource_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 kfree(ipcd);
434 goto out;
435}
436
437static struct xfrm_type ipcomp_type = {
438 .description = "IPCOMP4",
439 .owner = THIS_MODULE,
440 .proto = IPPROTO_COMP,
441 .init_state = ipcomp_init_state,
442 .destructor = ipcomp_destroy,
443 .input = ipcomp_input,
444 .output = ipcomp_output
445};
446
447static struct net_protocol ipcomp4_protocol = {
448 .handler = xfrm4_rcv,
449 .err_handler = ipcomp4_err,
450 .no_policy = 1,
451};
452
453static int __init ipcomp4_init(void)
454{
455 if (xfrm_register_type(&ipcomp_type, AF_INET) < 0) {
456 printk(KERN_INFO "ipcomp init: can't add xfrm type\n");
457 return -EAGAIN;
458 }
459 if (inet_add_protocol(&ipcomp4_protocol, IPPROTO_COMP) < 0) {
460 printk(KERN_INFO "ipcomp init: can't add protocol\n");
461 xfrm_unregister_type(&ipcomp_type, AF_INET);
462 return -EAGAIN;
463 }
464 return 0;
465}
466
467static void __exit ipcomp4_fini(void)
468{
469 if (inet_del_protocol(&ipcomp4_protocol, IPPROTO_COMP) < 0)
470 printk(KERN_INFO "ip ipcomp close: can't remove protocol\n");
471 if (xfrm_unregister_type(&ipcomp_type, AF_INET) < 0)
472 printk(KERN_INFO "ip ipcomp close: can't remove xfrm type\n");
473}
474
475module_init(ipcomp4_init);
476module_exit(ipcomp4_fini);
477
478MODULE_LICENSE("GPL");
479MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp) - RFC3173");
480MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");
481
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700482MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_COMP);