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; |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 30 | const struct iphdr *iph = (const struct iphdr *)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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)); |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 39 | x = xfrm_state_lookup(net, skb->mark, (const 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; |
Jamal Hadi Salim | bd55775 | 2010-02-22 16:20:22 -0800 | [diff] [blame] | 66 | memcpy(&t->mark, &x->mark, sizeof(t->mark)); |
Herbert Xu | 72cb696 | 2005-06-20 13:18:08 -0700 | [diff] [blame] | 67 | |
| 68 | if (xfrm_init_state(t)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | goto error; |
| 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | atomic_set(&t->tunnel_users, 1); |
| 72 | out: |
| 73 | return t; |
| 74 | |
| 75 | error: |
| 76 | t->km.state = XFRM_STATE_DEAD; |
| 77 | xfrm_state_put(t); |
| 78 | t = NULL; |
| 79 | goto out; |
| 80 | } |
| 81 | |
| 82 | /* |
Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 83 | * 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] | 84 | * always incremented on success. |
| 85 | */ |
| 86 | static int ipcomp_tunnel_attach(struct xfrm_state *x) |
| 87 | { |
Alexey Dobriyan | a92df25 | 2010-01-25 10:38:34 +0000 | [diff] [blame] | 88 | struct net *net = xs_net(x); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | int err = 0; |
| 90 | struct xfrm_state *t; |
Jamal Hadi Salim | bd55775 | 2010-02-22 16:20:22 -0800 | [diff] [blame] | 91 | u32 mark = x->mark.v & x->mark.m; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Jamal Hadi Salim | bd55775 | 2010-02-22 16:20:22 -0800 | [diff] [blame] | 93 | t = xfrm_state_lookup(net, mark, (xfrm_address_t *)&x->id.daddr.a4, |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 94 | x->props.saddr.a4, IPPROTO_IPIP, AF_INET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | if (!t) { |
| 96 | t = ipcomp_tunnel_create(x); |
| 97 | if (!t) { |
| 98 | err = -EINVAL; |
| 99 | goto out; |
| 100 | } |
| 101 | xfrm_state_insert(t); |
| 102 | xfrm_state_hold(t); |
| 103 | } |
| 104 | x->tunnel = t; |
| 105 | atomic_inc(&t->tunnel_users); |
| 106 | out: |
| 107 | return err; |
| 108 | } |
| 109 | |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 110 | static int ipcomp4_init_state(struct xfrm_state *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
David S. Miller | 2c3abab | 2008-07-27 03:59:24 -0700 | [diff] [blame] | 112 | int err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Herbert Xu | e40b328 | 2007-11-13 21:39:08 -0800 | [diff] [blame] | 114 | x->props.header_len = 0; |
| 115 | switch (x->props.mode) { |
| 116 | case XFRM_MODE_TRANSPORT: |
| 117 | break; |
| 118 | case XFRM_MODE_TUNNEL: |
| 119 | x->props.header_len += sizeof(struct iphdr); |
| 120 | break; |
| 121 | default: |
| 122 | goto out; |
| 123 | } |
| 124 | |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 125 | err = ipcomp_init_state(x); |
| 126 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | goto out; |
| 128 | |
Masahide NAKAMURA | 7e49e6d | 2006-09-22 15:05:15 -0700 | [diff] [blame] | 129 | if (x->props.mode == XFRM_MODE_TUNNEL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | err = ipcomp_tunnel_attach(x); |
| 131 | if (err) |
Herbert Xu | 10e7454 | 2010-02-15 19:24:30 +0000 | [diff] [blame] | 132 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | err = 0; |
| 136 | out: |
| 137 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Eric Dumazet | 533cb5b | 2008-01-30 19:11:50 -0800 | [diff] [blame] | 140 | static const struct xfrm_type ipcomp_type = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | .description = "IPCOMP4", |
| 142 | .owner = THIS_MODULE, |
| 143 | .proto = IPPROTO_COMP, |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 144 | .init_state = ipcomp4_init_state, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | .destructor = ipcomp_destroy, |
| 146 | .input = ipcomp_input, |
| 147 | .output = ipcomp_output |
| 148 | }; |
| 149 | |
Alexey Dobriyan | 3261309 | 2009-09-14 12:21:47 +0000 | [diff] [blame] | 150 | static const struct net_protocol ipcomp4_protocol = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | .handler = xfrm4_rcv, |
| 152 | .err_handler = ipcomp4_err, |
| 153 | .no_policy = 1, |
| 154 | }; |
| 155 | |
| 156 | static int __init ipcomp4_init(void) |
| 157 | { |
| 158 | if (xfrm_register_type(&ipcomp_type, AF_INET) < 0) { |
| 159 | printk(KERN_INFO "ipcomp init: can't add xfrm type\n"); |
| 160 | return -EAGAIN; |
| 161 | } |
| 162 | if (inet_add_protocol(&ipcomp4_protocol, IPPROTO_COMP) < 0) { |
| 163 | printk(KERN_INFO "ipcomp init: can't add protocol\n"); |
| 164 | xfrm_unregister_type(&ipcomp_type, AF_INET); |
| 165 | return -EAGAIN; |
| 166 | } |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | static void __exit ipcomp4_fini(void) |
| 171 | { |
| 172 | if (inet_del_protocol(&ipcomp4_protocol, IPPROTO_COMP) < 0) |
| 173 | printk(KERN_INFO "ip ipcomp close: can't remove protocol\n"); |
| 174 | if (xfrm_unregister_type(&ipcomp_type, AF_INET) < 0) |
| 175 | printk(KERN_INFO "ip ipcomp close: can't remove xfrm type\n"); |
| 176 | } |
| 177 | |
| 178 | module_init(ipcomp4_init); |
| 179 | module_exit(ipcomp4_fini); |
| 180 | |
| 181 | MODULE_LICENSE("GPL"); |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 182 | MODULE_DESCRIPTION("IP Payload Compression Protocol (IPComp/IPv4) - RFC3173"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>"); |
| 184 | |
Masahide NAKAMURA | d3d6dd3 | 2007-06-26 23:57:49 -0700 | [diff] [blame] | 185 | MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_COMP); |