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/module.h>
17 #include <linux/err.h>
18 #include <linux/rtnetlink.h>
22 #include <net/ipcomp.h>
23 #include <net/protocol.h>
26 static int ipcomp4_err(struct sk_buff
*skb
, u32 info
)
28 struct net
*net
= dev_net(skb
->dev
);
30 const struct iphdr
*iph
= (const struct iphdr
*)skb
->data
;
31 struct ip_comp_hdr
*ipch
= (struct ip_comp_hdr
*)(skb
->data
+(iph
->ihl
<<2));
34 switch (icmp_hdr(skb
)->type
) {
35 case ICMP_DEST_UNREACH
:
36 if (icmp_hdr(skb
)->code
!= ICMP_FRAG_NEEDED
)
44 spi
= htonl(ntohs(ipch
->cpi
));
45 x
= xfrm_state_lookup(net
, skb
->mark
, (const xfrm_address_t
*)&iph
->daddr
,
46 spi
, IPPROTO_COMP
, AF_INET
);
50 if (icmp_hdr(skb
)->type
== ICMP_DEST_UNREACH
)
51 ipv4_update_pmtu(skb
, net
, info
, 0, 0, IPPROTO_COMP
, 0);
53 ipv4_redirect(skb
, net
, 0, 0, IPPROTO_COMP
, 0);
59 /* We always hold one tunnel user reference to indicate a tunnel */
60 static struct xfrm_state
*ipcomp_tunnel_create(struct xfrm_state
*x
)
62 struct net
*net
= xs_net(x
);
65 t
= xfrm_state_alloc(net
);
69 t
->id
.proto
= IPPROTO_IPIP
;
70 t
->id
.spi
= x
->props
.saddr
.a4
;
71 t
->id
.daddr
.a4
= x
->id
.daddr
.a4
;
72 memcpy(&t
->sel
, &x
->sel
, sizeof(t
->sel
));
73 t
->props
.family
= AF_INET
;
74 t
->props
.mode
= x
->props
.mode
;
75 t
->props
.saddr
.a4
= x
->props
.saddr
.a4
;
76 t
->props
.flags
= x
->props
.flags
;
77 t
->props
.extra_flags
= x
->props
.extra_flags
;
78 memcpy(&t
->mark
, &x
->mark
, sizeof(t
->mark
));
80 if (xfrm_init_state(t
))
83 atomic_set(&t
->tunnel_users
, 1);
88 t
->km
.state
= XFRM_STATE_DEAD
;
95 * Must be protected by xfrm_cfg_mutex. State and tunnel user references are
96 * always incremented on success.
98 static int ipcomp_tunnel_attach(struct xfrm_state
*x
)
100 struct net
*net
= xs_net(x
);
102 struct xfrm_state
*t
;
103 u32 mark
= x
->mark
.v
& x
->mark
.m
;
105 t
= xfrm_state_lookup(net
, mark
, (xfrm_address_t
*)&x
->id
.daddr
.a4
,
106 x
->props
.saddr
.a4
, IPPROTO_IPIP
, AF_INET
);
108 t
= ipcomp_tunnel_create(x
);
113 xfrm_state_insert(t
);
117 atomic_inc(&t
->tunnel_users
);
122 static int ipcomp4_init_state(struct xfrm_state
*x
)
126 x
->props
.header_len
= 0;
127 switch (x
->props
.mode
) {
128 case XFRM_MODE_TRANSPORT
:
130 case XFRM_MODE_TUNNEL
:
131 x
->props
.header_len
+= sizeof(struct iphdr
);
137 err
= ipcomp_init_state(x
);
141 if (x
->props
.mode
== XFRM_MODE_TUNNEL
) {
142 err
= ipcomp_tunnel_attach(x
);
152 static int ipcomp4_rcv_cb(struct sk_buff
*skb
, int err
)
157 static const struct xfrm_type ipcomp_type
= {
158 .description
= "IPCOMP4",
159 .owner
= THIS_MODULE
,
160 .proto
= IPPROTO_COMP
,
161 .init_state
= ipcomp4_init_state
,
162 .destructor
= ipcomp_destroy
,
163 .input
= ipcomp_input
,
164 .output
= ipcomp_output
167 static struct xfrm4_protocol ipcomp4_protocol
= {
168 .handler
= xfrm4_rcv
,
169 .input_handler
= xfrm_input
,
170 .cb_handler
= ipcomp4_rcv_cb
,
171 .err_handler
= ipcomp4_err
,
175 static int __init
ipcomp4_init(void)
177 if (xfrm_register_type(&ipcomp_type
, AF_INET
) < 0) {
178 pr_info("%s: can't add xfrm type\n", __func__
);
181 if (xfrm4_protocol_register(&ipcomp4_protocol
, IPPROTO_COMP
) < 0) {
182 pr_info("%s: can't add protocol\n", __func__
);
183 xfrm_unregister_type(&ipcomp_type
, AF_INET
);
189 static void __exit
ipcomp4_fini(void)
191 if (xfrm4_protocol_deregister(&ipcomp4_protocol
, IPPROTO_COMP
) < 0)
192 pr_info("%s: can't remove protocol\n", __func__
);
193 if (xfrm_unregister_type(&ipcomp_type
, AF_INET
) < 0)
194 pr_info("%s: can't remove xfrm type\n", __func__
);
197 module_init(ipcomp4_init
);
198 module_exit(ipcomp4_fini
);
200 MODULE_LICENSE("GPL");
201 MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp/IPv4) - RFC3173");
202 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");
204 MODULE_ALIAS_XFRM_TYPE(AF_INET
, XFRM_PROTO_COMP
);