blob: 7c63ae49474290b8c8b262847dac626ffb26c9e4 [file] [log] [blame]
Herbert Xu6b7326c2006-07-30 15:41:01 +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/esp.h>
6#include <asm/scatterlist.h>
7#include <linux/crypto.h>
Herbert Xua02a6422005-10-10 21:11:08 -07008#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/pfkeyv2.h>
10#include <linux/random.h>
11#include <net/icmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020012#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <net/udp.h>
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015static int esp_output(struct xfrm_state *x, struct sk_buff *skb)
16{
17 int err;
18 struct iphdr *top_iph;
19 struct ip_esp_hdr *esph;
Herbert Xu6b7326c2006-07-30 15:41:01 +100020 struct crypto_blkcipher *tfm;
21 struct blkcipher_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 struct esp_data *esp;
23 struct sk_buff *trailer;
24 int blksize;
25 int clen;
26 int alen;
27 int nfrags;
28
29 /* Strip IP+ESP header. */
30 __skb_pull(skb, skb->h.raw - skb->data);
31 /* Now skb is pure payload to encrypt */
32
33 err = -ENOMEM;
34
35 /* Round to block size */
36 clen = skb->len;
37
38 esp = x->data;
39 alen = esp->auth.icv_trunc_len;
40 tfm = esp->conf.tfm;
Herbert Xu6b7326c2006-07-30 15:41:01 +100041 desc.tfm = tfm;
42 desc.flags = 0;
43 blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
Herbert Xua02a6422005-10-10 21:11:08 -070044 clen = ALIGN(clen + 2, blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 if (esp->conf.padlen)
Herbert Xua02a6422005-10-10 21:11:08 -070046 clen = ALIGN(clen, esp->conf.padlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 if ((nfrags = skb_cow_data(skb, clen-skb->len+alen, &trailer)) < 0)
49 goto error;
50
51 /* Fill padding... */
52 do {
53 int i;
54 for (i=0; i<clen-skb->len - 2; i++)
55 *(u8*)(trailer->tail + i) = i+1;
56 } while (0);
57 *(u8*)(trailer->tail + clen-skb->len - 2) = (clen - skb->len)-2;
58 pskb_put(skb, trailer, clen - skb->len);
59
60 __skb_push(skb, skb->data - skb->nh.raw);
61 top_iph = skb->nh.iph;
62 esph = (struct ip_esp_hdr *)(skb->nh.raw + top_iph->ihl*4);
63 top_iph->tot_len = htons(skb->len + alen);
64 *(u8*)(trailer->tail - 1) = top_iph->protocol;
65
66 /* this is non-NULL only with UDP Encapsulation */
67 if (x->encap) {
68 struct xfrm_encap_tmpl *encap = x->encap;
69 struct udphdr *uh;
70 u32 *udpdata32;
71
72 uh = (struct udphdr *)esph;
73 uh->source = encap->encap_sport;
74 uh->dest = encap->encap_dport;
75 uh->len = htons(skb->len + alen - top_iph->ihl*4);
76 uh->check = 0;
77
78 switch (encap->encap_type) {
79 default:
80 case UDP_ENCAP_ESPINUDP:
81 esph = (struct ip_esp_hdr *)(uh + 1);
82 break;
83 case UDP_ENCAP_ESPINUDP_NON_IKE:
84 udpdata32 = (u32 *)(uh + 1);
85 udpdata32[0] = udpdata32[1] = 0;
86 esph = (struct ip_esp_hdr *)(udpdata32 + 2);
87 break;
88 }
89
90 top_iph->protocol = IPPROTO_UDP;
91 } else
92 top_iph->protocol = IPPROTO_ESP;
93
94 esph->spi = x->id.spi;
95 esph->seq_no = htonl(++x->replay.oseq);
Jamal Hadi Salim9500e8a2006-03-20 19:15:29 -080096 xfrm_aevent_doreplay(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 if (esp->conf.ivlen)
Herbert Xu6b7326c2006-07-30 15:41:01 +100099 crypto_blkcipher_set_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 do {
102 struct scatterlist *sg = &esp->sgbuf[0];
103
104 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
105 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
106 if (!sg)
107 goto error;
108 }
109 skb_to_sgvec(skb, sg, esph->enc_data+esp->conf.ivlen-skb->data, clen);
Herbert Xu6b7326c2006-07-30 15:41:01 +1000110 err = crypto_blkcipher_encrypt(&desc, sg, sg, clen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (unlikely(sg != &esp->sgbuf[0]))
112 kfree(sg);
113 } while (0);
114
Herbert Xu6b7326c2006-07-30 15:41:01 +1000115 if (unlikely(err))
116 goto error;
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (esp->conf.ivlen) {
Herbert Xu6b7326c2006-07-30 15:41:01 +1000119 memcpy(esph->enc_data, esp->conf.ivec, esp->conf.ivlen);
120 crypto_blkcipher_get_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122
123 if (esp->auth.icv_full_len) {
124 esp->auth.icv(esp, skb, (u8*)esph-skb->data,
125 sizeof(struct ip_esp_hdr) + esp->conf.ivlen+clen, trailer->tail);
126 pskb_put(skb, trailer, alen);
127 }
128
129 ip_send_check(top_iph);
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131error:
132 return err;
133}
134
135/*
136 * Note: detecting truncated vs. non-truncated authentication data is very
137 * expensive, so we only support truncated data, which is the recommended
138 * and common case.
139 */
Herbert Xue6956332006-04-01 00:52:46 -0800140static int esp_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct iphdr *iph;
143 struct ip_esp_hdr *esph;
144 struct esp_data *esp = x->data;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000145 struct crypto_blkcipher *tfm = esp->conf.tfm;
146 struct blkcipher_desc desc = { .tfm = tfm };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 struct sk_buff *trailer;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000148 int blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 int alen = esp->auth.icv_trunc_len;
150 int elen = skb->len - sizeof(struct ip_esp_hdr) - esp->conf.ivlen - alen;
151 int nfrags;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700152 int ihl;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800153 u8 nexthdr[2];
154 struct scatterlist *sg;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800155 int padlen;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000156 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 if (!pskb_may_pull(skb, sizeof(struct ip_esp_hdr)))
159 goto out;
160
161 if (elen <= 0 || (elen & (blksize-1)))
162 goto out;
163
164 /* If integrity check is required, do this. */
165 if (esp->auth.icv_full_len) {
166 u8 sum[esp->auth.icv_full_len];
167 u8 sum1[alen];
168
169 esp->auth.icv(esp, skb, 0, skb->len-alen, sum);
170
171 if (skb_copy_bits(skb, skb->len-alen, sum1, alen))
172 BUG();
173
174 if (unlikely(memcmp(sum, sum1, alen))) {
175 x->stats.integrity_failed++;
176 goto out;
177 }
178 }
179
180 if ((nfrags = skb_cow_data(skb, 0, &trailer)) < 0)
181 goto out;
182
183 skb->ip_summed = CHECKSUM_NONE;
184
185 esph = (struct ip_esp_hdr*)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /* Get ivec. This can be wrong, check against another impls. */
188 if (esp->conf.ivlen)
Herbert Xu6b7326c2006-07-30 15:41:01 +1000189 crypto_blkcipher_set_iv(tfm, esph->enc_data, esp->conf.ivlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800191 sg = &esp->sgbuf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800193 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
194 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
195 if (!sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800198 skb_to_sgvec(skb, sg, sizeof(struct ip_esp_hdr) + esp->conf.ivlen, elen);
Herbert Xu6b7326c2006-07-30 15:41:01 +1000199 err = crypto_blkcipher_decrypt(&desc, sg, sg, elen);
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800200 if (unlikely(sg != &esp->sgbuf[0]))
201 kfree(sg);
Herbert Xu6b7326c2006-07-30 15:41:01 +1000202 if (unlikely(err))
203 return err;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800204
205 if (skb_copy_bits(skb, skb->len-alen-2, nexthdr, 2))
206 BUG();
207
208 padlen = nexthdr[0];
209 if (padlen+2 >= elen)
210 goto out;
211
212 /* ... check padding bits here. Silly. :-) */
213
Herbert Xu31a4ab92006-05-27 23:06:13 -0700214 iph = skb->nh.iph;
215 ihl = iph->ihl * 4;
216
Herbert Xu752c1f42006-02-27 13:00:40 -0800217 if (x->encap) {
218 struct xfrm_encap_tmpl *encap = x->encap;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700219 struct udphdr *uh = (void *)(skb->nh.raw + ihl);
Herbert Xu752c1f42006-02-27 13:00:40 -0800220
221 /*
222 * 1) if the NAT-T peer's IP or port changed then
223 * advertize the change to the keying daemon.
224 * This is an inbound SA, so just compare
225 * SRC ports.
226 */
227 if (iph->saddr != x->props.saddr.a4 ||
228 uh->source != encap->encap_sport) {
229 xfrm_address_t ipaddr;
230
231 ipaddr.a4 = iph->saddr;
232 km_new_mapping(x, &ipaddr, uh->source);
233
234 /* XXX: perhaps add an extra
235 * policy check here, to see
236 * if we should allow or
237 * reject a packet from a
238 * different source
239 * address/port.
240 */
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800241 }
Herbert Xu752c1f42006-02-27 13:00:40 -0800242
243 /*
244 * 2) ignore UDP/TCP checksums in case
245 * of NAT-T in Transport Mode, or
246 * perform other post-processing fixes
247 * as per draft-ietf-ipsec-udp-encaps-06,
248 * section 3.1.2
249 */
250 if (!x->props.mode)
251 skb->ip_summed = CHECKSUM_UNNECESSARY;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800252 }
253
254 iph->protocol = nexthdr[1];
255 pskb_trim(skb, skb->len - alen - padlen - 2);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700256 skb->h.raw = __skb_pull(skb, sizeof(*esph) + esp->conf.ivlen) - ihl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 return 0;
259
260out:
261 return -EINVAL;
262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264static u32 esp4_get_max_size(struct xfrm_state *x, int mtu)
265{
266 struct esp_data *esp = x->data;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000267 u32 blksize = ALIGN(crypto_blkcipher_blocksize(esp->conf.tfm), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 if (x->props.mode) {
Herbert Xua02a6422005-10-10 21:11:08 -0700270 mtu = ALIGN(mtu + 2, blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 } else {
272 /* The worst case. */
Herbert Xud4875b02005-10-10 21:11:34 -0700273 mtu = ALIGN(mtu + 2, 4) + blksize - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275 if (esp->conf.padlen)
Herbert Xua02a6422005-10-10 21:11:08 -0700276 mtu = ALIGN(mtu, esp->conf.padlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 return mtu + x->props.header_len + esp->auth.icv_trunc_len;
279}
280
281static void esp4_err(struct sk_buff *skb, u32 info)
282{
283 struct iphdr *iph = (struct iphdr*)skb->data;
284 struct ip_esp_hdr *esph = (struct ip_esp_hdr*)(skb->data+(iph->ihl<<2));
285 struct xfrm_state *x;
286
287 if (skb->h.icmph->type != ICMP_DEST_UNREACH ||
288 skb->h.icmph->code != ICMP_FRAG_NEEDED)
289 return;
290
291 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, esph->spi, IPPROTO_ESP, AF_INET);
292 if (!x)
293 return;
Patrick McHardy64ce2072005-08-09 20:50:53 -0700294 NETDEBUG(KERN_DEBUG "pmtu discovery on SA ESP/%08x/%08x\n",
295 ntohl(esph->spi), ntohl(iph->daddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 xfrm_state_put(x);
297}
298
299static void esp_destroy(struct xfrm_state *x)
300{
301 struct esp_data *esp = x->data;
302
303 if (!esp)
304 return;
305
Herbert Xu6b7326c2006-07-30 15:41:01 +1000306 crypto_free_blkcipher(esp->conf.tfm);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700307 esp->conf.tfm = NULL;
308 kfree(esp->conf.ivec);
309 esp->conf.ivec = NULL;
310 crypto_free_tfm(esp->auth.tfm);
311 esp->auth.tfm = NULL;
312 kfree(esp->auth.work_icv);
313 esp->auth.work_icv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 kfree(esp);
315}
316
Herbert Xu72cb6962005-06-20 13:18:08 -0700317static int esp_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 struct esp_data *esp = NULL;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000320 struct crypto_blkcipher *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* null auth and encryption can have zero length keys */
323 if (x->aalg) {
324 if (x->aalg->alg_key_len > 512)
325 goto error;
326 }
327 if (x->ealg == NULL)
328 goto error;
329
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700330 esp = kzalloc(sizeof(*esp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (esp == NULL)
332 return -ENOMEM;
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (x->aalg) {
335 struct xfrm_algo_desc *aalg_desc;
336
337 esp->auth.key = x->aalg->alg_key;
338 esp->auth.key_len = (x->aalg->alg_key_len+7)/8;
339 esp->auth.tfm = crypto_alloc_tfm(x->aalg->alg_name, 0);
340 if (esp->auth.tfm == NULL)
341 goto error;
342 esp->auth.icv = esp_hmac_digest;
343
344 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
345 BUG_ON(!aalg_desc);
346
347 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
348 crypto_tfm_alg_digestsize(esp->auth.tfm)) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700349 NETDEBUG(KERN_INFO "ESP: %s digestsize %u != %hu\n",
350 x->aalg->alg_name,
351 crypto_tfm_alg_digestsize(esp->auth.tfm),
352 aalg_desc->uinfo.auth.icv_fullbits/8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 goto error;
354 }
355
356 esp->auth.icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
357 esp->auth.icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
358
359 esp->auth.work_icv = kmalloc(esp->auth.icv_full_len, GFP_KERNEL);
360 if (!esp->auth.work_icv)
361 goto error;
362 }
363 esp->conf.key = x->ealg->alg_key;
364 esp->conf.key_len = (x->ealg->alg_key_len+7)/8;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000365 tfm = crypto_alloc_blkcipher(x->ealg->alg_name, 0, CRYPTO_ALG_ASYNC);
366 if (IS_ERR(tfm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 goto error;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000368 esp->conf.tfm = tfm;
369 esp->conf.ivlen = crypto_blkcipher_ivsize(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 esp->conf.padlen = 0;
371 if (esp->conf.ivlen) {
372 esp->conf.ivec = kmalloc(esp->conf.ivlen, GFP_KERNEL);
373 if (unlikely(esp->conf.ivec == NULL))
374 goto error;
375 get_random_bytes(esp->conf.ivec, esp->conf.ivlen);
376 }
Herbert Xu6b7326c2006-07-30 15:41:01 +1000377 if (crypto_blkcipher_setkey(tfm, esp->conf.key, esp->conf.key_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 goto error;
379 x->props.header_len = sizeof(struct ip_esp_hdr) + esp->conf.ivlen;
380 if (x->props.mode)
381 x->props.header_len += sizeof(struct iphdr);
382 if (x->encap) {
383 struct xfrm_encap_tmpl *encap = x->encap;
384
385 switch (encap->encap_type) {
386 default:
387 goto error;
388 case UDP_ENCAP_ESPINUDP:
389 x->props.header_len += sizeof(struct udphdr);
390 break;
391 case UDP_ENCAP_ESPINUDP_NON_IKE:
392 x->props.header_len += sizeof(struct udphdr) + 2 * sizeof(u32);
393 break;
394 }
395 }
396 x->data = esp;
397 x->props.trailer_len = esp4_get_max_size(x, 0) - x->props.header_len;
398 return 0;
399
400error:
401 x->data = esp;
402 esp_destroy(x);
403 x->data = NULL;
404 return -EINVAL;
405}
406
407static struct xfrm_type esp_type =
408{
409 .description = "ESP4",
410 .owner = THIS_MODULE,
411 .proto = IPPROTO_ESP,
412 .init_state = esp_init_state,
413 .destructor = esp_destroy,
414 .get_max_size = esp4_get_max_size,
415 .input = esp_input,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 .output = esp_output
417};
418
419static struct net_protocol esp4_protocol = {
420 .handler = xfrm4_rcv,
421 .err_handler = esp4_err,
422 .no_policy = 1,
423};
424
425static int __init esp4_init(void)
426{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (xfrm_register_type(&esp_type, AF_INET) < 0) {
428 printk(KERN_INFO "ip esp init: can't add xfrm type\n");
429 return -EAGAIN;
430 }
431 if (inet_add_protocol(&esp4_protocol, IPPROTO_ESP) < 0) {
432 printk(KERN_INFO "ip esp init: can't add protocol\n");
433 xfrm_unregister_type(&esp_type, AF_INET);
434 return -EAGAIN;
435 }
436 return 0;
437}
438
439static void __exit esp4_fini(void)
440{
441 if (inet_del_protocol(&esp4_protocol, IPPROTO_ESP) < 0)
442 printk(KERN_INFO "ip esp close: can't remove protocol\n");
443 if (xfrm_unregister_type(&esp_type, AF_INET) < 0)
444 printk(KERN_INFO "ip esp close: can't remove xfrm type\n");
445}
446
447module_init(esp4_init);
448module_exit(esp4_fini);
449MODULE_LICENSE("GPL");