blob: 4e8e3b079f5b606cf7c70aed28563889b2202aa7 [file] [log] [blame]
Herbert Xu07d4ee52006-08-20 14:24:50 +10001#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/module.h>
3#include <net/ip.h>
4#include <net/xfrm.h>
5#include <net/ah.h>
6#include <linux/crypto.h>
7#include <linux/pfkeyv2.h>
Herbert Xub7c65382007-10-09 13:33:35 -07008#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <net/icmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020010#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/scatterlist.h>
12
13
14/* Clear mutable options and find final destination to substitute
15 * into IP header for icv calculation. Options are already checked
16 * for validity, so paranoia is not required. */
17
Al Virod5a0a1e2006-11-08 00:23:14 -080018static int ip_clear_mutable_options(struct iphdr *iph, __be32 *daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
20 unsigned char * optptr = (unsigned char*)(iph+1);
21 int l = iph->ihl*4 - sizeof(struct iphdr);
22 int optlen;
23
24 while (l > 0) {
25 switch (*optptr) {
26 case IPOPT_END:
27 return 0;
28 case IPOPT_NOOP:
29 l--;
30 optptr++;
31 continue;
32 }
33 optlen = optptr[1];
34 if (optlen<2 || optlen>l)
35 return -EINVAL;
36 switch (*optptr) {
37 case IPOPT_SEC:
38 case 0x85: /* Some "Extended Security" crap. */
Paul Moore11a03f72006-08-03 16:46:20 -070039 case IPOPT_CIPSO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 case IPOPT_RA:
41 case 0x80|21: /* RFC1770 */
42 break;
43 case IPOPT_LSRR:
44 case IPOPT_SSRR:
45 if (optlen < 6)
46 return -EINVAL;
47 memcpy(daddr, optptr+optlen-4, 4);
48 /* Fall through */
49 default:
Nick Bowler96fe1c02007-08-22 12:33:51 -070050 memset(optptr, 0, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 }
52 l -= optlen;
53 optptr += optlen;
54 }
55 return 0;
56}
57
58static int ah_output(struct xfrm_state *x, struct sk_buff *skb)
59{
60 int err;
61 struct iphdr *iph, *top_iph;
62 struct ip_auth_hdr *ah;
63 struct ah_data *ahp;
64 union {
65 struct iphdr iph;
66 char buf[60];
67 } tmp_iph;
68
Herbert Xu7b277b12007-10-10 15:44:06 -070069 skb_push(skb, -skb_network_offset(skb));
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070070 top_iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 iph = &tmp_iph.iph;
72
73 iph->tos = top_iph->tos;
74 iph->ttl = top_iph->ttl;
75 iph->frag_off = top_iph->frag_off;
76
77 if (top_iph->ihl != 5) {
78 iph->daddr = top_iph->daddr;
79 memcpy(iph+1, top_iph+1, top_iph->ihl*4 - sizeof(struct iphdr));
80 err = ip_clear_mutable_options(top_iph, &top_iph->daddr);
81 if (err)
82 goto error;
83 }
84
Herbert Xu87bdc482007-10-10 15:45:25 -070085 ah = ip_auth_hdr(skb);
Herbert Xu37fedd32007-10-10 15:44:44 -070086 ah->nexthdr = *skb_mac_header(skb);
87 *skb_mac_header(skb) = IPPROTO_AH;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 top_iph->tos = 0;
90 top_iph->tot_len = htons(skb->len);
91 top_iph->frag_off = 0;
92 top_iph->ttl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 top_iph->check = 0;
94
95 ahp = x->data;
Herbert Xu87bdc482007-10-10 15:45:25 -070096 ah->hdrlen = (XFRM_ALIGN8(sizeof(*ah) + ahp->icv_trunc_len) >> 2) - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 ah->reserved = 0;
99 ah->spi = x->id.spi;
Herbert Xu436a0a42007-10-08 17:25:53 -0700100 ah->seq_no = htonl(XFRM_SKB_CB(skb)->seq);
Herbert Xub7c65382007-10-09 13:33:35 -0700101
102 spin_lock_bh(&x->lock);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000103 err = ah_mac_digest(ahp, skb, ah->auth_data);
Herbert Xub7c65382007-10-09 13:33:35 -0700104 memcpy(ah->auth_data, ahp->work_icv, ahp->icv_trunc_len);
105 spin_unlock_bh(&x->lock);
106
Herbert Xu07d4ee52006-08-20 14:24:50 +1000107 if (err)
108 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 top_iph->tos = iph->tos;
111 top_iph->ttl = iph->ttl;
112 top_iph->frag_off = iph->frag_off;
113 if (top_iph->ihl != 5) {
114 top_iph->daddr = iph->daddr;
115 memcpy(top_iph+1, iph+1, top_iph->ihl*4 - sizeof(struct iphdr));
116 }
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 err = 0;
119
120error:
121 return err;
122}
123
Herbert Xue6956332006-04-01 00:52:46 -0800124static int ah_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 int ah_hlen;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700127 int ihl;
Herbert Xu631a66982007-10-10 15:46:21 -0700128 int nexthdr;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000129 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 struct iphdr *iph;
131 struct ip_auth_hdr *ah;
132 struct ah_data *ahp;
133 char work_buf[60];
134
Herbert Xu87bdc482007-10-10 15:45:25 -0700135 if (!pskb_may_pull(skb, sizeof(*ah)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 goto out;
137
Herbert Xu87bdc482007-10-10 15:45:25 -0700138 ah = (struct ip_auth_hdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 ahp = x->data;
Herbert Xu631a66982007-10-10 15:46:21 -0700140 nexthdr = ah->nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 ah_hlen = (ah->hdrlen + 2) << 2;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900142
Herbert Xu87bdc482007-10-10 15:45:25 -0700143 if (ah_hlen != XFRM_ALIGN8(sizeof(*ah) + ahp->icv_full_len) &&
144 ah_hlen != XFRM_ALIGN8(sizeof(*ah) + ahp->icv_trunc_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 goto out;
146
147 if (!pskb_may_pull(skb, ah_hlen))
148 goto out;
149
150 /* We are going to _remove_ AH header to keep sockets happy,
151 * so... Later this can change. */
152 if (skb_cloned(skb) &&
153 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
154 goto out;
155
156 skb->ip_summed = CHECKSUM_NONE;
157
Herbert Xu87bdc482007-10-10 15:45:25 -0700158 ah = (struct ip_auth_hdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700159 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700161 ihl = skb->data - skb_network_header(skb);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700162 memcpy(work_buf, iph, ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 iph->ttl = 0;
165 iph->tos = 0;
166 iph->frag_off = 0;
167 iph->check = 0;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700168 if (ihl > sizeof(*iph)) {
Al Virod5a0a1e2006-11-08 00:23:14 -0800169 __be32 dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (ip_clear_mutable_options(iph, &dummy))
171 goto out;
172 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900173 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 u8 auth_data[MAX_AH_AUTH_LEN];
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700177 skb_push(skb, ihl);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000178 err = ah_mac_digest(ahp, skb, ah->auth_data);
179 if (err)
180 goto out;
181 err = -EINVAL;
182 if (memcmp(ahp->work_icv, auth_data, ahp->icv_trunc_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 x->stats.integrity_failed++;
184 goto out;
185 }
186 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700187 skb->network_header += ah_hlen;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300188 memcpy(skb_network_header(skb), work_buf, ihl);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700189 skb->transport_header = skb->network_header;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700190 __skb_pull(skb, ah_hlen + ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Herbert Xu631a66982007-10-10 15:46:21 -0700192 return nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194out:
Herbert Xu07d4ee52006-08-20 14:24:50 +1000195 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198static void ah4_err(struct sk_buff *skb, u32 info)
199{
200 struct iphdr *iph = (struct iphdr*)skb->data;
201 struct ip_auth_hdr *ah = (struct ip_auth_hdr*)(skb->data+(iph->ihl<<2));
202 struct xfrm_state *x;
203
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300204 if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH ||
205 icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return;
207
208 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, ah->spi, IPPROTO_AH, AF_INET);
209 if (!x)
210 return;
211 printk(KERN_DEBUG "pmtu discovery on SA AH/%08x/%08x\n",
212 ntohl(ah->spi), ntohl(iph->daddr));
213 xfrm_state_put(x);
214}
215
Herbert Xu72cb6962005-06-20 13:18:08 -0700216static int ah_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 struct ah_data *ahp = NULL;
219 struct xfrm_algo_desc *aalg_desc;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000220 struct crypto_hash *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 if (!x->aalg)
223 goto error;
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (x->encap)
226 goto error;
227
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700228 ahp = kzalloc(sizeof(*ahp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (ahp == NULL)
230 return -ENOMEM;
231
Herbert Xu07d4ee52006-08-20 14:24:50 +1000232 tfm = crypto_alloc_hash(x->aalg->alg_name, 0, CRYPTO_ALG_ASYNC);
233 if (IS_ERR(tfm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 goto error;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000235
236 ahp->tfm = tfm;
Herbert Xubc31d3b2007-10-08 17:14:34 -0700237 if (crypto_hash_setkey(tfm, x->aalg->alg_key,
238 (x->aalg->alg_key_len + 7) / 8))
Herbert Xu07d4ee52006-08-20 14:24:50 +1000239 goto error;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /*
242 * Lookup the algorithm description maintained by xfrm_algo,
243 * verify crypto transform properties, and store information
244 * we need for AH processing. This lookup cannot fail here
Herbert Xu07d4ee52006-08-20 14:24:50 +1000245 * after a successful crypto_alloc_hash().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 */
247 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
248 BUG_ON(!aalg_desc);
249
250 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
Herbert Xu07d4ee52006-08-20 14:24:50 +1000251 crypto_hash_digestsize(tfm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 printk(KERN_INFO "AH: %s digestsize %u != %hu\n",
Herbert Xu07d4ee52006-08-20 14:24:50 +1000253 x->aalg->alg_name, crypto_hash_digestsize(tfm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 aalg_desc->uinfo.auth.icv_fullbits/8);
255 goto error;
256 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 ahp->icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
259 ahp->icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 BUG_ON(ahp->icv_trunc_len > MAX_AH_AUTH_LEN);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 ahp->work_icv = kmalloc(ahp->icv_full_len, GFP_KERNEL);
264 if (!ahp->work_icv)
265 goto error;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900266
Herbert Xu87bdc482007-10-10 15:45:25 -0700267 x->props.header_len = XFRM_ALIGN8(sizeof(struct ip_auth_hdr) +
268 ahp->icv_trunc_len);
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700269 if (x->props.mode == XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 x->props.header_len += sizeof(struct iphdr);
271 x->data = ahp;
272
273 return 0;
274
275error:
276 if (ahp) {
Jesper Juhl573dbd92005-09-01 17:44:29 -0700277 kfree(ahp->work_icv);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000278 crypto_free_hash(ahp->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 kfree(ahp);
280 }
281 return -EINVAL;
282}
283
284static void ah_destroy(struct xfrm_state *x)
285{
286 struct ah_data *ahp = x->data;
287
288 if (!ahp)
289 return;
290
Jesper Juhl573dbd92005-09-01 17:44:29 -0700291 kfree(ahp->work_icv);
292 ahp->work_icv = NULL;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000293 crypto_free_hash(ahp->tfm);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700294 ahp->tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 kfree(ahp);
296}
297
298
299static struct xfrm_type ah_type =
300{
301 .description = "AH4",
302 .owner = THIS_MODULE,
303 .proto = IPPROTO_AH,
Herbert Xu436a0a42007-10-08 17:25:53 -0700304 .flags = XFRM_TYPE_REPLAY_PROT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 .init_state = ah_init_state,
306 .destructor = ah_destroy,
307 .input = ah_input,
308 .output = ah_output
309};
310
311static struct net_protocol ah4_protocol = {
312 .handler = xfrm4_rcv,
313 .err_handler = ah4_err,
314 .no_policy = 1,
315};
316
317static int __init ah4_init(void)
318{
319 if (xfrm_register_type(&ah_type, AF_INET) < 0) {
320 printk(KERN_INFO "ip ah init: can't add xfrm type\n");
321 return -EAGAIN;
322 }
323 if (inet_add_protocol(&ah4_protocol, IPPROTO_AH) < 0) {
324 printk(KERN_INFO "ip ah init: can't add protocol\n");
325 xfrm_unregister_type(&ah_type, AF_INET);
326 return -EAGAIN;
327 }
328 return 0;
329}
330
331static void __exit ah4_fini(void)
332{
333 if (inet_del_protocol(&ah4_protocol, IPPROTO_AH) < 0)
334 printk(KERN_INFO "ip ah close: can't remove protocol\n");
335 if (xfrm_unregister_type(&ah_type, AF_INET) < 0)
336 printk(KERN_INFO "ip ah close: can't remove xfrm type\n");
337}
338
339module_init(ah4_init);
340module_exit(ah4_fini);
341MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700342MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_AH);