Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 8 | * Software Foundation; either version 2 of the License, or (at your option) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * any later version. |
| 10 | * |
| 11 | * Todo: |
| 12 | * - Tunable compression parameters. |
| 13 | * - Compression stats. |
| 14 | * - Adaptive compression. |
| 15 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/module.h> |
Herbert Xu | 4999f36 | 2007-11-07 02:21:47 -0800 | [diff] [blame] | 17 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/rtnetlink.h> |
| 19 | #include <net/ip.h> |
| 20 | #include <net/xfrm.h> |
| 21 | #include <net/icmp.h> |
| 22 | #include <net/ipcomp.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 23 | #include <net/protocol.h> |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 24 | #include <net/sock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | static void ipcomp4_err(struct sk_buff *skb, u32 info) |
| 27 | { |
Alexey Dobriyan | a92df25 | 2010-01-25 10:38:34 +0000 | [diff] [blame] | 28 | struct net *net = dev_net(skb->dev); |
Al Viro | a94cfd1 | 2006-09-27 18:47:24 -0700 | [diff] [blame] | 29 | __be32 spi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | struct iphdr *iph = (struct iphdr *)skb->data; |
| 31 | struct ip_comp_hdr *ipch = (struct ip_comp_hdr *)(skb->data+(iph->ihl<<2)); |
| 32 | struct xfrm_state *x; |
| 33 | |
Arnaldo Carvalho de Melo | 88c7664 | 2007-03-13 14:43:18 -0300 | [diff] [blame] | 34 | if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH || |
| 35 | icmp_hdr(skb)->code != ICMP_FRAG_NEEDED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | return; |
| 37 | |
Alexey Dobriyan | 4195f81 | 2006-05-22 16:53:22 -0700 | [diff] [blame] | 38 | spi = htonl(ntohs(ipch->cpi)); |
Alexey Dobriyan | a92df25 | 2010-01-25 10:38:34 +0000 | [diff] [blame] | 39 | x = xfrm_state_lookup(net, (xfrm_address_t *)&iph->daddr, |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 40 | spi, IPPROTO_COMP, AF_INET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | if (!x) |
| 42 | return; |
Harvey Harrison | 673d57e | 2008-10-31 00:53:57 -0700 | [diff] [blame] | 43 | NETDEBUG(KERN_DEBUG "pmtu discovery on SA IPCOMP/%08x/%pI4\n", |
| 44 | spi, &iph->daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | xfrm_state_put(x); |
| 46 | } |
| 47 | |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 48 | /* We always hold one tunnel user reference to indicate a tunnel */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | static struct xfrm_state *ipcomp_tunnel_create(struct xfrm_state *x) |
| 50 | { |
Alexey Dobriyan | a92df25 | 2010-01-25 10:38:34 +0000 | [diff] [blame] | 51 | struct net *net = xs_net(x); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | struct xfrm_state *t; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 53 | |
Alexey Dobriyan | a92df25 | 2010-01-25 10:38:34 +0000 | [diff] [blame] | 54 | t = xfrm_state_alloc(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | if (t == NULL) |
| 56 | goto out; |
| 57 | |
| 58 | t->id.proto = IPPROTO_IPIP; |
| 59 | t->id.spi = x->props.saddr.a4; |
| 60 | t->id.daddr.a4 = x->id.daddr.a4; |
| 61 | memcpy(&t->sel, &x->sel, sizeof(t->sel)); |
| 62 | t->props.family = AF_INET; |
Herbert Xu | e40b328 | 2007-11-13 21:39:08 -0800 | [diff] [blame] | 63 | t->props.mode = x->props.mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | t->props.saddr.a4 = x->props.saddr.a4; |
| 65 | t->props.flags = x->props.flags; |
Herbert Xu | 72cb696 | 2005-06-20 13:18:08 -0700 | [diff] [blame] | 66 | |
| 67 | if (xfrm_init_state(t)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | goto error; |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | atomic_set(&t->tunnel_users, 1); |
| 71 | out: |
| 72 | return t; |
| 73 | |
| 74 | error: |
| 75 | t->km.state = XFRM_STATE_DEAD; |
| 76 | xfrm_state_put(t); |
| 77 | t = NULL; |
| 78 | goto out; |
| 79 | } |
| 80 | |
| 81 | /* |
Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 82 | * Must be protected by xfrm_cfg_mutex. State and tunnel user references are |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | * always incremented on success. |
| 84 | */ |
| 85 | static int ipcomp_tunnel_attach(struct xfrm_state *x) |
| 86 | { |
Alexey Dobriyan | a92df25 | 2010-01-25 10:38:34 +0000 | [diff] [blame] | 87 | struct net *net = xs_net(x); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | int err = 0; |
| 89 | struct xfrm_state *t; |
| 90 | |
Alexey Dobriyan | a92df25 | 2010-01-25 10:38:34 +0000 | [diff] [blame] | 91 | t = xfrm_state_lookup(net, (xfrm_address_t *)&x->id.daddr.a4, |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 92 | x->props.saddr.a4, IPPROTO_IPIP, AF_INET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | if (!t) { |
| 94 | t = ipcomp_tunnel_create(x); |
| 95 | if (!t) { |
| 96 | err = -EINVAL; |
| 97 | goto out; |
| 98 | } |
| 99 | xfrm_state_insert(t); |
| 100 | xfrm_state_hold(t); |
| 101 | } |
| 102 | x->tunnel = t; |
| 103 | atomic_inc(&t->tunnel_users); |
| 104 | out: |
| 105 | return err; |
| 106 | } |
| 107 | |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 108 | static int ipcomp4_init_state(struct xfrm_state *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { |
David S. Miller | 2c3abab | 2008-07-27 03:59:24 -0700 | [diff] [blame] | 110 | int err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Herbert Xu | e40b328 | 2007-11-13 21:39:08 -0800 | [diff] [blame] | 112 | x->props.header_len = 0; |
| 113 | switch (x->props.mode) { |
| 114 | case XFRM_MODE_TRANSPORT: |
| 115 | break; |
| 116 | case XFRM_MODE_TUNNEL: |
| 117 | x->props.header_len += sizeof(struct iphdr); |
| 118 | break; |
| 119 | default: |
| 120 | goto out; |
| 121 | } |
| 122 | |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 123 | err = ipcomp_init_state(x); |
| 124 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | goto out; |
| 126 | |
Masahide NAKAMURA | 7e49e6d | 2006-09-22 15:05:15 -0700 | [diff] [blame] | 127 | if (x->props.mode == XFRM_MODE_TUNNEL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | err = ipcomp_tunnel_attach(x); |
| 129 | if (err) |
| 130 | goto error_tunnel; |
| 131 | } |
| 132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | err = 0; |
| 134 | out: |
| 135 | return err; |
| 136 | |
| 137 | error_tunnel: |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 138 | ipcomp_destroy(x); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | goto out; |
| 140 | } |
| 141 | |
Eric Dumazet | 533cb5b | 2008-01-30 19:11:50 -0800 | [diff] [blame] | 142 | static const struct xfrm_type ipcomp_type = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | .description = "IPCOMP4", |
| 144 | .owner = THIS_MODULE, |
| 145 | .proto = IPPROTO_COMP, |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 146 | .init_state = ipcomp4_init_state, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | .destructor = ipcomp_destroy, |
| 148 | .input = ipcomp_input, |
| 149 | .output = ipcomp_output |
| 150 | }; |
| 151 | |
Alexey Dobriyan | 3261309 | 2009-09-14 12:21:47 +0000 | [diff] [blame] | 152 | static const struct net_protocol ipcomp4_protocol = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | .handler = xfrm4_rcv, |
| 154 | .err_handler = ipcomp4_err, |
| 155 | .no_policy = 1, |
| 156 | }; |
| 157 | |
| 158 | static int __init ipcomp4_init(void) |
| 159 | { |
| 160 | if (xfrm_register_type(&ipcomp_type, AF_INET) < 0) { |
| 161 | printk(KERN_INFO "ipcomp init: can't add xfrm type\n"); |
| 162 | return -EAGAIN; |
| 163 | } |
| 164 | if (inet_add_protocol(&ipcomp4_protocol, IPPROTO_COMP) < 0) { |
| 165 | printk(KERN_INFO "ipcomp init: can't add protocol\n"); |
| 166 | xfrm_unregister_type(&ipcomp_type, AF_INET); |
| 167 | return -EAGAIN; |
| 168 | } |
| 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | static void __exit ipcomp4_fini(void) |
| 173 | { |
| 174 | if (inet_del_protocol(&ipcomp4_protocol, IPPROTO_COMP) < 0) |
| 175 | printk(KERN_INFO "ip ipcomp close: can't remove protocol\n"); |
| 176 | if (xfrm_unregister_type(&ipcomp_type, AF_INET) < 0) |
| 177 | printk(KERN_INFO "ip ipcomp close: can't remove xfrm type\n"); |
| 178 | } |
| 179 | |
| 180 | module_init(ipcomp4_init); |
| 181 | module_exit(ipcomp4_fini); |
| 182 | |
| 183 | MODULE_LICENSE("GPL"); |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 184 | MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp/IPv4) - RFC3173"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>"); |
| 186 | |
Masahide NAKAMURA | d3d6dd3 | 2007-06-26 23:57:49 -0700 | [diff] [blame] | 187 | MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_COMP); |