1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * IP Payload Compression Protocol (IPComp) - RFC3173.
5 * Copyright (c) 2003 James Morris <jmorris@intercode.com.au>
8 * - Tunable compression parameters.
10 * - Adaptive compression.
12 #include <linux/module.h>
13 #include <linux/err.h>
14 #include <linux/rtnetlink.h>
18 #include <net/ipcomp.h>
19 #include <net/protocol.h>
22 static int ipcomp4_err(struct sk_buff
*skb
, u32 info
)
24 struct net
*net
= dev_net(skb
->dev
);
26 const struct iphdr
*iph
= (const struct iphdr
*)skb
->data
;
27 struct ip_comp_hdr
*ipch
= (struct ip_comp_hdr
*)(skb
->data
+(iph
->ihl
<<2));
30 switch (icmp_hdr(skb
)->type
) {
31 case ICMP_DEST_UNREACH
:
32 if (icmp_hdr(skb
)->code
!= ICMP_FRAG_NEEDED
)
40 spi
= htonl(ntohs(ipch
->cpi
));
41 x
= xfrm_state_lookup(net
, skb
->mark
, (const xfrm_address_t
*)&iph
->daddr
,
42 spi
, IPPROTO_COMP
, AF_INET
);
46 if (icmp_hdr(skb
)->type
== ICMP_DEST_UNREACH
)
47 ipv4_update_pmtu(skb
, net
, info
, 0, IPPROTO_COMP
);
49 ipv4_redirect(skb
, net
, 0, IPPROTO_COMP
);
55 /* We always hold one tunnel user reference to indicate a tunnel */
56 static struct xfrm_state
*ipcomp_tunnel_create(struct xfrm_state
*x
)
58 struct net
*net
= xs_net(x
);
61 t
= xfrm_state_alloc(net
);
65 t
->id
.proto
= IPPROTO_IPIP
;
66 t
->id
.spi
= x
->props
.saddr
.a4
;
67 t
->id
.daddr
.a4
= x
->id
.daddr
.a4
;
68 memcpy(&t
->sel
, &x
->sel
, sizeof(t
->sel
));
69 t
->props
.family
= AF_INET
;
70 t
->props
.mode
= x
->props
.mode
;
71 t
->props
.saddr
.a4
= x
->props
.saddr
.a4
;
72 t
->props
.flags
= x
->props
.flags
;
73 t
->props
.extra_flags
= x
->props
.extra_flags
;
74 memcpy(&t
->mark
, &x
->mark
, sizeof(t
->mark
));
76 if (xfrm_init_state(t
))
79 atomic_set(&t
->tunnel_users
, 1);
84 t
->km
.state
= XFRM_STATE_DEAD
;
91 * Must be protected by xfrm_cfg_mutex. State and tunnel user references are
92 * always incremented on success.
94 static int ipcomp_tunnel_attach(struct xfrm_state
*x
)
96 struct net
*net
= xs_net(x
);
99 u32 mark
= x
->mark
.v
& x
->mark
.m
;
101 t
= xfrm_state_lookup(net
, mark
, (xfrm_address_t
*)&x
->id
.daddr
.a4
,
102 x
->props
.saddr
.a4
, IPPROTO_IPIP
, AF_INET
);
104 t
= ipcomp_tunnel_create(x
);
109 xfrm_state_insert(t
);
113 atomic_inc(&t
->tunnel_users
);
118 static int ipcomp4_init_state(struct xfrm_state
*x
)
122 x
->props
.header_len
= 0;
123 switch (x
->props
.mode
) {
124 case XFRM_MODE_TRANSPORT
:
126 case XFRM_MODE_TUNNEL
:
127 x
->props
.header_len
+= sizeof(struct iphdr
);
133 err
= ipcomp_init_state(x
);
137 if (x
->props
.mode
== XFRM_MODE_TUNNEL
) {
138 err
= ipcomp_tunnel_attach(x
);
148 static int ipcomp4_rcv_cb(struct sk_buff
*skb
, int err
)
153 static const struct xfrm_type ipcomp_type
= {
154 .description
= "IPCOMP4",
155 .owner
= THIS_MODULE
,
156 .proto
= IPPROTO_COMP
,
157 .init_state
= ipcomp4_init_state
,
158 .destructor
= ipcomp_destroy
,
159 .input
= ipcomp_input
,
160 .output
= ipcomp_output
163 static struct xfrm4_protocol ipcomp4_protocol
= {
164 .handler
= xfrm4_rcv
,
165 .input_handler
= xfrm_input
,
166 .cb_handler
= ipcomp4_rcv_cb
,
167 .err_handler
= ipcomp4_err
,
171 static int __init
ipcomp4_init(void)
173 if (xfrm_register_type(&ipcomp_type
, AF_INET
) < 0) {
174 pr_info("%s: can't add xfrm type\n", __func__
);
177 if (xfrm4_protocol_register(&ipcomp4_protocol
, IPPROTO_COMP
) < 0) {
178 pr_info("%s: can't add protocol\n", __func__
);
179 xfrm_unregister_type(&ipcomp_type
, AF_INET
);
185 static void __exit
ipcomp4_fini(void)
187 if (xfrm4_protocol_deregister(&ipcomp4_protocol
, IPPROTO_COMP
) < 0)
188 pr_info("%s: can't remove protocol\n", __func__
);
189 xfrm_unregister_type(&ipcomp_type
, AF_INET
);
192 module_init(ipcomp4_init
);
193 module_exit(ipcomp4_fini
);
195 MODULE_LICENSE("GPL");
196 MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp/IPv4) - RFC3173");
197 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");
199 MODULE_ALIAS_XFRM_TYPE(AF_INET
, XFRM_PROTO_COMP
);