blob: 59bfa38258105a8047c5bd563b2318242f4e881c [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * IP Payload Compression Protocol (IPComp) - RFC3173.
4 *
5 * Copyright (c) 2003 James Morris <jmorris@intercode.com.au>
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Todo:
8 * - Tunable compression parameters.
9 * - Compression stats.
10 * - Adaptive compression.
11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
Herbert Xu4999f362007-11-07 02:21:47 -080013#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/rtnetlink.h>
15#include <net/ip.h>
16#include <net/xfrm.h>
17#include <net/icmp.h>
18#include <net/ipcomp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020019#include <net/protocol.h>
Herbert Xu6fccab62008-07-25 02:54:40 -070020#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Steffen Klassertd0991602014-02-21 08:41:09 +010022static int ipcomp4_err(struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{
Alexey Dobriyana92df252010-01-25 10:38:34 +000024 struct net *net = dev_net(skb->dev);
Al Viroa94cfd12006-09-27 18:47:24 -070025 __be32 spi;
Eric Dumazetb71d1d42011-04-22 04:53:02 +000026 const struct iphdr *iph = (const struct iphdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 struct ip_comp_hdr *ipch = (struct ip_comp_hdr *)(skb->data+(iph->ihl<<2));
28 struct xfrm_state *x;
29
David S. Miller55be7a92012-07-11 21:27:49 -070030 switch (icmp_hdr(skb)->type) {
31 case ICMP_DEST_UNREACH:
32 if (icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
Steffen Klassertd0991602014-02-21 08:41:09 +010033 return 0;
David S. Miller55be7a92012-07-11 21:27:49 -070034 case ICMP_REDIRECT:
35 break;
36 default:
Steffen Klassertd0991602014-02-21 08:41:09 +010037 return 0;
David S. Miller55be7a92012-07-11 21:27:49 -070038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Alexey Dobriyan4195f812006-05-22 16:53:22 -070040 spi = htonl(ntohs(ipch->cpi));
Eric Dumazetb71d1d42011-04-22 04:53:02 +000041 x = xfrm_state_lookup(net, skb->mark, (const xfrm_address_t *)&iph->daddr,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090042 spi, IPPROTO_COMP, AF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 if (!x)
Steffen Klassertd0991602014-02-21 08:41:09 +010044 return 0;
David S. Miller55be7a92012-07-11 21:27:49 -070045
Timo Teräs387aa652013-05-27 20:46:31 +000046 if (icmp_hdr(skb)->type == ICMP_DEST_UNREACH)
Maciej Żenczykowskid888f392018-09-25 20:56:26 -070047 ipv4_update_pmtu(skb, net, info, 0, IPPROTO_COMP);
Timo Teräs387aa652013-05-27 20:46:31 +000048 else
Maciej Żenczykowski1042caa2018-09-25 20:56:27 -070049 ipv4_redirect(skb, net, 0, IPPROTO_COMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 xfrm_state_put(x);
Steffen Klassertd0991602014-02-21 08:41:09 +010051
52 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090055/* We always hold one tunnel user reference to indicate a tunnel */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static struct xfrm_state *ipcomp_tunnel_create(struct xfrm_state *x)
57{
Alexey Dobriyana92df252010-01-25 10:38:34 +000058 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 struct xfrm_state *t;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090060
Alexey Dobriyana92df252010-01-25 10:38:34 +000061 t = xfrm_state_alloc(net);
Ian Morris51456b22015-04-03 09:17:26 +010062 if (!t)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 goto out;
64
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;
Herbert Xue40b3282007-11-13 21:39:08 -080070 t->props.mode = x->props.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 t->props.saddr.a4 = x->props.saddr.a4;
72 t->props.flags = x->props.flags;
Nicolas Dichtela947b0a2013-02-22 10:54:54 +010073 t->props.extra_flags = x->props.extra_flags;
Jamal Hadi Salimbd557752010-02-22 16:20:22 -080074 memcpy(&t->mark, &x->mark, sizeof(t->mark));
Herbert Xu72cb6962005-06-20 13:18:08 -070075
76 if (xfrm_init_state(t))
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 goto error;
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 atomic_set(&t->tunnel_users, 1);
80out:
81 return t;
82
83error:
84 t->km.state = XFRM_STATE_DEAD;
85 xfrm_state_put(t);
86 t = NULL;
87 goto out;
88}
89
90/*
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080091 * Must be protected by xfrm_cfg_mutex. State and tunnel user references are
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 * always incremented on success.
93 */
94static int ipcomp_tunnel_attach(struct xfrm_state *x)
95{
Alexey Dobriyana92df252010-01-25 10:38:34 +000096 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 int err = 0;
98 struct xfrm_state *t;
Jamal Hadi Salimbd557752010-02-22 16:20:22 -080099 u32 mark = x->mark.v & x->mark.m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Jamal Hadi Salimbd557752010-02-22 16:20:22 -0800101 t = xfrm_state_lookup(net, mark, (xfrm_address_t *)&x->id.daddr.a4,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900102 x->props.saddr.a4, IPPROTO_IPIP, AF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (!t) {
104 t = ipcomp_tunnel_create(x);
105 if (!t) {
106 err = -EINVAL;
107 goto out;
108 }
109 xfrm_state_insert(t);
110 xfrm_state_hold(t);
111 }
112 x->tunnel = t;
113 atomic_inc(&t->tunnel_users);
114out:
115 return err;
116}
117
Herbert Xu6fccab62008-07-25 02:54:40 -0700118static int ipcomp4_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
David S. Miller2c3abab2008-07-27 03:59:24 -0700120 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Herbert Xue40b3282007-11-13 21:39:08 -0800122 x->props.header_len = 0;
123 switch (x->props.mode) {
124 case XFRM_MODE_TRANSPORT:
125 break;
126 case XFRM_MODE_TUNNEL:
127 x->props.header_len += sizeof(struct iphdr);
128 break;
129 default:
130 goto out;
131 }
132
Herbert Xu6fccab62008-07-25 02:54:40 -0700133 err = ipcomp_init_state(x);
134 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 goto out;
136
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700137 if (x->props.mode == XFRM_MODE_TUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 err = ipcomp_tunnel_attach(x);
139 if (err)
Herbert Xu10e74542010-02-15 19:24:30 +0000140 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 err = 0;
144out:
145 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Steffen Klassertd0991602014-02-21 08:41:09 +0100148static int ipcomp4_rcv_cb(struct sk_buff *skb, int err)
149{
150 return 0;
151}
152
Eric Dumazet533cb5b2008-01-30 19:11:50 -0800153static const struct xfrm_type ipcomp_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 .description = "IPCOMP4",
155 .owner = THIS_MODULE,
156 .proto = IPPROTO_COMP,
Herbert Xu6fccab62008-07-25 02:54:40 -0700157 .init_state = ipcomp4_init_state,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .destructor = ipcomp_destroy,
159 .input = ipcomp_input,
160 .output = ipcomp_output
161};
162
Steffen Klassertd0991602014-02-21 08:41:09 +0100163static struct xfrm4_protocol ipcomp4_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 .handler = xfrm4_rcv,
Steffen Klassertd0991602014-02-21 08:41:09 +0100165 .input_handler = xfrm_input,
166 .cb_handler = ipcomp4_rcv_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .err_handler = ipcomp4_err,
Steffen Klassertd0991602014-02-21 08:41:09 +0100168 .priority = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169};
170
171static int __init ipcomp4_init(void)
172{
173 if (xfrm_register_type(&ipcomp_type, AF_INET) < 0) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000174 pr_info("%s: can't add xfrm type\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return -EAGAIN;
176 }
Steffen Klassertd0991602014-02-21 08:41:09 +0100177 if (xfrm4_protocol_register(&ipcomp4_protocol, IPPROTO_COMP) < 0) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000178 pr_info("%s: can't add protocol\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 xfrm_unregister_type(&ipcomp_type, AF_INET);
180 return -EAGAIN;
181 }
182 return 0;
183}
184
185static void __exit ipcomp4_fini(void)
186{
Steffen Klassertd0991602014-02-21 08:41:09 +0100187 if (xfrm4_protocol_deregister(&ipcomp4_protocol, IPPROTO_COMP) < 0)
Joe Perches058bd4d2012-03-11 18:36:11 +0000188 pr_info("%s: can't remove protocol\n", __func__);
Florian Westphal4f518e82019-05-03 17:46:19 +0200189 xfrm_unregister_type(&ipcomp_type, AF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192module_init(ipcomp4_init);
193module_exit(ipcomp4_fini);
194
195MODULE_LICENSE("GPL");
Herbert Xu6fccab62008-07-25 02:54:40 -0700196MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp/IPv4) - RFC3173");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");
198
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700199MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_COMP);